-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 946 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 946 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
35
36
37
38
39
40
41
42
{
"name": "aico",
"version": "1.0.0",
"description": "AI-powered git commit message generator",
"main": "dist/index.js",
"bin": {
"aico": "./dist/cli.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "node dist/cli.js",
"test": "jest",
"lint": "eslint . --ext .ts",
"prepare": "npm run build"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"figlet": "^1.8.0",
"inquirer": "^8.2.6",
"openai": "^4.24.1",
"simple-git": "^3.22.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/inquirer": "^8.2.6",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
}
}