This repository has been archived by the owner on Aug 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
97 lines (97 loc) · 3.71 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "adachi-bot",
"version": "1.5.4",
"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": ">16.6.0"
},
"imports": {
"#bot/*": "./src/bot/*.js",
"#jobs/*": "./src/jobs/*.js",
"#plugins/*": "./src/plugins/*.js",
"#utils/*": "./src/utils/*.js",
"#views/*": "./src/views/*.js"
},
"scripts": {
"init": "node --pending-deprecation --trace-warnings --max-http-header-size=2097152 ./app.js",
"start": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 start ./.pm2.json && 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 ./.pm2.json",
"stop": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 stop ./.pm2.json",
"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",
"log": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 log --lines 200 bot",
"list": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 list bot",
"info": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 info bot",
"monit": "npx cross-env-shell PM2_HOME=$INIT_CWD/bot.pm2/ pm2 monit bot",
"code-check": "npx eslint --config ./.eslintrc.json ./.github/ ./*.js ./src/ ./tools/ ./config_defaults/ ./resources/",
"code-format": "npx prettier --config ./.prettierrc.json -uw ./*.js ./*.md ./.*.json ./*.json ./src/ ./tools/ ./docs/ ./resources/",
"tool-db": "node ./tools/db.js",
"tool-material": "node ./tools/material.js",
"tool-resize": "node ./tools/resize.js",
"tool-resources": "node ./tools/resources.js",
"tool-status": "node ./tools/status.js",
"tool-view": "node ./tools/view.js",
"tool-webp": "node ./tools/webp.js",
"install-dev": "npm run install-prod && npx cross-env-shell npm_config_sharp_binary_host='https://npmmirror.com/mirrors/sharp' npm_config_sharp_libvips_binary_host='https://npmmirror.com/mirrors/sharp-libvips' npm install --include dev",
"install-prod": "npm install --omit dev",
"update": "git pull && npm run install-prod",
"update-modules": "npx ncu -u && npm update"
},
"dependencies": {
"cross-env": "7.0.3",
"express": "4.18.2",
"fastest-levenshtein": "1.0.16",
"figlet": "1.6.0",
"fnv-plus": "1.3.1",
"iconv-lite": "0.6.3",
"icqq": "0.5.0",
"js-yaml": "4.1.0",
"kind-of": "6.0.3",
"lodash": "4.17.21",
"lowdb": "6.0.1",
"md5": "2.3.0",
"moment": "2.29.4",
"moment-timezone": "0.5.43",
"node-fetch": "3.3.2",
"node-schedule": "2.1.1",
"p-limit": "4.0.0",
"patch-package": "8.0.0",
"pm2": "5.3.0",
"pretty-bytes": "6.1.1",
"process": "0.11.10",
"puppeteer": "21.0.3",
"random-float": "3.0.0",
"semver": "7.5.4",
"systeminformation": "5.18.15",
"yargs": "17.7.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.2.0",
"eslint": "8.47.0",
"eslint-plugin-check-json-value": "2.1.2",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-sort-exports": "0.8.0",
"eslint-plugin-vue": "9.17.0",
"eslint-plugin-yml": "1.8.0",
"npm-check-updates": "16.11.1",
"postcss": "^8.4.27",
"prettier": "3.0.1",
"prettier-plugin-css-order": "^2.0.0",
"sharp": "0.32.4"
}
}