-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 883 Bytes
/
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
{
"name": "three-instanced-group-mesh",
"version": "1.0.2",
"description": "instanced group mesh support for three.js",
"keywords": [
"three.js",
"instanced"
],
"main": "dist/THREE.InstancedGroupMesh.common.js",
"module": "dist/THREE.InstancedGroupMesh.esm.js",
"typings": "index.d.ts",
"scripts": {
"watch": "rollup -c --watch",
"build": "rollup -c",
"declaration": "tsc -d --emitDeclarationOnly --outDir ./"
},
"sideEffects": false,
"license": "MIT",
"author": "Troy",
"homepage": "https://github.com/troy351/three-instanced-group-mesh",
"peerDependencies": {
"three": "^0.130.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.3",
"@types/three": "^0.141.0",
"rollup": "^2.75.7",
"rollup-plugin-terser": "^7.0.2",
"three": "^0.141.0",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
}
}