spawn/packages/cli/package.json
Audrey Sage Lorberfeld 84e5ef4883
fix(cursor-proxy): macOS local cursor CLI compatibility (#3422)
- Detect OS/arch at runtime for cross-platform Caddy installation
- Install Caddy to ~/.local/bin (user-writable on all platforms)
- Fix /etc/hosts configuration to work on both macOS and Linux
- Replace setsid (Linux-only) with nohup (POSIX)
- Ensure ~/.local/bin is in PATH for Caddy commands
- Add comprehensive comments explaining platform-specific choices

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-21 03:04:35 +00:00

27 lines
696 B
JSON

{
"name": "@openrouter/spawn",
"version": "1.0.46",
"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",
"@daytonaio/sdk": "0.160.0",
"@openrouter/spawn-shared": "workspace:*",
"picocolors": "1.1.1",
"valibot": "1.2.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.3",
"@types/bun": "1.3.8"
}
}