mirror of
https://github.com/OpenRouterTeam/spawn.git
synced 2026-04-28 11:59:29 +00:00
Download favicon/icons for all 8 cloud providers into assets/clouds/: - local.png — OpenRouter apple-touch-icon (6.4K) - hetzner.png — Hetzner 180x180 apple icon (1.9K) - fly.png — Fly.io apple-touch-icon (6.4K) - aws.png — AWS 144x144 touch icon (3.1K) - daytona.png — Daytona favicon from Framer CDN (1.2K) - digitalocean.png — DigitalOcean apple-touch-icon (6.0K) - gcp.png — Google Cloud super_cloud icon (4.2K) - sprite.png — Sprites.dev apple-touch-icon (1.9K) Add assets/clouds/.sources.json tracking canonical source URLs. Add optional `icon` field to CloudDef interface. Update manifest.json with raw.githubusercontent.com icon URLs. Add icon URL type validation test for clouds. Bump CLI version 0.5.13 → 0.5.14. Co-authored-by: lab <6723574+louisgv@users.noreply.github.com> Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
533 B
JSON
22 lines
533 B
JSON
{
|
|
"name": "@openrouter/spawn",
|
|
"version": "0.5.14",
|
|
"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"
|
|
}
|
|
}
|