Files
antigravity-claude-proxy/package.json

36 lines
1.1 KiB
JSON

{
"name": "antigravity-claude-proxy",
"version": "1.0.0",
"description": "Proxy server to use Antigravity's Claude models with Claude Code CLI",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"accounts": "node src/accounts-cli.js",
"accounts:add": "node src/accounts-cli.js add",
"accounts:list": "node src/accounts-cli.js list",
"accounts:remove": "node src/accounts-cli.js remove",
"accounts:verify": "node src/accounts-cli.js verify",
"test": "node tests/run-all.cjs",
"test:signatures": "node tests/test-thinking-signatures.cjs",
"test:multiturn": "node tests/test-multiturn-thinking-tools.cjs",
"test:streaming": "node tests/test-multiturn-thinking-tools-streaming.cjs",
"test:interleaved": "node tests/test-interleaved-thinking.cjs",
"test:images": "node tests/test-images.cjs"
},
"keywords": [
"claude",
"anthropic",
"antigravity",
"proxy",
"vertex-ai"
],
"author": "",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2"
}
}