-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.24 KB
/
package.json
File metadata and controls
52 lines (52 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
{
"name": "commitgen-cc",
"version": "4.1.0",
"description": "AI git commit messages using local Ollama",
"main": "dist/cli.js",
"scripts": {
"test": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration",
"test:e2e": "vitest run tests/e2e",
"build": "tsc",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint . --max-warnings 0",
"check": "npm run lint && npm run typecheck && npm run test",
"prepare": "npm run build"
},
"keywords": [],
"author": "Denis Tola",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/Eaglemann/commitgen-cc.git"
},
"type": "module",
"engines": {
"node": ">=20"
},
"files": [
"dist",
"README.md"
],
"dependencies": {
"commander": "^14.0.2",
"execa": "^9.6.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@vitest/coverage-v8": "^4.0.7",
"@types/node": "^25.0.8",
"@types/prompts": "^2.4.9",
"eslint": "^9.39.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.7"
},
"bin": {
"commitgen-cc": "dist/cli.js"
}
}