-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 938 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 938 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": "gitmate-cli",
"version": "1.0.5",
"description": "An AI-powered Git assistant that helps you with Git commands using natural language",
"main": "index.js",
"scripts": {
"build": "tsc",
"postbuild": "chmod +x ./dist/src/index.js",
"test": "vitest",
"postinstall": "chmod +x ./dist/src/index.js"
},
"bin": {
"gmate": "./dist/src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/walterjansma/gitmate"
},
"keywords": [
"git",
"git-mate",
"ai-git",
"git-assistant",
"ai-git-assistant",
"git-cli",
"git-llm"
],
"author": "Walter Jansma & Jan van Dorth",
"license": "MIT",
"devDependencies": {
"@types/node": "^24.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"commander": "^14.0.0",
"inquirer": "^12.6.3"
},
"type": "module",
"types": "types"
}