forked from Bunkerbewohner/threejs-hex-map
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 888 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
28
29
30
31
32
33
34
35
36
37
{
"name": "threejs-hex-map",
"version": "0.3.1",
"description": "A simple 3D hexagonal terrain map based on three.js.",
"main": "lib/src/index.js",
"types": "lib/src/index",
"scripts": {
"start": "node server.js",
"build": "tsc && webpack",
"test": "echo \"No tests yet.\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:Bunkerbewohner/threejs-hex-map.git"
},
"keywords": [
"webgl",
"threejs",
"typescript",
"hexagon",
"map",
"terrain"
],
"author": "Mathias Kahl <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Bunkerbewohner/threejs-hex-map",
"dependencies": {
"three": "^0.84.0"
},
"devDependencies": {
"@types/three": "0.0.24",
"express": "^4.14.0",
"requirejs": "^2.2.0",
"typescript": "^2.1.4",
"webpack": "^1.14.0"
}
}