-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.52 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.52 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
{
"name": "three-instance-batch",
"version": "0.1.2",
"description": "Declarative instanced rendering for Three.js — Instance describes what, InstanceBatcher decides how to draw",
"type": "module",
"main": "./dist/three-instance-batch.js",
"module": "./dist/three-instance-batch.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/three-instance-batch.js",
"types": "./dist/types/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build && esbuild dist/three-instance-batch.js --minify --format=esm --outfile=dist/three-instance-batch.js --allow-overwrite && tsc --emitDeclarationOnly",
"prepublishOnly": "npm run test:run && npm run build",
"preview": "vite preview",
"test": "vitest --config vitest.config.ts",
"test:run": "vitest run --config vitest.config.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/qiao-coding/three-instance-batch.git"
},
"author": "qiao-coding",
"homepage": "https://github.com/qiao-coding/three-instance-batch#readme",
"bugs": {
"url": "https://github.com/qiao-coding/three-instance-batch/issues"
},
"peerDependencies": {
"three": ">=0.152.0"
},
"devDependencies": {
"@types/three": "^0.183.0",
"esbuild": "^0.28.0",
"three": "^0.183.0",
"typescript": "^5.4.0",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"keywords": [
"three.js",
"instanced-mesh",
"batching",
"rendering"
],
"license": "MIT"
}