-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "three-halfedge-dcel",
"description": "Doubly-Connected-Edge-List (DCEL) or Half-Edge data structure implementation for three.js",
"version": "1.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build --clean && tsc --build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erasta/three-halfedge-dcel.git"
},
"keywords": [
"threejs",
"halfedge",
"dcel",
"3d",
"javascript",
"typescript"
],
"author": "erasta",
"license": "MIT",
"bugs": {
"url": "https://github.com/erasta/three-halfedge-dcel/issues"
},
"homepage": "https://github.com/erasta/three-halfedge-dcel#readme",
"dependencies": {
"three": "^0.173.0"
},
"devDependencies": {
"@types/three": "^0.173.0",
"serve": "^14.0.1",
"typescript": "^5.7.3"
},
"files": [
"dist/**/**",
"docs/**/**",
"!**/*.spec.*",
"!**/*.json",
"!**/*.tsbuildinfo",
"LICENSE",
"README.md"
],
"type": "module"
}