-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
48 lines (48 loc) · 1.25 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
{
"name": "music-bot",
"version": "3.5.0",
"description": "A general music Discord bot.",
"main": "./src/bot.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/nikosszzz/musicbot.git"
},
"author": "nikosszzz <[email protected]>",
"bugs": {
"url": "https://github.com/nikosszzz/musicbot/issues"
},
"homepage": "https://github.com/nikosszzz/musicbot#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@discordjs/voice": "^0.18.0",
"@discordjs/opus": "^0.9.0",
"@dotenvx/dotenvx": "^1.31.0",
"@joehoel/lyric-finder": "^1.0.2",
"array-move": "^4.0.0",
"bufferutil": "^4.0.9",
"discord.js": "^14.17.3",
"ffmpeg-static": "^5.2.0",
"play-dl": "^1.9.7",
"string-progressbar": "^1.0.4",
"yoctocolors": "^2.1.1",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@types/node": "^22.10.2",
"esbuild": "^0.24.0",
"typescript": "^5.7.2"
},
"scripts": {
"start": "node ./dist/bundle.js",
"dev": "node build.mjs --run",
"lint": "eslint . --fix",
"build": "node build.mjs"
},
"pnpm": {
"onlyBuiltDependencies": ["@discordjs/opus", "ffmpeg-static", "zlib-sync", "bufferutil", "esbuild"]
},
"license": "GPL-3.0"
}