-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 737 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 737 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
{
"name": "aic",
"version": "0.1.0",
"description": "AI-powered git commit message generator with multi-provider support and key rotation.",
"author": "",
"license": "MIT",
"type": "module",
"bin": {
"aic": "./dist/entry.mjs"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"cli": "node ./src/entry.ts"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@inquirer/prompts": "^7.5.3",
"cac": "^6.7.14",
"execa": "^9.6.0",
"keytar": "^7.9.0",
"minimatch": "^10.2.1",
"ora": "^9.0.0",
"yoctocolors": "^2.1.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@types/node": "^25.0.3",
"tsdown": "0.19.0-beta.5",
"typescript": "^5.9.3"
}
}