-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.24 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
{
"name": "entity-wiki",
"homepage": "https://entity-toolkit.github.io",
"bugs": {
"url": "https://github.com/entity-toolkit/wiki/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entity-toolkit/wiki.git"
},
"directories": {
"doc": "docs"
},
"type": "module",
"scripts": {
"sass:watch": "sass sass/style.scss docs/css/style.css --watch",
"sass:build": "sass sass/style.scss docs/css/style.css",
"bundle": "node js/bundle.js",
"diagrams:generate": "python3 codestruct/mermaidify.py --branch master",
"inputtable:generate": "python3 codestruct/inputtabulate.py --branch master",
"mkdocs:serve": "mkdocs serve",
"build": "npm run sass:build && npm run bundle",
"dev": "npm run bundle && concurrently \"npm run sass:watch\" \"npm run mkdocs:serve\""
},
"dependencies": {
"@highlightjs/cdn-assets": "^11.11.1",
"d3": "^7.9.0",
"expr-eval": "^2.0.2",
"katex": "^0.16.22",
"mermaid": "^11.7.0",
"p5": "^2.0.3",
"three": "^0.177.0"
},
"devDependencies": {
"@fsouza/prettierd": "^0.26.1",
"concurrently": "^9.2.0",
"emmet-ls": "^0.4.2",
"esbuild": "^0.25.5",
"sass": "^1.89.2",
"vscode-langservers-extracted": "^4.10.0"
}
}