forked from Arondight/Adachi-BOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.96 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
{
"name": "Adachi-BOT",
"app_name": "Adachi-BOT",
"version": "1.5.0",
"app_version": "1.5.0",
"description": "腾讯 QQ 中的原神机器人",
"repository": "https://github.com/Arondight/Adachi-BOT.git",
"homepage": "https://github.com/Arondight/Adachi-BOT",
"bugs": "https://github.com/Arondight/Adachi-BOT/issues",
"author": "Qin Fandong",
"license": "MIT",
"type": "module",
"exports": "./app.js",
"keywords": [
"bot",
"qq",
"genshin",
"genshin-impact"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"test": "echo 'No test specified' && exit 0",
"format": "npx prettier --config ./.prettierrc.json -uw ./app.js ./src/",
"check": "npx eslint ./app.js ./src/",
"init": "npx node ./app.js",
"start": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 start ./app.js --name bot; npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 save",
"restart": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 restart bot",
"stop": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 stop bot",
"startup": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 startup",
"unstartup": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 unstartup",
"list": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 list bot",
"log": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 log --lines 100 bot"
},
"dependencies": {
"async-mutex": "0.3.2",
"cross-env": "7.0.3",
"express": "4.17.1",
"js-yaml": "4.1.0",
"lodash": "4.17.21",
"lowdb": "3.0.0",
"md5": "2.3.0",
"moment": "2.29.1",
"moment-timezone": "0.5.33",
"node-fetch": "3.0.0",
"node-schedule": "2.0.0",
"oicq": "1.21.2",
"pm2": "5.1.2",
"pretty-bytes": "5.6.0",
"puppeteer": "10.4.0",
"random-float": "3.0.0",
"systeminformation": "5.9.9"
},
"devDependencies": {
"eslint": "8.1.0",
"eslint-plugin-vue": "8.0.3",
"prettier": "2.4.1"
}
}