-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.21 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.21 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
59
60
{
"name": "kmmit-cli",
"version": "1.0.3",
"description": "CLI tool for automated git commits and branch naming with GitHub Copilot",
"main": "dist/index.js",
"bin": {
"kmit": "dist/index.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sudoDevesh/kmit.git"
},
"homepage": "https://github.com/sudoDevesh/kmit#readme",
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts"
},
"files": [
"dist",
"package.json",
"README.md"
],
"keywords": [
"git",
"git-cli",
"commit",
"commit-message",
"conventional-commits",
"branch-naming",
"developer-tools",
"cli",
"automation",
"productivity",
"github",
"github-copilot",
"workflow",
"dev-experience"
],
"engines": {
"node": ">=18"
},
"preferGlobal": true,
"author": "Devesh Korde",
"license": "MIT",
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.2",
"inquirer": "^13.0.2",
"simple-git": "^3.30.0"
},
"devDependencies": {
"@types/node": "^24.10.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}