{
  "name": "postgis",
  "version": "1.2.0",
  "description": "A lightweight, type-safe Node.js library for interacting with PostGIS-enabled PostgreSQL databases. Supports GeoJSON, Geobuf, MVT tiles, spatial queries, and more.",
  "author": "Suyog Dinesh Jadhav",
  "license": "MIT",
  "homepage": "https://jsuyog2.github.io/postgis",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jsuyog2/postgis.git"
  },
  "bugs": {
    "url": "https://github.com/jsuyog2/postgis/issues"
  },
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "engines": {
    "node": ">=18"
  },
  "keywords": [
    "postgis",
    "postgresql",
    "postgres",
    "geospatial",
    "gis",
    "spatial",
    "nodejs",
    "database",
    "geojson",
    "geobuf",
    "mvt",
    "vector-tiles",
    "mapbox",
    "pg",
    "node-postgres",
    "typescript",
    "wgs84",
    "srid",
    "bounding-box",
    "nearest-neighbor"
  ],
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run --coverage",
    "test:watch": "vitest",
    "lint": "eslint src __tests__",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "docs:dev": "vitepress dev docs",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs",
    "prepublishOnly": "npm run lint && npm run test && npm run build"
  },
  "devDependencies": {
    "@eslint/js": "^9.9.1",
    "@types/node": "^25.4.0",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "@vitest/coverage-v8": "^3.0.0",
    "eslint": "^9.0.0",
    "globals": "^15.9.0",
    "prettier": "^3.0.0",
    "tsup": "^8.0.0",
    "typescript": "^5.5.0",
    "typescript-eslint": "^8.0.0",
    "vitepress": "^1.6.4",
    "vitest": "^3.0.0"
  },
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/jsuyog2"
  }
}
