-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.53 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
{
"name": "three-edge-projection",
"version": "0.0.1",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "parcel serve ./example/*.html --dist-dir ./example/dev-bundle/ --no-hmr",
"build-examples": "cd example && parcel build ./*.html --dist-dir ./bundle/ --public-url . --no-cache --no-content-hash",
"lint": "eslint \"./src/**/*.js\" \"./example/*.js\"",
"test": "cd test && jest"
},
"files": [
"src/*"
],
"keywords": [
"graphics",
"tree",
"bounds",
"threejs",
"three-js",
"bounds-hierarchy",
"performance",
"geometry",
"mesh",
"acceleration",
"projection",
"edges"
],
"author": "Garrett Johnson <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gkjohnson/three-edge-projection.git"
},
"bugs": {
"url": "https://github.com/gkjohnson/three-edge-projection/issues"
},
"homepage": "https://github.com/gkjohnson/three-edge-projection#readme",
"peerDependencies": {
"three": "^0.155.0",
"three-mesh-bvh": "^0.6.0",
"clipper2-js": "^0.9.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-mdcs": "^5.0.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^27.2.4",
"parcel": "^2.9.3",
"three": "^0.155.0",
"three-mesh-bvh": "^0.6.6"
}
}