{
  "name": "2d-geometry",
  "version": "3.0.0",
  "description": "Performant & ergonomic 2D geometry in typescript",
  "main": "index.js",
  "module": "index.js",
  "types": "index.d.ts",
  "type": "module",
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.js",
    "./svg": "./dist/svg/index.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/romgrk/2d-geometry.git"
  },
  "keywords": [
    "geometry",
    "2d",
    "algorithms",
    "shape",
    "polygon",
    "distance",
    "intersection",
    "relation",
    "point in polygon",
    "spatial search",
    "affine transformations",
    "boolean operations",
    "polygon clipping",
    "dimensionally extended 9-intersections model"
  ],
  "author": "romgrk (https://github.com/romgrk)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/romgrk/2d-geometry/issues"
  },
  "homepage": "https://github.com/romgrk/2d-geometry",
  "engines": {
    "node": ">=4.2.4"
  },
  "devDependencies": {
    "@babel/cli": "^7.2.3",
    "@babel/core": "^7.22.9",
    "@babel/node": "^7.2.2",
    "@babel/preset-env": "^7.3.1",
    "@babel/register": "^7.18.9",
    "@biomejs/biome": "1.6.4",
    "@rollup/plugin-node-resolve": "^15.1.0",
    "babel-plugin-istanbul": "^5.1.1",
    "chai": "^4.2.0",
    "coveralls": "^3.0.3",
    "cross-env": "^5.2.0",
    "jsdoc": "^3.6.3",
    "minami": "^1.2.3",
    "mocha": "^8.2.1",
    "nyc": "^15.1.0",
    "rollup": "^3.25.1",
    "typescript": "^5.2.2"
  },
  "scripts": {
    "start": "tsc -w",
    "build": "tsc",
    "test": "cross-env NODE_ENV=test nyc --reporter=text --reporter=html mocha --recursive --experimental-modules --es-module-specifier-resolution=node",
    "generate-docs": "jsdoc -c ./.jsdoc.json --verbose",
    "create-patch": "npm version patch && git push —-tags origin master",
    "publish-npm": "npm publish --access public"
  }
}