-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 1.99 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 1.99 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "treehouze",
"version": "0.0.1",
"description": "Graph utilities for handling and housing markdown wikis -- and (semantic) trees!",
"license": "GPL-3.0",
"author": {
"name": "manunamz",
"email": "manuanmz@pm.me"
},
"repository": {
"type": "git",
"url": "https://github.com/wikibonsai/treehouze.git"
},
"files": [
"dist/**/*"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"browser": "./dist/index.umd.js",
"unpkg": "./dist/treehouze.min.js",
"scripts": {
"build": "rollup -c",
"clean": "npx del dist",
"rebuild": "yarn clean && yarn build",
"lint": "eslint ./src --ext .js"
},
"dependencies": {
"3d-force-graph": "^1.71.1",
"3d-force-graph-ar": "^1.8.1",
"3d-force-graph-vr": "^2.1.2",
"aframe": "^1.3.0",
"ar.js": "^2.2.2",
"d3": "^7.3.0",
"d3-force": "^3.0.0",
"element-resize-detector": "^1.2.4",
"force-graph": "^1.43.0",
"lodash": "^4.17.21",
"three": "^0.144.0",
"tweakpane": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@tweakpane/core": "^1.1.0",
"@types/d3": "^7.1.0",
"@types/element-resize-detector": "^1.1.3",
"del-cli": "^5.0.0",
"postcss": "^8.4.12",
"prettier": "^2.5.1",
"rollup": "^2.70.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.5.5"
},
"keywords": [
"2d",
"3d",
"ar",
"bidirectional link",
"d3",
"force-graph",
"graph",
"hierarchy",
"markdown",
"md",
"mdx",
"memory palace",
"network",
"ontology",
"taxonomy",
"tree",
"vr",
"web",
"wiki",
"wiki-link",
"wiki-links",
"wikiattr",
"wikiattrs",
"wikiembed",
"wikiembeds",
"wikibonsai",
"wikilink",
"wikilinks",
"wikiref",
"wikirefs"
]
}