-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.14 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
{
"name": "git-aic",
"version": "1.4.0",
"description": "AI-powered Git commit generator",
"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": {
"name": "Spectra010s",
"url": "https://spectra010s.biuld.app"
},
"type": "module",
"main": "./dist/cli.js",
"bin": {
"git-aic": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write .",
"commit": "git-aic"
},
"keywords": [
"commit message tool",
"git",
"git-plugin",
"git-aic",
"automated-commits",
"ai-commits",
"gemini",
"openai"
],
"files": [
"dist",
"README.md",
"package.json",
"LICENSE"
],
"dependencies": {
"axios": "^1.13.2",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"simple-git": "^3.30.0"
},
"devDependencies": {
"@types/node": "^25.0.3",
"git-aic": "^1.4.0",
"prettier": "^3.5.3",
"typescript": "^5.9.3"
}
}