-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 980 Bytes
/
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
{
"name": "cocotais-bot",
"version": "1.6.1",
"description": "基于 qq-bot-sdk 实现的的QQ官方机器人框架",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"dependencies": {
"pm2": "^5.4.2",
"qq-bot-sdk": "^1.8.0"
},
"scripts": {
"build": "tsc",
"clean": "pm2 delete all",
"start": "cocotais-bot start",
"start:deep": "pm2 delete all & cocotais-bot start",
"start:build": "npm run build & cocotais-bot start",
"start:deep-build": "pm2 delete all & npm run build & cocotais-bot start"
},
"bin": {
"cocotais-bot": "bin/cocotais-bot"
},
"author": "Cocotais Team",
"license": "Apache-2.0",
"types": "./lib/index.d.ts",
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/ws": "^8.5.10",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"pnpm": {
"overrides": {
"axios@>=0.8.1 <0.28.0": ">=0.28.0",
"systeminformation@<=5.23.6": ">=5.23.7"
}
}
}