-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "keqing-bot",
"version": "0.1.2",
"description": "A simple qqbot",
"repository": {
"url": "https://github.com/yzqdev/keqing-bot.git"
},
"license": "GPL",
"type": "module",
"author": "yzqdev",
"main": "bin/cli.mjs",
"files": [
"dist",
"files"
],
"scripts": {
"back": "tsup&&pm2 restart bot.json",
"build": "tsup",
"unbuild": "unbuild",
"dev": "esno src/index.ts",
"devbuild": "tsup --config tsup.dev.ts",
"lint": "prettier --write src/**/*.{ts,js} files/**/*.{html,ts,js,json}",
"start": "node bin/cli.mjs",
"start:build": "tsup&&node bin/cli.mjs",
"stop": "pm2 stop bot.json"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"cheerio": "1.0.0-rc.12",
"cli-table3": "^0.6.5",
"cron": "^3.1.7",
"got": "^14.3.0",
"icqq": "^0.6.6",
"lowdb": "^7.0.1",
"picocolors": "^1.0.1",
"pm2": "^5.4.0",
"puppeteer": "^22.10.0",
"timeago.js": "^4.0.2",
"winston": "^3.13.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/better-sqlite3": "^7.6.10",
"@types/node": "^20.14.0",
"@types/node-cron": "^3.0.11",
"esno": "^4.7.0",
"prettier": "^3.3.0",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"unbuild": "^2.0.0"
}
}