forked from IceCreamYou/THREE.Terrain
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.71 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "three.terrain.js",
"version": "1.6.0",
"description": "Extends the Three.js web-based 3D graphics framework to support generating random terrains and rendering terrain from predetermined heightmaps.",
"homepage": "https://github.com/IceCreamYou/THREE.Terrain",
"bugs": "https://github.com/IceCreamYou/THREE.Terrain/issues",
"browser": "dist/THREE.Terrain.umd.js",
"main": "dist/THREE.Terrain.cjs.js",
"module": "dist/THREE.Terrain.esm.js",
"types": "dist/main.d.ts",
"directories": {
"lib": "build",
"example": "demo"
},
"repository": {
"type": "git",
"url": "git://github.com/IceCreamYou/THREE.Terrain.git"
},
"keywords": [
"THREE",
"three.js",
"terrain",
"land",
"DiamondSquare",
"random",
"generator"
],
"author": "Isaac Sukin (http://www.isaacsukin.com/)",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^5.16.0",
"rimraf": "^3.0.0",
"rollup": "^1.16.6",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.1.1",
"rollup-plugin-typescript": "^1.0.1",
"serve": "^11.0.2",
"tslib": "^1.10.0",
"typescript": "^3.5.2"
},
"scripts": {
"ts:defs": "tsc --declaration --outDir ./dist --emitDeclarationOnly",
"build": "rimraf dist && npm run ts:defs && rollup -c",
"lint": "eslint src/*.ts",
"serve": "serve -l 8080"
},
"dependencies": {
"three": "^0.105.2"
},
"files": [
"dist"
]
}