-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.13 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.13 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@three.ez/batched-mesh-extensions",
"version": "0.0.11",
"description": "Utility extension methods for BatchedMesh",
"author": "Andrea Gargaro <devgargaro@gmail.com>",
"license": "MIT",
"type": "module",
"module": "build/webgl.js",
"main": "build/webgl.cjs",
"types": "src/index.webgl.d.ts",
"homepage": "https://agargaro.github.io/batched-mesh-extensions/",
"repository": "https://github.com/agargaro/batched-mesh-extensions",
"exports": {
".": {
"import": {
"types": "./src/index.webgl.d.ts",
"default": "./build/webgl.js"
},
"require": {
"types": "./src/index.webgl.d.ts",
"default": "./build/webgl.cjs"
}
}
},
"keywords": [
"three",
"three.js",
"threejs",
"uniform-per-instance",
"bvh",
"performance",
"BVH",
"acceleration",
"raycasting",
"frustum-culling",
"batched-mesh",
"LOD",
"level-of-detail"
],
"scripts": {
"start": "vite",
"build": "vite build && vite build --config vite.config.webgpu.js && tsc --build tsconfig.build.json",
"lint": "eslint --fix",
"test": "echo todo add tests",
"publish-patch": "npm version patch --git-tag-version false && npm run build && cd dist && npm publish --access public",
"publish-minor": "npm version minor --git-tag-version false && npm run build && cd dist && npm publish --access public",
"publish-major": "npm version major --git-tag-version false && npm run build && cd dist && npm publish --access public"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@stylistic/eslint-plugin": "^4.2.0",
"@three.ez/main": "^0.5.10",
"@three.ez/simplify-geometry": "^0.0.1",
"@tweakpane/core": "^2.0.5",
"@types/three": "^0.176.0",
"eslint": "^9.26.0",
"meshoptimizer": "^0.23.0",
"three-mesh-bvh": "^0.9.0",
"tweakpane": "^4.0.5",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5",
"vite-plugin-externalize-deps": "^0.9.0",
"vite-plugin-static-copy": "^3.0.0"
},
"peerDependencies": {
"three": ">=0.159.0"
},
"dependencies": {
"bvh.js": "^0.0.13"
}
}