-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "fleece",
"displayName": "Fleece",
"description": "Fleece is a natural language code generator for Visual Studio Code, powered by Llama and Alpaca language models.",
"version": "0.0.1",
"publisher": "kelden",
"repository": {
"type": "git",
"url": "https://github.com/keldenl/fleece"
},
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"icon": "./logo-trans.png",
"activationEvents": [
"*",
"onCommand:fleece.commentToCode",
"onCommand:fleece.startDalai",
"onCommand:fleece.stopFleece"
],
"main": "./src/index.js",
"contributes": {
"commands": [{
"command": "fleece.commentToCode",
"title": "Convert Comment to Code",
"category": "Fleece"
},
{
"command": "fleece.autocomplete",
"title": "Autocomplete",
"category": "Fleece"
},
{
"command": "fleece.startDalai",
"title": "Start/Restart Dalai Server",
"category": "Fleece"
},
{
"command": "fleece.stopFleece",
"title": "Stop generation",
"category": "Fleece"
}
],
"menus": {
"editor/context": [{
"command": "fleece.commentToCode",
"group": "edit"
}]
},
"keybindings": [{
"command": "fleece.commentToCode",
"key": "ctrl+alt+c",
"mac": "cmd+alt+c",
"when": "editorTextFocus && !editorReadonly"
}]
},
"scripts": {
"make": "vsce package",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/vscode": "^1.0.0",
"typescript": "^5.0.2",
"vscode-test": "^1.6.1",
"@vscode/vsce": "^2.18.0"
},
"dependencies": {
"socket.io-client": "^4.6.1"
}
}