-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
81 lines (81 loc) · 1.99 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
80
81
{
"name": "quickhull3d",
"version": "3.1.1",
"description": "A quickhull implementation for 3d points",
"homepage": "https://github.com/mauriciopoppe/quickhull3d",
"author": {
"name": "Mauricio Poppe",
"email": "[email protected]",
"url": "http://mauriciopoppe.com"
},
"bugs": "https://github.com/mauriciopoppe/quickhull3d/issues",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
},
"./dist/*": "./dist/*"
},
"sideEffects": false,
"keywords": [
"geometry",
"3d",
"convex hull",
"quick hull",
"quickhull"
],
"scripts": {
"clean": "rimraf dist",
"lint": "standard",
"coverage": "jest --coverage",
"test": "jest",
"test:debug": "DEBUG=quickhull3d:* jest",
"build": "npm run clean && npm run build:typescript && npm run build:webpack",
"build:webpack": "NODE_ENV=production webpack",
"build:typescript": "tsc",
"deploy": "node deploy.cjs",
"preversion": "npm run lint -s && npm run test -s && npm run build -s"
},
"standard": {
"ignore": [
"dist",
"docs"
]
},
"files": [
"dist"
],
"license": "MIT",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mauriciopoppe/quickhull3d"
},
"dependencies": {
"debug": "^4.3.4",
"get-plane-normal": "^1.0.0",
"gl-mat4": "^1.2.0",
"gl-quat": "^1.0.0",
"gl-vec4": "^1.0.1",
"monotone-convex-hull-2d": "^1.0.1",
"point-line-distance": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@types/debug": "^4.1.12",
"@types/node": "^20.14.2",
"gh-pages": "^6.1.1",
"jest": "^29.0.1",
"rimraf": "^3.0.2",
"standard": "^17.0.0",
"ts-jest": "^29.1.4",
"ts-jest-resolver": "^2.0.1",
"ts-loader": "^9.5.1",
"typescript": "^5.4.5",
"webpack-cli": "^5.1.4"
}
}