-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 853 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 853 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
42
43
44
45
46
47
48
{
"name": "commit-ai-hublast",
"version": "2.0.1",
"description": "CommitAI is a CLI tool that uses LLM to generate intelligent commit messages",
"main": "bin/cli.js",
"bin": {
"commitai": "./bin/cli.js"
},
"scripts": {
"postinstall": "node bin/install.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HublastX/Commit-IA.git"
},
"keywords": [
"git",
"commit",
"cli",
"llm",
"automation",
"ai",
"golang"
],
"author": "wendellast",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"os": [
"linux",
"darwin",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"files": [
"bin/",
"dist/"
],
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"husky": "^9.1.7"
}
}