{
  "name": "@three.ez/instanced-mesh",
  "version": "0.3.2",
  "description": "Enhanced InstancedMesh with frustum culling, fast raycasting (using BVH), sorting, visibility management and more.",
  "author": "Andrea Gargaro <devgargaro@gmail.com>",
  "license": "MIT",
  "type": "module",
  "module": "build/index.js",
  "main": "build/index.cjs",
  "types": "src/index.d.ts",
  "homepage": "https://agargaro.github.io/instanced-mesh",
  "repository": "https://github.com/three-ez/instanced-mesh",
  "exports": {
    ".": {
      "import": {
        "types": "./src/index.d.ts",
        "default": "./build/index.js"
      },
      "require": {
        "types": "./src/index.d.ts",
        "default": "./build/index.cjs"
      }
    }
  },
  "keywords": [
    "three",
    "three.js",
    "threejs",
    "instancedMesh",
    "frustum-culling",
    "instance-management",
    "sorting",
    "performance",
    "BVH",
    "acceleration",
    "raycasting",
    "LOD",
    "shadow-LOD",
    "uniform-per-instance",
    "instancedMesh2",
    "skinning"
  ],
  "scripts": {
    "start": "vite",
    "build": "vite build && tsc --build tsconfig.build.json",
    "lint": "npx eslint --fix",
    "test": "echo todo add tests",
    "publish-alpha": "npm version prerelease --preid=alpha --git-tag-version false && npm run build && cd dist && npm publish --access public",
    "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.24.0",
    "@stylistic/eslint-plugin": "^4.2.0",
    "@three.ez/main": "^0.5.9",
    "@types/three": "^0.175.0",
    "eslint": "^9.24.0",
    "meshoptimizer": "^0.23.0",
    "simplex-noise": "^4.0.3",
    "three-hex-tiling": "^0.1.5",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.29.1",
    "vite": "^6.2.5",
    "vite-plugin-externalize-deps": "^0.9.0",
    "vite-plugin-static-copy": "^2.3.0"
  },
  "peerDependencies": {
    "three": ">=0.159.0"
  },
  "dependencies": {
    "bvh.js": "^0.0.13"
  }
}
