{
  "name": "mapclay",
  "description": "Create interactive maps by simple options",
  "version": "0.11.0",
  "license": "MIT",
  "type": "module",
  "main": "index.mjs",
  "module": "index.mjs",
  "sideEffects": false,
  "files": [
    "index.mjs",
    "dist/**",
    "src/**",
    "assets/**"
  ],
  "keywords": [
    "map",
    "yaml"
  ],
  "devDependencies": {
    "@playwright/test": "^1.59.1",
    "@rollup/plugin-commonjs": "^28.0.1",
    "@rollup/plugin-node-resolve": "^15.2.3",
    "@rollup/plugin-terser": "^0.4.4",
    "globals": "^15.9.0",
    "happy-dom": "^20.9.0",
    "rollup": "^4.21.2",
    "vitest": "^4.1.5"
  },
  "dependencies": {
    "js-yaml": "^4.1.0",
    "leaflet": "^1.9.4",
    "maplibre-gl": "^5.0.0",
    "maplibre-gl-vector-text-protocol": "github:jimmyrocks/maplibre-gl-vector-text-protocol",
    "ol": "^10.2.1",
    "proj4": "^2.12.0",
    "terra-draw": "1.0.0-beta.1"
  },
  "author": "Hsiehg Chin Fan <pham@topo.tw>",
  "homepage": "https://outdoorsafetylab.org/",
  "repository": {
    "type": "git",
    "url": "https://github.com/outdoorsafetylab/mapclay"
  },
  "prettier": {
    "arrowParens": "avoid"
  },
  "scripts": {
    "watch": "npx rollup -c scripts/rollup.config.js -w",
    "build": "npx rollup -c scripts/rollup.config.js",
    "lint": "standard --fix",
    "docs": "jsdoc -c scripts/jsdoc.conf src/;",
    "test": "vitest run --config scripts/vitest.config.js",
    "test:e2e": "playwright test --config scripts/playwright.config.js"
  }
}