forked from gkjohnson/three-mesh-bvh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 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
74
75
76
77
78
79
{
"name": "three-mesh-bvh",
"version": "0.5.16",
"description": "A BVH implementation to speed up raycasting against three.js meshes.",
"module": "src/index.js",
"main": "build/index.umd.cjs",
"type": "module",
"types": "src/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "concurrently \"cd example && parcel watch ./*.html --dist-dir ./dev-bundle/ --public-url . --no-cache --no-hmr\" \"static-server\"",
"build": "rollup -c",
"build-examples": "cd example && parcel build ./*.html --dist-dir ./bundle/ --public-url . --no-cache --no-content-hash",
"test": "cd test && jest",
"lint": "eslint \"./src/**/*.{js,ts}\" \"./test/**/*.{js,ts}\" \"./example/*.js\" && tsc --noEmit",
"benchmark": "node benchmark/run-benchmark.js",
"prepublishOnly": "npm run build"
},
"files": [
"src/*",
"build/*"
],
"keywords": [
"graphics",
"raycast",
"tree",
"bounds",
"threejs",
"three-js",
"bounds-hierarchy",
"performance",
"raytracing",
"pathtracing",
"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.15.5",
"@babel/preset-env": "^7.15.4",
"@types/eslint": "^7.28.1",
"@types/jest": "^27.0.2",
"@types/three": "^0.139.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.2.4",
"concurrently": "^5.3.0",
"eslint": "^7.32.0",
"eslint-config-mdcs": "^5.0.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^27.2.4",
"parcel": "^2.0.0",
"rollup": "^2.58.0",
"script-loader": "^0.7.2",
"simplex-noise": "^2.4.0",
"static-server": "^2.2.1",
"stats.js": "^0.17.0",
"three": "^0.139.0",
"typescript": "^4.4.3"
}
}