{
  "name": "react-leaflet",
  "version": "3.2.0",
  "description": "React components for Leaflet maps",
  "main": "cjs/index.js",
  "module": "esm/index.js",
  "types": "types/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "build:clean": "del cjs esm types umd",
    "build:cjs": "babel src --out-dir cjs --extensions .ts,.tsx",
    "build:esm": "cross-env BABEL_ENV=esm babel src --out-dir esm --extensions .ts,.tsx",
    "build:types": "tsc --emitDeclarationOnly",
    "build:umd": "cross-env BABEL_ENV=rollup NODE_ENV=development rollup -c",
    "build:umd:min": "cross-env BABEL_ENV=rollup NODE_ENV=production rollup -c",
    "build": "yarn run build:clean && yarn run build:cjs && yarn run build:esm && yarn run build:types && yarn run build:umd && yarn run build:umd:min",
    "test:types": "tsc --noEmit",
    "test:unit": "cross-env BABEL_ENV=development NODE_ENV=test jest",
    "test": "yarn run test:types && yarn run test:unit",
    "start": "yarn run test && yarn run build",
    "prepare": "yarn run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/PaulLeCam/react-leaflet.git"
  },
  "keywords": [
    "react-component",
    "react",
    "leaflet",
    "map"
  ],
  "author": "Paul Le Cam <paul@ulem.net>",
  "license": "Hippocratic-2.1",
  "bugs": {
    "url": "https://github.com/PaulLeCam/react-leaflet/issues"
  },
  "homepage": "https://react-leaflet.js.org",
  "files": [
    "cjs/*",
    "esm/*",
    "types/*",
    "umd/*"
  ],
  "dependencies": {
    "@react-leaflet/core": "^1.1.0"
  },
  "peerDependencies": {
    "leaflet": "^1.7.1",
    "react": "^17.0.1",
    "react-dom": "^17.0.1"
  },
  "devDependencies": {
    "@rollup/plugin-babel": "^5.3.0",
    "@rollup/plugin-commonjs": "^19.0.0",
    "@rollup/plugin-node-resolve": "^13.0.0",
    "@rollup/plugin-replace": "^2.3.4",
    "rollup": "^2.48.0",
    "rollup-plugin-terser": "^7.0.0"
  }
}
