-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.87 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.87 KB
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
{
"name": "three-mesh-halfedge",
"description": "A typescript implementation of the Halfedge structure for three.js geometries.",
"keywords": [
"threejs",
"geometry",
"mesh",
"csg",
"halfedge"
],
"version": "1.0.3",
"author": {
"name": "Axel Antoine",
"email": "ax.antoine@gmail.com",
"url": "https://axantoine.com"
},
"license": "MIT",
"branch": "main",
"type": "module",
"main": "build/index.umd.js",
"module": "build/index.esm.js",
"types": "build/types/index.d.ts",
"files": [
"src",
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LokiResearch/three-mesh-halfedge.git"
},
"homepage": "https://lokiresearch.github.io/three-mesh-halfedge/",
"scripts": {
"build": "rollup -c",
"build-examples": "rollup -c --environment examples",
"build-doc": "typedoc src/index.ts",
"dev": "rollup -cw",
"dev-examples": "rollup -cw --environment examples",
"test": "jest",
"lint": "eslint src examples",
"lint-examples": "eslint examples",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"three": ">= 0.123.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@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.138.0",
"@types/throttle-debounce": "^5.0.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",
"three": "^0.138.0",
"throttle-debounce": "^5.0.0",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typedoc": "^0.22.17",
"typescript": "^4.6.2"
}
}