-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.24 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
{
"name": "@ahmad_technology/gitcommit-ai",
"version": "1.0.2",
"description": "AI-powered git commit message generator following Conventional Commits",
"type": "module",
"main": "dist/gitcommit.cjs",
"bin": {
"gitcommit": "./bin/gitcommit.cjs"
},
"scripts": {
"build": "node esbuild.config.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "tsc --noEmit"
},
"keywords": [
"git",
"commit",
"ai",
"conventional-commits",
"openai",
"anthropic",
"gemini",
"cli"
],
"author": "ahmad_technology",
"repository": {
"type": "git",
"url": "https://github.com/AhmadTchnology/Ai_Commit_Message_Generator.git"
},
"homepage": "https://github.com/AhmadTchnology/Ai_Commit_Message_Generator#readme",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@inquirer/prompts": "^8.4.1",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"execa": "^9.6.1",
"ora": "^9.3.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"esbuild": "^0.28.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}