-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.34 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.34 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
{
"name": "@lastwhisper-dev/gitai-cli",
"version": "0.1.5",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "AI powered Git assistant",
"type": "module",
"main": "dist/cli.js",
"bin": {
"gitai": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.js",
"dev": "nodemon --watch src --ext ts --exec ts-node src/cli.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"postinstall": "node dist/scripts/bootstrapGlobal.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/lodash.merge": "^4.6.9",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"commander": "^13.1.0",
"cosmiconfig": "^9.0.0",
"dotenv": "^16.5.0",
"https-proxy-agent": "^7.0.6",
"inquirer": "^12.6.1",
"js-yaml": "^4.1.0",
"lodash.merge": "^4.6.2",
"node-fetch": "^2.7.0",
"ora": "^8.2.0",
"simple-git": "^3.27.0",
"undici": "^7.9.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.8",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.17",
"nodemon": "^3.1.10",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"files": [
"dist/",
"assets/",
"templates/",
"LICENSE",
"README.md",
"README_CN.md",
".env-example"
]
}