-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.25 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
46
47
48
49
50
51
52
53
54
55
{
"name": "@gitset-dev/cli",
"version": "1.2.1",
"description": "Generate semantic commit messages using AI-driven analysis of staged code changes.",
"main": "src/index.js",
"type": "module",
"bin": {
"gitset": "./src/index.js"
},
"scripts": {
"prepare": "chmod +x src/index.js",
"postinstall": "chmod +x src/index.js",
"dev": "npm install && chmod +x src/index.js && npm link",
"start": "node src/index.js",
"test": "echo \"No test specified\""
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"git",
"commit",
"message",
"ai",
"cli",
"gitset",
"commit-message",
"git-tools"
],
"author": {
"name": "Gitset.dev",
"email": "[email protected]",
"url": "https://gitset.dev"
},
"license": "MPL-2.0",
"dependencies": {
"commander": "^11.1.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"jest": "^29.7.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gitset-dev/gitset-cli.git"
},
"bugs": {
"url": "https://github.com/gitset-dev/gitset-cli/issues"
},
"homepage": "https://github.com/gitset-dev/gitset-cli#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}