-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.18 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
{
"dependencies": {
"@discordjs/voice": "^0.17.0",
"@distube/ytdl-core": "^4.13.3",
"@distube/ytpl": "^1.2.1",
"@oceanicjs/builders": "^1.1.11",
"better-sqlite3": "^11.7.2",
"express": "^4.18.2",
"humanize-duration": "^3.31.0",
"js-base64": "^3.7.6",
"knex": "^3.1.0",
"libsodium-wrappers": "^0.7.13",
"lzwcompress": "^1.1.0",
"ms": "^2.1.3",
"oceanic.js": "^1.11.2",
"opusscript": "^0.1.1",
"play-dl": "file:./play-dl",
"randomstring": "^1.3.0"
},
"type": "module",
"scripts": {
"build": "npm run build_bot && npm run build_base_addons",
"build_base": "npm run build_bot && npm run build_base_addons",
"build_bot": "rm -r dist && tsc && cd dist/commands && rm *.d.ts",
"build_base_addons": "cd addons/base && tsc",
"run_debug": "echo > enableDebugging && node dist/bot",
"setup-npm": "npm i && cd play-dl && npm i",
"setup-pnpm": "pnpm i && cd play-dl && pnpm i"
},
"devDependencies": {
"@types/base-64": "^1.0.2",
"@types/express": "^4.17.21",
"@types/humanize-duration": "^3.27.4",
"@types/ms": "^0.7.34",
"@types/node": "^22.10.5",
"@types/randomstring": "^1.1.11"
}
}