-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 928 Bytes
/
package.json
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": "vscode-auto-cursor-accept",
"displayName": "VS Code Auto Cursor Accept",
"description": "Automatically accept and run Cursor AI suggestions",
"version": "1.0.1",
"publisher": "iamlongalong",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.startAutoAccept",
"title": "Start Auto Accept"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/iamlongalong/vscode-auto-cursor-accept"
},
"keywords": [
"cursor",
"auto-accept",
"ai",
"productivity"
],
"license": "MIT",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish": "vsce publish"
}
}