-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
52 lines (52 loc) · 1.14 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
{
"name": "three-subdivide",
"version": "1.1.5",
"description": "Smooth subdivision surface modifier for use with three.js BufferGeometry.",
"module": "src/index.js",
"main": "build/index.umd.cjs",
"type": "module",
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"files": [
"src/*",
"build/*"
],
"keywords": [
"subdivision",
"subdivide",
"mesh",
"surface",
"buffergeometry",
"geometry",
"modifier",
"graphics",
"threejs",
"three-js",
"loop",
"smooth"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stevinz/three-subdivide.git"
},
"author": "Stephens Nunnally <stephens@scidian.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevinz/three-subdivide/issues"
},
"homepage": "https://github.com/stevinz/three-subdivide",
"peerDependencies": {
"three": ">= 0.125.0"
},
"devDependencies": {
"rollup": "^2.58.0",
"rollup-plugin-dts": "^5.3.0",
"three": "^0.125.0",
"typescript": "^5.1.6"
},
"private": false,
"dependencies": {},
"types": "build/index.module.d.ts"
}