-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "auto-continue-agent",
"displayName": "Auto Continue Agent",
"description": "Automatically clicks Continue buttons in VS Code AI chat panels",
"version": "1.0.0",
"engines": {
"vscode": "^1.74.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "auto-continue-agent.toggle",
"title": "Toggle Auto Continue"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "echo 'No compilation needed for plain JS'",
"watch": "echo 'No watch needed for plain JS'",
"pretest": "npm run compile && npm run lint",
"lint": "eslint .",
"test": "node ./test/runTest.js",
"package": "vsce package",
"package:install": "trae --install-extension release/auto-continue-agent-1.0.0.vsix"
},
"devDependencies": {
"@types/vscode": "^1.74.0",
"@types/node": "16.x",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.9.4",
"@vscode/test-electron": "^2.2.0"
}
}