anyclaude/package.json
Thomas Kosiewski 56dc6d5fdb
Add repository guidelines and update AI SDK to v2
Change-Id: Ib00b7ee5f39911b58a15674bc50700267018cdbc
Signed-off-by: Thomas Kosiewski <tk@coder.com>
2025-08-08 14:51:19 +00:00

36 lines
1.1 KiB
JSON

{
"name": "anyclaude",
"version": "1.0.5",
"author": {
"name": "coder",
"email": "support@coder.com",
"url": "https://coder.com"
},
"repository": {
"type": "git",
"url": "https://github.com/coder/anyclaude"
},
"bin": {
"anyclaude": "./dist/main.js"
},
"devDependencies": {
"@ai-sdk/anthropic": "^2.0.1",
"@ai-sdk/azure": "^2.0.6",
"@ai-sdk/google": "^2.0.3",
"@ai-sdk/openai": "^2.0.6",
"@ai-sdk/xai": "^2.0.3",
"@types/bun": "latest",
"@types/json-schema": "^7.0.15",
"ai": "^5.0.8",
"json-schema": "^0.4.0",
"zod": "3.25.76"
},
"peerDependencies": {
"typescript": "^5"
},
"description": "Run Claude Code with OpenAI, Google, xAI, and others.",
"license": "MIT",
"scripts": {
"build": "bun build --target node --outfile dist/main.js ./src/main.ts --format cjs --external ai --external @ai-sdk/* --external zod && node -e \"const fs=require('fs');const p='dist/main.js';fs.writeFileSync(p,'#!/usr/bin/env node\\n'+fs.readFileSync(p,'utf8'))\" && chmod +x dist/main.js"
}
}