-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 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
{
"name": "node-git-manager",
"version": "0.2.5",
"description": "Manage your local Git repositories with ease",
"keywords": [
"git"
],
"homepage": "https://github.com/ackledotdev/ngm#readme",
"bugs": {
"url": "https://github.com/ackledotdev/ngm/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ackledotdev/ngm.git"
},
"license": "MIT",
"author": "Akhil Pillai <ackledotdev@gmail.com>",
"type": "module",
"bin": {
"ngm": "dist/index.js"
},
"scripts": {
"start": "tsx src/index.ts",
"build": "npm run shellpercopy && npm run fmt && rm -drf dist && tsc",
"bump": "bumpp",
"fmt": "prettier --write .",
"prepublishOnly": "npm run build && npm run bump",
"shellpercopy": "tsx scripts/shellperCopy.ts"
},
"dependencies": {
"chalk": "^5.6.2",
"dugite": "^3.2.0",
"env-paths": "^4.0.0",
"jsoning": "^1.0.1",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/node": "^25.3.4",
"@types/yargs": "^17.0.35",
"bumpp": "^10.4.1",
"npm-check-updates": "^19.6.3",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}