This commit is contained in:
jeanotx32
2026-08-11 00:26:56 +02:00
commit 6f11b72cbb
43 changed files with 7175 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{
"name": "@stream-control/server",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -b",
"dev": "node --experimental-strip-types --disable-warning=ExperimentalWarning --watch src/index.ts",
"start": "node --disable-warning=ExperimentalWarning dist/index.js"
},
"dependencies": {
"@stream-control/shared": "*",
"dotenv": "^16.4.7",
"express": "^5.0.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"@types/ws": "^8.5.13",
"typescript": "^5.7.3"
}
}