UNPKG

unbound-claude-code

Version:

Claude Code with Unbound integration - Drop-in replacement for Claude Code with multi-provider routing and cost optimization

67 lines (66 loc) 1.74 kB
{ "name": "unbound-claude-code", "version": "0.3.0", "description": "Claude Code with Unbound integration - Drop-in replacement for Claude Code with multi-provider routing and cost optimization", "main": "dist/index.js", "bin": { "unbound-claude-code": "dist/cli.js" }, "scripts": { "build": "tsc && cp src/interceptor-loader.js dist/", "dev": "tsc --watch --preserveWatchOutput", "clean": "rm -rf dist", "typecheck": "tsc --noEmit", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "prepare": "npm run build", "prepublishOnly": "npm run clean && npm run build && npm run typecheck", "postinstall": "node -e \"try { require('keytar'); console.log('✓ keytar available for secure storage'); } catch(e) { console.warn('⚠ keytar not available, using file-based storage fallback. For secure storage, install build tools and run: npm install keytar'); }\"" }, "files": [ "dist/**/*", "README.md", "LICENSE" ], "keywords": [ "claude", "claude-code", "unbound", "ai", "interceptor", "api", "anthropic", "openai", "gpt", "llm", "cli", "cost-optimization", "model-routing", "multi-provider" ], "author": "Unbound <engg@getunbound.ai>", "license": "MIT", "engines": { "node": ">=20.0.0" }, "os": [ "darwin", "linux", "win32" ], "devDependencies": { "@types/jest": "^30.0.0", "@types/node": "^20.0.0", "electron-rebuild": "^3.2.9", "jest": "^30.0.2", "ts-jest": "^29.4.0", "typescript": "^5.0.0" }, "dependencies": { "@anthropic-ai/claude-code": ">=0.1.0" }, "optionalDependencies": { "keytar": "^7.9.0" } }