mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-01 21:30:21 +00:00
* fix: address 4 reliability issues across codebase 1. sprite.ts: add --force to destroy command (stdin is "ignore" so interactive prompts would hang until 60s timeout) 2. verify.sh: replace /dev/tcp port checks with ss -tln primary (Debian/Ubuntu bash compiled without /dev/tcp support) 3. verify.sh: make _openclaw_restart_gateway a hard failure instead of log_warn (matching _openclaw_ensure_gateway behavior) 4. agent-setup.ts: add ss -tln port check + "already running" early exit + increase timeout from 120s to 300s (gateway takes ~3min to initialize on AWS medium instances) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: biome format - use consistent double quotes in portCheck Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com> Co-authored-by: L <6723574+louisgv@users.noreply.github.com>
25 lines
616 B
JSON
25 lines
616 B
JSON
{
|
|
"name": "@openrouter/spawn",
|
|
"version": "0.12.7",
|
|
"type": "module",
|
|
"bin": {
|
|
"spawn": "cli.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "bun run src/index.ts",
|
|
"build": "bun build src/index.ts --outfile cli.js --target bun --minify --packages bundle",
|
|
"compile": "bun build src/index.ts --compile --outfile spawn",
|
|
"lint": "biome lint src/",
|
|
"test": "bun test",
|
|
"test:watch": "bun test --watch"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "1.0.0",
|
|
"picocolors": "1.1.1",
|
|
"valibot": "1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.4.3",
|
|
"@types/bun": "1.3.8"
|
|
}
|
|
}
|