first attempt at code mostly working

This commit is contained in:
2025-12-12 21:30:26 -08:00
parent 7bc01a3828
commit a840e9385d
32 changed files with 2160 additions and 0 deletions

19
bot/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "discord-music-bot",
"version": "1.0.0",
"description": "Discord bot for playing local MP3 files",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.18.0",
"discord.js": "^14.16.3",
"express": "^4.21.2",
"sodium-native": "^4.3.1",
"winston": "^3.17.0"
}
}