{
  "name": "@watergis/maplibre-gl-legend",
  "version": "2.0.7",
  "description": "This module adds legend control which is able to create legend panel from mapbox style to mapbox-gl-legend",
  "main": "dist/maplibre-gl-legend.umd.js",
  "types": "./dist/types/index.d.ts",
  "module": "dist/maplibre-gl-legend.es.js",
  "exports": {
    ".": {
      "import": "./dist/maplibre-gl-legend.es.js",
      "require": "./dist/maplibre-gl-legend.umd.js",
      "types": "./dist/types/index.d.ts"
    },
    "./dist/maplibre-gl-legend.css": {
      "import": "./dist/maplibre-gl-legend.css",
      "require": "./dist/maplibre-gl-legend.css"
    }
  },
  "files": [
    "dist",
    "package.json"
  ],
  "keywords": [
    "mapbox",
    "mapbox-gl-js",
    "legend"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/watergis/maplibre-gl-legend.git"
  },
  "author": "Jin IGARASHI",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/watergis/maplibre-gl-legend/issues"
  },
  "homepage": "https://github.com/watergis/maplibre-gl-legend/tree/main/packages/maplibre-gl-legend#readme",
  "devDependencies": {
    "@eslint/js": "^8.0.0",
    "@types/geojson": "^7946.0.16",
    "@types/node": "^20.19.39",
    "@typescript-eslint/eslint-plugin": "^5.62.0",
    "@typescript-eslint/parser": "^5.62.0",
    "autoprefixer": "^10.5.0",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^8.10.2",
    "eslint-plugin-import": "^2.32.0",
    "path": "^0.12.7",
    "postcss": "^8.5.14",
    "postcss-cli": "^10.1.0",
    "prettier": "^2.8.8",
    "sass": "^1.99.0",
    "sass-loader": "^13.3.3",
    "typescript": "^5.9.3",
    "vite": "^4.5.14"
  },
  "dependencies": {
    "@watergis/legend-symbol": "^0.2.3",
    "maplibre-gl": "^5.24.0"
  },
  "scripts": {
    "dev": "vite",
    "build": "npm run build:js && npm run build:css",
    "build:js": "tsc && vite build",
    "build:scss": "sass --no-source-map --style=compressed src/scss/maplibre-gl-legend.scss:dist/maplibre-gl-legend.css",
    "build:postcss": "postcss dist/*.css -r",
    "build:css": "npm run build:scss && npm run build:postcss",
    "preview": "vite preview",
    "lint": "prettier --plugin-search-dir . --check . && ESLINT_USE_FLAT_CONFIG=false eslint .",
    "format": "prettier --plugin-search-dir . --write ."
  }
}