-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.55 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.55 KB
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
{
"name": "CodeCharm",
"displayName": "CodeCharm",
"description": "AI-powered code comment generator for VS Code using Gemini",
"version": "0.4.8",
"publisher": "DeveloperPuneet",
"icon": "images/Icon.png",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"AI",
"Linters",
"Formatters",
"Programming Languages"
],
"keywords": [
"ai",
"comments",
"documentation",
"gemini",
"google ai",
"code readability",
"inline comments",
"developer tools",
"productivity",
"vs code extension",
"tools",
"shortcuts",
"code generator"
],
"activationEvents": [
"onCommand:CodeCharm.commentFunction",
"onCommand:CodeCharm.suggestReadableCode",
"onCommand:CodeCharm.commentAndRefactor",
"onCommand:CodeCharm.runCmdOnly",
"onCommand:CodeCharm.setApiKey"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "CodeCharm.commentFunction",
"title": "🧠 CodeCharm: Generate Comment (Ctrl+Win+J)"
},
{
"command": "CodeCharm.suggestReadableCode",
"title": "🛠️ CodeCharm: Improve Code Readability (Ctrl+Win+G)"
},
{
"command": "CodeCharm.setApiKey",
"title": "🔑 CodeCharm: Set Gemini API Key"
},
{
"command": "CodeCharm.commentAndRefactor",
"title": "✨ CodeCharm: Comment & Refactor (Ctrl+Win+H)"
}
,
{
"command": "CodeCharm.runCmdOnly",
"title": "⚡ CodeCharm: Run cmd() Instruction Only (Ctrl+Win+K)"
}
],
"keybindings": [
{
"command": "CodeCharm.commentFunction",
"key": "ctrl+win+j",
"when": "editorTextFocus"
},
{
"command": "CodeCharm.suggestReadableCode",
"key": "ctrl+win+g",
"when": "editorTextFocus"
}
,
{
"command": "CodeCharm.commentAndRefactor",
"key": "ctrl+win+h",
"when": "editorTextFocus"
}
,
{
"command": "CodeCharm.runCmdOnly",
"key": "ctrl+win+k",
"when": "editorTextFocus"
}
],
"configuration": {
"title": "CodeCharm Settings",
"properties": {
"CodeCharm.zetaFlux": {
"type": "string",
"default": "",
"description": "🔐 Your Gemini API key used for generating AI comments and refactoring."
}
}
}
},
"dependencies": {
"node-fetch": "^2.6.1"
},
"repository": {
"type": "git",
"url": "https://github.com/DeveloperPuneet/CodeCharm.git"
}
}