-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.86 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
{
"name": "@kud/ai-conventional-commit-cli",
"version": "3.9.0",
"type": "module",
"description": "Opinionated, style-aware AI assistant for crafting and splitting git commits (opencode-based, provider-agnostic).",
"bin": {
"ai-conventional-commit": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup src/index.ts --format esm --dts",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"commit": "cz"
},
"dependencies": {
"@anthropic-ai/sdk": "0.104.2",
"@inquirer/prompts": "8.5.2",
"@opencode-ai/sdk": "1.17.8",
"chalk": "^5.6.2",
"clipanion": "^3.2.1",
"cosmiconfig": "9.0.2",
"execa": "^9.6.1",
"fast-glob": "^3.3.3",
"inquirer": "13.4.3",
"keyv": "^5.6.0",
"lru-cache": "11.5.1",
"ora": "9.4.0",
"pathe": "^2.0.3",
"simple-git": "3.36.0",
"strip-ansi": "^7.2.0",
"zod": "4.4.3"
},
"devDependencies": {
"@commitlint/config-conventional": "21.0.2",
"@eslint/js": "10.0.1",
"@types/inquirer": "9.0.10",
"@types/node": "25.9.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "10.5.0",
"globals": "17.6.0",
"prettier": "3.8.4",
"tsup": "^8.5.1",
"tsx": "4.22.4",
"typescript": "^5.9.2",
"typescript-eslint": "8.61.1",
"vitest": "4.1.9"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kud/ai-conventional-commit-cli.git"
},
"bugs": {
"url": "https://github.com/kud/ai-conventional-commit-cli/issues"
},
"homepage": "https://kud.github.io/ai-conventional-commit-cli"
}