-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.68 KB
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
{
"name": "opencode-antigravity-autopilot",
"version": "2.3.0",
"description": "Intelligent quota monitoring and model auto-switching for OpenCode with Antigravity. Plugin-based, zero source modifications required.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"license": "MIT",
"author": "gooseware",
"repository": {
"type": "git",
"url": "git+https://github.com/gooseware/opencode-antigravity-autopilot.git"
},
"homepage": "https://github.com/gooseware/opencode-antigravity-autopilot#readme",
"bugs": {
"url": "https://github.com/gooseware/opencode-antigravity-autopilot/issues"
},
"keywords": [
"opencode",
"antigravity",
"autopilot",
"quota",
"model-rotation",
"orchestration",
"oh-my-opencode",
"gemini",
"claude",
"ai-models"
],
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:quota": "node scripts/test-hard-limit.js",
"service:start": "node scripts/start-quota-service.js",
"prepublishOnly": "npm run build && npm run typecheck"
},
"dependencies": {
"@opencode-ai/plugin": "file:../opencode/packages/plugin",
"axios": "^1.13.2",
"opencode-antigravity-quota": "file:../opencode-antigravity-quota"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.8",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"peerDependencies": {
"opencode-antigravity-auth": "^1.2.8"
}
}