-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "qq-bot",
"version": "0.1.0",
"description": "A qq bot plugin for myself.",
"main": "index.js",
"repository": "[email protected]:lnkkerst/qq-bot",
"author": "lnkkerst <[email protected]>",
"license": "AGPL-3.0",
"private": true,
"scripts": {
"eslint": "eslint src --ext .ts",
"start": "ts-node src/bot/main.ts",
"dev": "ts-node src/bot/main.ts"
},
"devDependencies": {
"@eslint/create-config": "^0.1.2",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.179",
"@types/node": "^17.0.21",
"@types/ws": "^8.5.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"eslint": "^8.10.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-vue": "^8.5.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5",
"typescript-eslint": "^0.0.1-alpha.0"
},
"dependencies": {
"axios": "^0.26.0",
"dotenv": "^16.0.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mirai-ts": "^2.2.1",
"typescript-collections": "^1.3.3",
"ws": "^8.5.0"
}
}