-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 822 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 822 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
{
"name": "@zackbraksa/gitai",
"version": "1.1.4",
"license": "MIT",
"type": "module",
"description": "Let AI write your git commit messages.",
"main": "src/index.js",
"bin": {
"gitai": "./bin/gitai.js"
},
"scripts": {
"test": "vitest",
"test:run": "vitest run",
"lint": "standard --fix 'src/*.js'",
"version": "git add -A",
"prerelease": "npm run lint && npm run test:run",
"release": "npm run prerelease && npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zackbraksa/gitai.git"
},
"keywords": [
"git",
"git commit",
"ai",
"cli"
],
"author": "Zakaria Braksa",
"dependencies": {
"commander": "^12.1.0",
"openai": "^4.67.3"
},
"devDependencies": {
"vitest": "^2.1.2"
}
}