-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.38 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.38 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
{
"name": "commit-wizard",
"version": "2.0.3",
"description": "Automagically generate commit messages using AI provider.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"bin": {
"commit-wizard": "./dist/index.js"
},
"scripts": {
"start": "ts-node index.ts",
"build": "tsc",
"prepare": "husky"
},
"dependencies": {
"@commander-js/extra-typings": "14.0.0",
"@google/genai": "1.20.0",
"openai": "4.86.1",
"zod": "3.24.2"
},
"devDependencies": {
"@types/node": "22.7.5",
"husky": "9.1.6",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"keywords": [
"git",
"commit",
"openai",
"automation",
"cli",
"commit",
"commit-wizard",
"commit-message",
"ai-powered",
"developer tool",
"git cli"
],
"author": {
"name": "Ivan Gonzalez",
"email": "contacto@ivangonzalez.co",
"url": "https://ivangonzalez.co"
},
"maintainers": [
{
"name": "Ivan Gonzalezz",
"email": "contacto@ivangonzalez.co",
"url": "https://ivangonzalez.co/"
}
],
"engines": {
"node": ">=14.0.0"
},
"homepage": "https://github.com/ivangonzalezg/commit-wizard#readme",
"repository": {
"type": "git",
"url": "https://github.com/ivangonzalezg/commit-wizard.git"
},
"bugs": {
"url": "https://github.com/ivangonzalezg/commit-wizard/issues"
}
}