-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "node-bins",
"version": "2.8.2",
"description": "Fast create global commands by nodejs.",
"author": "laoer536",
"repository": "[email protected]:laoer536/node-bins.git",
"workspaces": [
"build-user-bin"
],
"scripts": {
"build": "unbuild && jiti scripts/fix-utils-path.ts && jiti scripts/add-node-env.ts",
"release": "pnpm build && changelogen --release && npm publish && git push --follow-tags"
},
"bin": {
"create-bin": "dist/self-bin/create-bin.mjs",
"delete-bin": "dist/self-bin/delete-bin.mjs",
"bins": "dist/self-bin/bins.mjs"
},
"files": [
"dist",
"build-user-bin",
"!node_modules",
"!node_modules/**"
],
"keywords": [
"node-bins",
"bin",
"global command",
"node command"
],
"license": "ISC",
"dependencies": {
"consola": "^3.1.0",
"execa": "^7.1.1",
"jiti": "^1.18.2",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"pathe": "^1.1.1",
"prettier": "^2.8.8",
"unbuild": "^1.2.1"
},
"devDependencies": {
"@types/minimist": "^1.2.2",
"@types/node": "^20.3.1",
"@types/prettier": "^2.7.3",
"changelogen": "^0.5.4",
"typescript": "^5.1.6"
}
}