-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 944 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 944 Bytes
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": "hextiles-prototype",
"version": "0.0.4",
"description": "A standalone demo. Hexagonal tile server. Player character. No collisions. WASD controls.",
"main": "server.js",
"dependencies": {
"domready": "~0.2.12",
"lru-cache": "~2.3.1",
"simplex-noise": "~2.1.1",
"socket.io": "~0.9.16",
"socket.io-client": "~0.9.16",
"socket.io-stream": "~0.5.0"
},
"devDependencies": {
"browserify": "~2.33.0"
},
"scripts": {
"start": "node doBuild && node startServer"
},
"repository": {
"type": "git",
"url": "git://github.com/joates/hextiles-prototype.git"
},
"keywords": [
"hexagon",
"tile server",
"tile manager",
"tilemap",
"heightmap",
"three.js",
"3D",
"GPU",
"single player",
"game demo",
"prototype"
],
"author": "joates",
"license": "MIT",
"bugs": {
"url": "https://github.com/joates/hextiles-prototype/issues"
}
}