-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.64 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.64 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@vavasilva/git-commit-ai",
"version": "0.3.6",
"description": "CLI that generates Conventional Commit messages from staged git changes using LLMs (OpenAI, Anthropic, Ollama, Groq).",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"git-commit-ai": "./dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vavasilva/git-commit-ai.git"
},
"bugs": {
"url": "https://github.com/vavasilva/git-commit-ai/issues"
},
"homepage": "https://vavasilva.github.io/git-commit-ai/",
"keywords": [
"git",
"commit",
"commit message",
"commit message generator",
"conventional commits",
"conventional-commit",
"semantic commit",
"commitlint",
"cli",
"developer tools",
"automation",
"llm",
"ai",
"openai",
"anthropic",
"claude",
"ollama",
"groq",
"llama"
],
"author": "Wagner Silva",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^3.2.4",
"tsup": "^8.0.1",
"typescript": "^5.3.0",
"vitest": "^3.2.4"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ora": "^8.0.1",
"smol-toml": "^1.1.4"
},
"engines": {
"node": ">=20.0.0"
}
}