-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.73 KB
/
package.json
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
{
"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": [
"dist",
"vendor"
],
"main": "bin/tool.mjs",
"module": "bin/tool.mjs",
"bin": {
"tool": "bin/tool.mjs"
},
"keywords": [
"cli",
"command",
"terminal",
"utils"
],
"scripts": {
"dev": "node bin/tool.mjs",
"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"
},
"dependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/express": "^4.17.21",
"boxen": "^7.1.1",
"cli-table3": "^0.6.4",
"commander": "^12.0.0",
"execa": "^8.0.1",
"express": "^4.19.2",
"fast-glob": "^3.3.2",
"got": "^14.2.1",
"inquirer": "^9.2.17",
"mime": "^4.0.1",
"nanoid": "^5.0.7",
"open": "^10.1.0",
"ora": "^8.0.1",
"picocolors": "^1.0.0",
"prettier": "^3.2.5",
"pretty-bytes": "^6.1.1",
"prompts": "^2.4.2",
"rc-config-loader": "^4.1.3",
"regedit": "^5.1.3",
"rimraf": "^5.0.5",
"serve-index": "^1.9.1",
"shelljs": "^0.8.5",
"typescript": "^5.4.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/mime": "^3.0.4",
"@types/node": "^20.12.5",
"@types/serve-index": "^1.9.4",
"@types/shelljs": "^0.8.15",
"tsup": "^8.0.2",
"unbuild": "^2.0.0"
},
"engines": {
"node": ">=16"
}
}