-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 771 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 771 Bytes
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
{
"name": "node-mirai-sdk",
"version": "0.3.6",
"description": "node api for mirai qq bot",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dts": "tsc ./index.js --declaration --allowJs --emitDeclarationOnly --outDir types --skipLibCheck",
"postdts": "tsc ./type.ts --skipLibCheck && tsc ./src/*.ts --outDir ./types/src/"
},
"keywords": [
"mirai",
"bot"
],
"author": "RedBeanN",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"form-data": "^3.0.0",
"semver": "^7.3.7",
"ws": "^7.5.9"
},
"devDependencies": {
"@types/node": "^16.11.59",
"@types/ws": "^7.4.7",
"docdash": "^1.2.0"
}
}