-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 770 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 770 Bytes
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
{
"name": "three-strip",
"version": "0.2.5",
"author": "ycw (https://github.com/ycw)",
"repository": "github:ycw/three-strip",
"description": "Generate strip geometry for three.js",
"license": "MIT",
"type": "module",
"main": "build/three-strip.js",
"module": "build/three-strip.js",
"typings": "build/three-strip.d.ts",
"devDependencies": {
"@types/three": "^0.131.1",
"rollup": "^2.56.3",
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c rollup.config.dev.js -w"
},
"files": [
"build/*"
],
"keywords": [
"threejs",
"geometry"
]
}