-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 2.3 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "qq-bot-sdk",
"version": "1.9.1",
"description": "QQ机器人nodeSDK",
"module": "es/index.js",
"main": "lib/index.js",
"typings": "typings/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"tencent",
"nodejs",
"qq",
"channel",
"guild",
"bot",
"group"
],
"files": [
"es",
"lib",
"typings"
],
"directories": {
"lib": "./dist",
"example": "./example"
},
"scripts": {
"dev": "npm run clean & cross-env NODE_ENV=dev rollup -c rollup.config.js -w",
"build": "npm run clean &cross-env NODE_ENV=production rollup -c rollup.config.js",
"clean": "rimraf lib es typings",
"test": "jest --config jest.config.json",
"linkdev": "node scripts/dev.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feilongproject/QQNodeSDK.git"
},
"author": "feilongproject",
"license": "AGPL3.0",
"bugs": {
"url": "https://github.com/feilongproject/QQNodeSDK/issues"
},
"homepage": "https://github.com/feilongproject/QQNodeSDK#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/generator": "^7.17.0",
"@babel/parser": "^7.17.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@babel/traverse": "^7.17.0",
"@babel/types": "^7.17.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^27.0.2",
"@types/ws": "^8.5.3",
"cross-env": "^7.0.3",
"jest": "^25.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.56.2",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-typescript-paths": "^1.3.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@noble/curves": "^1.6.0",
"axios": "0.24.0",
"loglevel": "^1.8.0",
"resty-client": "0.0.5",
"ws": "^8.11.0"
}
}