-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "music-bot",
"version": "3.4.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.17.0",
"@joehoel/lyric-finder": "^1.0.2",
"array-move": "^4.0.0",
"bufferutil": "^4.0.8",
"chalk": "^5.3.0",
"discord.js": "^14.16.2",
"dotenv": "^16.4.5",
"ffmpeg-static": "^5.2.0",
"opusscript": "^0.1.1",
"play-dl": "^1.9.7",
"sodium-native": "^4.2.0",
"string-progressbar": "^1.0.4",
"utf-8-validate": "^6.0.4"
},
"devDependencies": {
"@types/node": "^20.16.5",
"esbuild": "^0.23.1",
"typescript": "^5.6.2"
},
"scripts": {
"start": "node ./dist/bundle.js",
"dev": "node build.mjs --run",
"lint": "eslint . --fix",
"build": "node build.mjs"
},
"license": "GPL-3.0"
}