initial commit

This commit is contained in:
2025-02-15 00:37:32 -08:00
commit 91bc10c395
5 changed files with 398 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "mpvqueue",
"version": "1.0.0",
"main": "build/server.js",
"scripts": {
"build": "tsc",
"start": "tsc && node build/server.js"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/express": "^5.0.0",
"@types/express-ws": "^3.0.5",
"@types/node": "^22.13.4",
"@types/ws": "^8.5.14",
"typescript": "^5.7.3"
},
"dependencies": {
"express": "^4.21.2",
"express-ws": "^5.0.2",
"ws": "^8.18.0"
}
}