claudish/package.json

65 lines
1.9 KiB
JSON
Raw Normal View History

{
"name": "claudish",
"version": "2.7.0",
"description": "Run Claude Code with any OpenRouter model - CLI tool and MCP server",
"type": "module",
"main": "./dist/index.js",
"bin": {
"claudish": "dist/index.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"dev:mcp": "bun run src/index.ts --mcp",
"dev:grok": "bun run src/index.ts --interactive --model x-ai/grok-code-fast-1",
"dev:grok:debug": "bun run src/index.ts --interactive --debug --log-level info --model x-ai/grok-code-fast-1",
"dev:info": "bun run src/index.ts --interactive --monitor",
"extract-models": "bun run scripts/extract-models.ts",
"build": "bun run extract-models && bun build src/index.ts --outdir dist --target node && chmod +x dist/index.js",
"link": "npm link",
"unlink": "npm unlink -g claudish",
"install-global": "bun run build && npm link",
"kill-all": "pkill -f 'bun.*claudish' || pkill -f 'claude.*claudish-settings' || echo 'No claudish processes found'",
"test": "bun test ./tests/comprehensive-model-test.ts",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format --write .",
"postinstall": "node scripts/postinstall.cjs"
},
"dependencies": {
"@hono/node-server": "^1.19.6",
"@modelcontextprotocol/sdk": "^1.22.0",
"dotenv": "^17.2.3",
"hono": "^4.10.6",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"typescript": "^5.9.3"
},
"files": [
"dist/",
"scripts/",
"skills/",
"AI_AGENT_GUIDE.md",
"recommended-models.json"
],
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"preferGlobal": true,
"keywords": [
"claude",
"claude-code",
"openrouter",
"proxy",
"cli",
"mcp",
"model-context-protocol",
"ai"
],
"author": "Jack Rudenko <i@madappgang.com>",
"license": "MIT"
}