-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.02 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.02 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
{
"name": "git-mod",
"version": "1.1.0",
"description": "A powerful CLI supercharger for Git, designed to streamline advanced workflows and manage multiple identities.",
"repository": {
"type": "git",
"url": "git+https://github.com/jmaxdev/git-mod.git"
},
"homepage": "https://github.com/jmaxdev/git-mod#readme",
"bugs": {
"url": "https://github.com/jmaxdev/git-mod/issues"
},
"main": "dist/git-mod.js",
"bin": {
"git-mod": "dist/git-mod.js"
},
"type": "module",
"files": [
"dist",
"README.md"
],
"scripts": {
"start": "tsx bin/git-mod.ts",
"build": "tsup"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"boxen": "^8.0.1",
"chalk": "^4.1.2",
"commander": "^14.0.3",
"inquirer": "^8.2.7",
"ora": "^9.3.0",
"simple-git": "^3.36.0"
},
"devDependencies": {
"@types/inquirer": "^8.2.12",
"@types/node": "^25.6.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
}
}