{
  "name": "maplibre-gl-lidar",
  "version": "0.15.0",
  "description": "A MapLibre GL JS plugin for visualizing LiDAR point clouds using deck.gl",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/types/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/types/index.d.ts",
        "default": "./dist/index.cjs"
      }
    },
    "./react": {
      "import": {
        "types": "./dist/types/react.d.ts",
        "default": "./dist/react.mjs"
      },
      "require": {
        "types": "./dist/types/react.d.ts",
        "default": "./dist/react.cjs"
      }
    },
    "./style.css": "./dist/maplibre-gl-lidar.css"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": [
    "*.css"
  ],
  "scripts": {
    "dev": "vite",
    "build": "tsc -p tsconfig.build.json && vite build",
    "build:examples": "vite build --config vite.examples.config.ts",
    "preview": "vite preview",
    "test": "vitest --run",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest --coverage",
    "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
    "format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "maplibre",
    "maplibre-gl",
    "lidar",
    "point-cloud",
    "las",
    "laz",
    "copc",
    "deck.gl",
    "visualization",
    "3d",
    "geospatial",
    "react",
    "typescript"
  ],
  "author": "Qiusheng Wu",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/opengeos/maplibre-gl-lidar.git"
  },
  "peerDependencies": {
    "maplibre-gl": ">=3.0.0",
    "react": ">=18.0.0",
    "react-dom": ">=18.0.0"
  },
  "peerDependenciesMeta": {
    "react": {
      "optional": true
    },
    "react-dom": {
      "optional": true
    }
  },
  "dependencies": {
    "@deck.gl/core": ">=9.3.2",
    "@deck.gl/extensions": ">=9.3.2",
    "@deck.gl/layers": ">=9.3.2",
    "@deck.gl/mapbox": ">=9.3.2",
    "@loaders.gl/core": ">=4.4.2",
    "@loaders.gl/las": ">=4.4.2",
    "copc": ">=0.0.8",
    "maplibre-gl-layer-control": ">=0.14.1",
    "proj4": ">=2.20.8"
  },
  "devDependencies": {
    "@eslint/js": ">=10.0.1",
    "@rollup/plugin-replace": ">=6.0.3",
    "@testing-library/react": ">=16.3.2",
    "@testing-library/user-event": ">=14.6.1",
    "@types/node": ">=25.9.1",
    "@types/react": ">=19.2.15",
    "@types/react-dom": ">=19.2.3",
    "@typescript-eslint/eslint-plugin": ">=8.60.0",
    "@typescript-eslint/parser": ">=8.60.0",
    "@vitejs/plugin-react": ">=6.0.2",
    "@vitest/ui": ">=4.1.7",
    "eslint": ">=10.4.0",
    "globals": ">=17.6.0",
    "jsdom": ">=29.1.1",
    "maplibre-gl": ">=5.24.0",
    "prettier": ">=3.8.3",
    "react": ">=19.2.6",
    "react-dom": ">=19.2.6",
    "typescript": ">=6.0.3",
    "vite": ">=8.0.14",
    "vite-plugin-dts": ">=5.0.1",
    "vitest": ">=4.1.7"
  }
}
