{
  "name": "@wendraw/three-bvh-csg",
  "version": "0.0.19",
  "description": "A fast, flexible, dynamic CSG implementation on top of three-mesh-bvh",
  "main": "build/index.umd.cjs",
  "module": "build/index.module.js",
  "type": "module",
  "types": "build/index.d.ts",
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "build/*"
  ],
  "keywords": [
    "construction",
    "webgl",
    "threejs",
    "geometry",
    "graphics",
    "game-development",
    "csg",
    "3d-printing",
    "three",
    "constructive-solid-geometry",
    "computational-solid-geometry",
    "three-mesh-bvh"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gkjohnson/three-bvh-csg.git"
  },
  "author": "Garrett Johnson <garrett.kjohnson@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/gkjohnson/three-bvh-csg/issues"
  },
  "homepage": "https://github.com/gkjohnson/three-bvh-csg#readme",
  "peerDependencies": {
    "three": ">=0.151.0",
    "three-mesh-bvh": ">=0.6.6"
  },
  "devDependencies": {
    "@babel/core": "^7.15.5",
    "@babel/preset-env": "^7.15.4",
    "@rollup/plugin-typescript": "^12.1.2",
    "@types/eslint": "^7.28.1",
    "@types/jest": "^27.0.2",
    "@types/three": "^0.152.0",
    "@typescript-eslint/eslint-plugin": "^5.36.2",
    "@typescript-eslint/parser": "^5.36.2",
    "babel-jest": "^27.2.4",
    "eslint": "^8.16.0",
    "eslint-config-mdcs": "^5.0.0",
    "eslint-plugin-jest": "^23.20.0",
    "jest": "^27.2.4",
    "jsonc-eslint-parser": "^2.4.0",
    "parcel": "^2.6.0",
    "rollup": "^2.70.0",
    "rollup-plugin-dts": "^6.1.1",
    "three": "^0.155.0",
    "three-csg-ts": "^3.1.10",
    "three-mesh-bvh": "^0.6.6",
    "typescript": "^4.8.2"
  },
  "scripts": {
    "start": "cd examples && parcel serve ./*.html --dist-dir ./dev-bundle/ --no-cache --no-hmr",
    "build-examples": "cd examples && parcel build ./*.html --dist-dir ./bundle/ --public-url . --no-cache --no-content-hash",
    "build": "rollup -c && npm run clean-temp-dts",
    "clean-temp-dts": "find build -name '*.d.ts' -not -path 'build/index.d.ts' -type f -delete && find build -type d -empty -delete",
    "lint": "eslint \"./src/**/*.{js,ts}\" \"./examples/*.js\" && tsc -p tsconfig.json --noEmit",
    "benchmark": "node ./benchmark/benchmark.js",
    "test": "cd tests && jest"
  }
}