-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.67 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.67 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
61
62
63
64
65
66
67
68
{
"name": "git-network-graph",
"version": "0.1.7",
"description": "Command line tool to show clear git graphs arranged for your branching model. TypeScript port of git-graph v0.7.0 by Martin Lange.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"git-network-graph": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test",
"release:patch": "npm version patch && git push --follow-tags",
"release:minor": "npm version minor && git push --follow-tags",
"release:major": "npm version major && git push --follow-tags"
},
"keywords": [
"git",
"graph",
"cli",
"terminal",
"visualization"
],
"author": "Pedro Fuentes",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pedrofuentes/git-network-graph.git"
},
"homepage": "https://github.com/pedrofuentes/git-network-graph",
"bugs": {
"url": "https://github.com/pedrofuentes/git-network-graph/issues"
},
"engines": {
"node": ">=20"
},
"type": "commonjs",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^14.0.3",
"date-fns": "^4.1.0",
"isomorphic-git": "^1.37.4",
"smol-toml": "^1.6.1",
"wrap-ansi": "^7.0.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"subset-font": "^2.4.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}