-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 KB
/
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
44
45
46
47
48
49
50
51
52
53
{
"name": "refacto",
"version": "1.0.1",
"publisher": "rbourgeat",
"repository": "https://github.com/rbourgeat/refacto",
"engines": {
"vscode": "^1.50.0"
},
"activationEvents": [
"onCommand:extension.refacto"
],
"main": "./extension.js",
"icon": "icon.jpeg",
"contributes": {
"commands": [
{
"command": "extension.refacto",
"title": "✨ Refacto selected code"
}
],
"menus": {
"editor/context": [
{
"command": "extension.refacto",
"group": "navigation"
}
]
},
"configuration": {
"title": "Refacto",
"properties": {
"llama-cpp.serverUrl": {
"type": "string",
"default": "http://127.0.0.1:8080/completion",
"description": "URL of the Llama CPP server"
}
}
}
},
"scripts": {
"compile": "vsce package"
},
"devDependencies": {
"@types/mocha": "^8.0.4",
"@types/node": "^12.11.1",
"eslint": "^7.22.0",
"vscode": "^1.1.34"
},
"dependencies": {
"axios": "^1.6.7",
"vsce": "^2.15.0"
}
}