-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.3 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.3 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
{
"name": "@icqqjs/cli",
"version": "1.4.5",
"description": "基于 icqq 的命令行 QQ 客户端",
"type": "module",
"main": "dist/cli.js",
"bin": {
"icqq": "./dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"typecheck": "tsc --noEmit",
"start": "node dist/cli.js",
"clean": "node --eval \"fs.rmSync('dist', { recursive: true, force: true })\"",
"test": "vitest run",
"prepublishOnly": "npm run typecheck && npm run build"
},
"keywords": [
"qq",
"icqq",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/icqqjs/cli.git"
},
"author": {
"name": "凉菜",
"email": "admin@liucl.cn"
},
"engines": {
"node": ">=22"
},
"license": "ISC",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"packageManager": "pnpm@10.7.0",
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^19.0.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.3"
},
"dependencies": {
"ink": "^6.0.0",
"pastel": "^4.0.0",
"react": "^19.0.0",
"zod": "^4.3.6"
},
"peerDependencies": {
"@icqqjs/icqq": "^1.10.18"
},
"peerDependenciesMeta": {
"@icqqjs/icqq": {
"optional": true
}
}
}