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
api/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "music-bot-api",
"version": "1.0.0",
"description": "API server for Discord music bot",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js"
},
"dependencies": {
"express": "^4.21.2",
"cors": "^2.8.5",
"multer": "^1.4.5-lts.1",
"music-metadata": "^10.5.0",
"ws": "^8.18.0",
"winston": "^3.17.0"
}
}