-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 926 Bytes
/
package.json
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
{
"name": "mdn-graph",
"module": "index.ts",
"type": "module",
"scripts": {
"build-graph": "bun src/server/create-graph.ts && bun build src/client/index.ts --outdir docs --minify",
"build-warnings": "bun src/server/process-warnings.ts && bun build src/client/warnings.ts --outdir docs --minify",
"build-warnings-fast": "bun src/server/process-warnings.ts --no-external-link-check && bun build src/client/warnings.ts --outdir docs --minify",
"build": "bun run build-graph && bun run build-warnings"
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "^3.3.3"
},
"dependencies": {
"@mdn/browser-compat-data": "5",
"@types/three": "^0.167.1",
"cheerio": "^1.0.0",
"gray-matter": "^4.0.3",
"leven": "^4.0.0",
"ngraph.events": "0.0.3",
"ngraph.forcelayout": "^3.3.1",
"ngraph.graph": "^20.0.1",
"three": "^0.73.0",
"three.fly": "0.1.6"
}
}