-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "fast-triangle-triangle-intersection",
"description": "Fast and robust triangle-triangle intersection test with high precision for cross and coplanar triangles based on the algorithm by Devillers & Guigue.",
"keywords": [
"triangle",
"intersection",
"crossing",
"coplanar",
"Devillers",
"Muller",
"3D",
"2D",
"three.js",
"precision"
],
"version": "1.0.7",
"author": {
"name": "Axel Antoine",
"email": "ax.antoine@gmail.com",
"url": "https://axantoine.com"
},
"license": "MIT",
"branch": "master",
"type": "module",
"main": "build/index.umd.js",
"module": "build/index.esm.js",
"types": "build/types/index.d.ts",
"files": [
"build"
],
"peerDependencies": {
"three": ">= 0.123.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/dat.gui": "^0.7.7",
"@types/jest": "^27.4.0",
"@types/three": "^0.140.0",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.13.0",
"dat.gui": "^0.7.9",
"eslint": "^8.10.0",
"eslint-plugin-jest": "^26.1.1",
"jest": "^27.5.1",
"rollup": "^2.69.1",
"rollup-plugin-generate-html-template": "^1.7.0",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"scripts": {
"clean": "rm -rf build",
"tsc": "tsc",
"test": "jest",
"build": "rollup -c",
"build-demo": "rollup -c --environment demo",
"lint": "eslint src demo",
"prepublishOnly": "npm run build"
}
}