generated from ElpsyCN/el-bot-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
{
"name": "el-bot-template",
"version": "0.0.2",
"description": "el-bot 的快速启动模版",
"private": true,
"main": "bot/index.ts",
"mirai": {
"folder": "mirai"
},
"scripts": {
"bot": "nodemon --exec el bot",
"dev": "nodemon --exec el bot",
"mirai": "cd mirai && java -jar mirai-console-wrapper-1.3.0.jar --update KEEP",
"start": "el start",
"start:bot": "el start bot",
"start:mirai": "el start mirai",
"install:mirai": "el install mirai",
"lint": "eslint --fix . && prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ElpsyCN/el-bot-template.git"
},
"author": {
"name": "YunYouJun",
"email": "[email protected]",
"url": "https://www.yunyoujun.cn"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ElpsyCN/el-bot-template/issues"
},
"homepage": "https://github.com/ElpsyCN/el-bot-template#readme",
"dependencies": {
"el-bot": "^0.5.19"
},
"devDependencies": {
"dotenv": "^8.2.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.14.0",
"nodemon": "^2.0.6",
"prettier": "^2.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}