This repository was archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
54 lines (54 loc) · 1.68 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
{
"name": "cadence-discord-bot",
"version": "6.0.0",
"description": "A free Discord music and audio bot.",
"repository": {
"type": "git",
"url": "https://github.com/mariusbegby/cadence-discord-bot"
},
"bugs": {
"url": "https://github.com/mariusbegby/cadence-discord-bot/issues"
},
"homepage": "https://github.com/mariusbegby/cadence-discord-bot#readme",
"author": {
"name": "Marius Begby",
"url": "https://github.com/mariusbegby"
},
"publisher": "mariusbegby",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"start": "node .",
"deploy": "node ./dist/startup/deploySlashCommands.js",
"lint": "biome lint --write",
"format": "biome format --write",
"prebuild": "pnpm run toc",
"build": "tsc",
"restart": "pnpm build && pnpm start",
"toc": "i18next-resources-for-ts interface -i ./locales/en -o ./locales/resources.d.ts"
},
"dependencies": {
"@discord-player/extractor": "^4.5.1",
"config": "^3.3.12",
"discord-player": "^6.7.1",
"discord-player-youtubei": "1.3.1",
"discord.js": "^14.16.1",
"dotenv": "^16.4.5",
"i18next": "^23.14.0",
"i18next-fs-backend": "^2.3.2",
"mediaplex": "^0.0.9",
"node-os-utils": "^1.3.7",
"pino": "^9.4.0",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/config": "^3.3.4",
"@types/node": "^22.5.2",
"@types/node-os-utils": "^1.3.4",
"i18next-resources-for-ts": "^1.5.0",
"typescript": "^5.5.4"
},
"optionalDependencies": {
"pino-pretty": "^11.2.2"
}
}