mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-05-02 22:00:19 +00:00
- Add interactive confirmation prompt before clearing spawn history (spawn list --clear) to prevent accidental data loss - Show total prompt length in dry-run preview when prompt exceeds 100 characters, so users can verify the correct prompt was loaded - Add "Rerun previous" suggestion to non-interactive terminal fallback - Show "(shown first)" hint when clouds with credentials are detected in interactive picker, so users understand the sort order - Add repository URL to spawn version output for discoverability Agent: ux-engineer Co-authored-by: A <6723574+louisgv@users.noreply.github.com>
22 lines
533 B
JSON
22 lines
533 B
JSON
{
|
|
"name": "@openrouter/spawn",
|
|
"version": "0.2.74",
|
|
"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",
|
|
"test": "bun test",
|
|
"test:watch": "bun test --watch"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^1.0.0",
|
|
"picocolors": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.8"
|
|
}
|
|
}
|