forked from Havegum/Terrain-Generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
40
41
42
43
44
45
{
"name": "Terrain-Generator",
"license": "MIT",
"author": "Halvard Vegum",
"repository": "https://github.com/Havegum/Terrain-Generator",
"description": "Noise and voronoi-based terrain generation",
"version": "0.0.1",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@wasm-tool/rollup-plugin-rust": "^1.0.2",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.31.1",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^5.2.0",
"sirv-cli": "^0.4.4",
"svelte": "^3.0.0",
"svelte-preprocess": "^3.0.2"
},
"dependencies": {
"@rollup/plugin-json": "^4.1.0",
"d3-array": "^2.8.0",
"d3-delaunay": "^5.2.1",
"d3-path": "^1.0.9",
"d3-random": "^2.1.0",
"d3-scale": "^3.2.1",
"d3-scale-chromatic": "^1.5.0",
"d3-selection": "^1.4.1",
"gl-matrix": "^3.3.0",
"regl": "^2.0.1",
"regl-camera": "^2.1.1",
"rollup-plugin-string": "^3.0.0",
"seedrandom": "^3.0.5",
"simplex-noise": "^2.4.0"
},
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "run-p start:dev autobuild",
"start": "sirv public --single",
"start:dev": "sirv public --single --dev"
}
}