CI : Deployment
Some checks failed
release / build (push) Failing after 45s
release / verify-windows (push) Has been skipped

This commit is contained in:
jeanotx32
2026-08-11 17:10:08 +02:00
parent b529417940
commit 105d07b82b
16 changed files with 1662 additions and 86 deletions

View File

@@ -9,8 +9,10 @@
},
"scripts": {
"build": "tsc -b",
"bundle": "esbuild src/index.ts --bundle --platform=node --target=node22 --format=cjs --outfile=dist-bundle/agent.cjs --external:bufferutil --external:utf-8-validate --legal-comments=none",
"dev": "npm run build -w @stream-control/shared && node --experimental-strip-types --disable-warning=ExperimentalWarning --watch src/index.ts",
"start": "node dist/index.js"
"start": "node dist/index.js",
"check": "node dist/index.js --check"
},
"dependencies": {
"@stream-control/shared": "*",
@@ -20,6 +22,7 @@
"devDependencies": {
"@types/node": "^22.10.5",
"@types/ws": "^8.5.13",
"esbuild": "^0.28.2",
"typescript": "^5.7.3"
}
}