-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.08 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
{
"name": "@liangzhengtao/commit-ai",
"version": "1.0.1",
"description": "AI-powered git commit message generator with beautiful terminal output — no API key needed",
"main": "src/index.js",
"bin": {
"ai-commit": "./bin/cli.js",
"aic": "./bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"test": "node test/test.js"
},
"keywords": [
"ai",
"git",
"commit",
"conventional-commits",
"cli",
"developer-tools",
"commit-message",
"git-commit",
"automation",
"terminal"
],
"author": "liangzhengtao",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/liangzhengtao/ai-commit.git"
},
"bugs": {
"url": "https://github.com/liangzhengtao/ai-commit/issues"
},
"homepage": "https://github.com/liangzhengtao/ai-commit#readme",
"engines": {
"node": ">=16"
},
"dependencies": {
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"inquirer": "^8.2.6",
"ora": "^5.4.1"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
]
}