Files
dc-recorder/package.json
T

38 lines
1.0 KiB
JSON

{
"name": "discord-voice-recorder",
"version": "1.0.0",
"description": "Discord bot that joins a voice channel and records audio",
"main": "src/index.ts",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"test": "vitest run"
},
"dependencies": {
"@discordjs/opus": "^0.10.0",
"@discordjs/voice": "^0.19.1",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@snazzah/davey": "^0.1.10",
"crc-32": "^1.2.2",
"discord.js-selfbot-v13": "^3.7.1",
"express": "^5.2.1",
"ffmpeg-static": "^5.3.0",
"fluent-ffmpeg": "^2.1.3",
"libsodium-wrappers": "^0.8.2",
"node-crc": "^4.0.0",
"prism-media": "2.0.0-alpha.0",
"sodium-native": "^4.3.2",
"ws": "^8.20.1"
},
"devDependencies": {
"@biomejs/biome": "latest",
"@types/bun": "latest",
"@types/express": "^5.0.6",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/ws": "^8.18.1",
"vitest": "latest"
}
}