jukebox-vibe/server/package.json
Claude Code 761032a280 v2.0.0 🚀
Highlights:
- Node 24 LTS Runtime (npm 11)
- Static ffmpeg Binary (Image -45%, 892MB -> 493MB)
- In-Memory PCM Cache (instant Sound-Playback nach erstem Abspielen)
- InlineVolume Bypass bei Volume 1.0
- sodium-native v5, Express v5, @discordjs/voice 0.19 (DAVE E2EE)
- Alle Dependencies auf aktuellem Stand
2026-03-05 16:04:15 +01:00

33 lines
803 B
JSON

{
"name": "discord-soundboard-server",
"version": "2.0.0",
"private": true,
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js"
},
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@snazzah/davey": "^0.1.10",
"@discordjs/voice": "^0.19.0",
"cors": "^2.8.5",
"discord.js": "^14.25.1",
"express": "^5.2.1",
"libsodium-wrappers": "^0.8.2",
"multer": "^2.0.0",
"sodium-native": "^5.0.10",
"tweetnacl": "^1.0.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.6",
"@types/multer": "^2.0.0",
"@types/node": "^24.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}