forked from NoamGaash/markdown-graph
-
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) · 979 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 979 Bytes
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": "markdown-graph",
"version": "0.1.14",
"description": "Interactive force-directed knowledge graph of a repo's Markdown corpus, colored by top contributors.",
"license": "MIT",
"author": "Noam Gaash",
"homepage": "https://github.com/NoamGaash/markdown-graph#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/NoamGaash/markdown-graph.git"
},
"bugs": {
"url": "https://github.com/NoamGaash/markdown-graph/issues"
},
"bin": {
"markdown-graph": "bin/markdown-graph.js"
},
"files": [
"bin",
"lib",
"web",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "node bin/markdown-graph.js"
},
"dependencies": {
"commander": "^12.1.0",
"force-graph": "^1.51.4",
"open": "^8.4.2",
"sirv": "^2.0.4"
},
"keywords": [
"markdown",
"knowledge-graph",
"force-graph",
"visualization",
"documentation",
"git"
]
}