├── .DS_Store ├── .eslintrc.js ├── .gitignore ├── .prettierrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dist ├── assets │ ├── MarkerCluster.Default.css │ └── MarkerCluster.css ├── index.d.ts └── index.js ├── examples ├── .DS_Store └── vite-example │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── MarkerCluster.Default.css │ ├── MarkerCluster.css │ └── vite.svg │ ├── src │ ├── App.tsx │ ├── components │ │ ├── CustomMarkerCluster.css │ │ ├── CustomMarkerCluster.tsx │ │ ├── SimpleExample.tsx │ │ └── TenThousandMarker.tsx │ ├── main.tsx │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ ├── vite.config.ts │ └── vite.svg ├── index.html ├── package-lock.json ├── package.json ├── showcase.gif ├── src ├── assets │ ├── MarkerCluster.Default.css │ └── MarkerCluster.css └── index.tsx └── tsconfig.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akursat/react-leaflet-cluster/c4775915d8b8667bb91612155ee0309cc7b2a7ed/.DS_Store -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | parser: '@typescript-eslint/parser', // Specifies the ESLint parser 3 | parserOptions: { 4 | ecmaVersion: 2020, // Allows for the parsing of modern ECMAScript features 5 | sourceType: 'module', // Allows for the use of imports 6 | ecmaFeatures: { 7 | jsx: true, // Allows for the parsing of JSX 8 | }, 9 | }, 10 | settings: { 11 | react: { 12 | version: 'detect', // Tells eslint-plugin-react to automatically detect the version of React to use 13 | }, 14 | }, 15 | extends: [ 16 | 'plugin:react/recommended', // Uses the recommended rules from @eslint-plugin-react 17 | 'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin 18 | 'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier 19 | 'plugin:prettier/recommended', // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array. 20 | ], 21 | plugins: ['react-hooks'], 22 | rules: { 23 | // Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs 24 | // e.g. "@typescript-eslint/explicit-function-return-type": "off", 25 | 'react-hooks/rules-of-hooks': 'error', 26 | 'react-hooks/exhaustive-deps': 'warn', 27 | }, 28 | }; -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /demo/dist 3 | /es 4 | /lib 5 | /node_modules 6 | /umd 7 | /examples/custom-marker-cluster/.yalc 8 | /examples/ten-thousand-marker/.yalc 9 | .yalc 10 | npm-debug.log* 11 | -------------------------------------------------------------------------------- /.prettierrc.yml: -------------------------------------------------------------------------------- 1 | semi: false 2 | trailingComma: 'all' 3 | singleQuote: true 4 | printWidth: 100 5 | tabWidth: 2 -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Prerequisites 2 | 3 | [Node.js](http://nodejs.org/) >= 10 must be installed. 4 | 5 | ## Installation 6 | 7 | - Running `npm install` in the component's root directory will install everything you need for development. 8 | 9 | ## Demo Development Server 10 | 11 | - `npm start` will run a development server with the component's demo app at [http://localhost:3000](http://localhost:3000) with hot module reloading. 12 | 13 | ## Running Tests 14 | 15 | - `npm test` will run the tests once. 16 | 17 | - `npm run test:coverage` will run the tests and produce a coverage report in `coverage/`. 18 | 19 | - `npm run test:watch` will run the tests on every change. 20 | 21 | ## Building 22 | 23 | - `npm run build` will build the component for publishing to npm and also bundle the demo app. 24 | 25 | - `npm run clean` will delete built resources. 26 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 A. Kürşat Uzun 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # react-leaflet-cluster [![npm version](https://img.shields.io/npm/v/react-leaflet-cluster.svg)](https://www.npmjs.com/package/react-leaflet-cluster) 2 | - [x] React 19 support 3 | - [x] React-leaflet v4 support 4 | - [x] Typescript support 5 | - [x] Next.js compatibility 6 | 7 | ## Breaking Changes in v3.0.0 8 | 9 | **CSS imports are now required manually** - The package no longer automatically imports CSS files to prevent Next.js build issues. You must now import the CSS files separately: 10 | 11 | ```tsx 12 | import 'react-leaflet-cluster/dist/assets/MarkerCluster.css' 13 | import 'react-leaflet-cluster/dist/assets/MarkerCluster.Default.css' 14 | ``` 15 | 16 | React-leaflet-cluster is a plugin for react-leaflet. A wrapper component of Leaflet.markercluster. Ready to be integrated into your React.js application to create beautifully animated Marker Clustering functionality. 17 | 18 | ![](showcase.gif) 19 | 20 | ### Examples - Code Sandbox 21 | 22 | - [10.000 marker](https://codesandbox.io/s/hidden-breeze-nrd3e?fontsize=14&hidenavigation=1&theme=dark) 23 | - [Custom marker cluster](https://codesandbox.io/s/beautiful-pike-j2l0w?file=/src/App.tsx) 24 | 25 | ### Installation 26 | 27 | `yarn add react-leaflet-cluster` 28 | 29 | Or with npm: 30 | `npm i react-leaflet-cluster` 31 | 32 | #### Prerequisites 33 | 34 | Make sure that you've installed react-leaflet and leaflet. 35 | 36 | ```json 37 | "react": "18.x", 38 | "leaflet": "1.8.x", 39 | "react-leaflet": "4.0.x" 40 | ``` 41 | 42 | #### CSS Import 43 | 44 | The package requires CSS files to be imported for proper styling. Add these imports to your main component or entry file: 45 | 46 | ```tsx 47 | import 'react-leaflet-cluster/dist/assets/MarkerCluster.css' 48 | import 'react-leaflet-cluster/dist/assets/MarkerCluster.Default.css' 49 | ``` 50 | 51 | **Note for Next.js users**: These CSS imports are required and should be added to your component or a global CSS file. The package no longer automatically imports CSS to prevent Next.js build issues. 52 | 53 | #### Icon Configuration 54 | 55 | The package no longer automatically configures Leaflet's default marker icons. If you need to use default markers, you'll need to configure the icon URLs yourself. Add this configuration to your component or entry file: 56 | 57 | ```tsx 58 | import L from 'leaflet' 59 | 60 | // Configure default marker icons 61 | delete (L.Icon.Default as any).prototype._getIconUrl 62 | L.Icon.Default.mergeOptions({ 63 | iconRetinaUrl: 'https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon-2x.png', 64 | iconUrl: 'https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon.png', 65 | shadowUrl: 'https://unpkg.com/leaflet@1.9.4/dist/images/marker-shadow.png', 66 | }) 67 | ``` 68 | 69 | Alternatively, you can use your own custom icons for markers: 70 | 71 | ```tsx 72 | import L from 'leaflet' 73 | 74 | const customIcon = new L.Icon({ 75 | iconUrl: '/path/to/your/marker-icon.png', 76 | iconSize: [25, 41], 77 | iconAnchor: [12, 41], 78 | popupAnchor: [1, -34], 79 | shadowUrl: '/path/to/your/marker-shadow.png', 80 | shadowSize: [41, 41], 81 | }) 82 | ``` 83 | 84 | #### Migration from v2.x 85 | 86 | If you're upgrading from v2.x, you need to add the CSS imports manually. The package will work without them, but the clustering won't be styled properly. 87 | 88 | **Before (v2.x):** 89 | 90 | ```tsx 91 | import MarkerClusterGroup from 'react-leaflet-cluster' 92 | // CSS was automatically imported 93 | ``` 94 | 95 | **After (v3.1.0):** 96 | 97 | ```tsx 98 | import MarkerClusterGroup from 'react-leaflet-cluster' 99 | import 'react-leaflet-cluster/dist/assets/MarkerCluster.css' 100 | import 'react-leaflet-cluster/dist/assets/MarkerCluster.Default.css' 101 | ``` 102 | 103 | #### API 104 | 105 | For more detailed guide and API see: 106 | https://akursat.gitbook.io/marker-cluster/api 107 | 108 | #### Usage 109 | 110 | ```tsx 111 | import MarkerClusterGroup from 'react-leaflet-cluster' 112 | import { MapContainer, Marker } from 'react-leaflet' 113 | import 'leaflet/dist/leaflet.css' 114 | // Import the required CSS for marker clustering 115 | import 'react-leaflet-cluster/dist/assets/MarkerCluster.css' 116 | import 'react-leaflet-cluster/dist/assets/MarkerCluster.Default.css' 117 | import { addressPoints } from './realworld' 118 | 119 | const Demo = () => { 120 | return ( 121 | 127 | 128 | {(addressPoints as AdressPoint).map((address, index) => ( 129 | 135 | ))} 136 | 137 | 138 | ) 139 | } 140 | ``` 141 | -------------------------------------------------------------------------------- /dist/assets/MarkerCluster.Default.css: -------------------------------------------------------------------------------- 1 | /* To solve Next.js issues source from https://github.com/Leaflet/Leaflet.markercluster/blob/master/dist/MarkerCluster.Default.css */ 2 | .marker-cluster-small { 3 | background-color: rgba(181, 226, 140, 0.6); 4 | } 5 | .marker-cluster-small div { 6 | background-color: rgba(110, 204, 57, 0.6); 7 | } 8 | 9 | .marker-cluster-medium { 10 | background-color: rgba(241, 211, 87, 0.6); 11 | } 12 | .marker-cluster-medium div { 13 | background-color: rgba(240, 194, 12, 0.6); 14 | } 15 | 16 | .marker-cluster-large { 17 | background-color: rgba(253, 156, 115, 0.6); 18 | } 19 | .marker-cluster-large div { 20 | background-color: rgba(241, 128, 23, 0.6); 21 | } 22 | 23 | /* IE 6-8 fallback colors */ 24 | .leaflet-oldie .marker-cluster-small { 25 | background-color: rgb(181, 226, 140); 26 | } 27 | .leaflet-oldie .marker-cluster-small div { 28 | background-color: rgb(110, 204, 57); 29 | } 30 | 31 | .leaflet-oldie .marker-cluster-medium { 32 | background-color: rgb(241, 211, 87); 33 | } 34 | .leaflet-oldie .marker-cluster-medium div { 35 | background-color: rgb(240, 194, 12); 36 | } 37 | 38 | .leaflet-oldie .marker-cluster-large { 39 | background-color: rgb(253, 156, 115); 40 | } 41 | .leaflet-oldie .marker-cluster-large div { 42 | background-color: rgb(241, 128, 23); 43 | } 44 | 45 | .marker-cluster { 46 | background-clip: padding-box; 47 | border-radius: 20px; 48 | } 49 | .marker-cluster div { 50 | width: 30px; 51 | height: 30px; 52 | margin-left: 5px; 53 | margin-top: 5px; 54 | 55 | text-align: center; 56 | border-radius: 15px; 57 | font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif; 58 | } 59 | .marker-cluster span { 60 | line-height: 30px; 61 | } -------------------------------------------------------------------------------- /dist/assets/MarkerCluster.css: -------------------------------------------------------------------------------- 1 | /* To solve Next.js issues source from https://github.com/Leaflet/Leaflet.markercluster/blob/master/dist/MarkerCluster.css */ 2 | .leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow { 3 | -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in; 4 | -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in; 5 | -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in; 6 | transition: transform 0.3s ease-out, opacity 0.3s ease-in; 7 | } 8 | 9 | .leaflet-cluster-spider-leg { 10 | /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */ 11 | -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in; 12 | -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in; 13 | -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in; 14 | transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in; 15 | } -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import L, { LeafletMouseEventHandlerFn } from 'leaflet'; 3 | import 'leaflet.markercluster'; 4 | type ClusterEvents = { 5 | onClick?: LeafletMouseEventHandlerFn; 6 | onDblClick?: LeafletMouseEventHandlerFn; 7 | onMouseDown?: LeafletMouseEventHandlerFn; 8 | onMouseUp?: LeafletMouseEventHandlerFn; 9 | onMouseOver?: LeafletMouseEventHandlerFn; 10 | onMouseOut?: LeafletMouseEventHandlerFn; 11 | onContextMenu?: LeafletMouseEventHandlerFn; 12 | }; 13 | declare const MarkerClusterGroup: React.ForwardRefExoticComponent>; 16 | export default MarkerClusterGroup; 17 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- 1 | import { extendContext, createElementObject, createPathComponent, } from '@react-leaflet/core'; 2 | import L from 'leaflet'; 3 | import 'leaflet.markercluster'; 4 | function getPropsAndEvents(props) { 5 | let clusterProps = {}; 6 | let clusterEvents = {}; 7 | const { children, ...rest } = props; 8 | // Splitting props and events to different objects 9 | Object.entries(rest).forEach(([propName, prop]) => { 10 | if (propName.startsWith('on')) { 11 | clusterEvents = { ...clusterEvents, [propName]: prop }; 12 | } 13 | else { 14 | clusterProps = { ...clusterProps, [propName]: prop }; 15 | } 16 | }); 17 | return { clusterProps, clusterEvents }; 18 | } 19 | function createMarkerClusterGroup(props, context) { 20 | const { clusterProps, clusterEvents } = getPropsAndEvents(props); 21 | const markerClusterGroup = new L.MarkerClusterGroup(clusterProps); 22 | Object.entries(clusterEvents).forEach(([eventAsProp, callback]) => { 23 | const clusterEvent = `cluster${eventAsProp.substring(2).toLowerCase()}`; 24 | markerClusterGroup.on(clusterEvent, callback); 25 | }); 26 | return createElementObject(markerClusterGroup, extendContext(context, { layerContainer: markerClusterGroup })); 27 | } 28 | const updateMarkerCluster = (instance, props, prevProps) => { 29 | //TODO when prop change update instance 30 | // if (props. !== prevProps.center || props.size !== prevProps.size) { 31 | // instance.setBounds(getBounds(props)) 32 | // } 33 | }; 34 | const MarkerClusterGroup = createPathComponent(createMarkerClusterGroup, updateMarkerCluster); 35 | export default MarkerClusterGroup; 36 | -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akursat/react-leaflet-cluster/c4775915d8b8667bb91612155ee0309cc7b2a7ed/examples/.DS_Store -------------------------------------------------------------------------------- /examples/vite-example/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | env: { browser: true, es2020: true }, 3 | extends: [ 4 | 'eslint:recommended', 5 | 'plugin:@typescript-eslint/recommended', 6 | 'plugin:react-hooks/recommended', 7 | ], 8 | parser: '@typescript-eslint/parser', 9 | parserOptions: { ecmaVersion: 'latest', sourceType: 'module' }, 10 | plugins: ['react-refresh'], 11 | rules: { 12 | 'react-refresh/only-export-components': 'warn', 13 | }, 14 | } 15 | -------------------------------------------------------------------------------- /examples/vite-example/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /examples/vite-example/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite + React + TS + Leaflet + Marker Cluster 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /examples/vite-example/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my-vite-app", 3 | "version": "0.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "my-vite-app", 9 | "version": "0.0.0", 10 | "dependencies": { 11 | "leaflet": "^1.9.4", 12 | "react": "^18.2.0", 13 | "react-dom": "^18.2.0", 14 | "react-leaflet": "^4.2.1", 15 | "react-leaflet-cluster": "^3.1.1" 16 | }, 17 | "devDependencies": { 18 | "@types/leaflet": "^1.9.3", 19 | "@types/react": "^18.2.0", 20 | "@types/react-dom": "^18.2.0", 21 | "@typescript-eslint/eslint-plugin": "^5.59.0", 22 | "@typescript-eslint/parser": "^5.59.0", 23 | "@vitejs/plugin-react": "^4.0.0", 24 | "eslint": "^8.38.0", 25 | "eslint-plugin-react-hooks": "^4.6.0", 26 | "eslint-plugin-react-refresh": "^0.3.4", 27 | "typescript": "^5.0.2", 28 | "vite": "^4.3.9" 29 | } 30 | }, 31 | "node_modules/@ampproject/remapping": { 32 | "version": "2.3.0", 33 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 34 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 35 | "dev": true, 36 | "dependencies": { 37 | "@jridgewell/gen-mapping": "^0.3.5", 38 | "@jridgewell/trace-mapping": "^0.3.24" 39 | }, 40 | "engines": { 41 | "node": ">=6.0.0" 42 | } 43 | }, 44 | "node_modules/@babel/code-frame": { 45 | "version": "7.27.1", 46 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", 47 | "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", 48 | "dev": true, 49 | "dependencies": { 50 | "@babel/helper-validator-identifier": "^7.27.1", 51 | "js-tokens": "^4.0.0", 52 | "picocolors": "^1.1.1" 53 | }, 54 | "engines": { 55 | "node": ">=6.9.0" 56 | } 57 | }, 58 | "node_modules/@babel/compat-data": { 59 | "version": "7.28.0", 60 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz", 61 | "integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==", 62 | "dev": true, 63 | "engines": { 64 | "node": ">=6.9.0" 65 | } 66 | }, 67 | "node_modules/@babel/core": { 68 | "version": "7.28.0", 69 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.0.tgz", 70 | "integrity": "sha512-UlLAnTPrFdNGoFtbSXwcGFQBtQZJCNjaN6hQNP3UPvuNXT1i82N26KL3dZeIpNalWywr9IuQuncaAfUaS1g6sQ==", 71 | "dev": true, 72 | "dependencies": { 73 | "@ampproject/remapping": "^2.2.0", 74 | "@babel/code-frame": "^7.27.1", 75 | "@babel/generator": "^7.28.0", 76 | "@babel/helper-compilation-targets": "^7.27.2", 77 | "@babel/helper-module-transforms": "^7.27.3", 78 | "@babel/helpers": "^7.27.6", 79 | "@babel/parser": "^7.28.0", 80 | "@babel/template": "^7.27.2", 81 | "@babel/traverse": "^7.28.0", 82 | "@babel/types": "^7.28.0", 83 | "convert-source-map": "^2.0.0", 84 | "debug": "^4.1.0", 85 | "gensync": "^1.0.0-beta.2", 86 | "json5": "^2.2.3", 87 | "semver": "^6.3.1" 88 | }, 89 | "engines": { 90 | "node": ">=6.9.0" 91 | }, 92 | "funding": { 93 | "type": "opencollective", 94 | "url": "https://opencollective.com/babel" 95 | } 96 | }, 97 | "node_modules/@babel/core/node_modules/semver": { 98 | "version": "6.3.1", 99 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 100 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 101 | "dev": true, 102 | "bin": { 103 | "semver": "bin/semver.js" 104 | } 105 | }, 106 | "node_modules/@babel/generator": { 107 | "version": "7.28.0", 108 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz", 109 | "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==", 110 | "dev": true, 111 | "dependencies": { 112 | "@babel/parser": "^7.28.0", 113 | "@babel/types": "^7.28.0", 114 | "@jridgewell/gen-mapping": "^0.3.12", 115 | "@jridgewell/trace-mapping": "^0.3.28", 116 | "jsesc": "^3.0.2" 117 | }, 118 | "engines": { 119 | "node": ">=6.9.0" 120 | } 121 | }, 122 | "node_modules/@babel/helper-compilation-targets": { 123 | "version": "7.27.2", 124 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", 125 | "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", 126 | "dev": true, 127 | "dependencies": { 128 | "@babel/compat-data": "^7.27.2", 129 | "@babel/helper-validator-option": "^7.27.1", 130 | "browserslist": "^4.24.0", 131 | "lru-cache": "^5.1.1", 132 | "semver": "^6.3.1" 133 | }, 134 | "engines": { 135 | "node": ">=6.9.0" 136 | } 137 | }, 138 | "node_modules/@babel/helper-compilation-targets/node_modules/semver": { 139 | "version": "6.3.1", 140 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 141 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 142 | "dev": true, 143 | "bin": { 144 | "semver": "bin/semver.js" 145 | } 146 | }, 147 | "node_modules/@babel/helper-globals": { 148 | "version": "7.28.0", 149 | "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", 150 | "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", 151 | "dev": true, 152 | "engines": { 153 | "node": ">=6.9.0" 154 | } 155 | }, 156 | "node_modules/@babel/helper-module-imports": { 157 | "version": "7.27.1", 158 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", 159 | "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", 160 | "dev": true, 161 | "dependencies": { 162 | "@babel/traverse": "^7.27.1", 163 | "@babel/types": "^7.27.1" 164 | }, 165 | "engines": { 166 | "node": ">=6.9.0" 167 | } 168 | }, 169 | "node_modules/@babel/helper-module-transforms": { 170 | "version": "7.27.3", 171 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.27.3.tgz", 172 | "integrity": "sha512-dSOvYwvyLsWBeIRyOeHXp5vPj5l1I011r52FM1+r1jCERv+aFXYk4whgQccYEGYxK2H3ZAIA8nuPkQ0HaUo3qg==", 173 | "dev": true, 174 | "dependencies": { 175 | "@babel/helper-module-imports": "^7.27.1", 176 | "@babel/helper-validator-identifier": "^7.27.1", 177 | "@babel/traverse": "^7.27.3" 178 | }, 179 | "engines": { 180 | "node": ">=6.9.0" 181 | }, 182 | "peerDependencies": { 183 | "@babel/core": "^7.0.0" 184 | } 185 | }, 186 | "node_modules/@babel/helper-plugin-utils": { 187 | "version": "7.27.1", 188 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", 189 | "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", 190 | "dev": true, 191 | "engines": { 192 | "node": ">=6.9.0" 193 | } 194 | }, 195 | "node_modules/@babel/helper-string-parser": { 196 | "version": "7.27.1", 197 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", 198 | "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", 199 | "dev": true, 200 | "engines": { 201 | "node": ">=6.9.0" 202 | } 203 | }, 204 | "node_modules/@babel/helper-validator-identifier": { 205 | "version": "7.27.1", 206 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", 207 | "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", 208 | "dev": true, 209 | "engines": { 210 | "node": ">=6.9.0" 211 | } 212 | }, 213 | "node_modules/@babel/helper-validator-option": { 214 | "version": "7.27.1", 215 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", 216 | "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", 217 | "dev": true, 218 | "engines": { 219 | "node": ">=6.9.0" 220 | } 221 | }, 222 | "node_modules/@babel/helpers": { 223 | "version": "7.28.2", 224 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.2.tgz", 225 | "integrity": "sha512-/V9771t+EgXz62aCcyofnQhGM8DQACbRhvzKFsXKC9QM+5MadF8ZmIm0crDMaz3+o0h0zXfJnd4EhbYbxsrcFw==", 226 | "dev": true, 227 | "dependencies": { 228 | "@babel/template": "^7.27.2", 229 | "@babel/types": "^7.28.2" 230 | }, 231 | "engines": { 232 | "node": ">=6.9.0" 233 | } 234 | }, 235 | "node_modules/@babel/parser": { 236 | "version": "7.28.0", 237 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz", 238 | "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==", 239 | "dev": true, 240 | "dependencies": { 241 | "@babel/types": "^7.28.0" 242 | }, 243 | "bin": { 244 | "parser": "bin/babel-parser.js" 245 | }, 246 | "engines": { 247 | "node": ">=6.0.0" 248 | } 249 | }, 250 | "node_modules/@babel/plugin-transform-react-jsx-self": { 251 | "version": "7.27.1", 252 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", 253 | "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", 254 | "dev": true, 255 | "dependencies": { 256 | "@babel/helper-plugin-utils": "^7.27.1" 257 | }, 258 | "engines": { 259 | "node": ">=6.9.0" 260 | }, 261 | "peerDependencies": { 262 | "@babel/core": "^7.0.0-0" 263 | } 264 | }, 265 | "node_modules/@babel/plugin-transform-react-jsx-source": { 266 | "version": "7.27.1", 267 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", 268 | "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", 269 | "dev": true, 270 | "dependencies": { 271 | "@babel/helper-plugin-utils": "^7.27.1" 272 | }, 273 | "engines": { 274 | "node": ">=6.9.0" 275 | }, 276 | "peerDependencies": { 277 | "@babel/core": "^7.0.0-0" 278 | } 279 | }, 280 | "node_modules/@babel/template": { 281 | "version": "7.27.2", 282 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", 283 | "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", 284 | "dev": true, 285 | "dependencies": { 286 | "@babel/code-frame": "^7.27.1", 287 | "@babel/parser": "^7.27.2", 288 | "@babel/types": "^7.27.1" 289 | }, 290 | "engines": { 291 | "node": ">=6.9.0" 292 | } 293 | }, 294 | "node_modules/@babel/traverse": { 295 | "version": "7.28.0", 296 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz", 297 | "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==", 298 | "dev": true, 299 | "dependencies": { 300 | "@babel/code-frame": "^7.27.1", 301 | "@babel/generator": "^7.28.0", 302 | "@babel/helper-globals": "^7.28.0", 303 | "@babel/parser": "^7.28.0", 304 | "@babel/template": "^7.27.2", 305 | "@babel/types": "^7.28.0", 306 | "debug": "^4.3.1" 307 | }, 308 | "engines": { 309 | "node": ">=6.9.0" 310 | } 311 | }, 312 | "node_modules/@babel/types": { 313 | "version": "7.28.2", 314 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz", 315 | "integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==", 316 | "dev": true, 317 | "dependencies": { 318 | "@babel/helper-string-parser": "^7.27.1", 319 | "@babel/helper-validator-identifier": "^7.27.1" 320 | }, 321 | "engines": { 322 | "node": ">=6.9.0" 323 | } 324 | }, 325 | "node_modules/@esbuild/android-arm": { 326 | "version": "0.18.20", 327 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", 328 | "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", 329 | "cpu": [ 330 | "arm" 331 | ], 332 | "dev": true, 333 | "optional": true, 334 | "os": [ 335 | "android" 336 | ], 337 | "engines": { 338 | "node": ">=12" 339 | } 340 | }, 341 | "node_modules/@esbuild/android-arm64": { 342 | "version": "0.18.20", 343 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", 344 | "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", 345 | "cpu": [ 346 | "arm64" 347 | ], 348 | "dev": true, 349 | "optional": true, 350 | "os": [ 351 | "android" 352 | ], 353 | "engines": { 354 | "node": ">=12" 355 | } 356 | }, 357 | "node_modules/@esbuild/android-x64": { 358 | "version": "0.18.20", 359 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", 360 | "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", 361 | "cpu": [ 362 | "x64" 363 | ], 364 | "dev": true, 365 | "optional": true, 366 | "os": [ 367 | "android" 368 | ], 369 | "engines": { 370 | "node": ">=12" 371 | } 372 | }, 373 | "node_modules/@esbuild/darwin-arm64": { 374 | "version": "0.18.20", 375 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", 376 | "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", 377 | "cpu": [ 378 | "arm64" 379 | ], 380 | "dev": true, 381 | "optional": true, 382 | "os": [ 383 | "darwin" 384 | ], 385 | "engines": { 386 | "node": ">=12" 387 | } 388 | }, 389 | "node_modules/@esbuild/darwin-x64": { 390 | "version": "0.18.20", 391 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", 392 | "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", 393 | "cpu": [ 394 | "x64" 395 | ], 396 | "dev": true, 397 | "optional": true, 398 | "os": [ 399 | "darwin" 400 | ], 401 | "engines": { 402 | "node": ">=12" 403 | } 404 | }, 405 | "node_modules/@esbuild/freebsd-arm64": { 406 | "version": "0.18.20", 407 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", 408 | "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", 409 | "cpu": [ 410 | "arm64" 411 | ], 412 | "dev": true, 413 | "optional": true, 414 | "os": [ 415 | "freebsd" 416 | ], 417 | "engines": { 418 | "node": ">=12" 419 | } 420 | }, 421 | "node_modules/@esbuild/freebsd-x64": { 422 | "version": "0.18.20", 423 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", 424 | "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", 425 | "cpu": [ 426 | "x64" 427 | ], 428 | "dev": true, 429 | "optional": true, 430 | "os": [ 431 | "freebsd" 432 | ], 433 | "engines": { 434 | "node": ">=12" 435 | } 436 | }, 437 | "node_modules/@esbuild/linux-arm": { 438 | "version": "0.18.20", 439 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", 440 | "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", 441 | "cpu": [ 442 | "arm" 443 | ], 444 | "dev": true, 445 | "optional": true, 446 | "os": [ 447 | "linux" 448 | ], 449 | "engines": { 450 | "node": ">=12" 451 | } 452 | }, 453 | "node_modules/@esbuild/linux-arm64": { 454 | "version": "0.18.20", 455 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", 456 | "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", 457 | "cpu": [ 458 | "arm64" 459 | ], 460 | "dev": true, 461 | "optional": true, 462 | "os": [ 463 | "linux" 464 | ], 465 | "engines": { 466 | "node": ">=12" 467 | } 468 | }, 469 | "node_modules/@esbuild/linux-ia32": { 470 | "version": "0.18.20", 471 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", 472 | "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", 473 | "cpu": [ 474 | "ia32" 475 | ], 476 | "dev": true, 477 | "optional": true, 478 | "os": [ 479 | "linux" 480 | ], 481 | "engines": { 482 | "node": ">=12" 483 | } 484 | }, 485 | "node_modules/@esbuild/linux-loong64": { 486 | "version": "0.18.20", 487 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", 488 | "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", 489 | "cpu": [ 490 | "loong64" 491 | ], 492 | "dev": true, 493 | "optional": true, 494 | "os": [ 495 | "linux" 496 | ], 497 | "engines": { 498 | "node": ">=12" 499 | } 500 | }, 501 | "node_modules/@esbuild/linux-mips64el": { 502 | "version": "0.18.20", 503 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", 504 | "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", 505 | "cpu": [ 506 | "mips64el" 507 | ], 508 | "dev": true, 509 | "optional": true, 510 | "os": [ 511 | "linux" 512 | ], 513 | "engines": { 514 | "node": ">=12" 515 | } 516 | }, 517 | "node_modules/@esbuild/linux-ppc64": { 518 | "version": "0.18.20", 519 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", 520 | "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", 521 | "cpu": [ 522 | "ppc64" 523 | ], 524 | "dev": true, 525 | "optional": true, 526 | "os": [ 527 | "linux" 528 | ], 529 | "engines": { 530 | "node": ">=12" 531 | } 532 | }, 533 | "node_modules/@esbuild/linux-riscv64": { 534 | "version": "0.18.20", 535 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", 536 | "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", 537 | "cpu": [ 538 | "riscv64" 539 | ], 540 | "dev": true, 541 | "optional": true, 542 | "os": [ 543 | "linux" 544 | ], 545 | "engines": { 546 | "node": ">=12" 547 | } 548 | }, 549 | "node_modules/@esbuild/linux-s390x": { 550 | "version": "0.18.20", 551 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", 552 | "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", 553 | "cpu": [ 554 | "s390x" 555 | ], 556 | "dev": true, 557 | "optional": true, 558 | "os": [ 559 | "linux" 560 | ], 561 | "engines": { 562 | "node": ">=12" 563 | } 564 | }, 565 | "node_modules/@esbuild/linux-x64": { 566 | "version": "0.18.20", 567 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", 568 | "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", 569 | "cpu": [ 570 | "x64" 571 | ], 572 | "dev": true, 573 | "optional": true, 574 | "os": [ 575 | "linux" 576 | ], 577 | "engines": { 578 | "node": ">=12" 579 | } 580 | }, 581 | "node_modules/@esbuild/netbsd-x64": { 582 | "version": "0.18.20", 583 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", 584 | "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", 585 | "cpu": [ 586 | "x64" 587 | ], 588 | "dev": true, 589 | "optional": true, 590 | "os": [ 591 | "netbsd" 592 | ], 593 | "engines": { 594 | "node": ">=12" 595 | } 596 | }, 597 | "node_modules/@esbuild/openbsd-x64": { 598 | "version": "0.18.20", 599 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", 600 | "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", 601 | "cpu": [ 602 | "x64" 603 | ], 604 | "dev": true, 605 | "optional": true, 606 | "os": [ 607 | "openbsd" 608 | ], 609 | "engines": { 610 | "node": ">=12" 611 | } 612 | }, 613 | "node_modules/@esbuild/sunos-x64": { 614 | "version": "0.18.20", 615 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", 616 | "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", 617 | "cpu": [ 618 | "x64" 619 | ], 620 | "dev": true, 621 | "optional": true, 622 | "os": [ 623 | "sunos" 624 | ], 625 | "engines": { 626 | "node": ">=12" 627 | } 628 | }, 629 | "node_modules/@esbuild/win32-arm64": { 630 | "version": "0.18.20", 631 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", 632 | "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", 633 | "cpu": [ 634 | "arm64" 635 | ], 636 | "dev": true, 637 | "optional": true, 638 | "os": [ 639 | "win32" 640 | ], 641 | "engines": { 642 | "node": ">=12" 643 | } 644 | }, 645 | "node_modules/@esbuild/win32-ia32": { 646 | "version": "0.18.20", 647 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", 648 | "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", 649 | "cpu": [ 650 | "ia32" 651 | ], 652 | "dev": true, 653 | "optional": true, 654 | "os": [ 655 | "win32" 656 | ], 657 | "engines": { 658 | "node": ">=12" 659 | } 660 | }, 661 | "node_modules/@esbuild/win32-x64": { 662 | "version": "0.18.20", 663 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", 664 | "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", 665 | "cpu": [ 666 | "x64" 667 | ], 668 | "dev": true, 669 | "optional": true, 670 | "os": [ 671 | "win32" 672 | ], 673 | "engines": { 674 | "node": ">=12" 675 | } 676 | }, 677 | "node_modules/@eslint-community/eslint-utils": { 678 | "version": "4.7.0", 679 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz", 680 | "integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==", 681 | "dev": true, 682 | "dependencies": { 683 | "eslint-visitor-keys": "^3.4.3" 684 | }, 685 | "engines": { 686 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 687 | }, 688 | "funding": { 689 | "url": "https://opencollective.com/eslint" 690 | }, 691 | "peerDependencies": { 692 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 693 | } 694 | }, 695 | "node_modules/@eslint-community/regexpp": { 696 | "version": "4.12.1", 697 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 698 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 699 | "dev": true, 700 | "engines": { 701 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 702 | } 703 | }, 704 | "node_modules/@eslint/eslintrc": { 705 | "version": "2.1.4", 706 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 707 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 708 | "dev": true, 709 | "dependencies": { 710 | "ajv": "^6.12.4", 711 | "debug": "^4.3.2", 712 | "espree": "^9.6.0", 713 | "globals": "^13.19.0", 714 | "ignore": "^5.2.0", 715 | "import-fresh": "^3.2.1", 716 | "js-yaml": "^4.1.0", 717 | "minimatch": "^3.1.2", 718 | "strip-json-comments": "^3.1.1" 719 | }, 720 | "engines": { 721 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 722 | }, 723 | "funding": { 724 | "url": "https://opencollective.com/eslint" 725 | } 726 | }, 727 | "node_modules/@eslint/js": { 728 | "version": "8.57.1", 729 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", 730 | "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", 731 | "dev": true, 732 | "engines": { 733 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 734 | } 735 | }, 736 | "node_modules/@humanwhocodes/config-array": { 737 | "version": "0.13.0", 738 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", 739 | "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", 740 | "deprecated": "Use @eslint/config-array instead", 741 | "dev": true, 742 | "dependencies": { 743 | "@humanwhocodes/object-schema": "^2.0.3", 744 | "debug": "^4.3.1", 745 | "minimatch": "^3.0.5" 746 | }, 747 | "engines": { 748 | "node": ">=10.10.0" 749 | } 750 | }, 751 | "node_modules/@humanwhocodes/module-importer": { 752 | "version": "1.0.1", 753 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 754 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 755 | "dev": true, 756 | "engines": { 757 | "node": ">=12.22" 758 | }, 759 | "funding": { 760 | "type": "github", 761 | "url": "https://github.com/sponsors/nzakas" 762 | } 763 | }, 764 | "node_modules/@humanwhocodes/object-schema": { 765 | "version": "2.0.3", 766 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", 767 | "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", 768 | "deprecated": "Use @eslint/object-schema instead", 769 | "dev": true 770 | }, 771 | "node_modules/@jridgewell/gen-mapping": { 772 | "version": "0.3.13", 773 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", 774 | "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", 775 | "dev": true, 776 | "dependencies": { 777 | "@jridgewell/sourcemap-codec": "^1.5.0", 778 | "@jridgewell/trace-mapping": "^0.3.24" 779 | } 780 | }, 781 | "node_modules/@jridgewell/resolve-uri": { 782 | "version": "3.1.2", 783 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 784 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 785 | "dev": true, 786 | "engines": { 787 | "node": ">=6.0.0" 788 | } 789 | }, 790 | "node_modules/@jridgewell/sourcemap-codec": { 791 | "version": "1.5.5", 792 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", 793 | "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", 794 | "dev": true 795 | }, 796 | "node_modules/@jridgewell/trace-mapping": { 797 | "version": "0.3.30", 798 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.30.tgz", 799 | "integrity": "sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==", 800 | "dev": true, 801 | "dependencies": { 802 | "@jridgewell/resolve-uri": "^3.1.0", 803 | "@jridgewell/sourcemap-codec": "^1.4.14" 804 | } 805 | }, 806 | "node_modules/@nodelib/fs.scandir": { 807 | "version": "2.1.5", 808 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 809 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 810 | "dev": true, 811 | "dependencies": { 812 | "@nodelib/fs.stat": "2.0.5", 813 | "run-parallel": "^1.1.9" 814 | }, 815 | "engines": { 816 | "node": ">= 8" 817 | } 818 | }, 819 | "node_modules/@nodelib/fs.stat": { 820 | "version": "2.0.5", 821 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 822 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 823 | "dev": true, 824 | "engines": { 825 | "node": ">= 8" 826 | } 827 | }, 828 | "node_modules/@nodelib/fs.walk": { 829 | "version": "1.2.8", 830 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 831 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 832 | "dev": true, 833 | "dependencies": { 834 | "@nodelib/fs.scandir": "2.1.5", 835 | "fastq": "^1.6.0" 836 | }, 837 | "engines": { 838 | "node": ">= 8" 839 | } 840 | }, 841 | "node_modules/@react-leaflet/core": { 842 | "version": "2.1.0", 843 | "resolved": "https://registry.npmjs.org/@react-leaflet/core/-/core-2.1.0.tgz", 844 | "integrity": "sha512-Qk7Pfu8BSarKGqILj4x7bCSZ1pjuAPZ+qmRwH5S7mDS91VSbVVsJSrW4qA+GPrro8t69gFYVMWb1Zc4yFmPiVg==", 845 | "peerDependencies": { 846 | "leaflet": "^1.9.0", 847 | "react": "^18.0.0", 848 | "react-dom": "^18.0.0" 849 | } 850 | }, 851 | "node_modules/@rolldown/pluginutils": { 852 | "version": "1.0.0-beta.27", 853 | "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", 854 | "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", 855 | "dev": true 856 | }, 857 | "node_modules/@types/babel__core": { 858 | "version": "7.20.5", 859 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 860 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 861 | "dev": true, 862 | "dependencies": { 863 | "@babel/parser": "^7.20.7", 864 | "@babel/types": "^7.20.7", 865 | "@types/babel__generator": "*", 866 | "@types/babel__template": "*", 867 | "@types/babel__traverse": "*" 868 | } 869 | }, 870 | "node_modules/@types/babel__generator": { 871 | "version": "7.27.0", 872 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", 873 | "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", 874 | "dev": true, 875 | "dependencies": { 876 | "@babel/types": "^7.0.0" 877 | } 878 | }, 879 | "node_modules/@types/babel__template": { 880 | "version": "7.4.4", 881 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 882 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 883 | "dev": true, 884 | "dependencies": { 885 | "@babel/parser": "^7.1.0", 886 | "@babel/types": "^7.0.0" 887 | } 888 | }, 889 | "node_modules/@types/babel__traverse": { 890 | "version": "7.28.0", 891 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", 892 | "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", 893 | "dev": true, 894 | "dependencies": { 895 | "@babel/types": "^7.28.2" 896 | } 897 | }, 898 | "node_modules/@types/geojson": { 899 | "version": "7946.0.16", 900 | "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.16.tgz", 901 | "integrity": "sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==", 902 | "dev": true 903 | }, 904 | "node_modules/@types/json-schema": { 905 | "version": "7.0.15", 906 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 907 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 908 | "dev": true 909 | }, 910 | "node_modules/@types/leaflet": { 911 | "version": "1.9.20", 912 | "resolved": "https://registry.npmjs.org/@types/leaflet/-/leaflet-1.9.20.tgz", 913 | "integrity": "sha512-rooalPMlk61LCaLOvBF2VIf9M47HgMQqi5xQ9QRi7c8PkdIe0WrIi5IxXUXQjAdL0c+vcQ01mYWbthzmp9GHWw==", 914 | "dev": true, 915 | "dependencies": { 916 | "@types/geojson": "*" 917 | } 918 | }, 919 | "node_modules/@types/prop-types": { 920 | "version": "15.7.15", 921 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", 922 | "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", 923 | "dev": true 924 | }, 925 | "node_modules/@types/react": { 926 | "version": "18.3.23", 927 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.23.tgz", 928 | "integrity": "sha512-/LDXMQh55EzZQ0uVAZmKKhfENivEvWz6E+EYzh+/MCjMhNsotd+ZHhBGIjFDTi6+fz0OhQQQLbTgdQIxxCsC0w==", 929 | "dev": true, 930 | "dependencies": { 931 | "@types/prop-types": "*", 932 | "csstype": "^3.0.2" 933 | } 934 | }, 935 | "node_modules/@types/react-dom": { 936 | "version": "18.3.7", 937 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", 938 | "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", 939 | "dev": true, 940 | "peerDependencies": { 941 | "@types/react": "^18.0.0" 942 | } 943 | }, 944 | "node_modules/@types/semver": { 945 | "version": "7.7.0", 946 | "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.7.0.tgz", 947 | "integrity": "sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==", 948 | "dev": true 949 | }, 950 | "node_modules/@typescript-eslint/eslint-plugin": { 951 | "version": "5.62.0", 952 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", 953 | "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", 954 | "dev": true, 955 | "dependencies": { 956 | "@eslint-community/regexpp": "^4.4.0", 957 | "@typescript-eslint/scope-manager": "5.62.0", 958 | "@typescript-eslint/type-utils": "5.62.0", 959 | "@typescript-eslint/utils": "5.62.0", 960 | "debug": "^4.3.4", 961 | "graphemer": "^1.4.0", 962 | "ignore": "^5.2.0", 963 | "natural-compare-lite": "^1.4.0", 964 | "semver": "^7.3.7", 965 | "tsutils": "^3.21.0" 966 | }, 967 | "engines": { 968 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 969 | }, 970 | "funding": { 971 | "type": "opencollective", 972 | "url": "https://opencollective.com/typescript-eslint" 973 | }, 974 | "peerDependencies": { 975 | "@typescript-eslint/parser": "^5.0.0", 976 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 977 | }, 978 | "peerDependenciesMeta": { 979 | "typescript": { 980 | "optional": true 981 | } 982 | } 983 | }, 984 | "node_modules/@typescript-eslint/parser": { 985 | "version": "5.62.0", 986 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", 987 | "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", 988 | "dev": true, 989 | "dependencies": { 990 | "@typescript-eslint/scope-manager": "5.62.0", 991 | "@typescript-eslint/types": "5.62.0", 992 | "@typescript-eslint/typescript-estree": "5.62.0", 993 | "debug": "^4.3.4" 994 | }, 995 | "engines": { 996 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 997 | }, 998 | "funding": { 999 | "type": "opencollective", 1000 | "url": "https://opencollective.com/typescript-eslint" 1001 | }, 1002 | "peerDependencies": { 1003 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 1004 | }, 1005 | "peerDependenciesMeta": { 1006 | "typescript": { 1007 | "optional": true 1008 | } 1009 | } 1010 | }, 1011 | "node_modules/@typescript-eslint/scope-manager": { 1012 | "version": "5.62.0", 1013 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", 1014 | "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", 1015 | "dev": true, 1016 | "dependencies": { 1017 | "@typescript-eslint/types": "5.62.0", 1018 | "@typescript-eslint/visitor-keys": "5.62.0" 1019 | }, 1020 | "engines": { 1021 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1022 | }, 1023 | "funding": { 1024 | "type": "opencollective", 1025 | "url": "https://opencollective.com/typescript-eslint" 1026 | } 1027 | }, 1028 | "node_modules/@typescript-eslint/type-utils": { 1029 | "version": "5.62.0", 1030 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", 1031 | "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", 1032 | "dev": true, 1033 | "dependencies": { 1034 | "@typescript-eslint/typescript-estree": "5.62.0", 1035 | "@typescript-eslint/utils": "5.62.0", 1036 | "debug": "^4.3.4", 1037 | "tsutils": "^3.21.0" 1038 | }, 1039 | "engines": { 1040 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1041 | }, 1042 | "funding": { 1043 | "type": "opencollective", 1044 | "url": "https://opencollective.com/typescript-eslint" 1045 | }, 1046 | "peerDependencies": { 1047 | "eslint": "*" 1048 | }, 1049 | "peerDependenciesMeta": { 1050 | "typescript": { 1051 | "optional": true 1052 | } 1053 | } 1054 | }, 1055 | "node_modules/@typescript-eslint/types": { 1056 | "version": "5.62.0", 1057 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", 1058 | "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", 1059 | "dev": true, 1060 | "engines": { 1061 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1062 | }, 1063 | "funding": { 1064 | "type": "opencollective", 1065 | "url": "https://opencollective.com/typescript-eslint" 1066 | } 1067 | }, 1068 | "node_modules/@typescript-eslint/typescript-estree": { 1069 | "version": "5.62.0", 1070 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", 1071 | "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", 1072 | "dev": true, 1073 | "dependencies": { 1074 | "@typescript-eslint/types": "5.62.0", 1075 | "@typescript-eslint/visitor-keys": "5.62.0", 1076 | "debug": "^4.3.4", 1077 | "globby": "^11.1.0", 1078 | "is-glob": "^4.0.3", 1079 | "semver": "^7.3.7", 1080 | "tsutils": "^3.21.0" 1081 | }, 1082 | "engines": { 1083 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1084 | }, 1085 | "funding": { 1086 | "type": "opencollective", 1087 | "url": "https://opencollective.com/typescript-eslint" 1088 | }, 1089 | "peerDependenciesMeta": { 1090 | "typescript": { 1091 | "optional": true 1092 | } 1093 | } 1094 | }, 1095 | "node_modules/@typescript-eslint/utils": { 1096 | "version": "5.62.0", 1097 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", 1098 | "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", 1099 | "dev": true, 1100 | "dependencies": { 1101 | "@eslint-community/eslint-utils": "^4.2.0", 1102 | "@types/json-schema": "^7.0.9", 1103 | "@types/semver": "^7.3.12", 1104 | "@typescript-eslint/scope-manager": "5.62.0", 1105 | "@typescript-eslint/types": "5.62.0", 1106 | "@typescript-eslint/typescript-estree": "5.62.0", 1107 | "eslint-scope": "^5.1.1", 1108 | "semver": "^7.3.7" 1109 | }, 1110 | "engines": { 1111 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1112 | }, 1113 | "funding": { 1114 | "type": "opencollective", 1115 | "url": "https://opencollective.com/typescript-eslint" 1116 | }, 1117 | "peerDependencies": { 1118 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 1119 | } 1120 | }, 1121 | "node_modules/@typescript-eslint/visitor-keys": { 1122 | "version": "5.62.0", 1123 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", 1124 | "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", 1125 | "dev": true, 1126 | "dependencies": { 1127 | "@typescript-eslint/types": "5.62.0", 1128 | "eslint-visitor-keys": "^3.3.0" 1129 | }, 1130 | "engines": { 1131 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1132 | }, 1133 | "funding": { 1134 | "type": "opencollective", 1135 | "url": "https://opencollective.com/typescript-eslint" 1136 | } 1137 | }, 1138 | "node_modules/@ungap/structured-clone": { 1139 | "version": "1.3.0", 1140 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", 1141 | "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", 1142 | "dev": true 1143 | }, 1144 | "node_modules/@vitejs/plugin-react": { 1145 | "version": "4.7.0", 1146 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", 1147 | "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==", 1148 | "dev": true, 1149 | "dependencies": { 1150 | "@babel/core": "^7.28.0", 1151 | "@babel/plugin-transform-react-jsx-self": "^7.27.1", 1152 | "@babel/plugin-transform-react-jsx-source": "^7.27.1", 1153 | "@rolldown/pluginutils": "1.0.0-beta.27", 1154 | "@types/babel__core": "^7.20.5", 1155 | "react-refresh": "^0.17.0" 1156 | }, 1157 | "engines": { 1158 | "node": "^14.18.0 || >=16.0.0" 1159 | }, 1160 | "peerDependencies": { 1161 | "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" 1162 | } 1163 | }, 1164 | "node_modules/acorn": { 1165 | "version": "8.15.0", 1166 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", 1167 | "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", 1168 | "dev": true, 1169 | "bin": { 1170 | "acorn": "bin/acorn" 1171 | }, 1172 | "engines": { 1173 | "node": ">=0.4.0" 1174 | } 1175 | }, 1176 | "node_modules/acorn-jsx": { 1177 | "version": "5.3.2", 1178 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1179 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1180 | "dev": true, 1181 | "peerDependencies": { 1182 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1183 | } 1184 | }, 1185 | "node_modules/ajv": { 1186 | "version": "6.12.6", 1187 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1188 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1189 | "dev": true, 1190 | "dependencies": { 1191 | "fast-deep-equal": "^3.1.1", 1192 | "fast-json-stable-stringify": "^2.0.0", 1193 | "json-schema-traverse": "^0.4.1", 1194 | "uri-js": "^4.2.2" 1195 | }, 1196 | "funding": { 1197 | "type": "github", 1198 | "url": "https://github.com/sponsors/epoberezkin" 1199 | } 1200 | }, 1201 | "node_modules/ansi-regex": { 1202 | "version": "5.0.1", 1203 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 1204 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 1205 | "dev": true, 1206 | "engines": { 1207 | "node": ">=8" 1208 | } 1209 | }, 1210 | "node_modules/ansi-styles": { 1211 | "version": "4.3.0", 1212 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1213 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1214 | "dev": true, 1215 | "dependencies": { 1216 | "color-convert": "^2.0.1" 1217 | }, 1218 | "engines": { 1219 | "node": ">=8" 1220 | }, 1221 | "funding": { 1222 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1223 | } 1224 | }, 1225 | "node_modules/argparse": { 1226 | "version": "2.0.1", 1227 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1228 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1229 | "dev": true 1230 | }, 1231 | "node_modules/array-union": { 1232 | "version": "2.1.0", 1233 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 1234 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 1235 | "dev": true, 1236 | "engines": { 1237 | "node": ">=8" 1238 | } 1239 | }, 1240 | "node_modules/balanced-match": { 1241 | "version": "1.0.2", 1242 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1243 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1244 | "dev": true 1245 | }, 1246 | "node_modules/brace-expansion": { 1247 | "version": "1.1.12", 1248 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", 1249 | "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", 1250 | "dev": true, 1251 | "dependencies": { 1252 | "balanced-match": "^1.0.0", 1253 | "concat-map": "0.0.1" 1254 | } 1255 | }, 1256 | "node_modules/braces": { 1257 | "version": "3.0.3", 1258 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1259 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1260 | "dev": true, 1261 | "dependencies": { 1262 | "fill-range": "^7.1.1" 1263 | }, 1264 | "engines": { 1265 | "node": ">=8" 1266 | } 1267 | }, 1268 | "node_modules/browserslist": { 1269 | "version": "4.25.2", 1270 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.2.tgz", 1271 | "integrity": "sha512-0si2SJK3ooGzIawRu61ZdPCO1IncZwS8IzuX73sPZsXW6EQ/w/DAfPyKI8l1ETTCr2MnvqWitmlCUxgdul45jA==", 1272 | "dev": true, 1273 | "funding": [ 1274 | { 1275 | "type": "opencollective", 1276 | "url": "https://opencollective.com/browserslist" 1277 | }, 1278 | { 1279 | "type": "tidelift", 1280 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1281 | }, 1282 | { 1283 | "type": "github", 1284 | "url": "https://github.com/sponsors/ai" 1285 | } 1286 | ], 1287 | "dependencies": { 1288 | "caniuse-lite": "^1.0.30001733", 1289 | "electron-to-chromium": "^1.5.199", 1290 | "node-releases": "^2.0.19", 1291 | "update-browserslist-db": "^1.1.3" 1292 | }, 1293 | "bin": { 1294 | "browserslist": "cli.js" 1295 | }, 1296 | "engines": { 1297 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1298 | } 1299 | }, 1300 | "node_modules/callsites": { 1301 | "version": "3.1.0", 1302 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1303 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1304 | "dev": true, 1305 | "engines": { 1306 | "node": ">=6" 1307 | } 1308 | }, 1309 | "node_modules/caniuse-lite": { 1310 | "version": "1.0.30001734", 1311 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001734.tgz", 1312 | "integrity": "sha512-uhE1Ye5vgqju6OI71HTQqcBCZrvHugk0MjLak7Q+HfoBgoq5Bi+5YnwjP4fjDgrtYr/l8MVRBvzz9dPD4KyK0A==", 1313 | "dev": true, 1314 | "funding": [ 1315 | { 1316 | "type": "opencollective", 1317 | "url": "https://opencollective.com/browserslist" 1318 | }, 1319 | { 1320 | "type": "tidelift", 1321 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1322 | }, 1323 | { 1324 | "type": "github", 1325 | "url": "https://github.com/sponsors/ai" 1326 | } 1327 | ] 1328 | }, 1329 | "node_modules/chalk": { 1330 | "version": "4.1.2", 1331 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1332 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1333 | "dev": true, 1334 | "dependencies": { 1335 | "ansi-styles": "^4.1.0", 1336 | "supports-color": "^7.1.0" 1337 | }, 1338 | "engines": { 1339 | "node": ">=10" 1340 | }, 1341 | "funding": { 1342 | "url": "https://github.com/chalk/chalk?sponsor=1" 1343 | } 1344 | }, 1345 | "node_modules/color-convert": { 1346 | "version": "2.0.1", 1347 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1348 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1349 | "dev": true, 1350 | "dependencies": { 1351 | "color-name": "~1.1.4" 1352 | }, 1353 | "engines": { 1354 | "node": ">=7.0.0" 1355 | } 1356 | }, 1357 | "node_modules/color-name": { 1358 | "version": "1.1.4", 1359 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1360 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1361 | "dev": true 1362 | }, 1363 | "node_modules/concat-map": { 1364 | "version": "0.0.1", 1365 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1366 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1367 | "dev": true 1368 | }, 1369 | "node_modules/convert-source-map": { 1370 | "version": "2.0.0", 1371 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1372 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1373 | "dev": true 1374 | }, 1375 | "node_modules/cross-spawn": { 1376 | "version": "7.0.6", 1377 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1378 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1379 | "dev": true, 1380 | "dependencies": { 1381 | "path-key": "^3.1.0", 1382 | "shebang-command": "^2.0.0", 1383 | "which": "^2.0.1" 1384 | }, 1385 | "engines": { 1386 | "node": ">= 8" 1387 | } 1388 | }, 1389 | "node_modules/csstype": { 1390 | "version": "3.1.3", 1391 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 1392 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 1393 | "dev": true 1394 | }, 1395 | "node_modules/debug": { 1396 | "version": "4.4.1", 1397 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", 1398 | "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", 1399 | "dev": true, 1400 | "dependencies": { 1401 | "ms": "^2.1.3" 1402 | }, 1403 | "engines": { 1404 | "node": ">=6.0" 1405 | }, 1406 | "peerDependenciesMeta": { 1407 | "supports-color": { 1408 | "optional": true 1409 | } 1410 | } 1411 | }, 1412 | "node_modules/deep-is": { 1413 | "version": "0.1.4", 1414 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1415 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1416 | "dev": true 1417 | }, 1418 | "node_modules/dir-glob": { 1419 | "version": "3.0.1", 1420 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1421 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1422 | "dev": true, 1423 | "dependencies": { 1424 | "path-type": "^4.0.0" 1425 | }, 1426 | "engines": { 1427 | "node": ">=8" 1428 | } 1429 | }, 1430 | "node_modules/doctrine": { 1431 | "version": "3.0.0", 1432 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1433 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1434 | "dev": true, 1435 | "dependencies": { 1436 | "esutils": "^2.0.2" 1437 | }, 1438 | "engines": { 1439 | "node": ">=6.0.0" 1440 | } 1441 | }, 1442 | "node_modules/electron-to-chromium": { 1443 | "version": "1.5.200", 1444 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.200.tgz", 1445 | "integrity": "sha512-rFCxROw7aOe4uPTfIAx+rXv9cEcGx+buAF4npnhtTqCJk5KDFRnh3+KYj7rdVh6lsFt5/aPs+Irj9rZ33WMA7w==", 1446 | "dev": true 1447 | }, 1448 | "node_modules/esbuild": { 1449 | "version": "0.18.20", 1450 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", 1451 | "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", 1452 | "dev": true, 1453 | "hasInstallScript": true, 1454 | "bin": { 1455 | "esbuild": "bin/esbuild" 1456 | }, 1457 | "engines": { 1458 | "node": ">=12" 1459 | }, 1460 | "optionalDependencies": { 1461 | "@esbuild/android-arm": "0.18.20", 1462 | "@esbuild/android-arm64": "0.18.20", 1463 | "@esbuild/android-x64": "0.18.20", 1464 | "@esbuild/darwin-arm64": "0.18.20", 1465 | "@esbuild/darwin-x64": "0.18.20", 1466 | "@esbuild/freebsd-arm64": "0.18.20", 1467 | "@esbuild/freebsd-x64": "0.18.20", 1468 | "@esbuild/linux-arm": "0.18.20", 1469 | "@esbuild/linux-arm64": "0.18.20", 1470 | "@esbuild/linux-ia32": "0.18.20", 1471 | "@esbuild/linux-loong64": "0.18.20", 1472 | "@esbuild/linux-mips64el": "0.18.20", 1473 | "@esbuild/linux-ppc64": "0.18.20", 1474 | "@esbuild/linux-riscv64": "0.18.20", 1475 | "@esbuild/linux-s390x": "0.18.20", 1476 | "@esbuild/linux-x64": "0.18.20", 1477 | "@esbuild/netbsd-x64": "0.18.20", 1478 | "@esbuild/openbsd-x64": "0.18.20", 1479 | "@esbuild/sunos-x64": "0.18.20", 1480 | "@esbuild/win32-arm64": "0.18.20", 1481 | "@esbuild/win32-ia32": "0.18.20", 1482 | "@esbuild/win32-x64": "0.18.20" 1483 | } 1484 | }, 1485 | "node_modules/escalade": { 1486 | "version": "3.2.0", 1487 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1488 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1489 | "dev": true, 1490 | "engines": { 1491 | "node": ">=6" 1492 | } 1493 | }, 1494 | "node_modules/escape-string-regexp": { 1495 | "version": "4.0.0", 1496 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1497 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1498 | "dev": true, 1499 | "engines": { 1500 | "node": ">=10" 1501 | }, 1502 | "funding": { 1503 | "url": "https://github.com/sponsors/sindresorhus" 1504 | } 1505 | }, 1506 | "node_modules/eslint": { 1507 | "version": "8.57.1", 1508 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", 1509 | "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", 1510 | "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", 1511 | "dev": true, 1512 | "dependencies": { 1513 | "@eslint-community/eslint-utils": "^4.2.0", 1514 | "@eslint-community/regexpp": "^4.6.1", 1515 | "@eslint/eslintrc": "^2.1.4", 1516 | "@eslint/js": "8.57.1", 1517 | "@humanwhocodes/config-array": "^0.13.0", 1518 | "@humanwhocodes/module-importer": "^1.0.1", 1519 | "@nodelib/fs.walk": "^1.2.8", 1520 | "@ungap/structured-clone": "^1.2.0", 1521 | "ajv": "^6.12.4", 1522 | "chalk": "^4.0.0", 1523 | "cross-spawn": "^7.0.2", 1524 | "debug": "^4.3.2", 1525 | "doctrine": "^3.0.0", 1526 | "escape-string-regexp": "^4.0.0", 1527 | "eslint-scope": "^7.2.2", 1528 | "eslint-visitor-keys": "^3.4.3", 1529 | "espree": "^9.6.1", 1530 | "esquery": "^1.4.2", 1531 | "esutils": "^2.0.2", 1532 | "fast-deep-equal": "^3.1.3", 1533 | "file-entry-cache": "^6.0.1", 1534 | "find-up": "^5.0.0", 1535 | "glob-parent": "^6.0.2", 1536 | "globals": "^13.19.0", 1537 | "graphemer": "^1.4.0", 1538 | "ignore": "^5.2.0", 1539 | "imurmurhash": "^0.1.4", 1540 | "is-glob": "^4.0.0", 1541 | "is-path-inside": "^3.0.3", 1542 | "js-yaml": "^4.1.0", 1543 | "json-stable-stringify-without-jsonify": "^1.0.1", 1544 | "levn": "^0.4.1", 1545 | "lodash.merge": "^4.6.2", 1546 | "minimatch": "^3.1.2", 1547 | "natural-compare": "^1.4.0", 1548 | "optionator": "^0.9.3", 1549 | "strip-ansi": "^6.0.1", 1550 | "text-table": "^0.2.0" 1551 | }, 1552 | "bin": { 1553 | "eslint": "bin/eslint.js" 1554 | }, 1555 | "engines": { 1556 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1557 | }, 1558 | "funding": { 1559 | "url": "https://opencollective.com/eslint" 1560 | } 1561 | }, 1562 | "node_modules/eslint-plugin-react-hooks": { 1563 | "version": "4.6.2", 1564 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", 1565 | "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", 1566 | "dev": true, 1567 | "engines": { 1568 | "node": ">=10" 1569 | }, 1570 | "peerDependencies": { 1571 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1572 | } 1573 | }, 1574 | "node_modules/eslint-plugin-react-refresh": { 1575 | "version": "0.3.5", 1576 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.3.5.tgz", 1577 | "integrity": "sha512-61qNIsc7fo9Pp/mju0J83kzvLm0Bsayu7OQSLEoJxLDCBjIIyb87bkzufoOvdDxLkSlMfkF7UxomC4+eztUBSA==", 1578 | "dev": true, 1579 | "peerDependencies": { 1580 | "eslint": ">=7" 1581 | } 1582 | }, 1583 | "node_modules/eslint-scope": { 1584 | "version": "5.1.1", 1585 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", 1586 | "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", 1587 | "dev": true, 1588 | "dependencies": { 1589 | "esrecurse": "^4.3.0", 1590 | "estraverse": "^4.1.1" 1591 | }, 1592 | "engines": { 1593 | "node": ">=8.0.0" 1594 | } 1595 | }, 1596 | "node_modules/eslint-visitor-keys": { 1597 | "version": "3.4.3", 1598 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1599 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1600 | "dev": true, 1601 | "engines": { 1602 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1603 | }, 1604 | "funding": { 1605 | "url": "https://opencollective.com/eslint" 1606 | } 1607 | }, 1608 | "node_modules/eslint/node_modules/eslint-scope": { 1609 | "version": "7.2.2", 1610 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1611 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1612 | "dev": true, 1613 | "dependencies": { 1614 | "esrecurse": "^4.3.0", 1615 | "estraverse": "^5.2.0" 1616 | }, 1617 | "engines": { 1618 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1619 | }, 1620 | "funding": { 1621 | "url": "https://opencollective.com/eslint" 1622 | } 1623 | }, 1624 | "node_modules/eslint/node_modules/estraverse": { 1625 | "version": "5.3.0", 1626 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1627 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1628 | "dev": true, 1629 | "engines": { 1630 | "node": ">=4.0" 1631 | } 1632 | }, 1633 | "node_modules/espree": { 1634 | "version": "9.6.1", 1635 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1636 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1637 | "dev": true, 1638 | "dependencies": { 1639 | "acorn": "^8.9.0", 1640 | "acorn-jsx": "^5.3.2", 1641 | "eslint-visitor-keys": "^3.4.1" 1642 | }, 1643 | "engines": { 1644 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1645 | }, 1646 | "funding": { 1647 | "url": "https://opencollective.com/eslint" 1648 | } 1649 | }, 1650 | "node_modules/esquery": { 1651 | "version": "1.6.0", 1652 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 1653 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 1654 | "dev": true, 1655 | "dependencies": { 1656 | "estraverse": "^5.1.0" 1657 | }, 1658 | "engines": { 1659 | "node": ">=0.10" 1660 | } 1661 | }, 1662 | "node_modules/esquery/node_modules/estraverse": { 1663 | "version": "5.3.0", 1664 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1665 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1666 | "dev": true, 1667 | "engines": { 1668 | "node": ">=4.0" 1669 | } 1670 | }, 1671 | "node_modules/esrecurse": { 1672 | "version": "4.3.0", 1673 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1674 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1675 | "dev": true, 1676 | "dependencies": { 1677 | "estraverse": "^5.2.0" 1678 | }, 1679 | "engines": { 1680 | "node": ">=4.0" 1681 | } 1682 | }, 1683 | "node_modules/esrecurse/node_modules/estraverse": { 1684 | "version": "5.3.0", 1685 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1686 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1687 | "dev": true, 1688 | "engines": { 1689 | "node": ">=4.0" 1690 | } 1691 | }, 1692 | "node_modules/estraverse": { 1693 | "version": "4.3.0", 1694 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", 1695 | "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", 1696 | "dev": true, 1697 | "engines": { 1698 | "node": ">=4.0" 1699 | } 1700 | }, 1701 | "node_modules/esutils": { 1702 | "version": "2.0.3", 1703 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1704 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1705 | "dev": true, 1706 | "engines": { 1707 | "node": ">=0.10.0" 1708 | } 1709 | }, 1710 | "node_modules/fast-deep-equal": { 1711 | "version": "3.1.3", 1712 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1713 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1714 | "dev": true 1715 | }, 1716 | "node_modules/fast-glob": { 1717 | "version": "3.3.3", 1718 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 1719 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 1720 | "dev": true, 1721 | "dependencies": { 1722 | "@nodelib/fs.stat": "^2.0.2", 1723 | "@nodelib/fs.walk": "^1.2.3", 1724 | "glob-parent": "^5.1.2", 1725 | "merge2": "^1.3.0", 1726 | "micromatch": "^4.0.8" 1727 | }, 1728 | "engines": { 1729 | "node": ">=8.6.0" 1730 | } 1731 | }, 1732 | "node_modules/fast-glob/node_modules/glob-parent": { 1733 | "version": "5.1.2", 1734 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1735 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1736 | "dev": true, 1737 | "dependencies": { 1738 | "is-glob": "^4.0.1" 1739 | }, 1740 | "engines": { 1741 | "node": ">= 6" 1742 | } 1743 | }, 1744 | "node_modules/fast-json-stable-stringify": { 1745 | "version": "2.1.0", 1746 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1747 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1748 | "dev": true 1749 | }, 1750 | "node_modules/fast-levenshtein": { 1751 | "version": "2.0.6", 1752 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1753 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1754 | "dev": true 1755 | }, 1756 | "node_modules/fastq": { 1757 | "version": "1.19.1", 1758 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", 1759 | "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", 1760 | "dev": true, 1761 | "dependencies": { 1762 | "reusify": "^1.0.4" 1763 | } 1764 | }, 1765 | "node_modules/file-entry-cache": { 1766 | "version": "6.0.1", 1767 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1768 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1769 | "dev": true, 1770 | "dependencies": { 1771 | "flat-cache": "^3.0.4" 1772 | }, 1773 | "engines": { 1774 | "node": "^10.12.0 || >=12.0.0" 1775 | } 1776 | }, 1777 | "node_modules/fill-range": { 1778 | "version": "7.1.1", 1779 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 1780 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 1781 | "dev": true, 1782 | "dependencies": { 1783 | "to-regex-range": "^5.0.1" 1784 | }, 1785 | "engines": { 1786 | "node": ">=8" 1787 | } 1788 | }, 1789 | "node_modules/find-up": { 1790 | "version": "5.0.0", 1791 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1792 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1793 | "dev": true, 1794 | "dependencies": { 1795 | "locate-path": "^6.0.0", 1796 | "path-exists": "^4.0.0" 1797 | }, 1798 | "engines": { 1799 | "node": ">=10" 1800 | }, 1801 | "funding": { 1802 | "url": "https://github.com/sponsors/sindresorhus" 1803 | } 1804 | }, 1805 | "node_modules/flat-cache": { 1806 | "version": "3.2.0", 1807 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 1808 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 1809 | "dev": true, 1810 | "dependencies": { 1811 | "flatted": "^3.2.9", 1812 | "keyv": "^4.5.3", 1813 | "rimraf": "^3.0.2" 1814 | }, 1815 | "engines": { 1816 | "node": "^10.12.0 || >=12.0.0" 1817 | } 1818 | }, 1819 | "node_modules/flatted": { 1820 | "version": "3.3.3", 1821 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 1822 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 1823 | "dev": true 1824 | }, 1825 | "node_modules/fs.realpath": { 1826 | "version": "1.0.0", 1827 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1828 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 1829 | "dev": true 1830 | }, 1831 | "node_modules/fsevents": { 1832 | "version": "2.3.3", 1833 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 1834 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 1835 | "dev": true, 1836 | "hasInstallScript": true, 1837 | "optional": true, 1838 | "os": [ 1839 | "darwin" 1840 | ], 1841 | "engines": { 1842 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1843 | } 1844 | }, 1845 | "node_modules/gensync": { 1846 | "version": "1.0.0-beta.2", 1847 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 1848 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 1849 | "dev": true, 1850 | "engines": { 1851 | "node": ">=6.9.0" 1852 | } 1853 | }, 1854 | "node_modules/glob": { 1855 | "version": "7.2.3", 1856 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 1857 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 1858 | "deprecated": "Glob versions prior to v9 are no longer supported", 1859 | "dev": true, 1860 | "dependencies": { 1861 | "fs.realpath": "^1.0.0", 1862 | "inflight": "^1.0.4", 1863 | "inherits": "2", 1864 | "minimatch": "^3.1.1", 1865 | "once": "^1.3.0", 1866 | "path-is-absolute": "^1.0.0" 1867 | }, 1868 | "engines": { 1869 | "node": "*" 1870 | }, 1871 | "funding": { 1872 | "url": "https://github.com/sponsors/isaacs" 1873 | } 1874 | }, 1875 | "node_modules/glob-parent": { 1876 | "version": "6.0.2", 1877 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1878 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1879 | "dev": true, 1880 | "dependencies": { 1881 | "is-glob": "^4.0.3" 1882 | }, 1883 | "engines": { 1884 | "node": ">=10.13.0" 1885 | } 1886 | }, 1887 | "node_modules/globals": { 1888 | "version": "13.24.0", 1889 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 1890 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 1891 | "dev": true, 1892 | "dependencies": { 1893 | "type-fest": "^0.20.2" 1894 | }, 1895 | "engines": { 1896 | "node": ">=8" 1897 | }, 1898 | "funding": { 1899 | "url": "https://github.com/sponsors/sindresorhus" 1900 | } 1901 | }, 1902 | "node_modules/globby": { 1903 | "version": "11.1.0", 1904 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 1905 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 1906 | "dev": true, 1907 | "dependencies": { 1908 | "array-union": "^2.1.0", 1909 | "dir-glob": "^3.0.1", 1910 | "fast-glob": "^3.2.9", 1911 | "ignore": "^5.2.0", 1912 | "merge2": "^1.4.1", 1913 | "slash": "^3.0.0" 1914 | }, 1915 | "engines": { 1916 | "node": ">=10" 1917 | }, 1918 | "funding": { 1919 | "url": "https://github.com/sponsors/sindresorhus" 1920 | } 1921 | }, 1922 | "node_modules/graphemer": { 1923 | "version": "1.4.0", 1924 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 1925 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 1926 | "dev": true 1927 | }, 1928 | "node_modules/has-flag": { 1929 | "version": "4.0.0", 1930 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 1931 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 1932 | "dev": true, 1933 | "engines": { 1934 | "node": ">=8" 1935 | } 1936 | }, 1937 | "node_modules/ignore": { 1938 | "version": "5.3.2", 1939 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 1940 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 1941 | "dev": true, 1942 | "engines": { 1943 | "node": ">= 4" 1944 | } 1945 | }, 1946 | "node_modules/import-fresh": { 1947 | "version": "3.3.1", 1948 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 1949 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 1950 | "dev": true, 1951 | "dependencies": { 1952 | "parent-module": "^1.0.0", 1953 | "resolve-from": "^4.0.0" 1954 | }, 1955 | "engines": { 1956 | "node": ">=6" 1957 | }, 1958 | "funding": { 1959 | "url": "https://github.com/sponsors/sindresorhus" 1960 | } 1961 | }, 1962 | "node_modules/imurmurhash": { 1963 | "version": "0.1.4", 1964 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 1965 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 1966 | "dev": true, 1967 | "engines": { 1968 | "node": ">=0.8.19" 1969 | } 1970 | }, 1971 | "node_modules/inflight": { 1972 | "version": "1.0.6", 1973 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 1974 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 1975 | "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", 1976 | "dev": true, 1977 | "dependencies": { 1978 | "once": "^1.3.0", 1979 | "wrappy": "1" 1980 | } 1981 | }, 1982 | "node_modules/inherits": { 1983 | "version": "2.0.4", 1984 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 1985 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 1986 | "dev": true 1987 | }, 1988 | "node_modules/is-extglob": { 1989 | "version": "2.1.1", 1990 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 1991 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 1992 | "dev": true, 1993 | "engines": { 1994 | "node": ">=0.10.0" 1995 | } 1996 | }, 1997 | "node_modules/is-glob": { 1998 | "version": "4.0.3", 1999 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2000 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2001 | "dev": true, 2002 | "dependencies": { 2003 | "is-extglob": "^2.1.1" 2004 | }, 2005 | "engines": { 2006 | "node": ">=0.10.0" 2007 | } 2008 | }, 2009 | "node_modules/is-number": { 2010 | "version": "7.0.0", 2011 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2012 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2013 | "dev": true, 2014 | "engines": { 2015 | "node": ">=0.12.0" 2016 | } 2017 | }, 2018 | "node_modules/is-path-inside": { 2019 | "version": "3.0.3", 2020 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2021 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2022 | "dev": true, 2023 | "engines": { 2024 | "node": ">=8" 2025 | } 2026 | }, 2027 | "node_modules/isexe": { 2028 | "version": "2.0.0", 2029 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2030 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2031 | "dev": true 2032 | }, 2033 | "node_modules/js-tokens": { 2034 | "version": "4.0.0", 2035 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2036 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2037 | }, 2038 | "node_modules/js-yaml": { 2039 | "version": "4.1.0", 2040 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2041 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2042 | "dev": true, 2043 | "dependencies": { 2044 | "argparse": "^2.0.1" 2045 | }, 2046 | "bin": { 2047 | "js-yaml": "bin/js-yaml.js" 2048 | } 2049 | }, 2050 | "node_modules/jsesc": { 2051 | "version": "3.1.0", 2052 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", 2053 | "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", 2054 | "dev": true, 2055 | "bin": { 2056 | "jsesc": "bin/jsesc" 2057 | }, 2058 | "engines": { 2059 | "node": ">=6" 2060 | } 2061 | }, 2062 | "node_modules/json-buffer": { 2063 | "version": "3.0.1", 2064 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2065 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2066 | "dev": true 2067 | }, 2068 | "node_modules/json-schema-traverse": { 2069 | "version": "0.4.1", 2070 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2071 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2072 | "dev": true 2073 | }, 2074 | "node_modules/json-stable-stringify-without-jsonify": { 2075 | "version": "1.0.1", 2076 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2077 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2078 | "dev": true 2079 | }, 2080 | "node_modules/json5": { 2081 | "version": "2.2.3", 2082 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2083 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2084 | "dev": true, 2085 | "bin": { 2086 | "json5": "lib/cli.js" 2087 | }, 2088 | "engines": { 2089 | "node": ">=6" 2090 | } 2091 | }, 2092 | "node_modules/keyv": { 2093 | "version": "4.5.4", 2094 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2095 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2096 | "dev": true, 2097 | "dependencies": { 2098 | "json-buffer": "3.0.1" 2099 | } 2100 | }, 2101 | "node_modules/leaflet": { 2102 | "version": "1.9.4", 2103 | "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz", 2104 | "integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA==" 2105 | }, 2106 | "node_modules/leaflet.markercluster": { 2107 | "version": "1.5.3", 2108 | "resolved": "https://registry.npmjs.org/leaflet.markercluster/-/leaflet.markercluster-1.5.3.tgz", 2109 | "integrity": "sha512-vPTw/Bndq7eQHjLBVlWpnGeLa3t+3zGiuM7fJwCkiMFq+nmRuG3RI3f7f4N4TDX7T4NpbAXpR2+NTRSEGfCSeA==", 2110 | "peerDependencies": { 2111 | "leaflet": "^1.3.1" 2112 | } 2113 | }, 2114 | "node_modules/levn": { 2115 | "version": "0.4.1", 2116 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2117 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2118 | "dev": true, 2119 | "dependencies": { 2120 | "prelude-ls": "^1.2.1", 2121 | "type-check": "~0.4.0" 2122 | }, 2123 | "engines": { 2124 | "node": ">= 0.8.0" 2125 | } 2126 | }, 2127 | "node_modules/locate-path": { 2128 | "version": "6.0.0", 2129 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2130 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2131 | "dev": true, 2132 | "dependencies": { 2133 | "p-locate": "^5.0.0" 2134 | }, 2135 | "engines": { 2136 | "node": ">=10" 2137 | }, 2138 | "funding": { 2139 | "url": "https://github.com/sponsors/sindresorhus" 2140 | } 2141 | }, 2142 | "node_modules/lodash.merge": { 2143 | "version": "4.6.2", 2144 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2145 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2146 | "dev": true 2147 | }, 2148 | "node_modules/loose-envify": { 2149 | "version": "1.4.0", 2150 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2151 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2152 | "dependencies": { 2153 | "js-tokens": "^3.0.0 || ^4.0.0" 2154 | }, 2155 | "bin": { 2156 | "loose-envify": "cli.js" 2157 | } 2158 | }, 2159 | "node_modules/lru-cache": { 2160 | "version": "5.1.1", 2161 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 2162 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 2163 | "dev": true, 2164 | "dependencies": { 2165 | "yallist": "^3.0.2" 2166 | } 2167 | }, 2168 | "node_modules/merge2": { 2169 | "version": "1.4.1", 2170 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2171 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2172 | "dev": true, 2173 | "engines": { 2174 | "node": ">= 8" 2175 | } 2176 | }, 2177 | "node_modules/micromatch": { 2178 | "version": "4.0.8", 2179 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2180 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2181 | "dev": true, 2182 | "dependencies": { 2183 | "braces": "^3.0.3", 2184 | "picomatch": "^2.3.1" 2185 | }, 2186 | "engines": { 2187 | "node": ">=8.6" 2188 | } 2189 | }, 2190 | "node_modules/minimatch": { 2191 | "version": "3.1.2", 2192 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2193 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2194 | "dev": true, 2195 | "dependencies": { 2196 | "brace-expansion": "^1.1.7" 2197 | }, 2198 | "engines": { 2199 | "node": "*" 2200 | } 2201 | }, 2202 | "node_modules/ms": { 2203 | "version": "2.1.3", 2204 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2205 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2206 | "dev": true 2207 | }, 2208 | "node_modules/nanoid": { 2209 | "version": "3.3.11", 2210 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 2211 | "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 2212 | "dev": true, 2213 | "funding": [ 2214 | { 2215 | "type": "github", 2216 | "url": "https://github.com/sponsors/ai" 2217 | } 2218 | ], 2219 | "bin": { 2220 | "nanoid": "bin/nanoid.cjs" 2221 | }, 2222 | "engines": { 2223 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2224 | } 2225 | }, 2226 | "node_modules/natural-compare": { 2227 | "version": "1.4.0", 2228 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2229 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2230 | "dev": true 2231 | }, 2232 | "node_modules/natural-compare-lite": { 2233 | "version": "1.4.0", 2234 | "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", 2235 | "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", 2236 | "dev": true 2237 | }, 2238 | "node_modules/node-releases": { 2239 | "version": "2.0.19", 2240 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 2241 | "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 2242 | "dev": true 2243 | }, 2244 | "node_modules/once": { 2245 | "version": "1.4.0", 2246 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 2247 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 2248 | "dev": true, 2249 | "dependencies": { 2250 | "wrappy": "1" 2251 | } 2252 | }, 2253 | "node_modules/optionator": { 2254 | "version": "0.9.4", 2255 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2256 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2257 | "dev": true, 2258 | "dependencies": { 2259 | "deep-is": "^0.1.3", 2260 | "fast-levenshtein": "^2.0.6", 2261 | "levn": "^0.4.1", 2262 | "prelude-ls": "^1.2.1", 2263 | "type-check": "^0.4.0", 2264 | "word-wrap": "^1.2.5" 2265 | }, 2266 | "engines": { 2267 | "node": ">= 0.8.0" 2268 | } 2269 | }, 2270 | "node_modules/p-limit": { 2271 | "version": "3.1.0", 2272 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2273 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2274 | "dev": true, 2275 | "dependencies": { 2276 | "yocto-queue": "^0.1.0" 2277 | }, 2278 | "engines": { 2279 | "node": ">=10" 2280 | }, 2281 | "funding": { 2282 | "url": "https://github.com/sponsors/sindresorhus" 2283 | } 2284 | }, 2285 | "node_modules/p-locate": { 2286 | "version": "5.0.0", 2287 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2288 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2289 | "dev": true, 2290 | "dependencies": { 2291 | "p-limit": "^3.0.2" 2292 | }, 2293 | "engines": { 2294 | "node": ">=10" 2295 | }, 2296 | "funding": { 2297 | "url": "https://github.com/sponsors/sindresorhus" 2298 | } 2299 | }, 2300 | "node_modules/parent-module": { 2301 | "version": "1.0.1", 2302 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2303 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2304 | "dev": true, 2305 | "dependencies": { 2306 | "callsites": "^3.0.0" 2307 | }, 2308 | "engines": { 2309 | "node": ">=6" 2310 | } 2311 | }, 2312 | "node_modules/path-exists": { 2313 | "version": "4.0.0", 2314 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2315 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2316 | "dev": true, 2317 | "engines": { 2318 | "node": ">=8" 2319 | } 2320 | }, 2321 | "node_modules/path-is-absolute": { 2322 | "version": "1.0.1", 2323 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 2324 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 2325 | "dev": true, 2326 | "engines": { 2327 | "node": ">=0.10.0" 2328 | } 2329 | }, 2330 | "node_modules/path-key": { 2331 | "version": "3.1.1", 2332 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2333 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2334 | "dev": true, 2335 | "engines": { 2336 | "node": ">=8" 2337 | } 2338 | }, 2339 | "node_modules/path-type": { 2340 | "version": "4.0.0", 2341 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 2342 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 2343 | "dev": true, 2344 | "engines": { 2345 | "node": ">=8" 2346 | } 2347 | }, 2348 | "node_modules/picocolors": { 2349 | "version": "1.1.1", 2350 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 2351 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 2352 | "dev": true 2353 | }, 2354 | "node_modules/picomatch": { 2355 | "version": "2.3.1", 2356 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2357 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2358 | "dev": true, 2359 | "engines": { 2360 | "node": ">=8.6" 2361 | }, 2362 | "funding": { 2363 | "url": "https://github.com/sponsors/jonschlinkert" 2364 | } 2365 | }, 2366 | "node_modules/postcss": { 2367 | "version": "8.5.6", 2368 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", 2369 | "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", 2370 | "dev": true, 2371 | "funding": [ 2372 | { 2373 | "type": "opencollective", 2374 | "url": "https://opencollective.com/postcss/" 2375 | }, 2376 | { 2377 | "type": "tidelift", 2378 | "url": "https://tidelift.com/funding/github/npm/postcss" 2379 | }, 2380 | { 2381 | "type": "github", 2382 | "url": "https://github.com/sponsors/ai" 2383 | } 2384 | ], 2385 | "dependencies": { 2386 | "nanoid": "^3.3.11", 2387 | "picocolors": "^1.1.1", 2388 | "source-map-js": "^1.2.1" 2389 | }, 2390 | "engines": { 2391 | "node": "^10 || ^12 || >=14" 2392 | } 2393 | }, 2394 | "node_modules/prelude-ls": { 2395 | "version": "1.2.1", 2396 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2397 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2398 | "dev": true, 2399 | "engines": { 2400 | "node": ">= 0.8.0" 2401 | } 2402 | }, 2403 | "node_modules/punycode": { 2404 | "version": "2.3.1", 2405 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2406 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2407 | "dev": true, 2408 | "engines": { 2409 | "node": ">=6" 2410 | } 2411 | }, 2412 | "node_modules/queue-microtask": { 2413 | "version": "1.2.3", 2414 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2415 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2416 | "dev": true, 2417 | "funding": [ 2418 | { 2419 | "type": "github", 2420 | "url": "https://github.com/sponsors/feross" 2421 | }, 2422 | { 2423 | "type": "patreon", 2424 | "url": "https://www.patreon.com/feross" 2425 | }, 2426 | { 2427 | "type": "consulting", 2428 | "url": "https://feross.org/support" 2429 | } 2430 | ] 2431 | }, 2432 | "node_modules/react": { 2433 | "version": "18.3.1", 2434 | "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", 2435 | "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", 2436 | "dependencies": { 2437 | "loose-envify": "^1.1.0" 2438 | }, 2439 | "engines": { 2440 | "node": ">=0.10.0" 2441 | } 2442 | }, 2443 | "node_modules/react-dom": { 2444 | "version": "18.3.1", 2445 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", 2446 | "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", 2447 | "dependencies": { 2448 | "loose-envify": "^1.1.0", 2449 | "scheduler": "^0.23.2" 2450 | }, 2451 | "peerDependencies": { 2452 | "react": "^18.3.1" 2453 | } 2454 | }, 2455 | "node_modules/react-leaflet": { 2456 | "version": "4.2.1", 2457 | "resolved": "https://registry.npmjs.org/react-leaflet/-/react-leaflet-4.2.1.tgz", 2458 | "integrity": "sha512-p9chkvhcKrWn/H/1FFeVSqLdReGwn2qmiobOQGO3BifX+/vV/39qhY8dGqbdcPh1e6jxh/QHriLXr7a4eLFK4Q==", 2459 | "dependencies": { 2460 | "@react-leaflet/core": "^2.1.0" 2461 | }, 2462 | "peerDependencies": { 2463 | "leaflet": "^1.9.0", 2464 | "react": "^18.0.0", 2465 | "react-dom": "^18.0.0" 2466 | } 2467 | }, 2468 | "node_modules/react-leaflet-cluster": { 2469 | "version": "3.1.1", 2470 | "resolved": "https://registry.npmjs.org/react-leaflet-cluster/-/react-leaflet-cluster-3.1.1.tgz", 2471 | "integrity": "sha512-g39QohKNrmIwHNlL0KTv+a9PYYWDtcRAsnHHytJyRhIgjxGxs4/SXe/Zr4kP8IZoEzxbqCMkJqUsFBEZJqKp2g==", 2472 | "dependencies": { 2473 | "leaflet.markercluster": "^1.5.3" 2474 | }, 2475 | "peerDependencies": { 2476 | "leaflet": "^1.8.0", 2477 | "react": "^18.2.0 || ^19.0.0", 2478 | "react-dom": "^18.2.0 || ^19.0.0", 2479 | "react-leaflet": "^4.0.0" 2480 | } 2481 | }, 2482 | "node_modules/react-refresh": { 2483 | "version": "0.17.0", 2484 | "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", 2485 | "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", 2486 | "dev": true, 2487 | "engines": { 2488 | "node": ">=0.10.0" 2489 | } 2490 | }, 2491 | "node_modules/resolve-from": { 2492 | "version": "4.0.0", 2493 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2494 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2495 | "dev": true, 2496 | "engines": { 2497 | "node": ">=4" 2498 | } 2499 | }, 2500 | "node_modules/reusify": { 2501 | "version": "1.1.0", 2502 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", 2503 | "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", 2504 | "dev": true, 2505 | "engines": { 2506 | "iojs": ">=1.0.0", 2507 | "node": ">=0.10.0" 2508 | } 2509 | }, 2510 | "node_modules/rimraf": { 2511 | "version": "3.0.2", 2512 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 2513 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 2514 | "deprecated": "Rimraf versions prior to v4 are no longer supported", 2515 | "dev": true, 2516 | "dependencies": { 2517 | "glob": "^7.1.3" 2518 | }, 2519 | "bin": { 2520 | "rimraf": "bin.js" 2521 | }, 2522 | "funding": { 2523 | "url": "https://github.com/sponsors/isaacs" 2524 | } 2525 | }, 2526 | "node_modules/rollup": { 2527 | "version": "3.29.5", 2528 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.5.tgz", 2529 | "integrity": "sha512-GVsDdsbJzzy4S/v3dqWPJ7EfvZJfCHiDqe80IyrF59LYuP+e6U1LJoUqeuqRbwAWoMNoXivMNeNAOf5E22VA1w==", 2530 | "dev": true, 2531 | "bin": { 2532 | "rollup": "dist/bin/rollup" 2533 | }, 2534 | "engines": { 2535 | "node": ">=14.18.0", 2536 | "npm": ">=8.0.0" 2537 | }, 2538 | "optionalDependencies": { 2539 | "fsevents": "~2.3.2" 2540 | } 2541 | }, 2542 | "node_modules/run-parallel": { 2543 | "version": "1.2.0", 2544 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2545 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2546 | "dev": true, 2547 | "funding": [ 2548 | { 2549 | "type": "github", 2550 | "url": "https://github.com/sponsors/feross" 2551 | }, 2552 | { 2553 | "type": "patreon", 2554 | "url": "https://www.patreon.com/feross" 2555 | }, 2556 | { 2557 | "type": "consulting", 2558 | "url": "https://feross.org/support" 2559 | } 2560 | ], 2561 | "dependencies": { 2562 | "queue-microtask": "^1.2.2" 2563 | } 2564 | }, 2565 | "node_modules/scheduler": { 2566 | "version": "0.23.2", 2567 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", 2568 | "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", 2569 | "dependencies": { 2570 | "loose-envify": "^1.1.0" 2571 | } 2572 | }, 2573 | "node_modules/semver": { 2574 | "version": "7.7.2", 2575 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", 2576 | "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", 2577 | "dev": true, 2578 | "bin": { 2579 | "semver": "bin/semver.js" 2580 | }, 2581 | "engines": { 2582 | "node": ">=10" 2583 | } 2584 | }, 2585 | "node_modules/shebang-command": { 2586 | "version": "2.0.0", 2587 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2588 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2589 | "dev": true, 2590 | "dependencies": { 2591 | "shebang-regex": "^3.0.0" 2592 | }, 2593 | "engines": { 2594 | "node": ">=8" 2595 | } 2596 | }, 2597 | "node_modules/shebang-regex": { 2598 | "version": "3.0.0", 2599 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2600 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2601 | "dev": true, 2602 | "engines": { 2603 | "node": ">=8" 2604 | } 2605 | }, 2606 | "node_modules/slash": { 2607 | "version": "3.0.0", 2608 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 2609 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 2610 | "dev": true, 2611 | "engines": { 2612 | "node": ">=8" 2613 | } 2614 | }, 2615 | "node_modules/source-map-js": { 2616 | "version": "1.2.1", 2617 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 2618 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 2619 | "dev": true, 2620 | "engines": { 2621 | "node": ">=0.10.0" 2622 | } 2623 | }, 2624 | "node_modules/strip-ansi": { 2625 | "version": "6.0.1", 2626 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 2627 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 2628 | "dev": true, 2629 | "dependencies": { 2630 | "ansi-regex": "^5.0.1" 2631 | }, 2632 | "engines": { 2633 | "node": ">=8" 2634 | } 2635 | }, 2636 | "node_modules/strip-json-comments": { 2637 | "version": "3.1.1", 2638 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2639 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2640 | "dev": true, 2641 | "engines": { 2642 | "node": ">=8" 2643 | }, 2644 | "funding": { 2645 | "url": "https://github.com/sponsors/sindresorhus" 2646 | } 2647 | }, 2648 | "node_modules/supports-color": { 2649 | "version": "7.2.0", 2650 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2651 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2652 | "dev": true, 2653 | "dependencies": { 2654 | "has-flag": "^4.0.0" 2655 | }, 2656 | "engines": { 2657 | "node": ">=8" 2658 | } 2659 | }, 2660 | "node_modules/text-table": { 2661 | "version": "0.2.0", 2662 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 2663 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 2664 | "dev": true 2665 | }, 2666 | "node_modules/to-regex-range": { 2667 | "version": "5.0.1", 2668 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2669 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2670 | "dev": true, 2671 | "dependencies": { 2672 | "is-number": "^7.0.0" 2673 | }, 2674 | "engines": { 2675 | "node": ">=8.0" 2676 | } 2677 | }, 2678 | "node_modules/tslib": { 2679 | "version": "1.14.1", 2680 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 2681 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", 2682 | "dev": true 2683 | }, 2684 | "node_modules/tsutils": { 2685 | "version": "3.21.0", 2686 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 2687 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 2688 | "dev": true, 2689 | "dependencies": { 2690 | "tslib": "^1.8.1" 2691 | }, 2692 | "engines": { 2693 | "node": ">= 6" 2694 | }, 2695 | "peerDependencies": { 2696 | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" 2697 | } 2698 | }, 2699 | "node_modules/type-check": { 2700 | "version": "0.4.0", 2701 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 2702 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2703 | "dev": true, 2704 | "dependencies": { 2705 | "prelude-ls": "^1.2.1" 2706 | }, 2707 | "engines": { 2708 | "node": ">= 0.8.0" 2709 | } 2710 | }, 2711 | "node_modules/type-fest": { 2712 | "version": "0.20.2", 2713 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 2714 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 2715 | "dev": true, 2716 | "engines": { 2717 | "node": ">=10" 2718 | }, 2719 | "funding": { 2720 | "url": "https://github.com/sponsors/sindresorhus" 2721 | } 2722 | }, 2723 | "node_modules/typescript": { 2724 | "version": "5.9.2", 2725 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.2.tgz", 2726 | "integrity": "sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==", 2727 | "dev": true, 2728 | "bin": { 2729 | "tsc": "bin/tsc", 2730 | "tsserver": "bin/tsserver" 2731 | }, 2732 | "engines": { 2733 | "node": ">=14.17" 2734 | } 2735 | }, 2736 | "node_modules/update-browserslist-db": { 2737 | "version": "1.1.3", 2738 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 2739 | "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 2740 | "dev": true, 2741 | "funding": [ 2742 | { 2743 | "type": "opencollective", 2744 | "url": "https://opencollective.com/browserslist" 2745 | }, 2746 | { 2747 | "type": "tidelift", 2748 | "url": "https://tidelift.com/funding/github/npm/browserslist" 2749 | }, 2750 | { 2751 | "type": "github", 2752 | "url": "https://github.com/sponsors/ai" 2753 | } 2754 | ], 2755 | "dependencies": { 2756 | "escalade": "^3.2.0", 2757 | "picocolors": "^1.1.1" 2758 | }, 2759 | "bin": { 2760 | "update-browserslist-db": "cli.js" 2761 | }, 2762 | "peerDependencies": { 2763 | "browserslist": ">= 4.21.0" 2764 | } 2765 | }, 2766 | "node_modules/uri-js": { 2767 | "version": "4.4.1", 2768 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 2769 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 2770 | "dev": true, 2771 | "dependencies": { 2772 | "punycode": "^2.1.0" 2773 | } 2774 | }, 2775 | "node_modules/vite": { 2776 | "version": "4.5.14", 2777 | "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.14.tgz", 2778 | "integrity": "sha512-+v57oAaoYNnO3hIu5Z/tJRZjq5aHM2zDve9YZ8HngVHbhk66RStobhb1sqPMIPEleV6cNKYK4eGrAbE9Ulbl2g==", 2779 | "dev": true, 2780 | "dependencies": { 2781 | "esbuild": "^0.18.10", 2782 | "postcss": "^8.4.27", 2783 | "rollup": "^3.27.1" 2784 | }, 2785 | "bin": { 2786 | "vite": "bin/vite.js" 2787 | }, 2788 | "engines": { 2789 | "node": "^14.18.0 || >=16.0.0" 2790 | }, 2791 | "funding": { 2792 | "url": "https://github.com/vitejs/vite?sponsor=1" 2793 | }, 2794 | "optionalDependencies": { 2795 | "fsevents": "~2.3.2" 2796 | }, 2797 | "peerDependencies": { 2798 | "@types/node": ">= 14", 2799 | "less": "*", 2800 | "lightningcss": "^1.21.0", 2801 | "sass": "*", 2802 | "stylus": "*", 2803 | "sugarss": "*", 2804 | "terser": "^5.4.0" 2805 | }, 2806 | "peerDependenciesMeta": { 2807 | "@types/node": { 2808 | "optional": true 2809 | }, 2810 | "less": { 2811 | "optional": true 2812 | }, 2813 | "lightningcss": { 2814 | "optional": true 2815 | }, 2816 | "sass": { 2817 | "optional": true 2818 | }, 2819 | "stylus": { 2820 | "optional": true 2821 | }, 2822 | "sugarss": { 2823 | "optional": true 2824 | }, 2825 | "terser": { 2826 | "optional": true 2827 | } 2828 | } 2829 | }, 2830 | "node_modules/which": { 2831 | "version": "2.0.2", 2832 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2833 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2834 | "dev": true, 2835 | "dependencies": { 2836 | "isexe": "^2.0.0" 2837 | }, 2838 | "bin": { 2839 | "node-which": "bin/node-which" 2840 | }, 2841 | "engines": { 2842 | "node": ">= 8" 2843 | } 2844 | }, 2845 | "node_modules/word-wrap": { 2846 | "version": "1.2.5", 2847 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 2848 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 2849 | "dev": true, 2850 | "engines": { 2851 | "node": ">=0.10.0" 2852 | } 2853 | }, 2854 | "node_modules/wrappy": { 2855 | "version": "1.0.2", 2856 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 2857 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 2858 | "dev": true 2859 | }, 2860 | "node_modules/yallist": { 2861 | "version": "3.1.1", 2862 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 2863 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 2864 | "dev": true 2865 | }, 2866 | "node_modules/yocto-queue": { 2867 | "version": "0.1.0", 2868 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 2869 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 2870 | "dev": true, 2871 | "engines": { 2872 | "node": ">=10" 2873 | }, 2874 | "funding": { 2875 | "url": "https://github.com/sponsors/sindresorhus" 2876 | } 2877 | } 2878 | } 2879 | } 2880 | -------------------------------------------------------------------------------- /examples/vite-example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my-vite-app", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "tsc && vite build", 9 | "lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "leaflet": "^1.9.4", 14 | "react": "^18.2.0", 15 | "react-dom": "^18.2.0", 16 | "react-leaflet": "^4.2.1", 17 | "react-leaflet-cluster": "^3.1.1" 18 | }, 19 | "devDependencies": { 20 | "@types/leaflet": "^1.9.3", 21 | "@types/react": "^18.2.0", 22 | "@types/react-dom": "^18.2.0", 23 | "@typescript-eslint/eslint-plugin": "^5.59.0", 24 | "@typescript-eslint/parser": "^5.59.0", 25 | "@vitejs/plugin-react": "^4.0.0", 26 | "eslint": "^8.38.0", 27 | "eslint-plugin-react-hooks": "^4.6.0", 28 | "eslint-plugin-react-refresh": "^0.3.4", 29 | "typescript": "^5.0.2", 30 | "vite": "^4.3.9" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /examples/vite-example/public/MarkerCluster.Default.css: -------------------------------------------------------------------------------- 1 | /* To solve Next.js issues source from https://github.com/Leaflet/Leaflet.markercluster/blob/master/dist/MarkerCluster.Default.css */ 2 | .marker-cluster-small { 3 | background-color: rgba(181, 226, 140, 0.6); 4 | } 5 | .marker-cluster-small div { 6 | background-color: rgba(110, 204, 57, 0.6); 7 | } 8 | 9 | .marker-cluster-medium { 10 | background-color: rgba(241, 211, 87, 0.6); 11 | } 12 | .marker-cluster-medium div { 13 | background-color: rgba(240, 194, 12, 0.6); 14 | } 15 | 16 | .marker-cluster-large { 17 | background-color: rgba(253, 156, 115, 0.6); 18 | } 19 | .marker-cluster-large div { 20 | background-color: rgba(241, 128, 23, 0.6); 21 | } 22 | 23 | /* IE 6-8 fallback colors */ 24 | .leaflet-oldie .marker-cluster-small { 25 | background-color: rgb(181, 226, 140); 26 | } 27 | .leaflet-oldie .marker-cluster-small div { 28 | background-color: rgb(110, 204, 57); 29 | } 30 | 31 | .leaflet-oldie .marker-cluster-medium { 32 | background-color: rgb(241, 211, 87); 33 | } 34 | .leaflet-oldie .marker-cluster-medium div { 35 | background-color: rgb(240, 194, 12); 36 | } 37 | 38 | .leaflet-oldie .marker-cluster-large { 39 | background-color: rgb(253, 156, 115); 40 | } 41 | .leaflet-oldie .marker-cluster-large div { 42 | background-color: rgb(241, 128, 23); 43 | } 44 | 45 | .marker-cluster { 46 | background-clip: padding-box; 47 | border-radius: 20px; 48 | } 49 | .marker-cluster div { 50 | width: 30px; 51 | height: 30px; 52 | margin-left: 5px; 53 | margin-top: 5px; 54 | 55 | text-align: center; 56 | border-radius: 15px; 57 | font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif; 58 | } 59 | .marker-cluster span { 60 | line-height: 30px; 61 | } -------------------------------------------------------------------------------- /examples/vite-example/public/MarkerCluster.css: -------------------------------------------------------------------------------- 1 | /* To solve Next.js issues source from https://github.com/Leaflet/Leaflet.markercluster/blob/master/dist/MarkerCluster.css */ 2 | .leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow { 3 | -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in; 4 | -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in; 5 | -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in; 6 | transition: transform 0.3s ease-out, opacity 0.3s ease-in; 7 | } 8 | 9 | .leaflet-cluster-spider-leg { 10 | /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */ 11 | -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in; 12 | -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in; 13 | -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in; 14 | transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in; 15 | } -------------------------------------------------------------------------------- /examples/vite-example/public/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/vite-example/src/App.tsx: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react' 2 | import 'leaflet/dist/leaflet.css' 3 | // Import the required CSS for marker clustering 4 | import 'react-leaflet-cluster/dist/assets/MarkerCluster.css' 5 | import 'react-leaflet-cluster/dist/assets/MarkerCluster.Default.css' 6 | 7 | import SimpleExample from './components/SimpleExample' 8 | import TenThousandMarker from './components/TenThousandMarker' 9 | import CustomMarkerCluster from './components/CustomMarkerCluster' 10 | import L from 'leaflet' 11 | 12 | // configure the default icon 13 | delete (L.Icon.Default as any).prototype._getIconUrl 14 | L.Icon.Default.mergeOptions({ 15 | iconRetinaUrl: 'https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon-2x.png', 16 | iconUrl: 'https://unpkg.com/leaflet@1.9.4/dist/images/marker-icon.png', 17 | shadowUrl: 'https://unpkg.com/leaflet@1.9.4/dist/images/marker-shadow.png', 18 | }) 19 | type ExampleType = 'simple' | 'ten-thousand' | 'custom' 20 | 21 | export default function App() { 22 | const [currentExample, setCurrentExample] = useState('simple') 23 | 24 | const renderExample = () => { 25 | switch (currentExample) { 26 | case 'simple': 27 | return 28 | case 'ten-thousand': 29 | return 30 | case 'custom': 31 | return 32 | default: 33 | return 34 | } 35 | } 36 | 37 | return ( 38 |
39 |

React Leaflet Cluster Examples

40 | 41 | 84 | 85 | {renderExample()} 86 |
87 | ) 88 | } 89 | -------------------------------------------------------------------------------- /examples/vite-example/src/components/CustomMarkerCluster.css: -------------------------------------------------------------------------------- 1 | .custom-marker-cluster { 2 | background: #fff; 3 | border: 3px solid #f00800; 4 | border-radius: 50%; 5 | color: #f00800; 6 | height: 33px; 7 | line-height: 27px; 8 | text-align: center; 9 | width: 33px; 10 | font-weight: bold; 11 | font-size: 14px; 12 | } -------------------------------------------------------------------------------- /examples/vite-example/src/components/CustomMarkerCluster.tsx: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react' 2 | import { MapContainer, Marker, TileLayer } from 'react-leaflet' 3 | import L from 'leaflet' 4 | import MarkerClusterGroup from 'react-leaflet-cluster' 5 | import './CustomMarkerCluster.css' 6 | 7 | const customIcon = new L.Icon({ 8 | iconUrl: 9 | 'data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDciIHZpZXdCb3g9IjAgMCA0MCA0NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDBDOC45NTQzMSAwIDAgOC45NTQzMSAwIDIwQzAgMzEuMDQ1NyA4Ljk1NDMxIDQwIDIwIDQwQzMxLjA0NTcgNDAgNDAgMzEuMDQ1NyA0MCAyMEM0MCA4Ljk1NDMxIDMxLjA0NTcgMCAyMCAwWiIgZmlsbD0iIzAwNzNGQSIvPgo8cGF0aCBkPSJNMjAgNkMxMi4yNjg5IDYgNiAxMi4yNjg5IDYgMjBDNiAyNy43MzExIDEyLjI2ODkgMzQgMjAgMzRDMjcuNzMxMSAzNCAzNCAyNy43MzExIDM0IDIwQzM0IDEyLjI2ODkgMjcuNzMxMSA2IDIwIDZaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K', 10 | iconSize: new L.Point(40, 47), 11 | }) 12 | 13 | const createClusterCustomIcon = function (cluster: any) { 14 | return L.divIcon({ 15 | html: `${cluster.getChildCount()}`, 16 | className: 'custom-marker-cluster', 17 | iconSize: L.point(33, 33, true), 18 | }) 19 | } 20 | 21 | export default function CustomMarkerCluster() { 22 | const [dynamicPosition, setPosition] = useState([41.051687, 28.987261]) 23 | 24 | return ( 25 |
26 |

Custom Marker Cluster Example

27 | 34 | 40 | 44 | console.log('onClick', e)} 46 | iconCreateFunction={createClusterCustomIcon as any} 47 | maxClusterRadius={150} 48 | spiderfyOnMaxZoom={true} 49 | polygonOptions={{ 50 | fillColor: '#ffffff', 51 | color: '#f00800', 52 | weight: 5, 53 | opacity: 1, 54 | fillOpacity: 0.8, 55 | }} 56 | showCoverageOnHover={true} 57 | > 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 |
67 | ) 68 | } 69 | -------------------------------------------------------------------------------- /examples/vite-example/src/components/SimpleExample.tsx: -------------------------------------------------------------------------------- 1 | import React, { useState } from 'react' 2 | import { MapContainer, Marker, TileLayer } from 'react-leaflet' 3 | import MarkerClusterGroup from 'react-leaflet-cluster' 4 | 5 | export default function SimpleExample() { 6 | const [count, setCount] = useState(0) 7 | 8 | return ( 9 |
10 |

Simple Example

11 | 12 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 |
26 |
27 | ) 28 | } 29 | -------------------------------------------------------------------------------- /examples/vite-example/src/components/TenThousandMarker.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { MapContainer, Marker, TileLayer } from 'react-leaflet' 3 | import MarkerClusterGroup from 'react-leaflet-cluster' 4 | 5 | // Mock data for 10,000 markers 6 | const generateAddressPoints = () => { 7 | const points = [] 8 | for (let i = 0; i < 10000; i++) { 9 | points.push([ 10 | -41.975762 + (Math.random() - 0.5) * 20, // latitude 11 | 172.934298 + (Math.random() - 0.5) * 20, // longitude 12 | `Marker ${i + 1}`, // title 13 | ]) 14 | } 15 | return points 16 | } 17 | 18 | const addressPoints = generateAddressPoints() 19 | type AddressPoint = Array<[number, number, string]> 20 | 21 | export default function TenThousandMarker() { 22 | return ( 23 |
24 |

10,000 Markers Example

25 | 31 | 35 | 36 | {(addressPoints as AddressPoint).map((address, index) => ( 37 | 38 | ))} 39 | 40 | 41 |
42 | ) 43 | } 44 | -------------------------------------------------------------------------------- /examples/vite-example/src/main.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import ReactDOM from 'react-dom/client' 3 | import App from './App.tsx' 4 | 5 | ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render( 6 | 7 | 8 | , 9 | ) 10 | -------------------------------------------------------------------------------- /examples/vite-example/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/vite-example/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 6 | "module": "ESNext", 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "noEmit": true, 15 | "jsx": "react-jsx", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src"], 24 | "references": [{ "path": "./tsconfig.node.json" }] 25 | } 26 | -------------------------------------------------------------------------------- /examples/vite-example/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "composite": true, 4 | "skipLibCheck": true, 5 | "module": "ESNext", 6 | "moduleResolution": "bundler", 7 | "allowSyntheticDefaultImports": true 8 | }, 9 | "include": ["vite.config.ts"] 10 | } 11 | -------------------------------------------------------------------------------- /examples/vite-example/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }) 8 | -------------------------------------------------------------------------------- /examples/vite-example/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | 11 | 12 | 13 | 17 | 18 | birikimplani 🚀🚀🚀 19 | 20 | 21 |
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-leaflet-cluster", 3 | "version": "3.1.1", 4 | "description": "React-leaflet-cluster is a plugin for react-leaflet. A wrapper component of Leaflet.markercluster.", 5 | "main": "dist/index.js", 6 | "type": "module", 7 | "types": "dist/index.d.ts", 8 | "files": [ 9 | "dist" 10 | ], 11 | "scripts": { 12 | "build": "tsc && npm run copy:assets", 13 | "format": "prettier --write \"src/**/*.tsx\"", 14 | "lint": "tslint -p tsconfig.json", 15 | "prepublishOnly": "npm run lint", 16 | "preversion": "npm run lint", 17 | "version": "npm run format && git add -A src", 18 | "postversion": "git push && git push --tags", 19 | "copy:assets": "cpx 'src/assets/**' 'dist/assets'" 20 | }, 21 | "dependencies": { 22 | "leaflet.markercluster": "^1.5.3" 23 | }, 24 | "peerDependencies": { 25 | "leaflet": "^1.8.0", 26 | "react": "^18.2.0 || ^19.0.0", 27 | "react-dom": "^18.2.0 || ^19.0.0", 28 | "react-leaflet": "^4.0.0" 29 | }, 30 | "devDependencies": { 31 | "@types/leaflet": "^1.7.11", 32 | "@types/leaflet.markercluster": "^1.5.0", 33 | "@types/node": "^14.18.21", 34 | "@types/react": "^18.2.0", 35 | "@types/react-dom": "^18.2.0", 36 | "@typescript-eslint/eslint-plugin": "^4.33.0", 37 | "@typescript-eslint/parser": "^4.33.0", 38 | "cpx": "^1.5.0", 39 | "eslint": "^7.32.0", 40 | "eslint-loader": "^4.0.2", 41 | "eslint-plugin-prettier": "^3.4.1", 42 | "eslint-plugin-react": "^7.30.0", 43 | "eslint-plugin-react-hooks": "^4.5.0", 44 | "leaflet": "^1.8.0", 45 | "prettier": "^2.6.2", 46 | "react": "^18.0.0", 47 | "react-dom": "^18.0.0", 48 | "react-leaflet": "^4.0.0", 49 | "ts-loader": "^8.4.0", 50 | "tslint": "^6.1.3", 51 | "tslint-config-prettier": "^1.18.0", 52 | "typescript": "^4.7.3", 53 | "uglify-js": "^3.16.0" 54 | }, 55 | "author": "akursat", 56 | "homepage": "https://akursat.gitbook.io/marker-cluster/", 57 | "license": "SEE LICENSE IN ", 58 | "repository": "https://github.com/akursat/react-leaflet-cluster", 59 | "keywords": [ 60 | "react", 61 | "leaflet", 62 | "marker-cluster", 63 | "cluster", 64 | "map", 65 | "react-leaflet-v4" 66 | ] 67 | } 68 | -------------------------------------------------------------------------------- /showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akursat/react-leaflet-cluster/c4775915d8b8667bb91612155ee0309cc7b2a7ed/showcase.gif -------------------------------------------------------------------------------- /src/assets/MarkerCluster.Default.css: -------------------------------------------------------------------------------- 1 | /* To solve Next.js issues source from https://github.com/Leaflet/Leaflet.markercluster/blob/master/dist/MarkerCluster.Default.css */ 2 | .marker-cluster-small { 3 | background-color: rgba(181, 226, 140, 0.6); 4 | } 5 | .marker-cluster-small div { 6 | background-color: rgba(110, 204, 57, 0.6); 7 | } 8 | 9 | .marker-cluster-medium { 10 | background-color: rgba(241, 211, 87, 0.6); 11 | } 12 | .marker-cluster-medium div { 13 | background-color: rgba(240, 194, 12, 0.6); 14 | } 15 | 16 | .marker-cluster-large { 17 | background-color: rgba(253, 156, 115, 0.6); 18 | } 19 | .marker-cluster-large div { 20 | background-color: rgba(241, 128, 23, 0.6); 21 | } 22 | 23 | /* IE 6-8 fallback colors */ 24 | .leaflet-oldie .marker-cluster-small { 25 | background-color: rgb(181, 226, 140); 26 | } 27 | .leaflet-oldie .marker-cluster-small div { 28 | background-color: rgb(110, 204, 57); 29 | } 30 | 31 | .leaflet-oldie .marker-cluster-medium { 32 | background-color: rgb(241, 211, 87); 33 | } 34 | .leaflet-oldie .marker-cluster-medium div { 35 | background-color: rgb(240, 194, 12); 36 | } 37 | 38 | .leaflet-oldie .marker-cluster-large { 39 | background-color: rgb(253, 156, 115); 40 | } 41 | .leaflet-oldie .marker-cluster-large div { 42 | background-color: rgb(241, 128, 23); 43 | } 44 | 45 | .marker-cluster { 46 | background-clip: padding-box; 47 | border-radius: 20px; 48 | } 49 | .marker-cluster div { 50 | width: 30px; 51 | height: 30px; 52 | margin-left: 5px; 53 | margin-top: 5px; 54 | 55 | text-align: center; 56 | border-radius: 15px; 57 | font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif; 58 | } 59 | .marker-cluster span { 60 | line-height: 30px; 61 | } -------------------------------------------------------------------------------- /src/assets/MarkerCluster.css: -------------------------------------------------------------------------------- 1 | /* To solve Next.js issues source from https://github.com/Leaflet/Leaflet.markercluster/blob/master/dist/MarkerCluster.css */ 2 | .leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow { 3 | -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in; 4 | -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in; 5 | -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in; 6 | transition: transform 0.3s ease-out, opacity 0.3s ease-in; 7 | } 8 | 9 | .leaflet-cluster-spider-leg { 10 | /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */ 11 | -webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in; 12 | -moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in; 13 | -o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in; 14 | transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in; 15 | } -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | import { 3 | extendContext, 4 | createElementObject, 5 | createPathComponent, 6 | LeafletContextInterface, 7 | } from '@react-leaflet/core' 8 | import L, { LeafletMouseEventHandlerFn } from 'leaflet' 9 | import 'leaflet.markercluster' 10 | // CSS imports removed to prevent Next.js issues 11 | // Users should import CSS separately: 12 | // import 'react-leaflet-cluster/dist/assets/MarkerCluster.css' 13 | // import 'react-leaflet-cluster/dist/assets/MarkerCluster.Default.css' 14 | 15 | // Users should configure their own icon URLs as needed 16 | // delete (L.Icon.Default as any).prototype._getIconUrl 17 | // L.Icon.Default.mergeOptions({ 18 | // iconRetinaUrl: new URL('./assets/marker-icon-2x.png', import.meta.url).href, 19 | // iconUrl: new URL('./assets/marker-icon.png', import.meta.url).href, 20 | // shadowUrl: new URL('./assets/marker-shadow.png', import.meta.url).href, 21 | // }) 22 | 23 | type ClusterType = { [key in string]: any } 24 | 25 | type ClusterEvents = { 26 | onClick?: LeafletMouseEventHandlerFn 27 | onDblClick?: LeafletMouseEventHandlerFn 28 | onMouseDown?: LeafletMouseEventHandlerFn 29 | onMouseUp?: LeafletMouseEventHandlerFn 30 | onMouseOver?: LeafletMouseEventHandlerFn 31 | onMouseOut?: LeafletMouseEventHandlerFn 32 | onContextMenu?: LeafletMouseEventHandlerFn 33 | } 34 | 35 | type MarkerClusterControl = L.MarkerClusterGroupOptions & { 36 | children: React.ReactNode 37 | } & ClusterEvents 38 | 39 | function getPropsAndEvents(props: MarkerClusterControl) { 40 | let clusterProps: ClusterType = {} 41 | let clusterEvents: ClusterType = {} 42 | const { children, ...rest } = props 43 | // Splitting props and events to different objects 44 | Object.entries(rest).forEach(([propName, prop]) => { 45 | if (propName.startsWith('on')) { 46 | clusterEvents = { ...clusterEvents, [propName]: prop } 47 | } else { 48 | clusterProps = { ...clusterProps, [propName]: prop } 49 | } 50 | }) 51 | return { clusterProps, clusterEvents } 52 | } 53 | 54 | function createMarkerClusterGroup(props: MarkerClusterControl, context: LeafletContextInterface) { 55 | const { clusterProps, clusterEvents } = getPropsAndEvents(props) 56 | const markerClusterGroup = new L.MarkerClusterGroup(clusterProps) 57 | Object.entries(clusterEvents).forEach(([eventAsProp, callback]) => { 58 | const clusterEvent = `cluster${eventAsProp.substring(2).toLowerCase()}` 59 | markerClusterGroup.on(clusterEvent, callback) 60 | }) 61 | return createElementObject( 62 | markerClusterGroup, 63 | extendContext(context, { layerContainer: markerClusterGroup }), 64 | ) 65 | } 66 | 67 | const updateMarkerCluster = ( 68 | instance: L.MarkerClusterGroup, 69 | props: MarkerClusterControl, 70 | prevProps: MarkerClusterControl, 71 | ) => { 72 | //TODO when prop change update instance 73 | // if (props. !== prevProps.center || props.size !== prevProps.size) { 74 | // instance.setBounds(getBounds(props)) 75 | // } 76 | } 77 | 78 | const MarkerClusterGroup = createPathComponent( 79 | createMarkerClusterGroup, 80 | updateMarkerCluster, 81 | ) 82 | 83 | export default MarkerClusterGroup 84 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "module": "ES2020", 5 | "moduleResolution": "node", 6 | "declaration": true, 7 | "outDir": "./dist", 8 | "strict": true, 9 | "jsx": "react-jsx", 10 | "esModuleInterop": true, 11 | "allowSyntheticDefaultImports": true, 12 | "skipLibCheck": true 13 | }, 14 | "include": ["src"], 15 | "exclude": ["node_modules", "**/__tests__/*"] 16 | } --------------------------------------------------------------------------------