-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.89 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@yzqdev/tool",
"version": "0.2.0",
"author": {
"name": "yzqdev",
"url": "https://github.com/yzqdev"
},
"repository": {
"url": "https://github.com/yzqdev/tool"
},
"description": "A small tool containers many features",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"files": [
"src",
"dist",
"vendor"
],
"bin": {
"tool": "src/index.ts"
},
"keywords": [
"cli",
"command",
"terminal",
"utils"
],
"type": "module",
"module": "src/index.ts",
"scripts": {
"dev": "bun run src/index.ts",
"clean": "rimraf dist",
"devbuild": "tsup --config tsup.dev.ts",
"build": "tsup",
"unbuild": "unbuild",
"lint": "prettier --write src/**/*.{ts,js} package.json tsconfig.json",
"p": "tsup&&pnpm dlx bumpp&&npm publish"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@sindresorhus/tsconfig": "^8.1.0",
"@types/express": "^5.0.6",
"@types/fs-extra": "^11.0.4",
"axios": "^1.13.5",
"boxen": "^8.0.1",
"cli-table3": "^0.6.5",
"commander": "^14.0.3",
"execa": "^9.6.1",
"express": "^5.2.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.3",
"inquirer": "^13.2.5",
"mime": "^4.1.0",
"nanoid": "^5.1.6",
"open": "^11.0.0",
"ora": "^9.3.0",
"picocolors": "^1.1.1",
"prettier": "^3.8.1",
"pretty-bytes": "^7.1.0",
"prompts": "^2.4.2",
"rc-config-loader": "^4.1.3",
"regedit": "^5.1.4",
"rimraf": "^6.1.3",
"serve-index": "^1.9.2",
"shelljs": "^0.10.0",
"typescript": "^5.9.3"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/inquirer": "^9.0.9",
"@types/mime": "^4.0.0",
"@types/serve-index": "^1.9.4",
"@types/shelljs": "^0.10.0",
"@vitest/ui": "^4.0.18",
"tsup": "^8.5.1",
"unbuild": "^3.6.1",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}