-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 781 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 781 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
{
"name": "ai-commit-cli",
"version": "1.3.7",
"description": "AI-powered Git commit message generator using LLM",
"main": "dist/index.js",
"bin": {
"ai-commit": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"git",
"commit",
"ai",
"llm",
"cli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lifedever/ai-commit.git"
},
"files": [
"dist"
],
"dependencies": {
"@inquirer/prompts": "^8.3.0",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^20.14.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18.0.0"
}
}