{
  "name": "ts-geojson-path-finder",
  "version": "1.0.3",
  "description": "Typescript implementation of the GeoJSON Path Finder algorithm from https://github.com/perliedman/geojson-path-finder",
  "author": "Mayur Rawte",
  "homepage": "https://github.com/mayurrawte/ts-geojson-path-finder",
  "repository": {
    "type": "git",
    "url": "https://github.com/mayurrawte/ts-geojson-path-finder"
  },
  "license": "ISC",
  "keywords": [
    "ts geojson",
    "geojson",
    "geojson-path-finder"
  ],
  "main": "dist/cjs/ts-geojson-path-finder.js",
  "module": "dist/esm/ts-geojson-path-finder.js",
  "browser": "dist/browser/ts-geojson-path-finder.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "dev": "rollup -c -w",
    "build": "rollup -c",
    "prebuild:types": "rimraf ./build",
    "build:types": "tsc -p ./tsconfig.json --outDir build --declaration true && api-extractor run",
    "predocs": "rimraf ./docs",
    "docs": "typedoc src --out docs",
    "clean": "rimraf ./build ./dist ./docs",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "devDependencies": {
    "@microsoft/api-extractor": "^7.19.4",
    "@rollup/plugin-commonjs": "^21.0.1",
    "@rollup/plugin-node-resolve": "^13.1.3",
    "@rollup/plugin-typescript": "^8.3.0",
    "eslint": "^8.8.0",
    "prettier": "^2.5.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.66.1",
    "ts-node": "^10.4.0",
    "tslib": "^2.3.1",
    "typedoc": "^0.22.11",
    "typescript": "^4.5.5"
  },
  "dependencies": {
    "@turf/distance": "^6.5.0",
    "@turf/explode": "^6.5.0",
    "tinyqueue": "^2.0.3"
  }
}
