forked from fenomas/noa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "noa-engine",
"version": "0.28.0",
"description": "Experimental voxel game engine",
"main": "src/index.js",
"files": [
"/src"
],
"scripts": {
"doc": "jsdoc2md -f src/* src/**/* -g table -p list --partial doc-templates/* > doc/API.md"
},
"author": "Andy Hall",
"keywords": [
"voxel",
"game",
"engine"
],
"license": "MIT",
"dependencies": {
"aabb-3d": "andyhall/aabb-3d",
"box-intersect": "^1.0.2",
"ent-comp": "^0.9.1",
"fast-voxel-raycast": "^0.1.1",
"game-inputs": "^0.3.1",
"game-shell": "andyhall/game-shell",
"gl-vec3": "^1.1.3",
"ndarray": "^1.0.16",
"voxel-aabb-sweep": "^0.5.0",
"voxel-physics-engine": "^0.10.0"
},
"peerDependencies": {
"@babylonjs/core": "^4.0.0"
},
"repository": "https://github.com/andyhall/noa",
"bugs": {
"url": "https://github.com/andyhall/noa/issues"
},
"devDependencies": {
"eslint": "^6.7.1",
"js-beautify": "^1.10.2",
"jsdoc-to-markdown": "^5.0.3"
}
}