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
|
{
"name": "music-bot",
"version": "1.0.0",
"description": "Personal Discord music bot — streams YouTube audio to voice channels",
"main": "dist/index.js",
"type": "commonjs",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsup",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit",
"deploy-commands": "ts-node src/deploy-commands.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@discord-player/extractor": "^7.2.0",
"@discordjs/voice": "^0.19.2",
"discord-player": "^7.2.0",
"discord-player-youtubei": "^2.0.0",
"discord.js": "^14.26.0",
"dotenv": "^17.3.1",
"mediaplex": "^1.0.0",
"sodium-native": "^5.1.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}
|