mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-30 04:49:33 +00:00
- Remove vitest and @vitest/ui from devDependencies - Update test scripts to use 'bun test' - Delete vitest.config.ts (no longer needed) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
22 lines
516 B
JSON
22 lines
516 B
JSON
{
|
|
"name": "@openrouter/spawn",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"bin": {
|
|
"spawn": "cli.js"
|
|
},
|
|
"scripts": {
|
|
"dev": "bun run src/index.ts",
|
|
"build": "bun build src/index.ts --outfile cli.js --target node --minify",
|
|
"compile": "bun build src/index.ts --compile --outfile spawn",
|
|
"test": "bun test",
|
|
"test:watch": "bun test --watch"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^0.10.0",
|
|
"picocolors": "^1.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.2.0"
|
|
}
|
|
}
|