-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 984 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 984 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
44
45
46
{
"name": "git-mood",
"version": "2.0.9",
"description": "AI-powered Git assistant — conventional commits & code review with Gemini",
"type": "module",
"main": "index.js",
"bin": {
"git-mood": "./index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"cli",
"git",
"ai",
"gemini",
"commit",
"code-review",
"conventional-commits"
],
"author": "Eyuel Engida",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/EyuApp/git-mood"
},
"homepage": "https://github.com/EyuApp/git-mood#readme",
"bugs": {
"url": "https://github.com/EyuApp/git-mood/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@google/generative-ai": "^0.2.1",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"conf": "^12.0.0",
"inquirer": "^13.2.2",
"simple-git": "^3.22.0"
}
}