{
  "name": "trimesh-boolean",
  "version": "0.6.5",
  "description": "Triangle mesh boolean operations — supports open surfaces, terrain intersection, and mesh repair",
  "type": "module",
  "main": "build/trimesh-boolean.umd.cjs",
  "module": "src/index.js",
  "types": "src/index.d.ts",
  "exports": {
    ".": {
      "types": "./src/index.d.ts",
      "import": "./src/index.js",
      "require": "./build/trimesh-boolean.umd.cjs"
    },
    "./three": {
      "types": "./src/three.d.ts",
      "import": "./src/three.js",
      "require": "./build/trimesh-boolean-three.umd.cjs"
    }
  },
  "sideEffects": false,
  "files": [
    "src/",
    "build/",
    "LICENSE",
    "README.md"
  ],
  "keywords": [
    "mesh",
    "boolean",
    "csg",
    "triangle",
    "surface",
    "terrain",
    "intersection",
    "repair",
    "weld",
    "stitch",
    "threejs",
    "3d",
    "open-surface",
    "dtm",
    "triangulation"
  ],
  "author": "Brent Buffham",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/brentbuffham/trimesh-boolean.git"
  },
  "dependencies": {
    "@kninnug/constrainautor": "^4.0.1",
    "delaunator": "^5.0.1",
    "robust-predicates": "^3.0.3",
    "tiny-exact-math": "^0.0.1"
  },
  "peerDependencies": {
    "three": ">=0.150.0"
  },
  "peerDependenciesMeta": {
    "three": {
      "optional": true
    }
  },
  "devDependencies": {
    "@rollup/plugin-node-resolve": "^16.0.0",
    "@rollup/plugin-terser": "^1.0.0",
    "jszip": "^3.10.1",
    "rollup": "^4.0.0",
    "three": "^0.183.0",
    "vite": "^7.0.0",
    "vitest": "^3.0.0"
  },
  "scripts": {
    "build": "rollup -c",
    "test": "vitest run",
    "dev": "vite",
    "build:docs": "npm run build && vite build && node scripts/copy-docs-libs.mjs",
    "prepublishOnly": "npm run build && npm run test"
  }
}
