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,25 @@
{
"name": "@stream-control/agent",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "./dist/index.js",
"bin": {
"stream-control-agent": "./dist/index.js"
},
"scripts": {
"build": "tsc -b",
"dev": "npm run build -w @stream-control/shared && node --experimental-strip-types --disable-warning=ExperimentalWarning --watch src/index.ts",
"start": "node dist/index.js"
},
"dependencies": {
"@stream-control/shared": "*",
"obs-websocket-js": "^5.0.6",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/ws": "^8.5.13",
"typescript": "^5.7.3"
}
}