-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
41 lines (41 loc) · 963 Bytes
/
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
{
"name": "hoyolab-auto",
"module": "index.js",
"type": "commonjs",
"scripts": {
"start": "node index.js",
"watch": "nodemon index.js",
"migrate": "node convert.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"setup:windows": "start setup/config/index.html",
"setup:linux": "xdg-open setup/config/index.html"
},
"engines": {
"node": ">=20.0"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@types/bun": "latest",
"eslint": "8.56.0",
"eslint-plugin-unicorn": "^43.0.2"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"author": "torikushiii",
"license": "AGPL-3.0",
"main": "index.js",
"dependencies": {
"chalk": "4.1.0",
"cheerio": "^1.0.0-rc.12",
"cron": "3.1.6",
"discord.js": "14.14.1",
"got": "14.2.1",
"json5": "^2.2.3",
"keyv": "^4.5.4",
"keyv-file": "^0.3.1",
"winston": "3.13.0"
}
}