forked from gkjohnson/three-mesh-bvh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.2 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "three-mesh-bvh",
"version": "0.3.7",
"description": "A BVH implementation to speed up raycasting against three.js meshes.",
"module": "src/index.js",
"main": "src/index.js",
"type": "module",
"sideEffects": false,
"scripts": {
"generate-cast-functions": "node scripts/generate-cast-functions.js",
"start": "npm run generate-cast-functions && concurrently \"parcel watch ./example/*.html --out-dir ./example/dev-bundle/ --public-url . --no-cache\" \"rollup -w -c\" \"static-server\"",
"build": "npm run generate-cast-functions && rollup -c && parcel build ./example/*.html --out-dir ./example/bundle/ --public-url . --no-cache --no-source-maps --no-content-hash",
"test": "npm run generate-cast-functions && jest",
"lint": "npm run generate-cast-functions && eslint \"./src/*.js\" \"./test/*.js\" \"./example/*.js\"",
"benchmark": "npm run generate-cast-functions & node benchmark/run-benchmark.js",
"prepublishOnly": "npm run build"
},
"files": [
"src/*",
"umd/*"
],
"keywords": [
"graphics",
"raycast",
"tree",
"bounds",
"threejs",
"three-js",
"bounds-hierarchy",
"performance",
"geometry",
"mesh",
"distance",
"intersection",
"acceleration",
"bvh",
"webvr",
"webxr"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gkjohnson/three-mesh-bvh.git"
},
"author": "Garrett Johnson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkjohnson/three-mesh-bvh/issues"
},
"homepage": "https://github.com/gkjohnson/three-mesh-bvh#readme",
"peerDependencies": {
"three": ">= 0.123.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"babel-jest": "^26.6.3",
"concurrently": "^5.3.0",
"dat.gui": "^0.7.7",
"eslint": "^7.26.0",
"eslint-config-mdcs": "^5.0.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"parcel-bundler": "^1.12.5",
"rollup": "^0.68.1",
"script-loader": "^0.7.2",
"simplex-noise": "^2.4.0",
"static-server": "^2.2.1",
"stats.js": "^0.17.0",
"three": "^0.126.1"
},
"dependencies": {}
}