-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 925 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 925 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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "git-aic",
"version": "1.1.0",
"description": "AI-powered Git commit generator using Google Gemini",
"homepage": "https://github.com/Spectra010s/git-aic",
"bugs": {
"url": "https://github.com/Spectra010s/git-aic/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Spectra010s/git-aic.git"
},
"license": "ISC",
"author": "Spectra010s",
"type": "module",
"main": "./dist/cli.js",
"bin": {
"git-aic": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"keywords": [
"commit message tool",
"git",
"git-plugin",
"git-aic",
"automated-commits",
"ai-commits",
"gemini"
],
"dependencies": {
"axios": "^1.13.2",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"simple-git": "^3.30.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"typescript": "^5.9.3"
}
}