-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "nama-document-sim",
"version": "0.1.0",
"description": "Visualize namakemono document simulations in the browser",
"main": "index.js",
"scripts": {
"build-wasm": "wasm-pack build ./wasm",
"build-components": "cd web-components && npm run build",
"build-components-prod": "cd web-components && npm run build --mode=production",
"build": "npm run build-components-prod && webpack --config webpack.config.js --mode=production",
"start": "webpack-dev-server"
},
"keywords": [
"p2panda",
"namakemono",
"webassembly",
"wasm",
"rust",
"web-components",
"webpack"
],
"license": "AGPL-3.0-only",
"devDependencies": {
"@stencil/core": "^4.13.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.10.0",
"style-loader": "^3.3.4",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"cytoscape": "^3.28.1",
"cytoscape-dagre": "^2.5.0",
"document-viz-components-loader": "file:./web-components/loader",
"javascript-color-gradient": "^2.4.4",
"nama-document-viz-wasm": "file:./wasm-pkg"
}
}