-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "zzoffduty-cli",
"version": "0.3.0",
"description": "work tool fun",
"main": "src/index.js",
"type": "module",
"author": "zzdaddy",
"bin": {
"mechine": "src/index.js",
"zz": "src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zzdaddy/zzoffduty-cli.git"
},
"keywords": [
"cli",
"zz",
"zaozao",
"zzoffduty"
],
"scripts": {
"init": "npm run sync",
"sync": "node ./build/syncLocal.js",
"reset": "node ./build/beforeGitPush.js && git add . && git commit -m \"reset config\" && git push",
"release:patch": "npm run reset && npm version patch && npm publish",
"release:minor": "npm run reset && npm version minor && npm publish",
"release:major": "npm run reset && npm version major && npm publish"
},
"engines": {
"node": ">=16.0.0"
},
"license": "MIT",
"dependencies": {
"axios": "1.6.2",
"chalk": "5.3.0",
"commander": "11.0.0",
"inquirer": "9.2.8",
"ora": "7.0.0",
"sharp": "0.33.0",
"shelljs": "0.8.5"
}
}