-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 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
{
"name": "codegini-coding-assistance",
"displayName": "CodeGini",
"description": "A plugin that integrates with large language models (LLMs) for coding assistance.",
"version": "0.0.6",
"publisher": "dakshdhruv",
"engines": {
"vscode": "^1.93.0"
},
"icon": "images/logo.png",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:codegini.suggestCode"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "codegini.suggestCode",
"title": "Codegini: Suggest Code"
},
{
"command": "codegini.deleteApiKey",
"title": "Codegini: Delete API Key"
}
],
"configuration": {
"title": "CodeGini",
"properties": {
"codegini.provider": {
"type": "string",
"description": "Choose your LLM provider",
"enum": [
"Hugging Face"
],
"default": "Hugging Face",
"scope": "global"
}
}
}
},
"devDependencies": {
"@types/node": "^14.14.41",
"@types/vscode": "^1.50.0"
},
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"mermaid": "^11.4.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Dakshya52/CodeGini.git"
}
}