-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
118 lines (118 loc) · 2.71 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
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
{
"name": "codegenx",
"publisher": "DeepGenX",
"displayName": "CodeGenX",
"description": "CodeGenX - A code autocompletion tool based on GPT-J",
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/DeepGenX/CodeGenX",
"author": {
"name": "DeepGenX",
"email": "[email protected]",
"url": "https://deepgenx.com"
},
"keywords": [
"generation",
"code",
"copilot",
"deepgenx",
"autocomplete",
"completion",
"codegenx",
"open-source"
],
"qna": "https://github.com/DeepGenX/CodeGenX/discussions/categories/q-a",
"bugs": {
"url": "https://github.com/DeepGenX/CodeGenX/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/DeepGenX/CodeGenX"
},
"icon": "assets/logo.ico",
"version": "0.1.8",
"engines": {
"vscode": "^1.57.0"
},
"categories": [
"Other",
"Machine Learning",
"Data Science",
"Programming Languages"
],
"activationEvents": [
"onCommand:codegenx.open_CodeGenX"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"title": "CodeGenX: Get AI Completion",
"command": "codegenx.open_CodeGenX"
}
],
"configuration": [
{
"title": "CodeGenX",
"properties": {
"Codegenx.Temperature": {
"type": "number",
"default": 1,
"description": "The temperature parameter of the GPT-J model"
},
"Codegenx.Top_P": {
"type": "number",
"default": 0.7,
"description": "The top_p parameter of the GPT-J model"
},
"Codegenx.MaxLength": {
"type": "string",
"enum": [
"128 (fast)",
"264 (medium)",
"512 (slow)"
],
"default": "128 (fast)",
"description": "The max length of the output. The longer the output the slower the inference."
},
"Codegenx.Token": {
"type": "string",
"description": "The token used to make API calls."
}
}
}
],
"keybindings": [
{
"command": "codegenx.open_CodeGenX",
"key": "ctrl+d",
"mac": "cmd+d"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.js --bundle --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.57.0",
"esbuild": "^0.13.15",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2"
},
"dependencies": {
"axios": "^0.24.0",
"vsce": "^1.100.2"
}
}