-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.41 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.41 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
{
"name": "@zhin.js/cli",
"version": "1.0.65",
"description": "Command-line interface for Zhin.js bot framework",
"type": "module",
"main": "./lib/index.js",
"bin": {
"zhin": "./lib/cli.js"
},
"exports": {
".": {
"types": "./lib/index.d.ts",
"development": "./src/index.ts",
"import": "./lib/index.js"
}
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib"
},
"dependencies": {
"@zhin.js/logger": "workspace:*",
"adm-zip": "^0.5.16",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"cross-spawn": "^7.0.6",
"dotenv": "^16.4.7",
"fs-extra": "^11.3.2",
"glob": "^11.0.0",
"inquirer": "^12.10.0",
"open": "^11.0.0",
"ora": "^8.2.0",
"yaml": "^2.7.1"
},
"peerDependencies": {
"zhin.js": "workspace:*"
},
"peerDependenciesMeta": {
"zhin.js": {
"optional": true
}
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^24.10.0",
"typescript": "^6.0.0",
"zhin.js": "workspace:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhinjs/zhin.git",
"directory": "basic/cli"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"zhin",
"bot",
"cli",
"command-line",
"tool"
]
}