Committed and Pushed by ButtonClick

This commit is contained in:
ChK
2025-12-22 15:32:40 +01:00
parent 6331504d25
commit 0fd1e5d747
33 changed files with 4205 additions and 1 deletions

20
package.json Executable file
View File

@@ -0,0 +1,20 @@
{
"name": "video-streamer",
"version": "1.1.0",
"description": "HTTPS + WSS dual-camera MJPEG streamer (modular)",
"main": "server.js",
"type": "commonjs",
"scripts": {
"start": "node server.js",
"dev": "PORT=8443 nodemon server.js"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.21.1",
"helmet": "^7.1.0",
"ws": "^8.18.0"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}