-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "git-scribe",
"version": "0.3.0",
"description": "AI copilot for crafting insightful Git commit messages",
"bin": {
"git-scribe": "./bin/git-scribe.js"
},
"scripts": {
"lint": "prettier --check '{*,**/*}.{js,json}' && eslint .",
"lint:fix": "prettier --write '{*,**/*}.{js,json}' && eslint --fix .",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:cov": "pnpm run test --coverage"
},
"keywords": [
"ai",
"copilot",
"git",
"commit",
"hook"
],
"author": "Matias Olivera <[email protected]>",
"license": "MIT",
"files": [
"bin",
"lib"
],
"type": "module",
"engines": {
"node": ">=16"
},
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"prettier": "3.0.1"
},
"dependencies": {
"execa": "^7.2.0",
"git-credential-node": "^1.1.0",
"inquirer": "^9.2.10",
"node-fetch": "^3.3.2",
"ora": "^7.0.1"
}
}