-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 924 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 924 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
{
"name": "git-ai-cli",
"description": "Automate commit message generation with AI-driven suggestions.",
"version": "0.0.3",
"main": "src/index.js",
"bin": {
"git-ai": "src/index.js"
},
"scripts": {
"lint": "eslint .",
"test": "jest"
},
"private": false,
"license": "Apache-2.0",
"author": "VSAlmeida <vsalmeida@ibm.com>",
"repository": "https://github.com/VSAlmeida/git-ai-cli",
"dependencies": {
"@inquirer/prompts": "^5.3.7",
"@langchain/community": "^0.2.25",
"axios": "^1.7.3",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"ora": "^5.4.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5"
}
}