mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-28 03:49:31 +00:00
Tests for getScriptFailureGuidance were failing when cloud credential env vars (HCLOUD_TOKEN, DO_API_TOKEN) were set in the environment. The tests expected these vars to appear as "missing" in the output, but only unset OPENROUTER_API_KEY. Now both the cloud-specific var and OPENROUTER_API_KEY are saved/unset before each test. Bump CLI version to 0.15.11. Co-authored-by: spawn-qa-bot <qa@openrouter.ai>
25 lines
617 B
JSON
25 lines
617 B
JSON
{
|
|
"name": "@openrouter/spawn",
|
|
"version": "0.15.11",
|
|
"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"
|
|
}
|
|
}
|