-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
46
47
48
49
50
51
52
53
54
55
{
"name": "qq-official-bot",
"version": "1.0.4",
"description": "qq机器人开发SDK",
"main": "lib/index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "node .",
"compile": "tsc --project tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"dtsc": "dtsc --project tsconfig.dtsc.json",
"clean": "rm -rf ./lib",
"build": "npm run compile && npm run dtsc",
"dev": "ts-node-dev -r tsconfig-paths/register ./src/test.ts",
"pub": "npm publish --access public",
"docs:dev": "vitepress dev docs --port 5566",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"repository": {
"url": "https://github.com/zhinjs/qq-official-bot.git",
"type": "git"
},
"keywords": [
"qq",
"group",
"bot"
],
"author": "凉菜",
"license": "MIT",
"dependencies": {
"axios": "1.7.4",
"formdata-node": "^6.0.3",
"js-sha512": "^0.9.0",
"log4js": "^6.9.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20.11.5",
"@types/ws": "^8.5.10",
"dtsc": "^2.3.0",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"vitepress": "1.0.0-rc.39"
}
}