forked from fenomas/noa
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.84 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
57
58
59
60
61
62
{
"name": "noa-engine",
"version": "0.32.0",
"description": "Experimental voxel game engine",
"source": "src/index.js",
"module": "dist/index.js",
"typings": "dist/src/index.d.ts",
"files": [
"/src",
"/dist"
],
"scripts": {
"build": "rimraf dist; parcel 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": "https://codeload.github.com/fenomas/aabb-3d/tar.gz/c5698961161884397c711e8fb533611642a8a487",
"box-intersect": "https://codeload.github.com/fenomas/box-intersect/tar.gz/383cb9bef2cf7140ca6ca9b705669fb108d1357f",
"ent-comp": "^0.10.1",
"events": "^3.3.0",
"fast-voxel-raycast": "^0.1.1",
"game-inputs": "^0.5.0",
"gl-vec3": "^1.1.3",
"micro-game-shell": "^0.3.0",
"ndarray": "^1.0.19",
"voxel-aabb-sweep": "^0.5.0",
"voxel-physics-engine": "^0.11.1"
},
"peerDependencies": {
"@babylonjs/core": "^5.0.0-alpha.48"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.1",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"eslint": "^8.3.0",
"js-beautify": "^1.14.0",
"rimraf": "^3.0.2",
"rollup": "^2.77.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typedoc": "^0.22.9",
"typescript": "^4.4.4"
},
"keywords": [
"voxel",
"voxels",
"game",
"engine",
"game-engine"
]
}