-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 750 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 750 Bytes
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
{
"name": "local-ai-commit-msg-generator",
"displayName": "Local AI Commit Message Generator",
"description": "Generate Git commit messages using local LLMs like Code LLaMA, Phi-2, and StarCoder.",
"version": "1.0.0",
"publisher": "Team ChittTaranga",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.generateCommitMessage"
],
"main": "./src/extension.js",
"contributes": {
"commands": [
{
"command": "extension.generateCommitMessage",
"title": "🚀 Local AI-Powered Commit Message Generator"
}
]
},
"scripts": {
"compile": "echo 'No build step needed'"
},
"devDependencies": {
"axios": "^1.6.8"
}
}