forked from Citron1105/lemon-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.12 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
{
"name": "nhentai-discord-bot",
"version": "4.1.0",
"description": "A Discord bot specializes in nhentai, (but it also does other things)",
"main": "/build/src/index.js",
"repository": "https://github.com/the-urban-inc/nhentai-discord-bot",
"author": "t41y0u <[email protected]>",
"license": "AGPL-3.0",
"dependencies": {
"@discordjs/opus": "^0.5.3",
"@discordjs/voice": "^0.5.3",
"@octokit/rest": "^18.6.2",
"axios": "^0.21.1",
"booru": "^2.5.3",
"chalk": "^4.1.1",
"cheerio": "1.0.0-rc.5",
"discord.js": "13.14.0",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"ffmpeg-static": "4.4.0",
"fuse.js": "^6.4.6",
"google-it": "^1.6.2",
"he": "^1.2.0",
"libsodium-wrappers": "^0.7.9",
"moment": "^2.29.1",
"mongoose": "^5.12.14",
"nekos.life": "^2.0.7",
"pdfkit": "^0.12.1",
"qs": "^6.10.1",
"sagiri": "^3.1.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/ffmpeg-static": "^3.0.0",
"@types/he": "^1.1.1",
"@types/node": "^15.12.4",
"@types/pdfkit": "^0.11.2",
"@types/qs": "^6.9.6",
"@types/ws": "^7.4.5",
"@zerollup/ts-transform-paths": "^1.7.18",
"eslint": "^7.29.0",
"rimraf": "^3.0.2",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.10.1",
"ttypescript": "^1.5.12",
"typescript": "4.3.4"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf build/ && ttsc && yarn copy-files",
"copy-files": "cp ./src/web/error.html ./build/src/web",
"lint": "eslint src/**/* --ext .ts",
"start": "node --trace-warnings --trace-deprecation build/src/index.js",
"start:web": "node --trace-warnings --trace-deprecation build/src/web/index.js",
"dev": "ts-node --compiler ttypescript src/index.ts",
"dev:web": "ts-node --compiler ttypescript src/web/index.ts"
},
"engines": {
"node": ">=16.9.0"
}
}