{
  "name": "maplibre-proj",
  "version": "0.0.4",
  "description": "Any projection in MapLibre GL JS via backproj",
  "type": "module",
  "main": "dist/maplibre-proj.mjs",
  "module": "dist/maplibre-proj.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/maplibre-proj.mjs",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "esbuild src/index.ts --bundle --format=esm --external:proj-wasm --external:maplibre-gl --external:backproj --external:lru-cache --minify --sourcemap --outfile=dist/maplibre-proj.mjs && tsc --build",
    "build:dev": "esbuild src/index.ts --bundle --format=esm --external:proj-wasm --external:maplibre-gl --external:backproj --external:lru-cache --sourcemap --outfile=dist/maplibre-proj.mjs && tsc --build",
    "check": "tsc --noEmit"
  },
  "dependencies": {
    "backproj": ">=0.0.4"
  },
  "peerDependencies": {
    "@wcohen/wasmts": ">=0.1.0-alpha4",
    "maplibre-gl": ">=5.0.0"
  },
  "devDependencies": {
    "esbuild": "^0.27.3",
    "typescript": "^5.9.3"
  },
  "license": "MIT"
}
