{
  "name": "bbox-helper-functions",
  "version": "4.0.1",
  "description": "Helper functions to convert BBoxes to multiple formats",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "author": "Alberto Rico",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/alrico88/bbox-helper-functions"
  },
  "sideEffects": false,
  "devDependencies": {
    "@biomejs/biome": "^2.2.4",
    "@rslib/core": "^0.13.3",
    "@types/dlv": "^1.1.2",
    "@types/geojson": "^7946.0.7",
    "@types/ngeohash": "^0.6.4",
    "@vitest/coverage-v8": "3.2.4",
    "geohash-to-geojson": "^4.2.1",
    "husky": "^9.1.7",
    "tslib": "^2.3.1",
    "typedoc": "^0.28.13",
    "typedoc-plugin-markdown": "^4.8.1",
    "typescript": "^5.9.2",
    "vitest": "^3.2.4"
  },
  "keywords": [
    "bbox",
    "bounding box",
    "polygon",
    "SQL",
    "GeoJSON",
    "wkt"
  ],
  "dependencies": {
    "@sindresorhus/is": "^7.1.0",
    "@turf/bbox": "^7.2.0",
    "dlv": "^1.1.3",
    "ngeohash": "^0.6.3",
    "string-object-formatter": "^4.0.1",
    "wkt-parser-helper": "^5.0.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pnpm run lint"
    }
  },
  "scripts": {
    "build": "rslib build",
    "check": "biome check --write",
    "dev": "rslib build --watch",
    "format": "biome format --write",
    "test": "vitest run",
    "coverage": "vitest run --coverage",
    "docs": "typedoc src/index.ts --readme none --gitRevision master --plugin typedoc-plugin-markdown",
    "prepublish": "pnpm run build"
  }
}