{
  "name": "martinez-polygon-clipping",
  "version": "0.8.1",
  "description": "Martinez polygon clipping algorithm, does boolean operation on polygons (multipolygons, polygons with holes etc): intersection, union, difference, xor",
  "main": "dist/martinez.cjs",
  "browser": "dist/martinez.js",
  "module": "dist/martinez.js",
  "types": "dist/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/martinez.js",
      "require": "./dist/martinez.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist/"
  ],
  "scripts": {
    "test": "vitest",
    "test:ui": "vitest --ui",
    "test:run": "vitest run",
    "bench": "vitest bench",
    "lint": "oxlint src test bench demo",
    "typecheck": "tsc --noEmit",
    "dev": "vite --mode demo",
    "dev:demo": "vite --mode demo",
    "build": "vite build",
    "build:demo": "vite build --mode demo",
    "preview": "vite preview",
    "preview:demo": "vite preview --outDir dist/demo",
    "deploy:demo": "npm run build:demo && gh-pages --nojekyll -d dist/demo -t -m 'Deploy demo'",
    "prepublishOnly": "npm run lint && npm run test:run && npm run build"
  },
  "keywords": [
    "polygon",
    "clipping",
    "boolean",
    "intersection",
    "union",
    "xor",
    "geometry",
    "martinez"
  ],
  "repository": {
    "url": "git+https://github.com/w8r/martinez.git",
    "type": "git"
  },
  "homepage": "https://github.com/w8r/martinez",
  "author": "Alex Milevski <info@w8r.name>",
  "license": "MIT",
  "devDependencies": {
    "@turf/union": "^4.6.0",
    "@types/geojson": "^1.0.2",
    "@types/glob": "^8.1.0",
    "@types/jsts": "0.17.24",
    "@types/leaflet": "1.9.21",
    "@types/node": "^20.0.0",
    "@vitest/ui": "^1.0.0",
    "benchmark": "^2.1.4",
    "geojson-project": "^1.0.0",
    "gh-pages": "^6.1.1",
    "glob": "^11.0.3",
    "json-stringify-pretty-compact": "^2.0.0",
    "leaflet": "1.9.4",
    "leaflet-editable": "^1.3.2",
    "oxlint": "^0.9.10",
    "typescript": "^5.0.0",
    "vite": "^5.0.0",
    "vite-plugin-dts": "^3.0.0",
    "vitest": "^1.0.0"
  },
  "dependencies": {
    "robust-predicates": "^2.0.4",
    "splaytree": "^0.1.4",
    "tinyqueue": "3.0.0"
  }
}
