-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
96 lines (96 loc) · 2.91 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "discord-music-bot",
"version": "4.3.10",
"description": "Simple Music Bot for Discord without any database",
"private": true,
"engines": {
"node": ">=16.5.0"
},
"scripts": {
"test": "mocha",
"start": "npm run build && npm run onlystart",
"onlystart": "node util/exec dist",
"build": "node builder.mjs bake && tsc -p util/tsconfig/tsconfig.build.json",
"build:bundled": "node builder.mjs bake && tsc -p util/tsconfig/tsconfig.bundle.json && node builder.mjs bundle",
"prelint": "node builder.mjs bake",
"lint": "tsc && eslint .",
"cleanup": "rimraf dist/ typings/ build/ out/ src/Commands/_index.ts",
"generatecommandlist": "node util/generateCommandList"
},
"dependencies": {
"@discordjs/voice": "^0.17.0",
"@distube/ytdl-core": "^4.15.1",
"@mtripg6666tdr/async-lock": "^1.1.0",
"@mtripg6666tdr/oceanic-command-resolver": "~1.4.2",
"@sinclair/typebox": "^0.34.0",
"candyget": "^0.5.6",
"comment-json": "^4.2.5",
"dotenv": "^16.4.5",
"genius-lyrics": "^4.4.6",
"html-entities": "^2.5.2",
"html-to-text": "^9.0.5",
"https-proxy-agent": "^7.0.5",
"i18next": "^23.16.5",
"i18next-fs-backend": "^2.3.2",
"log4js": "^6.9.1",
"miniget": "^4.2.3",
"node-html-parser": "^6.1.13",
"oceanic.js": "~1.11.2",
"p-event": "^4.2.0",
"p-queue": "^6.6.2",
"prism-media": "^1.3.5",
"safe-traverse": "^0.2.1",
"soundcloud.ts": "^0.5.2",
"spotify-url-info": "^3.2.18",
"throttle-debounce": "^5.0.2",
"tslib": "^2.8.1",
"undici": "^5.28.4",
"yt-mix-playlist": "^1.0.1",
"ytdl-core": "^4.11.5",
"ytpl": "^2.3.0",
"ytsr": "^3.8.4"
},
"devDependencies": {
"@mtripg6666tdr/eslint-config": "^3.0.19",
"@swc/core": "^1.9.2",
"@tsconfig/node16": "^16.1.3",
"@types/html-to-text": "^9.0.4",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.1",
"@types/throttle-debounce": "^5.0.2",
"@types/ws": "^8.5.13",
"esbuild": "^0.24.0",
"eslint": "^8.57.0",
"eslint-plugin-license-header": "^0.6.1",
"mocha": "^10.8.2",
"rimraf": "^5.0.10",
"typescript": "^5.6.3"
},
"optionalDependencies": {
"@discordjs/opus": "^0.9.0",
"@distube/ytpl": "^1.2.1",
"@distube/ytsr": "^2.0.4",
"erlpack": "^0.1.4",
"ffmpeg-static": "^5.2.0",
"libsodium-wrappers": "^0.7.15",
"mongodb": "^6.10.0",
"opusscript": "^0.0.8",
"pako": "^2.1.0",
"play-dl": "^1.9.7",
"sodium": "^3.0.2",
"sodium-native": "^3.4.1",
"tweetnacl": "^1.0.3",
"zlib-sync": "^0.1.9"
},
"keywords": [],
"author": "mtripg6666tdr",
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/mtripg6666tdr/Discord-SimpleMusicBot.git"
},
"bugs": {
"url": "https://github.com/mtripg6666tdr/Discord-SimpleMusicBot/issues"
},
"readme": "https://github.com/mtripg6666tdr/Discord-SimpleMusicBot#readme"
}