-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.09 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
{
"name": "@reck98/git-smart",
"version": "1.1.0",
"description": "AI-powered Git workflow assistant that generates production-quality commit messages, summarizes code changes, and streamlines Git operations.",
"type": "module",
"bin": {
"git-smart": "dist/index.js"
},
"files": [
"dist",
"src/utils/templates"
],
"scripts": {
"build": "tsc && copyfiles -u 2 \"src/utils/templates/**/*\" dist/utils/",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.0",
"@google/generative-ai": "^0.8.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"inquirer": "^9.2.0",
"openai": "^4.40.0",
"ora": "^8.0.0",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.0",
"copyfiles": "^2.4.1",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=20"
},
"keywords": [
"git",
"commit",
"ai",
"conventional-commits",
"cli"
],
"license": "MIT"
}