-
Notifications
You must be signed in to change notification settings - Fork 91
/
package.json
55 lines (55 loc) · 1.38 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
{
"name": "noa-engine",
"version": "0.33.0",
"description": "Experimental voxel game engine",
"main": "src/index.js",
"typings": "dist/src/index.d.ts",
"files": [
"/src",
"/dist"
],
"scripts": {
"build": "npm run types; npm run docs",
"types": "tsc",
"docs": "typedoc"
},
"author": "Andy Hall (https://fenomas.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fenomas/noa.git"
},
"bugs": {
"url": "https://github.com/fenomas/noa/issues"
},
"dependencies": {
"aabb-3d": "fenomas/aabb-3d",
"box-intersect": "fenomas/box-intersect",
"ent-comp": "^0.11.0",
"events": "^3.3.0",
"fast-voxel-raycast": "^0.1.1",
"game-inputs": "^0.8.0",
"gl-vec3": "^1.1.3",
"micro-game-shell": "^0.9.0",
"ndarray": "^1.0.19",
"voxel-aabb-sweep": "^0.5.0",
"voxel-physics-engine": "^0.13.0"
},
"peerDependencies": {
"@babylonjs/core": "^6.1.0"
},
"devDependencies": {
"eslint": "^8.3.0",
"js-beautify": "^1.14.0",
"typedoc": "^0.24.6",
"typedoc-plugin-missing-exports": "^2.0.0",
"typescript": "^5.0.4"
},
"keywords": [
"voxel",
"voxels",
"game",
"engine",
"game-engine"
]
}