forked from dhruvpapade/local-ai-commit-msg-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 778 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 778 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
32
{
"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": {
"eslint": "^9.30.1",
"prettier": "^3.6.2"
}
}