-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "pbbot",
"version": "0.0.7",
"description": "JS/TS 开发QQ机器人",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rm -rf lib && npm run build:proto && tsc --build tsconfig.json && npm run build:protolib",
"build:proto": "mkdir -p src/proto && npx pbjs -t static-module -w commonjs -o src/proto/proto.js onebot_idl/onebot_frame.proto --force-long && npx pbts -o src/proto/proto.d.ts src/proto/proto.js",
"build:protolib": "mkdir -p src/proto && npx pbts -o lib/proto/proto.d.ts src/proto/proto.js"
},
"keywords": [
"bot",
"qqbot",
"cqhttp",
"protobufbot",
"pbbot",
"qqrobot",
"mirai"
],
"author": "lz1998 <[email protected]>",
"bugs": {
"url": "https://github.com/ProtobufBot/js-pbbot/issues"
},
"homepage": "https://github.com/ProtobufBot/js-pbbot",
"repository": {
"type": "git",
"url": "git+https://github.com/ProtobufBot/js-pbbot.git"
},
"license": "ISC",
"dependencies": {
"@types/long": "^4.0.1",
"long": "^4.0.0",
"lru-cache": "^6.0.0",
"protobufjs": "^6.10.2",
"ws": "^7.5.6"
},
"devDependencies": {
"@types/lru-cache": "^5.1.0",
"@types/node": "^14.14.21",
"@types/ws": "^7.4.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}