File size: 2,653 Bytes
d613519
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
  "name": "antigravity-claude-proxy",
  "version": "2.7.7",
  "description": "Proxy server to use Antigravity's Claude models with Claude Code CLI",
  "main": "src/index.js",
  "type": "module",
  "bin": {
    "antigravity-claude-proxy": "bin/cli.js",
    "acc": "bin/cli.js"
  },
  "files": [
    "src",
    "bin",
    "public"
  ],
  "scripts": {
    "build:css": "tailwindcss -i ./public/css/src/input.css -o ./public/css/style.css --minify",
    "watch:css": "tailwindcss -i ./public/css/src/input.css -o ./public/css/style.css --watch",
    "prepare": "npm run build:css",
    "start": "node src/index.js",
    "dev": "node --watch src/index.js",
    "dev:full": "concurrently \"npm run watch:css\" \"npm run dev\"",
    "accounts": "node src/cli/accounts.js",
    "accounts:add": "node src/cli/accounts.js add",
    "accounts:list": "node src/cli/accounts.js list",
    "accounts:remove": "node src/cli/accounts.js remove",
    "accounts:verify": "node src/cli/accounts.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",
    "test:caching": "node tests/test-caching-streaming.cjs",
    "test:crossmodel": "node tests/test-cross-model-thinking.cjs",
    "test:oauth": "node tests/test-oauth-no-browser.cjs",
    "test:emptyretry": "node tests/test-empty-response-retry.cjs",
    "test:sanitizer": "node tests/test-schema-sanitizer.cjs",
    "test:strategies": "node tests/test-strategies.cjs",
    "test:cache-control": "node tests/test-cache-control.cjs"
  },
  "keywords": [
    "claude",
    "anthropic",
    "antigravity",
    "proxy",
    "vertex-ai"
  ],
  "author": "Badri Narayanan",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/badri-s2001/antigravity-claude-proxy.git"
  },
  "homepage": "https://github.com/badri-s2001/antigravity-claude-proxy#readme",
  "bugs": {
    "url": "https://github.com/badri-s2001/antigravity-claude-proxy/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "async-mutex": "^0.5.0",
    "better-sqlite3": "^12.5.0",
    "cors": "^2.8.5",
    "express": "^4.18.2",
    "undici": "^7.20.0"
  },
  "devDependencies": {
    "@tailwindcss/forms": "^0.5.7",
    "autoprefixer": "^10.4.16",
    "concurrently": "^8.2.2",
    "daisyui": "^4.12.14",
    "postcss": "^8.4.32",
    "tailwindcss": "^3.4.0"
  }
}