-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
231 lines (231 loc) · 6.6 KB
/
package.json
File metadata and controls
231 lines (231 loc) · 6.6 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
{
"name": "antigravity-sync",
"displayName": "Antigravity Auto Retry/Sync",
"description": "Auto-sync AI context + Auto-accept/retry for AI coding agents. Zero-babysitting automation.",
"version": "0.3.3",
"publisher": "mrd9999",
"author": "Dung Le <https://www.facebook.com/mrd.900s>",
"icon": "resources/icons/icon.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mrd9999/antigravity-sync"
},
"bugs": {
"url": "https://github.com/mrd9999/antigravity-sync/issues"
},
"homepage": "https://github.com/mrd9999/antigravity-sync#readme",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"keywords": [
"antigravity sync",
"antigravity auto retry",
"antigravity auto retry",
"auto retry",
"auto retry",
"cursor auto retry",
"vscode auto retry",
"ai agent automation",
"zero babysitting",
"cdp automation"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "antigravitySync.configure",
"title": "Antigravity Sync: Configure Repository",
"icon": "$(gear)"
},
{
"command": "antigravitySync.syncNow",
"title": "Antigravity Sync: Sync Now",
"icon": "$(sync)"
},
{
"command": "antigravitySync.push",
"title": "Antigravity Sync: Push Changes",
"icon": "$(cloud-upload)"
},
{
"command": "antigravitySync.pull",
"title": "Antigravity Sync: Pull Changes",
"icon": "$(cloud-download)"
},
{
"command": "antigravitySync.showStatus",
"title": "Antigravity Sync: Show Status",
"icon": "$(info)"
},
{
"command": "antigravitySync.openPanel",
"title": "Antigravity Sync: Open Panel",
"icon": "$(window)"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "antigravity-sync",
"title": "Antigravity Sync",
"icon": "resources/icons/sidebar.svg"
}
]
},
"views": {
"antigravity-sync": [
{
"type": "webview",
"id": "antigravitySync.mainPanel",
"name": "Sync Dashboard"
}
]
},
"configuration": {
"title": "Antigravity Sync",
"properties": {
"antigravitySync.repositoryUrl": {
"type": "string",
"default": "",
"description": "GitHub repository URL for syncing (must be private)"
},
"antigravitySync.enabled": {
"type": "boolean",
"default": true,
"description": "Enable or disable Antigravity Sync completely"
},
"antigravitySync.autoSync": {
"type": "boolean",
"default": true,
"description": "Automatically sync changes when files change"
},
"antigravitySync.syncIntervalMinutes": {
"type": "number",
"default": 5,
"minimum": 1,
"maximum": 60,
"description": "Auto-sync interval in minutes"
},
"antigravitySync.excludePatterns": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Additional patterns to exclude from sync"
},
"antigravitySync.geminiPath": {
"type": "string",
"default": "",
"description": "Custom path to .gemini folder (default: ~/.gemini)"
},
"antigravitySync.syncFolders": {
"type": "array",
"default": [
"knowledge",
"antigravity"
],
"items": {
"type": "string"
},
"description": "Folders to sync within .gemini directory"
},
"antigravitySync.autoRetryEnabled": {
"type": "boolean",
"default": false,
"description": "Enable auto-accept for AI agent buttons (requires CDP setup)"
},
"antigravitySync.autoStartRetry": {
"type": "boolean",
"default": false,
"description": "Automatically start Auto Retry when IDE launches"
},
"antigravitySync.cdpPort": {
"type": "number",
"default": 31905,
"minimum": 1024,
"maximum": 65535,
"description": "CDP remote debugging port for auto-accept"
},
"antigravitySync.cdpPortRange": {
"type": "number",
"default": 3,
"minimum": 0,
"maximum": 10,
"description": "Port range to scan (port ± range)"
},
"antigravitySync.autoRetryInterval": {
"type": "number",
"default": 3,
"minimum": 1,
"maximum": 30,
"description": "Interval in seconds between retry checks"
},
"antigravitySync.autoRetryMaxRetries": {
"type": "number",
"default": 50,
"minimum": 1,
"maximum": 500,
"description": "Maximum number of auto-retries before stopping"
},
"antigravitySync.autoRetryCooldown": {
"type": "number",
"default": 5,
"minimum": 1,
"maximum": 60,
"description": "Cooldown in seconds after clicking retry button"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --ext ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "vscode-test",
"package": "vsce package --no-yarn",
"publish": "vsce publish --no-yarn"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.0",
"@types/vscode": "^1.85.0",
"@types/vscode-webview": "^1.57.4",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vscode/test-electron": "^2.3.8",
"@vscode/vsce": "^2.22.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@octokit/rest": "^20.0.2",
"@vscode/webview-ui-toolkit": "^1.4.0",
"chokidar": "^3.5.3",
"ignore": "^5.3.0",
"simple-git": "^3.21.0",
"ws": "^8.14.0"
}
}