feat: init vlc-sender

This commit is contained in:
Vadim Sobinin
2026-02-06 16:53:11 +03:00
commit e3f95c53d7
11 changed files with 1524 additions and 0 deletions

20
package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "vlc-sender",
"version": "1.0.0",
"description": "Web UI for sending media files to VLC via WiFi Upload API",
"main": "dist/index.js",
"scripts": {
"build": "tsc && cp -r src/public dist/public",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts"
},
"dependencies": {
"express": "^4.21.2",
"form-data": "^4.0.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.13.1",
"typescript": "^5.7.3"
}
}