mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-28 03:49:31 +00:00
* chore: update agent GitHub star counts * chore: update agent GitHub star counts * chore: update agent GitHub star counts * chore: update agent GitHub star counts * chore: update agent GitHub star counts * fix(install): force IPv4 DNS for npm installs and add junie binary verify On Sprite VMs (and potentially other clouds with flaky IPv6 routing), npm install of packages with native-binary postinstall scripts (kilocode, junie) fails with i/o timeout when connecting to the npm registry over IPv6. Changes: - Add NODE_OPTIONS=--dns-result-order=ipv4first to NPM_PREFIX_SETUP so all npm installs prefer IPv4, preventing the IPv6 timeout on first attempt - Add cd ~ before postinstall re-run in KILOCODE_BINARY_VERIFY to avoid "current working directory was deleted" errors in bun/node on retry - Add JUNIE_BINARY_VERIFY snippet (analogous to kilocode) that detects and recovers from a failed junie postinstall by re-running it from $HOME - Apply JUNIE_BINARY_VERIFY to the junie install command Fixes sprite kilocode and junie failures seen in E2E run 2026-03-23. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: spawn-qa-bot <qa@openrouter.ai> Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
664 B
JSON
26 lines
664 B
JSON
{
|
|
"name": "@openrouter/spawn",
|
|
"version": "0.25.23",
|
|
"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",
|
|
"@openrouter/spawn-shared": "workspace:*",
|
|
"picocolors": "1.1.1",
|
|
"valibot": "1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.4.3",
|
|
"@types/bun": "1.3.8"
|
|
}
|
|
}
|