{
  "name": "route-point-check",
  "version": "0.3.6",
  "description": "Route-point proximity and coverage checks with polyline/Coordinate based algorithms (TypeScript).",
  "license": "MIT",
  "type": "module",
  "master": "dist/index.js",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/cjs/index.cjs"
    },
    "./types": {
      "import": "./dist/types.js",
      "require": "./dist/cjs/types.cjs"
    },
    "./dist/*": "./dist/*",
    "./domain/*": {
      "import": "./dist/esm/domain/*.js",
      "require": "./dist/cjs/domain/*.cjs"
    }
  },
  "typesVersions": {
    "*": {
      "types": [
        "dist/types.d.ts"
      ],
      "dist/*": [
        "dist/*"
      ],
      "domain/*": [
        "dist/domain/*"
      ],
      "*": [
        "dist/*"
      ]
    }
  },
  "scripts": {
    "build": "tsc -p tsconfig.json && node scripts/fix-build.js && tsc -p tsconfig.cjs.json && node scripts/rename-cjs.js",
    "test": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage",
    "test:run": "vitest run",
    "viz": "echo Visualization script is dev-only and has been removed",
    "prepare": "npm run build",
    "verify": "node scripts/verify-build.cjs",
    "prepublishOnly": "npm run test:run && npm run build && npm run verify && node scripts/prepublish-guard.cjs",
    "release": "semantic-release"
  },
  "devDependencies": {
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/commit-analyzer": "^11.1.0",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/npm": "^11.0.2",
    "@semantic-release/release-notes-generator": "^12.1.0",
    "@types/node": "^24.3.0",
    "@vitest/coverage-v8": "^3.2.4",
    "@vitest/ui": "^3.2.4",
    "semantic-release": "^23.0.0",
    "ts-node": "^10.9.2",
    "tsx": "^4.20.5",
    "typescript": "^5.5.4",
    "vitest": "^3.2.4"
  },
  "dependencies": {
    "@turf/turf": "^7.2.0",
    "h3-js": "^4.2.1"
  },
  "keywords": [
    "route",
    "point",
    "proximity",
    "polyline",
    "h3",
    "matching",
    "distance",
    "radius",
    "algorithm",
    "typescript",
    "maps"
  ],
  "author": "Route Point Check Team",
  "repository": {
    "type": "git",
    "url": "https://github.com/berkcansavur/route-point-check.git"
  },
  "bugs": {
    "url": "https://github.com/berkcansavu/route-point-check/issues"
  },
  "homepage": "https://github.com/berkcansavur/route-point-check#readme"
}
