-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 1.77 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "commit-g",
"version": "1.0.1",
"description": "Generate concise, meaningful Git commit messages with AI assistance powered by Gemini.",
"main": "index.js",
"type": "module",
"bin": {
"commitg": "./bin/cli.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node bin/cli.js",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install"
},
"keywords": [
"git",
"commit",
"ai",
"gemini",
"google-ai",
"llm",
"commit-message",
"devtools",
"productivity",
"automation",
"cli",
"git-helper"
],
"dependencies": {
"@google/generative-ai": "^0.24.1",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"prompts": "^2.4.2",
"wrap-ansi": "^8.1.0",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"bin/",
"lib/",
"index.js"
],
"author": "Shiv Baran Singh <spyshiv@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/spyshiv/commit-g.git"
},
"bugs": {
"url": "https://github.com/spyshiv/commit-g/issues"
},
"homepage": "https://github.com/spyshiv/commit-g#readme",
"devDependencies": {
"@eslint/js": "^9.27.0",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3"
},
"prettier": {
"semi": true,
"singleQuote": false,
"printWidth": 100,
"tabWidth": 2,
"trailingComma": "es5",
"arrowParens": "always"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
],
"*.json": [
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}