-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.11 KB
/
package.json
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
{
"name": "commitah",
"version": "1.8.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsx src/main.ts",
"build": "tsc",
"assemble": "tsc && tsx src/main.ts"
},
"bin": {
"commitah": "dist/main.js"
},
"keywords": [],
"author": "Muhammad Utsman",
"license": "ISC",
"description": "Auto commit with message powered by Generative AI with Gemini",
"dependencies": {
"@inquirer/select": "^4.0.3",
"@types/figlet": "^1.7.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.1",
"@types/yargs": "^17.0.33",
"chalk": "^5.3.0",
"figlet": "^1.8.0",
"inquirer": "^12.2.0",
"node-fetch": "^3.3.2",
"open": "^10.1.0",
"ora": "^8.1.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"yargs": "^17.7.2",
"zx": "^8.2.4"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/inquirer": "^9.0.7",
"@types/node": "^22.10.1",
"@types/yargs": "^17.0.33",
"ora": "^8.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}