anyclaude/package.json
Thomas Kosiewski 46362efe73
Add Nix development environment and Claude guidance file
Change-Id: I4b3e2f0020409ee3f8b9e75633c901de94bd78d7
Signed-off-by: Thomas Kosiewski <tk@coder.com>
2025-08-08 15:10:26 +02:00

35 lines
919 B
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": "^1.2.12",
"@ai-sdk/azure": "^1.3.23",
"@ai-sdk/google": "^1.2.18",
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/xai": "^1.2.16",
"@types/bun": "latest",
"@types/json-schema": "^7.0.15",
"ai": "^4.3.16",
"json-schema": "^0.4.0"
},
"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 && sed -i '0,/^/s//#!\\/usr\\/bin\\/env node\\n/' ./dist/main.js"
}
}