├── .eslintignore ├── .eslintrc.cjs ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── demo.gif ├── lefthook.yml ├── package.json ├── pnpm-lock.yaml ├── renovate.json ├── src ├── app.d.ts ├── app.html ├── config.ts ├── lib │ ├── components │ │ ├── AdvancedPanel.svelte │ │ ├── DrawerContent.svelte │ │ ├── LayerListPanel.svelte │ │ └── Map.svelte │ ├── stores │ │ └── index.ts │ └── types │ │ ├── config.ts │ │ └── index.ts ├── routes │ ├── +page.svelte │ └── +page.ts └── service-worker.js ├── static ├── .nojekyll ├── assets │ ├── icons │ │ ├── icon-128x128.png │ │ ├── icon-144x144.png │ │ ├── icon-152x152.png │ │ ├── icon-192x192.png │ │ ├── icon-384x384.png │ │ ├── icon-48x48.png │ │ ├── icon-512x512.png │ │ ├── icon-72x72.png │ │ └── icon-96x96.png │ ├── preview-1200x630.png │ └── tutorial │ │ ├── attr-table-selectbox.png │ │ ├── eye-solid.svg │ │ ├── isochrone-example.png │ │ ├── isochrone-tool.png │ │ ├── magnifying-glass-plus-solid.svg │ │ ├── measure-tool.png │ │ ├── palette-solid.svg │ │ ├── routing-tool.png │ │ ├── style-switcher.png │ │ └── up-down-left-right-solid.svg ├── favicon.png ├── manifest.webmanifest └── robots.txt ├── svelte.config.js ├── tsconfig.json └── vite.config.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: [ 4 | 'eslint:recommended', 5 | 'plugin:@typescript-eslint/recommended', 6 | 'plugin:svelte/recommended', 7 | 'prettier' 8 | ], 9 | parser: '@typescript-eslint/parser', 10 | plugins: ['@typescript-eslint'], 11 | parserOptions: { 12 | sourceType: 'module', 13 | ecmaVersion: 2020, 14 | extraFileExtensions: ['.svelte'] 15 | }, 16 | env: { 17 | browser: true, 18 | es2017: true, 19 | node: true 20 | }, 21 | overrides: [ 22 | { 23 | files: ['*.svelte'], 24 | parser: 'svelte-eslint-parser', 25 | parserOptions: { 26 | parser: '@typescript-eslint/parser' 27 | } 28 | } 29 | ] 30 | }; 31 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [JinIgarashi] 4 | open_collective: watergis 5 | custom: ['https://www.paypal.me/jinigarashi'] 6 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- 1 | # This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node 2 | # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions 3 | 4 | name: build 5 | 6 | on: 7 | push: 8 | branches: [main] 9 | pull_request: 10 | 11 | jobs: 12 | build: 13 | runs-on: ubuntu-latest 14 | 15 | strategy: 16 | matrix: 17 | node-version: [18.x] 18 | 19 | steps: 20 | - uses: actions/checkout@v4 21 | 22 | # pnpm setup 23 | # refer to https://github.com/pnpm/action-setup 24 | - name: pnpm setup 25 | uses: pnpm/action-setup@v3.0.0 26 | with: 27 | version: 8 28 | run_install: false 29 | 30 | - name: Use Node.js ${{ matrix.node-version }} 31 | uses: actions/setup-node@v4 32 | with: 33 | node-version: ${{ matrix.node-version }} 34 | cache: 'pnpm' 35 | 36 | - name: Get pnpm store directory 37 | id: pnpm-cache 38 | run: | 39 | echo "::set-output name=pnpm_cache_dir::$(pnpm store path)" 40 | 41 | - uses: actions/cache@v4 42 | name: Setup pnpm cache 43 | with: 44 | path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }} 45 | key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} 46 | restore-keys: | 47 | ${{ runner.os }}-pnpm-store- 48 | 49 | - name: Install dependencies 50 | run: pnpm install --frozen-lockfile 51 | 52 | - name: Run lint 53 | run: pnpm lint 54 | 55 | - name: Run Prettier 56 | run: pnpm format 57 | 58 | - name: Run build 59 | env: 60 | CNAME: ${{secrets.CNAME}} 61 | run: | 62 | pnpm build 63 | echo "${CNAME}" >> ./build/CNAME 64 | - name: Deploy 🚀 65 | uses: JamesIves/github-pages-deploy-action@v4.6.3 66 | env: 67 | SKIP_DEPLOY_TO_GHPAGES: ${{secrets.SKIP_DEPLOY_TO_GHPAGES}} 68 | if: ${{ github.ref == 'refs/heads/main' && env.SKIP_DEPLOY_TO_GHPAGES == '' }} 69 | with: 70 | branch: gh-pages # The branch the action should deploy to. 71 | folder: build # The folder the action should deploy. 72 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | node-linker=hoisted 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | 15 | static/*.css 16 | .vscode/ 17 | .prettierrc -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100, 6 | "plugins": ["prettier-plugin-svelte"], 7 | "overrides": [{ "files": "*.svelte", "options": { "parser": "svelte" } }] 8 | } 9 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "dbaeumer.vscode-eslint", 4 | "ghmcadams.lintlens", 5 | "esbenp.prettier-vscode", 6 | "svelte.svelte-vscode", 7 | "ardenivanov.svelte-intellisense", 8 | "fivethree.vscode-svelte-snippets" 9 | ] 10 | } 11 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true, 3 | "editor.defaultFormatter": "esbenp.prettier-vscode", 4 | "[svelte]": { 5 | "editor.defaultFormatter": "svelte.svelte-vscode", 6 | "editor.codeActionsOnSave": ["source.organizeImports"] 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # svelte-maplibre-boilerplate 2 | 3 | [![build](https://github.com/watergis/sveltekit-watergis-template/actions/workflows/build.yml/badge.svg)](https://github.com/watergis/sveltekit-watergis-template/actions/workflows/build.yml) 4 | [![Netlify Status](https://api.netlify.com/api/v1/badges/d92c4eb3-79a0-4e2e-aba4-f5fbc14bb469/deploy-status)](https://app.netlify.com/sites/demo-watergis/deploys) 5 | 6 | Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte). 7 | 8 | ![demo.gif](./demo.gif) 9 | 10 | ## Creating a project 11 | 12 | If you're seeing this, you've probably already done this step. Congrats! 13 | 14 | ```bash 15 | # create a new project in the current directory 16 | npm init svelte 17 | 18 | # create a new project in my-app 19 | npm init svelte my-app 20 | ``` 21 | 22 | ## Environmental variables 23 | 24 | ```bash 25 | cp .env.example 26 | vi .env 27 | ``` 28 | 29 | Add your own API key `VITE_MAPTILER_KEY` for maptiler. The key can be created at maptiler website [here](https://cloud.maptiler.com/account/keys/). You probably need to sign up first. 30 | 31 | Furthermore, edit [config.ts](./src/config.ts) for your environment. 32 | 33 | ## Developing 34 | 35 | Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: 36 | 37 | ```bash 38 | pnpm dev 39 | 40 | # or start the server and open the app in a new browser tab 41 | pnpm dev -- --open 42 | ``` 43 | 44 | open [http://localhost:3000](http://localhost:3000). 45 | 46 | The path of URL can be changed at [svelte.config.js](./svelte.config.js). 47 | 48 | ## Lefthook 49 | 50 | When you clone the repository from Github for the first time, please install `lefthook` in your local machine manually by following commands. So, `lint`, `format` and `build` command will be automatically executed when you commit or push. 51 | 52 | ```bash 53 | pnpm lefthook install 54 | ``` 55 | 56 | ## Building 57 | 58 | To create a production version of your app: 59 | 60 | ```bash 61 | pnpm build 62 | ``` 63 | 64 | You can preview the production build with `pnpm preview`. 65 | 66 | > To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment. 67 | -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/demo.gif -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- 1 | # EXAMPLE USAGE 2 | # Refer for explanation to following link: 3 | # https://github.com/evilmartians/lefthook/blob/master/docs/full_guide.md 4 | 5 | pre-push: 6 | commands: 7 | build: 8 | run: pnpm build 9 | 10 | pre-commit: 11 | commands: 12 | 1_lint: 13 | run: pnpm lint 14 | 2_format: 15 | run: pnpm format 16 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sveltekit-maplibre-boilerplate", 3 | "version": "0.0.1", 4 | "scripts": { 5 | "dev": "vite dev", 6 | "build": "vite build", 7 | "package": "svelte-kit package", 8 | "preview": "vite preview", 9 | "check": "svelte-check --tsconfig ./tsconfig.json", 10 | "check:watch": "svelte-check --tsconfig ./tsconfig.json --watch", 11 | "lint": "prettier --ignore-path .prettierignore --check . && eslint --ignore-path .prettierignore .", 12 | "format": "prettier --ignore-path .prettierignore --write .", 13 | "preinstall": "npx only-allow pnpm" 14 | }, 15 | "devDependencies": { 16 | "@evilmartians/lefthook": "^1.5.0", 17 | "@maplibre/maplibre-gl-geocoder": "^1.5.0", 18 | "@popperjs/core": "^2.11.8", 19 | "@sjmc11/tourguidejs": "^0.0.16", 20 | "@sveltejs/adapter-static": "^3.0.0", 21 | "@sveltejs/kit": "^2.0.0", 22 | "@sveltejs/vite-plugin-svelte": "^3.0.0", 23 | "@types/events": "^3.0.1", 24 | "@types/node": "^20.8.0", 25 | "@typescript-eslint/eslint-plugin": "^7.0.0", 26 | "@typescript-eslint/parser": "^7.0.0", 27 | "@watergis/maplibre-center-icon": "^3.0.0", 28 | "@watergis/maplibre-gl-area-switcher": "^1.0.0", 29 | "@watergis/maplibre-gl-tour": "^1.0.4", 30 | "@watergis/svelte-collapsible-panel": "^3.0.0", 31 | "@watergis/svelte-maplibre-attribute-popup": "^3.0.0", 32 | "@watergis/svelte-maplibre-attribute-table": "^3.0.0", 33 | "@watergis/svelte-maplibre-export": "^4.0.0", 34 | "@watergis/svelte-maplibre-legend": "^4.0.0", 35 | "@watergis/svelte-maplibre-measure": "^3.0.0", 36 | "@watergis/svelte-maplibre-menu": "^3.0.0", 37 | "@watergis/svelte-maplibre-share": "^4.0.0", 38 | "@watergis/svelte-maplibre-style-switcher": "^4.0.0", 39 | "@watergis/svelte-maplibre-valhalla": "^3.0.0", 40 | "buffer": "^6.0.3", 41 | "bulma": "^1.0.0", 42 | "eslint": "^8.50.0", 43 | "eslint-config-prettier": "^9.0.0", 44 | "eslint-plugin-svelte": "^2.33.2", 45 | "events": "^3.3.0", 46 | "maplibre-gl": "^4.1.1", 47 | "pmtiles": "^3.0.5", 48 | "prettier": "^3.0.3", 49 | "prettier-plugin-svelte": "^3.0.3", 50 | "sass": "^1.68.0", 51 | "svelte": "^4.0.5", 52 | "svelte-check": "^3.5.2", 53 | "svelte-preprocess": "^5.0.4", 54 | "tslib": "^2.6.2", 55 | "typescript": "~5.5.0", 56 | "vite": "^5.0.0" 57 | }, 58 | "type": "module" 59 | } 60 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | devDependencies: 8 | '@evilmartians/lefthook': 9 | specifier: ^1.5.0 10 | version: 1.5.0 11 | '@maplibre/maplibre-gl-geocoder': 12 | specifier: ^1.5.0 13 | version: 1.5.0(maplibre-gl@4.1.1) 14 | '@popperjs/core': 15 | specifier: ^2.11.8 16 | version: 2.11.8 17 | '@sjmc11/tourguidejs': 18 | specifier: ^0.0.16 19 | version: 0.0.16 20 | '@sveltejs/adapter-static': 21 | specifier: ^3.0.0 22 | version: 3.0.1(@sveltejs/kit@2.8.3) 23 | '@sveltejs/kit': 24 | specifier: ^2.0.0 25 | version: 2.8.3(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.0.5)(vite@5.4.12) 26 | '@sveltejs/vite-plugin-svelte': 27 | specifier: ^3.0.0 28 | version: 3.0.2(svelte@4.0.5)(vite@5.4.12) 29 | '@types/events': 30 | specifier: ^3.0.1 31 | version: 3.0.1 32 | '@types/node': 33 | specifier: ^20.8.0 34 | version: 20.8.0 35 | '@typescript-eslint/eslint-plugin': 36 | specifier: ^7.0.0 37 | version: 7.0.2(@typescript-eslint/parser@7.0.2)(eslint@8.50.0)(typescript@5.5.2) 38 | '@typescript-eslint/parser': 39 | specifier: ^7.0.0 40 | version: 7.0.2(eslint@8.50.0)(typescript@5.5.2) 41 | '@watergis/maplibre-center-icon': 42 | specifier: ^3.0.0 43 | version: 3.0.0(svelte@4.0.5) 44 | '@watergis/maplibre-gl-area-switcher': 45 | specifier: ^1.0.0 46 | version: 1.0.0 47 | '@watergis/maplibre-gl-tour': 48 | specifier: ^1.0.4 49 | version: 1.0.4(svelte@4.0.5) 50 | '@watergis/svelte-collapsible-panel': 51 | specifier: ^3.0.0 52 | version: 3.0.0(svelte@4.0.5) 53 | '@watergis/svelte-maplibre-attribute-popup': 54 | specifier: ^3.0.0 55 | version: 3.0.0(svelte@4.0.5) 56 | '@watergis/svelte-maplibre-attribute-table': 57 | specifier: ^3.0.0 58 | version: 3.0.0(svelte@4.0.5) 59 | '@watergis/svelte-maplibre-export': 60 | specifier: ^4.0.0 61 | version: 4.0.0(svelte@4.0.5) 62 | '@watergis/svelte-maplibre-legend': 63 | specifier: ^4.0.0 64 | version: 4.0.0(@popperjs/core@2.11.8)(svelte@4.0.5) 65 | '@watergis/svelte-maplibre-measure': 66 | specifier: ^3.0.0 67 | version: 3.0.0(svelte@4.0.5) 68 | '@watergis/svelte-maplibre-menu': 69 | specifier: ^3.0.0 70 | version: 3.0.0(svelte@4.0.5) 71 | '@watergis/svelte-maplibre-share': 72 | specifier: ^4.0.0 73 | version: 4.0.0(svelte@4.0.5) 74 | '@watergis/svelte-maplibre-style-switcher': 75 | specifier: ^4.0.0 76 | version: 4.0.0(svelte@4.0.5) 77 | '@watergis/svelte-maplibre-valhalla': 78 | specifier: ^3.0.0 79 | version: 3.0.0(svelte@4.0.5) 80 | buffer: 81 | specifier: ^6.0.3 82 | version: 6.0.3 83 | bulma: 84 | specifier: ^1.0.0 85 | version: 1.0.0 86 | eslint: 87 | specifier: ^8.50.0 88 | version: 8.50.0 89 | eslint-config-prettier: 90 | specifier: ^9.0.0 91 | version: 9.0.0(eslint@8.50.0) 92 | eslint-plugin-svelte: 93 | specifier: ^2.33.2 94 | version: 2.33.2(eslint@8.50.0)(svelte@4.0.5) 95 | events: 96 | specifier: ^3.3.0 97 | version: 3.3.0 98 | maplibre-gl: 99 | specifier: ^4.1.1 100 | version: 4.1.1 101 | pmtiles: 102 | specifier: ^3.0.5 103 | version: 3.0.5 104 | prettier: 105 | specifier: ^3.0.3 106 | version: 3.0.3 107 | prettier-plugin-svelte: 108 | specifier: ^3.0.3 109 | version: 3.0.3(prettier@3.0.3)(svelte@4.0.5) 110 | sass: 111 | specifier: ^1.68.0 112 | version: 1.68.0 113 | svelte: 114 | specifier: ^4.0.5 115 | version: 4.0.5 116 | svelte-check: 117 | specifier: ^3.5.2 118 | version: 3.5.2(postcss@8.4.28)(sass@1.68.0)(svelte@4.0.5) 119 | svelte-preprocess: 120 | specifier: ^5.0.4 121 | version: 5.0.4(postcss@8.4.28)(sass@1.68.0)(svelte@4.0.5)(typescript@5.5.2) 122 | tslib: 123 | specifier: ^2.6.2 124 | version: 2.6.2 125 | typescript: 126 | specifier: ~5.5.0 127 | version: 5.5.2 128 | vite: 129 | specifier: ^5.0.0 130 | version: 5.4.12(@types/node@20.8.0)(sass@1.68.0) 131 | 132 | packages: 133 | 134 | /@aashutoshrathi/word-wrap@1.2.6: 135 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 136 | engines: {node: '>=0.10.0'} 137 | dev: true 138 | 139 | /@ampproject/remapping@2.2.1: 140 | resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==} 141 | engines: {node: '>=6.0.0'} 142 | dependencies: 143 | '@jridgewell/gen-mapping': 0.3.3 144 | '@jridgewell/trace-mapping': 0.3.19 145 | dev: true 146 | 147 | /@babel/runtime@7.22.10: 148 | resolution: {integrity: sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==} 149 | engines: {node: '>=6.9.0'} 150 | dependencies: 151 | regenerator-runtime: 0.14.0 152 | dev: true 153 | 154 | /@canvas/image-data@1.0.0: 155 | resolution: {integrity: sha512-BxOqI5LgsIQP1odU5KMwV9yoijleOPzHL18/YvNqF9KFSGF2K/DLlYAbDQsWqd/1nbaFuSkYD/191dpMtNh4vw==} 156 | dev: true 157 | 158 | /@esbuild/aix-ppc64@0.21.5: 159 | resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 160 | engines: {node: '>=12'} 161 | cpu: [ppc64] 162 | os: [aix] 163 | requiresBuild: true 164 | dev: true 165 | optional: true 166 | 167 | /@esbuild/android-arm64@0.21.5: 168 | resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 169 | engines: {node: '>=12'} 170 | cpu: [arm64] 171 | os: [android] 172 | requiresBuild: true 173 | dev: true 174 | optional: true 175 | 176 | /@esbuild/android-arm@0.21.5: 177 | resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 178 | engines: {node: '>=12'} 179 | cpu: [arm] 180 | os: [android] 181 | requiresBuild: true 182 | dev: true 183 | optional: true 184 | 185 | /@esbuild/android-x64@0.21.5: 186 | resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 187 | engines: {node: '>=12'} 188 | cpu: [x64] 189 | os: [android] 190 | requiresBuild: true 191 | dev: true 192 | optional: true 193 | 194 | /@esbuild/darwin-arm64@0.21.5: 195 | resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 196 | engines: {node: '>=12'} 197 | cpu: [arm64] 198 | os: [darwin] 199 | requiresBuild: true 200 | dev: true 201 | optional: true 202 | 203 | /@esbuild/darwin-x64@0.21.5: 204 | resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 205 | engines: {node: '>=12'} 206 | cpu: [x64] 207 | os: [darwin] 208 | requiresBuild: true 209 | dev: true 210 | optional: true 211 | 212 | /@esbuild/freebsd-arm64@0.21.5: 213 | resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 214 | engines: {node: '>=12'} 215 | cpu: [arm64] 216 | os: [freebsd] 217 | requiresBuild: true 218 | dev: true 219 | optional: true 220 | 221 | /@esbuild/freebsd-x64@0.21.5: 222 | resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 223 | engines: {node: '>=12'} 224 | cpu: [x64] 225 | os: [freebsd] 226 | requiresBuild: true 227 | dev: true 228 | optional: true 229 | 230 | /@esbuild/linux-arm64@0.21.5: 231 | resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 232 | engines: {node: '>=12'} 233 | cpu: [arm64] 234 | os: [linux] 235 | requiresBuild: true 236 | dev: true 237 | optional: true 238 | 239 | /@esbuild/linux-arm@0.21.5: 240 | resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 241 | engines: {node: '>=12'} 242 | cpu: [arm] 243 | os: [linux] 244 | requiresBuild: true 245 | dev: true 246 | optional: true 247 | 248 | /@esbuild/linux-ia32@0.21.5: 249 | resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 250 | engines: {node: '>=12'} 251 | cpu: [ia32] 252 | os: [linux] 253 | requiresBuild: true 254 | dev: true 255 | optional: true 256 | 257 | /@esbuild/linux-loong64@0.21.5: 258 | resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 259 | engines: {node: '>=12'} 260 | cpu: [loong64] 261 | os: [linux] 262 | requiresBuild: true 263 | dev: true 264 | optional: true 265 | 266 | /@esbuild/linux-mips64el@0.21.5: 267 | resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 268 | engines: {node: '>=12'} 269 | cpu: [mips64el] 270 | os: [linux] 271 | requiresBuild: true 272 | dev: true 273 | optional: true 274 | 275 | /@esbuild/linux-ppc64@0.21.5: 276 | resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 277 | engines: {node: '>=12'} 278 | cpu: [ppc64] 279 | os: [linux] 280 | requiresBuild: true 281 | dev: true 282 | optional: true 283 | 284 | /@esbuild/linux-riscv64@0.21.5: 285 | resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 286 | engines: {node: '>=12'} 287 | cpu: [riscv64] 288 | os: [linux] 289 | requiresBuild: true 290 | dev: true 291 | optional: true 292 | 293 | /@esbuild/linux-s390x@0.21.5: 294 | resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 295 | engines: {node: '>=12'} 296 | cpu: [s390x] 297 | os: [linux] 298 | requiresBuild: true 299 | dev: true 300 | optional: true 301 | 302 | /@esbuild/linux-x64@0.21.5: 303 | resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 304 | engines: {node: '>=12'} 305 | cpu: [x64] 306 | os: [linux] 307 | requiresBuild: true 308 | dev: true 309 | optional: true 310 | 311 | /@esbuild/netbsd-x64@0.21.5: 312 | resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 313 | engines: {node: '>=12'} 314 | cpu: [x64] 315 | os: [netbsd] 316 | requiresBuild: true 317 | dev: true 318 | optional: true 319 | 320 | /@esbuild/openbsd-x64@0.21.5: 321 | resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 322 | engines: {node: '>=12'} 323 | cpu: [x64] 324 | os: [openbsd] 325 | requiresBuild: true 326 | dev: true 327 | optional: true 328 | 329 | /@esbuild/sunos-x64@0.21.5: 330 | resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 331 | engines: {node: '>=12'} 332 | cpu: [x64] 333 | os: [sunos] 334 | requiresBuild: true 335 | dev: true 336 | optional: true 337 | 338 | /@esbuild/win32-arm64@0.21.5: 339 | resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 340 | engines: {node: '>=12'} 341 | cpu: [arm64] 342 | os: [win32] 343 | requiresBuild: true 344 | dev: true 345 | optional: true 346 | 347 | /@esbuild/win32-ia32@0.21.5: 348 | resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 349 | engines: {node: '>=12'} 350 | cpu: [ia32] 351 | os: [win32] 352 | requiresBuild: true 353 | dev: true 354 | optional: true 355 | 356 | /@esbuild/win32-x64@0.21.5: 357 | resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 358 | engines: {node: '>=12'} 359 | cpu: [x64] 360 | os: [win32] 361 | requiresBuild: true 362 | dev: true 363 | optional: true 364 | 365 | /@eslint-community/eslint-utils@4.4.0(eslint@8.50.0): 366 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 367 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 368 | peerDependencies: 369 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 370 | dependencies: 371 | eslint: 8.50.0 372 | eslint-visitor-keys: 3.4.3 373 | dev: true 374 | 375 | /@eslint-community/regexpp@4.6.2: 376 | resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} 377 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 378 | dev: true 379 | 380 | /@eslint/eslintrc@2.1.2: 381 | resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} 382 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 383 | dependencies: 384 | ajv: 6.12.6 385 | debug: 4.3.4 386 | espree: 9.6.1 387 | globals: 13.21.0 388 | ignore: 5.2.4 389 | import-fresh: 3.3.0 390 | js-yaml: 4.1.0 391 | minimatch: 3.1.2 392 | strip-json-comments: 3.1.1 393 | transitivePeerDependencies: 394 | - supports-color 395 | dev: true 396 | 397 | /@eslint/js@8.50.0: 398 | resolution: {integrity: sha512-NCC3zz2+nvYd+Ckfh87rA47zfu2QsQpvc6k1yzTk+b9KzRj0wkGa8LSoGOXN6Zv4lRf/EIoZ80biDh9HOI+RNQ==} 399 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 400 | dev: true 401 | 402 | /@evilmartians/lefthook@1.5.0: 403 | resolution: {integrity: sha512-lyHwJk0P2MULulbjQngUyay+uNxIKS/5UOMbhgj8uesi4Q2gMOlhixDZ16rXOiZWFd6IZtBAEpInF0H27sAt+g==} 404 | cpu: [x64, arm64, ia32] 405 | os: [darwin, linux, win32] 406 | hasBin: true 407 | requiresBuild: true 408 | dev: true 409 | 410 | /@floating-ui/core@1.5.0: 411 | resolution: {integrity: sha512-kK1h4m36DQ0UHGj5Ah4db7R0rHemTqqO0QLvUqi1/mUUp3LuAWbWxdxSIf/XsnH9VS6rRVPLJCncjRzUvyCLXg==} 412 | dependencies: 413 | '@floating-ui/utils': 0.1.4 414 | dev: true 415 | 416 | /@floating-ui/dom@1.5.3: 417 | resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==} 418 | dependencies: 419 | '@floating-ui/core': 1.5.0 420 | '@floating-ui/utils': 0.1.4 421 | dev: true 422 | 423 | /@floating-ui/utils@0.1.4: 424 | resolution: {integrity: sha512-qprfWkn82Iw821mcKofJ5Pk9wgioHicxcQMxx+5zt5GSKoqdWvgG5AxVmpmUUjzTLPVSH5auBrhI93Deayn/DA==} 425 | dev: true 426 | 427 | /@fortawesome/fontawesome-common-types@6.5.1: 428 | resolution: {integrity: sha512-GkWzv+L6d2bI5f/Vk6ikJ9xtl7dfXtoRu3YGE6nq0p/FFqA1ebMOAWg3XgRyb0I6LYyYkiAo+3/KrwuBp8xG7A==} 429 | engines: {node: '>=6'} 430 | requiresBuild: true 431 | dev: true 432 | 433 | /@fortawesome/free-solid-svg-icons@6.5.1: 434 | resolution: {integrity: sha512-S1PPfU3mIJa59biTtXJz1oI0+KAXW6bkAb31XKhxdxtuXDiUIFsih4JR1v5BbxY7hVHsD1RKq+jRkVRaf773NQ==} 435 | engines: {node: '>=6'} 436 | requiresBuild: true 437 | dependencies: 438 | '@fortawesome/fontawesome-common-types': 6.5.1 439 | dev: true 440 | 441 | /@geoffcox/svelte-splitter@1.0.1: 442 | resolution: {integrity: sha512-iWDNDnuNhsB6tKMGqjXStRhytALlB+/KBQ82T4xSjDndQsrN0CKspdMiu21RUj0AQoDxv3yzAqgp3bwEnF5SCQ==} 443 | dev: true 444 | 445 | /@humanwhocodes/config-array@0.11.11: 446 | resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} 447 | engines: {node: '>=10.10.0'} 448 | dependencies: 449 | '@humanwhocodes/object-schema': 1.2.1 450 | debug: 4.3.4 451 | minimatch: 3.1.2 452 | transitivePeerDependencies: 453 | - supports-color 454 | dev: true 455 | 456 | /@humanwhocodes/module-importer@1.0.1: 457 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 458 | engines: {node: '>=12.22'} 459 | dev: true 460 | 461 | /@humanwhocodes/object-schema@1.2.1: 462 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 463 | dev: true 464 | 465 | /@jridgewell/gen-mapping@0.3.3: 466 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 467 | engines: {node: '>=6.0.0'} 468 | dependencies: 469 | '@jridgewell/set-array': 1.1.2 470 | '@jridgewell/sourcemap-codec': 1.4.15 471 | '@jridgewell/trace-mapping': 0.3.19 472 | dev: true 473 | 474 | /@jridgewell/resolve-uri@3.1.1: 475 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 476 | engines: {node: '>=6.0.0'} 477 | dev: true 478 | 479 | /@jridgewell/set-array@1.1.2: 480 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 481 | engines: {node: '>=6.0.0'} 482 | dev: true 483 | 484 | /@jridgewell/sourcemap-codec@1.4.15: 485 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 486 | dev: true 487 | 488 | /@jridgewell/sourcemap-codec@1.5.0: 489 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 490 | dev: true 491 | 492 | /@jridgewell/trace-mapping@0.3.19: 493 | resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} 494 | dependencies: 495 | '@jridgewell/resolve-uri': 3.1.1 496 | '@jridgewell/sourcemap-codec': 1.4.15 497 | dev: true 498 | 499 | /@mapbox/geojson-rewind@0.5.2: 500 | resolution: {integrity: sha512-tJaT+RbYGJYStt7wI3cq4Nl4SXxG8W7JDG5DMJu97V25RnbNg3QtQtf+KD+VLjNpWKYsRvXDNmNrBgEETr1ifA==} 501 | hasBin: true 502 | dependencies: 503 | get-stream: 6.0.1 504 | minimist: 1.2.8 505 | dev: true 506 | 507 | /@mapbox/jsonlint-lines-primitives@2.0.2: 508 | resolution: {integrity: sha512-rY0o9A5ECsTQRVhv7tL/OyDpGAoUB4tTvLiW1DSzQGq4bvTPhNw1VpSNjDJc5GFZ2XuyOtSWSVN05qOtcD71qQ==} 509 | engines: {node: '>= 0.6'} 510 | dev: true 511 | 512 | /@mapbox/mapbox-gl-style-spec@13.28.0: 513 | resolution: {integrity: sha512-B8xM7Fp1nh5kejfIl4SWeY0gtIeewbuRencqO3cJDrCHZpaPg7uY+V8abuR+esMeuOjRl5cLhVTP40v+1ywxbg==} 514 | hasBin: true 515 | dependencies: 516 | '@mapbox/jsonlint-lines-primitives': 2.0.2 517 | '@mapbox/point-geometry': 0.1.0 518 | '@mapbox/unitbezier': 0.0.0 519 | csscolorparser: 1.0.3 520 | json-stringify-pretty-compact: 2.0.0 521 | minimist: 1.2.8 522 | rw: 1.3.3 523 | sort-object: 0.3.2 524 | dev: true 525 | 526 | /@mapbox/point-geometry@0.1.0: 527 | resolution: {integrity: sha512-6j56HdLTwWGO0fJPlrZtdU/B13q8Uwmo18Ck2GnGgN9PCFyKTZ3UbXeEdRFh18i9XQ92eH2VdtpJHpBD3aripQ==} 528 | dev: true 529 | 530 | /@mapbox/tiny-sdf@2.0.6: 531 | resolution: {integrity: sha512-qMqa27TLw+ZQz5Jk+RcwZGH7BQf5G/TrutJhspsca/3SHwmgKQ1iq+d3Jxz5oysPVYTGP6aXxCo5Lk9Er6YBAA==} 532 | dev: true 533 | 534 | /@mapbox/unitbezier@0.0.0: 535 | resolution: {integrity: sha512-HPnRdYO0WjFjRTSwO3frz1wKaU649OBFPX3Zo/2WZvuRi6zMiRGui8SnPQiQABgqCf8YikDe5t3HViTVw1WUzA==} 536 | dev: true 537 | 538 | /@mapbox/unitbezier@0.0.1: 539 | resolution: {integrity: sha512-nMkuDXFv60aBr9soUG5q+GvZYL+2KZHVvsqFCzqnkGEf46U2fvmytHaEVc1/YZbiLn8X+eR3QzX1+dwDO1lxlw==} 540 | dev: true 541 | 542 | /@mapbox/vector-tile@1.3.1: 543 | resolution: {integrity: sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw==} 544 | dependencies: 545 | '@mapbox/point-geometry': 0.1.0 546 | dev: true 547 | 548 | /@mapbox/whoots-js@3.1.0: 549 | resolution: {integrity: sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q==} 550 | engines: {node: '>=6.0.0'} 551 | dev: true 552 | 553 | /@maplibre/maplibre-gl-geocoder@1.5.0(maplibre-gl@4.1.1): 554 | resolution: {integrity: sha512-PsAbV7WFIOu5QYZne95FiXoV7AV1/6ULMjQxgInhZ5DdB0hDLjciQPegnyDgkzI8JfeqoUMZVS/MglZnSZYhyQ==} 555 | engines: {node: '>=6'} 556 | peerDependencies: 557 | maplibre-gl: '>=1.14.0' 558 | dependencies: 559 | lodash.debounce: 4.0.8 560 | maplibre-gl: 4.1.1 561 | subtag: 0.5.0 562 | suggestions-list: 0.0.2 563 | xtend: 4.0.2 564 | dev: true 565 | 566 | /@maplibre/maplibre-gl-style-spec@19.3.0: 567 | resolution: {integrity: sha512-ZbhX9CTV+Z7vHwkRIasDOwTSzr76e8Q6a55RMsAibjyX6+P0ZNL1qAKNzOjjBDP3+aEfNMl7hHo5knuY6pTAUQ==} 568 | hasBin: true 569 | dependencies: 570 | '@mapbox/jsonlint-lines-primitives': 2.0.2 571 | '@mapbox/unitbezier': 0.0.1 572 | json-stringify-pretty-compact: 3.0.0 573 | minimist: 1.2.8 574 | rw: 1.3.3 575 | sort-object: 3.0.3 576 | dev: true 577 | 578 | /@maplibre/maplibre-gl-style-spec@20.1.1: 579 | resolution: {integrity: sha512-z85ARNPCBI2Cs5cPOS3DSbraTN+ue8zrcYVoSWBuNrD/mA+2SKAJ+hIzI22uN7gac6jBMnCdpPKRxS/V0KSZVQ==} 580 | hasBin: true 581 | dependencies: 582 | '@mapbox/jsonlint-lines-primitives': 2.0.2 583 | '@mapbox/unitbezier': 0.0.1 584 | json-stringify-pretty-compact: 4.0.0 585 | minimist: 1.2.8 586 | rw: 1.3.3 587 | sort-object: 3.0.3 588 | dev: true 589 | 590 | /@neodrag/svelte@2.0.3: 591 | resolution: {integrity: sha512-/7k4Byv6guBs6NpfzOnqOep8PM3HjhPg1rRPNsJsGNGDXSJNB+tn9NAi/vTXJBos3vN9XPlbnr3g/lNKGfg+Jg==} 592 | dev: true 593 | 594 | /@nodelib/fs.scandir@2.1.5: 595 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 596 | engines: {node: '>= 8'} 597 | dependencies: 598 | '@nodelib/fs.stat': 2.0.5 599 | run-parallel: 1.2.0 600 | dev: true 601 | 602 | /@nodelib/fs.stat@2.0.5: 603 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 604 | engines: {node: '>= 8'} 605 | dev: true 606 | 607 | /@nodelib/fs.walk@1.2.8: 608 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 609 | engines: {node: '>= 8'} 610 | dependencies: 611 | '@nodelib/fs.scandir': 2.1.5 612 | fastq: 1.15.0 613 | dev: true 614 | 615 | /@polka/url@1.0.0-next.28: 616 | resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==} 617 | dev: true 618 | 619 | /@popperjs/core@2.11.8: 620 | resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} 621 | dev: true 622 | 623 | /@rollup/rollup-android-arm-eabi@4.31.0: 624 | resolution: {integrity: sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==} 625 | cpu: [arm] 626 | os: [android] 627 | requiresBuild: true 628 | dev: true 629 | optional: true 630 | 631 | /@rollup/rollup-android-arm64@4.31.0: 632 | resolution: {integrity: sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==} 633 | cpu: [arm64] 634 | os: [android] 635 | requiresBuild: true 636 | dev: true 637 | optional: true 638 | 639 | /@rollup/rollup-darwin-arm64@4.31.0: 640 | resolution: {integrity: sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==} 641 | cpu: [arm64] 642 | os: [darwin] 643 | requiresBuild: true 644 | dev: true 645 | optional: true 646 | 647 | /@rollup/rollup-darwin-x64@4.31.0: 648 | resolution: {integrity: sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==} 649 | cpu: [x64] 650 | os: [darwin] 651 | requiresBuild: true 652 | dev: true 653 | optional: true 654 | 655 | /@rollup/rollup-freebsd-arm64@4.31.0: 656 | resolution: {integrity: sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==} 657 | cpu: [arm64] 658 | os: [freebsd] 659 | requiresBuild: true 660 | dev: true 661 | optional: true 662 | 663 | /@rollup/rollup-freebsd-x64@4.31.0: 664 | resolution: {integrity: sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==} 665 | cpu: [x64] 666 | os: [freebsd] 667 | requiresBuild: true 668 | dev: true 669 | optional: true 670 | 671 | /@rollup/rollup-linux-arm-gnueabihf@4.31.0: 672 | resolution: {integrity: sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==} 673 | cpu: [arm] 674 | os: [linux] 675 | requiresBuild: true 676 | dev: true 677 | optional: true 678 | 679 | /@rollup/rollup-linux-arm-musleabihf@4.31.0: 680 | resolution: {integrity: sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==} 681 | cpu: [arm] 682 | os: [linux] 683 | requiresBuild: true 684 | dev: true 685 | optional: true 686 | 687 | /@rollup/rollup-linux-arm64-gnu@4.31.0: 688 | resolution: {integrity: sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==} 689 | cpu: [arm64] 690 | os: [linux] 691 | requiresBuild: true 692 | dev: true 693 | optional: true 694 | 695 | /@rollup/rollup-linux-arm64-musl@4.31.0: 696 | resolution: {integrity: sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==} 697 | cpu: [arm64] 698 | os: [linux] 699 | requiresBuild: true 700 | dev: true 701 | optional: true 702 | 703 | /@rollup/rollup-linux-loongarch64-gnu@4.31.0: 704 | resolution: {integrity: sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==} 705 | cpu: [loong64] 706 | os: [linux] 707 | requiresBuild: true 708 | dev: true 709 | optional: true 710 | 711 | /@rollup/rollup-linux-powerpc64le-gnu@4.31.0: 712 | resolution: {integrity: sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==} 713 | cpu: [ppc64] 714 | os: [linux] 715 | requiresBuild: true 716 | dev: true 717 | optional: true 718 | 719 | /@rollup/rollup-linux-riscv64-gnu@4.31.0: 720 | resolution: {integrity: sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==} 721 | cpu: [riscv64] 722 | os: [linux] 723 | requiresBuild: true 724 | dev: true 725 | optional: true 726 | 727 | /@rollup/rollup-linux-s390x-gnu@4.31.0: 728 | resolution: {integrity: sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==} 729 | cpu: [s390x] 730 | os: [linux] 731 | requiresBuild: true 732 | dev: true 733 | optional: true 734 | 735 | /@rollup/rollup-linux-x64-gnu@4.31.0: 736 | resolution: {integrity: sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==} 737 | cpu: [x64] 738 | os: [linux] 739 | requiresBuild: true 740 | dev: true 741 | optional: true 742 | 743 | /@rollup/rollup-linux-x64-musl@4.31.0: 744 | resolution: {integrity: sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==} 745 | cpu: [x64] 746 | os: [linux] 747 | requiresBuild: true 748 | dev: true 749 | optional: true 750 | 751 | /@rollup/rollup-win32-arm64-msvc@4.31.0: 752 | resolution: {integrity: sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==} 753 | cpu: [arm64] 754 | os: [win32] 755 | requiresBuild: true 756 | dev: true 757 | optional: true 758 | 759 | /@rollup/rollup-win32-ia32-msvc@4.31.0: 760 | resolution: {integrity: sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==} 761 | cpu: [ia32] 762 | os: [win32] 763 | requiresBuild: true 764 | dev: true 765 | optional: true 766 | 767 | /@rollup/rollup-win32-x64-msvc@4.31.0: 768 | resolution: {integrity: sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==} 769 | cpu: [x64] 770 | os: [win32] 771 | requiresBuild: true 772 | dev: true 773 | optional: true 774 | 775 | /@sjmc11/tourguidejs@0.0.16: 776 | resolution: {integrity: sha512-NpK7OyW1l0R1XCajbWp+ibJAJbQK7dpBfqy+Etcy4fj/+qk3JPKY8RwoSX1UzzfBauuriNKJiv1KmTB3RHajQg==} 777 | dependencies: 778 | '@floating-ui/dom': 1.5.3 779 | sass: 1.68.0 780 | dev: true 781 | 782 | /@sveltejs/adapter-static@3.0.1(@sveltejs/kit@2.8.3): 783 | resolution: {integrity: sha512-6lMvf7xYEJ+oGeR5L8DFJJrowkefTK6ZgA4JiMqoClMkKq0s6yvsd3FZfCFvX1fQ0tpCD7fkuRVHsnUVgsHyNg==} 784 | peerDependencies: 785 | '@sveltejs/kit': ^2.0.0 786 | dependencies: 787 | '@sveltejs/kit': 2.8.3(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.0.5)(vite@5.4.12) 788 | dev: true 789 | 790 | /@sveltejs/kit@2.8.3(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.0.5)(vite@5.4.12): 791 | resolution: {integrity: sha512-DVBVwugfzzn0SxKA+eAmKqcZ7aHZROCHxH7/pyrOi+HLtQ721eEsctGb9MkhEuqj6q/9S/OFYdn37vdxzFPdvw==} 792 | engines: {node: '>=18.13'} 793 | hasBin: true 794 | requiresBuild: true 795 | peerDependencies: 796 | '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 797 | svelte: ^4.0.0 || ^5.0.0-next.0 798 | vite: ^5.0.3 799 | dependencies: 800 | '@sveltejs/vite-plugin-svelte': 3.0.2(svelte@4.0.5)(vite@5.4.12) 801 | '@types/cookie': 0.6.0 802 | cookie: 0.6.0 803 | devalue: 5.1.1 804 | esm-env: 1.1.4 805 | import-meta-resolve: 4.1.0 806 | kleur: 4.1.5 807 | magic-string: 0.30.13 808 | mrmime: 2.0.0 809 | sade: 1.8.1 810 | set-cookie-parser: 2.7.1 811 | sirv: 3.0.0 812 | svelte: 4.0.5 813 | tiny-glob: 0.2.9 814 | vite: 5.4.12(@types/node@20.8.0)(sass@1.68.0) 815 | dev: true 816 | 817 | /@sveltejs/vite-plugin-svelte-inspector@2.0.0(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.0.5)(vite@5.4.12): 818 | resolution: {integrity: sha512-gjr9ZFg1BSlIpfZ4PRewigrvYmHWbDrq2uvvPB1AmTWKuM+dI1JXQSUu2pIrYLb/QncyiIGkFDFKTwJ0XqQZZg==} 819 | engines: {node: ^18.0.0 || >=20} 820 | peerDependencies: 821 | '@sveltejs/vite-plugin-svelte': ^3.0.0 822 | svelte: ^4.0.0 || ^5.0.0-next.0 823 | vite: ^5.0.0 824 | dependencies: 825 | '@sveltejs/vite-plugin-svelte': 3.0.2(svelte@4.0.5)(vite@5.4.12) 826 | debug: 4.3.4 827 | svelte: 4.0.5 828 | vite: 5.4.12(@types/node@20.8.0)(sass@1.68.0) 829 | transitivePeerDependencies: 830 | - supports-color 831 | dev: true 832 | 833 | /@sveltejs/vite-plugin-svelte@3.0.2(svelte@4.0.5)(vite@5.4.12): 834 | resolution: {integrity: sha512-MpmF/cju2HqUls50WyTHQBZUV3ovV/Uk8k66AN2gwHogNAG8wnW8xtZDhzNBsFJJuvmq1qnzA5kE7YfMJNFv2Q==} 835 | engines: {node: ^18.0.0 || >=20} 836 | peerDependencies: 837 | svelte: ^4.0.0 || ^5.0.0-next.0 838 | vite: ^5.0.0 839 | dependencies: 840 | '@sveltejs/vite-plugin-svelte-inspector': 2.0.0(@sveltejs/vite-plugin-svelte@3.0.2)(svelte@4.0.5)(vite@5.4.12) 841 | debug: 4.3.4 842 | deepmerge: 4.3.1 843 | kleur: 4.1.5 844 | magic-string: 0.30.8 845 | svelte: 4.0.5 846 | svelte-hmr: 0.15.3(svelte@4.0.5) 847 | vite: 5.4.12(@types/node@20.8.0)(sass@1.68.0) 848 | vitefu: 0.2.5(vite@5.4.12) 849 | transitivePeerDependencies: 850 | - supports-color 851 | dev: true 852 | 853 | /@turf/distance@6.5.0: 854 | resolution: {integrity: sha512-xzykSLfoURec5qvQJcfifw/1mJa+5UwByZZ5TZ8iaqjGYN0vomhV9aiSLeYdUGtYRESZ+DYC/OzY+4RclZYgMg==} 855 | dependencies: 856 | '@turf/helpers': 6.5.0 857 | '@turf/invariant': 6.5.0 858 | dev: true 859 | 860 | /@turf/helpers@6.5.0: 861 | resolution: {integrity: sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==} 862 | dev: true 863 | 864 | /@turf/invariant@6.5.0: 865 | resolution: {integrity: sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==} 866 | dependencies: 867 | '@turf/helpers': 6.5.0 868 | dev: true 869 | 870 | /@types/cookie@0.6.0: 871 | resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 872 | dev: true 873 | 874 | /@types/estree@1.0.6: 875 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 876 | dev: true 877 | 878 | /@types/events@3.0.1: 879 | resolution: {integrity: sha512-QfUFdKjGSc+iCf8OFZhqJKfDuqB6lP57kSMkPw8ba3yNDANicUwCdaPt5ytZ4nDXXVFxQkvT8v73I4stSVrCxA==} 880 | dev: true 881 | 882 | /@types/geojson-vt@3.2.5: 883 | resolution: {integrity: sha512-qDO7wqtprzlpe8FfQ//ClPV9xiuoh2nkIgiouIptON9w5jvD/fA4szvP9GBlDVdJ5dldAl0kX/sy3URbWwLx0g==} 884 | dependencies: 885 | '@types/geojson': 7946.0.14 886 | dev: true 887 | 888 | /@types/geojson@7946.0.10: 889 | resolution: {integrity: sha512-Nmh0K3iWQJzniTuPRcJn5hxXkfB1T1pgB89SBig5PlJQU5yocazeu4jATJlaA0GYFKWMqDdvYemoSnF2pXgLVA==} 890 | dev: true 891 | 892 | /@types/geojson@7946.0.14: 893 | resolution: {integrity: sha512-WCfD5Ht3ZesJUsONdhvm84dmzWOiOzOAqOncN0++w0lBw1o8OuDNJF2McvvCef/yBqb/HYRahp1BYtODFQ8bRg==} 894 | dev: true 895 | 896 | /@types/json-schema@7.0.12: 897 | resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} 898 | dev: true 899 | 900 | /@types/leaflet@1.9.8: 901 | resolution: {integrity: sha512-EXdsL4EhoUtGm2GC2ZYtXn+Fzc6pluVgagvo2VC1RHWToLGlTRwVYoDpqS/7QXa01rmDyBjJk3Catpf60VMkwg==} 902 | dependencies: 903 | '@types/geojson': 7946.0.10 904 | dev: true 905 | 906 | /@types/mapbox__point-geometry@0.1.2: 907 | resolution: {integrity: sha512-D0lgCq+3VWV85ey1MZVkE8ZveyuvW5VAfuahVTQRpXFQTxw03SuIf1/K4UQ87MMIXVKzpFjXFiFMZzLj2kU+iA==} 908 | dev: true 909 | 910 | /@types/mapbox__point-geometry@0.1.4: 911 | resolution: {integrity: sha512-mUWlSxAmYLfwnRBmgYV86tgYmMIICX4kza8YnE/eIlywGe2XoOxlpVnXWwir92xRLjwyarqwpu2EJKD2pk0IUA==} 912 | dev: true 913 | 914 | /@types/mapbox__vector-tile@1.3.0: 915 | resolution: {integrity: sha512-kDwVreQO5V4c8yAxzZVQLE5tyWF+IPToAanloQaSnwfXmIcJ7cyOrv8z4Ft4y7PsLYmhWXmON8MBV8RX0Rgr8g==} 916 | dependencies: 917 | '@types/geojson': 7946.0.10 918 | '@types/mapbox__point-geometry': 0.1.2 919 | '@types/pbf': 3.0.2 920 | dev: true 921 | 922 | /@types/mapbox__vector-tile@1.3.4: 923 | resolution: {integrity: sha512-bpd8dRn9pr6xKvuEBQup8pwQfD4VUyqO/2deGjfpe6AwC8YRlyEipvefyRJUSiCJTZuCb8Pl1ciVV5ekqJ96Bg==} 924 | dependencies: 925 | '@types/geojson': 7946.0.14 926 | '@types/mapbox__point-geometry': 0.1.4 927 | '@types/pbf': 3.0.5 928 | dev: true 929 | 930 | /@types/node@20.8.0: 931 | resolution: {integrity: sha512-LzcWltT83s1bthcvjBmiBvGJiiUe84NWRHkw+ZV6Fr41z2FbIzvc815dk2nQ3RAKMuN2fkenM/z3Xv2QzEpYxQ==} 932 | dev: true 933 | 934 | /@types/pbf@3.0.2: 935 | resolution: {integrity: sha512-EDrLIPaPXOZqDjrkzxxbX7UlJSeQVgah3i0aA4pOSzmK9zq3BIh7/MZIQxED7slJByvKM4Gc6Hypyu2lJzh3SQ==} 936 | dev: true 937 | 938 | /@types/pbf@3.0.5: 939 | resolution: {integrity: sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA==} 940 | dev: true 941 | 942 | /@types/pug@2.0.6: 943 | resolution: {integrity: sha512-SnHmG9wN1UVmagJOnyo/qkk0Z7gejYxOYYmaAwr5u2yFYfsupN3sg10kyzN8Hep/2zbHxCnsumxOoRIRMBwKCg==} 944 | dev: true 945 | 946 | /@types/raf@3.4.0: 947 | resolution: {integrity: sha512-taW5/WYqo36N7V39oYyHP9Ipfd5pNFvGTIQsNGj86xV88YQ7GnI30/yMfKDF7Zgin0m3e+ikX88FvImnK4RjGw==} 948 | requiresBuild: true 949 | dev: true 950 | optional: true 951 | 952 | /@types/semver@7.5.0: 953 | resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==} 954 | dev: true 955 | 956 | /@types/supercluster@7.1.0: 957 | resolution: {integrity: sha512-6JapQ2GmEkH66r23BK49I+u6zczVDGTtiJEVvKDYZVSm/vepWaJuTq6BXzJ6I4agG5s8vA1KM7m/gXWDg03O4Q==} 958 | dependencies: 959 | '@types/geojson': 7946.0.10 960 | dev: true 961 | 962 | /@types/supercluster@7.1.3: 963 | resolution: {integrity: sha512-Z0pOY34GDFl3Q6hUFYf3HkTwKEE02e7QgtJppBt+beEAxnyOpJua+voGFvxINBHa06GwLFFym7gRPY2SiKIfIA==} 964 | dependencies: 965 | '@types/geojson': 7946.0.14 966 | dev: true 967 | 968 | /@typescript-eslint/eslint-plugin@7.0.2(@typescript-eslint/parser@7.0.2)(eslint@8.50.0)(typescript@5.5.2): 969 | resolution: {integrity: sha512-/XtVZJtbaphtdrWjr+CJclaCVGPtOdBpFEnvtNf/jRV0IiEemRrL0qABex/nEt8isYcnFacm3nPHYQwL+Wb7qg==} 970 | engines: {node: ^16.0.0 || >=18.0.0} 971 | peerDependencies: 972 | '@typescript-eslint/parser': ^7.0.0 973 | eslint: ^8.56.0 974 | typescript: '*' 975 | peerDependenciesMeta: 976 | typescript: 977 | optional: true 978 | dependencies: 979 | '@eslint-community/regexpp': 4.6.2 980 | '@typescript-eslint/parser': 7.0.2(eslint@8.50.0)(typescript@5.5.2) 981 | '@typescript-eslint/scope-manager': 7.0.2 982 | '@typescript-eslint/type-utils': 7.0.2(eslint@8.50.0)(typescript@5.5.2) 983 | '@typescript-eslint/utils': 7.0.2(eslint@8.50.0)(typescript@5.5.2) 984 | '@typescript-eslint/visitor-keys': 7.0.2 985 | debug: 4.3.4 986 | eslint: 8.50.0 987 | graphemer: 1.4.0 988 | ignore: 5.2.4 989 | natural-compare: 1.4.0 990 | semver: 7.5.4 991 | ts-api-utils: 1.0.2(typescript@5.5.2) 992 | typescript: 5.5.2 993 | transitivePeerDependencies: 994 | - supports-color 995 | dev: true 996 | 997 | /@typescript-eslint/parser@7.0.2(eslint@8.50.0)(typescript@5.5.2): 998 | resolution: {integrity: sha512-GdwfDglCxSmU+QTS9vhz2Sop46ebNCXpPPvsByK7hu0rFGRHL+AusKQJ7SoN+LbLh6APFpQwHKmDSwN35Z700Q==} 999 | engines: {node: ^16.0.0 || >=18.0.0} 1000 | peerDependencies: 1001 | eslint: ^8.56.0 1002 | typescript: '*' 1003 | peerDependenciesMeta: 1004 | typescript: 1005 | optional: true 1006 | dependencies: 1007 | '@typescript-eslint/scope-manager': 7.0.2 1008 | '@typescript-eslint/types': 7.0.2 1009 | '@typescript-eslint/typescript-estree': 7.0.2(typescript@5.5.2) 1010 | '@typescript-eslint/visitor-keys': 7.0.2 1011 | debug: 4.3.4 1012 | eslint: 8.50.0 1013 | typescript: 5.5.2 1014 | transitivePeerDependencies: 1015 | - supports-color 1016 | dev: true 1017 | 1018 | /@typescript-eslint/scope-manager@7.0.2: 1019 | resolution: {integrity: sha512-l6sa2jF3h+qgN2qUMjVR3uCNGjWw4ahGfzIYsCtFrQJCjhbrDPdiihYT8FnnqFwsWX+20hK592yX9I2rxKTP4g==} 1020 | engines: {node: ^16.0.0 || >=18.0.0} 1021 | dependencies: 1022 | '@typescript-eslint/types': 7.0.2 1023 | '@typescript-eslint/visitor-keys': 7.0.2 1024 | dev: true 1025 | 1026 | /@typescript-eslint/type-utils@7.0.2(eslint@8.50.0)(typescript@5.5.2): 1027 | resolution: {integrity: sha512-IKKDcFsKAYlk8Rs4wiFfEwJTQlHcdn8CLwLaxwd6zb8HNiMcQIFX9sWax2k4Cjj7l7mGS5N1zl7RCHOVwHq2VQ==} 1028 | engines: {node: ^16.0.0 || >=18.0.0} 1029 | peerDependencies: 1030 | eslint: ^8.56.0 1031 | typescript: '*' 1032 | peerDependenciesMeta: 1033 | typescript: 1034 | optional: true 1035 | dependencies: 1036 | '@typescript-eslint/typescript-estree': 7.0.2(typescript@5.5.2) 1037 | '@typescript-eslint/utils': 7.0.2(eslint@8.50.0)(typescript@5.5.2) 1038 | debug: 4.3.4 1039 | eslint: 8.50.0 1040 | ts-api-utils: 1.0.2(typescript@5.5.2) 1041 | typescript: 5.5.2 1042 | transitivePeerDependencies: 1043 | - supports-color 1044 | dev: true 1045 | 1046 | /@typescript-eslint/types@7.0.2: 1047 | resolution: {integrity: sha512-ZzcCQHj4JaXFjdOql6adYV4B/oFOFjPOC9XYwCaZFRvqN8Llfvv4gSxrkQkd2u4Ci62i2c6W6gkDwQJDaRc4nA==} 1048 | engines: {node: ^16.0.0 || >=18.0.0} 1049 | dev: true 1050 | 1051 | /@typescript-eslint/typescript-estree@7.0.2(typescript@5.5.2): 1052 | resolution: {integrity: sha512-3AMc8khTcELFWcKcPc0xiLviEvvfzATpdPj/DXuOGIdQIIFybf4DMT1vKRbuAEOFMwhWt7NFLXRkbjsvKZQyvw==} 1053 | engines: {node: ^16.0.0 || >=18.0.0} 1054 | peerDependencies: 1055 | typescript: '*' 1056 | peerDependenciesMeta: 1057 | typescript: 1058 | optional: true 1059 | dependencies: 1060 | '@typescript-eslint/types': 7.0.2 1061 | '@typescript-eslint/visitor-keys': 7.0.2 1062 | debug: 4.3.4 1063 | globby: 11.1.0 1064 | is-glob: 4.0.3 1065 | minimatch: 9.0.3 1066 | semver: 7.5.4 1067 | ts-api-utils: 1.0.2(typescript@5.5.2) 1068 | typescript: 5.5.2 1069 | transitivePeerDependencies: 1070 | - supports-color 1071 | dev: true 1072 | 1073 | /@typescript-eslint/utils@7.0.2(eslint@8.50.0)(typescript@5.5.2): 1074 | resolution: {integrity: sha512-PZPIONBIB/X684bhT1XlrkjNZJIEevwkKDsdwfiu1WeqBxYEEdIgVDgm8/bbKHVu+6YOpeRqcfImTdImx/4Bsw==} 1075 | engines: {node: ^16.0.0 || >=18.0.0} 1076 | peerDependencies: 1077 | eslint: ^8.56.0 1078 | dependencies: 1079 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0) 1080 | '@types/json-schema': 7.0.12 1081 | '@types/semver': 7.5.0 1082 | '@typescript-eslint/scope-manager': 7.0.2 1083 | '@typescript-eslint/types': 7.0.2 1084 | '@typescript-eslint/typescript-estree': 7.0.2(typescript@5.5.2) 1085 | eslint: 8.50.0 1086 | semver: 7.5.4 1087 | transitivePeerDependencies: 1088 | - supports-color 1089 | - typescript 1090 | dev: true 1091 | 1092 | /@typescript-eslint/visitor-keys@7.0.2: 1093 | resolution: {integrity: sha512-8Y+YiBmqPighbm5xA2k4wKTxRzx9EkBu7Rlw+WHqMvRJ3RPz/BMBO9b2ru0LUNmXg120PHUXD5+SWFy2R8DqlQ==} 1094 | engines: {node: ^16.0.0 || >=18.0.0} 1095 | dependencies: 1096 | '@typescript-eslint/types': 7.0.2 1097 | eslint-visitor-keys: 3.4.3 1098 | dev: true 1099 | 1100 | /@undp-data/svelte-copy-to-clipboard@1.0.0(svelte@4.0.5): 1101 | resolution: {integrity: sha512-6zQMe2OTktihft0RgcFsc8cauIXvS3hmgsvAmjDq18Wk8Pfm3f6bGfviDrp9/HsHpMWk7QigweY+jpmX+nPkYA==} 1102 | peerDependencies: 1103 | svelte: ^4.0.0 1104 | dependencies: 1105 | svelte: 4.0.5 1106 | svelte-copy: 1.4.1(svelte@4.0.5) 1107 | dev: true 1108 | 1109 | /@vincjo/datatables@1.14.5(svelte@4.0.5): 1110 | resolution: {integrity: sha512-kvjr8ggRTRzwDTgOqK3bQPe5ZJo68h30SHcx0WS3daLVt/IUzN2132wtH2JZQkpxyjmh9EiblugOzUv/36Xpug==} 1111 | peerDependencies: 1112 | svelte: '>=3.54.0' 1113 | dependencies: 1114 | svelte: 4.0.5 1115 | dev: true 1116 | 1117 | /@watergis/legend-symbol@0.2.3: 1118 | resolution: {integrity: sha512-bxW2nGUvL80/iLTAstvP0QRcpprKKyTOLFueDW+dD0g9PDIFYx4De6MrKp4QJPx9SmrlidPxslOB0mXZrENmUg==} 1119 | dependencies: 1120 | '@mapbox/mapbox-gl-style-spec': 13.28.0 1121 | dev: true 1122 | 1123 | /@watergis/maplibre-center-icon@3.0.0(svelte@4.0.5): 1124 | resolution: {integrity: sha512-eG3LfPY6xRorWbR89hAzz4MA/reZ2xJzkaNJQQtjwAjevt04QX9FL/3cHwwzxawdQBNC9lG7f18G+3BSVVD9Qw==} 1125 | peerDependencies: 1126 | svelte: ^4.0.0 1127 | dependencies: 1128 | maplibre-gl: 4.1.1 1129 | svelte: 4.0.5 1130 | dev: true 1131 | 1132 | /@watergis/maplibre-gl-area-switcher@1.0.0: 1133 | resolution: {integrity: sha512-kP5SMvxoMtCuKBlCRwZFPMxJh4qdNng42tzGmPCCL0dl7k3/atRADw7a2isgUsPRpRUBRaIjaauYZXQrItJfzw==} 1134 | dependencies: 1135 | maplibre-gl: 3.3.1 1136 | dev: true 1137 | 1138 | /@watergis/maplibre-gl-tour@1.0.4(svelte@4.0.5): 1139 | resolution: {integrity: sha512-ZYajNPsXrAfYMDS66dKssbfmB/sbpETBtWp9YCSePnYOy6BKFjqXagYV+du55fuBgwr4NZSXJkcglnr9BLfcPw==} 1140 | peerDependencies: 1141 | svelte: ^4.0.0 1142 | dependencies: 1143 | '@sjmc11/tourguidejs': 0.0.16 1144 | maplibre-gl: 4.1.1 1145 | svelte: 4.0.5 1146 | dev: true 1147 | 1148 | /@watergis/svelte-collapsible-panel@3.0.0(svelte@4.0.5): 1149 | resolution: {integrity: sha512-+HiSUWwS6Cx+SBRJjTXxcAEr+u0fZ8cSHP2CME96OK8kTkyFPmw/3SFWy2oCFYwAWIIKwEf0Kzw2CkBsoeEyWg==} 1150 | peerDependencies: 1151 | svelte: ^4.0.0 1152 | dependencies: 1153 | '@fortawesome/free-solid-svg-icons': 6.5.1 1154 | bulma: 1.0.0 1155 | svelte: 4.0.5 1156 | svelte-fa: 4.0.2(svelte@4.0.5) 1157 | dev: true 1158 | 1159 | /@watergis/svelte-maplibre-attribute-popup@3.0.0(svelte@4.0.5): 1160 | resolution: {integrity: sha512-KFRvDi1gnrvHGLelKMAZ4FrBmq+efhPiaSREi+aESeYXvQ91wqLT4ylWXeTMK9JMfjqXh+wuOivnCQt8dYFmXQ==} 1161 | peerDependencies: 1162 | svelte: ^4.0.0 1163 | dependencies: 1164 | maplibre-gl: 4.1.1 1165 | svelte: 4.0.5 1166 | dev: true 1167 | 1168 | /@watergis/svelte-maplibre-attribute-table@3.0.0(svelte@4.0.5): 1169 | resolution: {integrity: sha512-37/n2zKzhXQwSaptkF8szm7bRm27kRCUF4dUys+9Nir42Keel5/ampYrz2Fa9kqJqzJvZaXcA4btvMUZ7883Bw==} 1170 | peerDependencies: 1171 | svelte: ^4.0.0 1172 | dependencies: 1173 | '@vincjo/datatables': 1.14.5(svelte@4.0.5) 1174 | '@watergis/svelte-maplibre-menu': 3.0.0(svelte@4.0.5) 1175 | maplibre-gl: 4.1.1 1176 | svelte: 4.0.5 1177 | dev: true 1178 | 1179 | /@watergis/svelte-maplibre-export@4.0.0(svelte@4.0.5): 1180 | resolution: {integrity: sha512-jyDl8HqFMYdi6PpKIwzvJ5j0svKdXgvVRoYuQfNS2LO26Gsg9RS52yRivaItNjALguk8XCipJDcpQhohRtACpQ==} 1181 | peerDependencies: 1182 | svelte: ^4.0.0 1183 | dependencies: 1184 | '@fortawesome/free-solid-svg-icons': 6.5.1 1185 | '@neodrag/svelte': 2.0.3 1186 | jspdf: 2.5.1 1187 | maplibre-gl: 4.1.1 1188 | svelte: 4.0.5 1189 | svelte-fa: 4.0.2(svelte@4.0.5) 1190 | dev: true 1191 | 1192 | /@watergis/svelte-maplibre-legend@4.0.0(@popperjs/core@2.11.8)(svelte@4.0.5): 1193 | resolution: {integrity: sha512-5Uh+FRLnPXpAVySfpQXqqgOFuFQ/99uy5m+6PmWAeD9/EnAXevdRIYBycmbqeD+CaW5WyukA3ZEX5Nyqcv9z+A==} 1194 | peerDependencies: 1195 | svelte: ^4.0.0 1196 | dependencies: 1197 | '@fortawesome/free-solid-svg-icons': 6.5.1 1198 | '@watergis/legend-symbol': 0.2.3 1199 | chroma-js: 2.4.2 1200 | detect-touch-device: 1.1.6 1201 | js-yaml: 4.1.0 1202 | lodash-es: 4.17.21 1203 | maplibre-gl: 4.1.1 1204 | svelte: 4.0.5 1205 | svelte-awesome-color-picker: 2.4.8 1206 | svelte-fa: 4.0.2(svelte@4.0.5) 1207 | svelte-popperjs: 1.3.2(@popperjs/core@2.11.8)(svelte@4.0.5) 1208 | svelte-range-slider-pips: 2.3.1 1209 | svelte-tippy: 1.3.2 1210 | svelte-use-click-outside: 1.0.0 1211 | tippy.js: 6.3.7 1212 | transitivePeerDependencies: 1213 | - '@popperjs/core' 1214 | dev: true 1215 | 1216 | /@watergis/svelte-maplibre-measure@3.0.0(svelte@4.0.5): 1217 | resolution: {integrity: sha512-z8QBgTZu9wRgMGeaxnzs0JWnr5Zt8La7U6i9dgyYxoeslxMD1ambuDp05f1M8zPUppq642ItGu4nnOleO40XOg==} 1218 | peerDependencies: 1219 | svelte: ^4.0.0 1220 | dependencies: 1221 | '@fortawesome/free-solid-svg-icons': 6.5.1 1222 | '@turf/distance': 6.5.0 1223 | '@watergis/terrain-rgb': 1.1.12 1224 | maplibre-gl: 4.1.1 1225 | svelte: 4.0.5 1226 | svelte-fa: 4.0.2(svelte@4.0.5) 1227 | transitivePeerDependencies: 1228 | - debug 1229 | dev: true 1230 | 1231 | /@watergis/svelte-maplibre-menu@3.0.0(svelte@4.0.5): 1232 | resolution: {integrity: sha512-UKBBWYxWyNe+RsFuFk/JnkP78IPjapZW94oje6yxn41lWLI9npA3cZ8o3lX/QPz/zncewUrPm2dLYBwy95rrJg==} 1233 | peerDependencies: 1234 | svelte: ^4.0.0 1235 | dependencies: 1236 | '@geoffcox/svelte-splitter': 1.0.1 1237 | maplibre-gl: 4.1.1 1238 | svelte: 4.0.5 1239 | dev: true 1240 | 1241 | /@watergis/svelte-maplibre-share@4.0.0(svelte@4.0.5): 1242 | resolution: {integrity: sha512-20DzOLJCHQuiapgy8LJYDnN8PhVB1pNq5MSw5KnKVYxt5dqdhczVHYP0pXMf/BQGkmVTyd331KOjJ3Q9ZhGj0Q==} 1243 | peerDependencies: 1244 | svelte: ^4.0.0 1245 | dependencies: 1246 | '@undp-data/svelte-copy-to-clipboard': 1.0.0(svelte@4.0.5) 1247 | maplibre-gl: 4.1.1 1248 | svelte: 4.0.5 1249 | dev: true 1250 | 1251 | /@watergis/svelte-maplibre-style-switcher@4.0.0(svelte@4.0.5): 1252 | resolution: {integrity: sha512-Awsa0zz0In7zK+ToLtbSHackFRAr3xQgVTvINYuijzmha13v+pyWtYF9SgZkNhQA4PYdkwe4DvkID0K5dGIG/g==} 1253 | peerDependencies: 1254 | svelte: ^4.0.0 1255 | dependencies: 1256 | debounce: 2.0.0 1257 | maplibre-gl: 4.1.1 1258 | svelte: 4.0.5 1259 | dev: true 1260 | 1261 | /@watergis/svelte-maplibre-valhalla@3.0.0(svelte@4.0.5): 1262 | resolution: {integrity: sha512-RTQzAIBvZQwIfhhi5smiE0amC6sYWoXNaayFr0v3NNZu1gYEI2fPYqOuNcx0exbyrkg1vKMs7vTglAyH8zveSg==} 1263 | peerDependencies: 1264 | svelte: ^4.0.0 1265 | dependencies: 1266 | '@fortawesome/free-solid-svg-icons': 6.5.1 1267 | maplibre-gl: 4.1.1 1268 | svelte: 4.0.5 1269 | svelte-fa: 4.0.2(svelte@4.0.5) 1270 | dev: true 1271 | 1272 | /@watergis/terrain-rgb@1.1.12: 1273 | resolution: {integrity: sha512-LbZHMJ4K6ox7HMv/UpfDDWoccJGfXjwQ1jXcIu1eugIS9vCx1miMnQIPVhE/W7P+Zkz4ldTlb7bF+g9x4NJRcw==} 1274 | dependencies: 1275 | '@canvas/image-data': 1.0.0 1276 | axios: 0.21.4 1277 | global-mercator: 3.1.0 1278 | pako: 2.1.0 1279 | webp-hero: 0.0.0-dev.27 1280 | transitivePeerDependencies: 1281 | - debug 1282 | dev: true 1283 | 1284 | /acorn-jsx@5.3.2(acorn@8.10.0): 1285 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 1286 | peerDependencies: 1287 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 1288 | dependencies: 1289 | acorn: 8.10.0 1290 | dev: true 1291 | 1292 | /acorn@8.10.0: 1293 | resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} 1294 | engines: {node: '>=0.4.0'} 1295 | hasBin: true 1296 | dev: true 1297 | 1298 | /ajv@6.12.6: 1299 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 1300 | dependencies: 1301 | fast-deep-equal: 3.1.3 1302 | fast-json-stable-stringify: 2.1.0 1303 | json-schema-traverse: 0.4.1 1304 | uri-js: 4.4.1 1305 | dev: true 1306 | 1307 | /ansi-regex@5.0.1: 1308 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1309 | engines: {node: '>=8'} 1310 | dev: true 1311 | 1312 | /ansi-styles@4.3.0: 1313 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1314 | engines: {node: '>=8'} 1315 | dependencies: 1316 | color-convert: 2.0.1 1317 | dev: true 1318 | 1319 | /anymatch@3.1.3: 1320 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1321 | engines: {node: '>= 8'} 1322 | dependencies: 1323 | normalize-path: 3.0.0 1324 | picomatch: 2.3.1 1325 | dev: true 1326 | 1327 | /argparse@2.0.1: 1328 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1329 | dev: true 1330 | 1331 | /aria-query@5.3.0: 1332 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 1333 | dependencies: 1334 | dequal: 2.0.3 1335 | dev: true 1336 | 1337 | /arr-union@3.1.0: 1338 | resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==} 1339 | engines: {node: '>=0.10.0'} 1340 | dev: true 1341 | 1342 | /array-union@2.1.0: 1343 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 1344 | engines: {node: '>=8'} 1345 | dev: true 1346 | 1347 | /assign-symbols@1.0.0: 1348 | resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==} 1349 | engines: {node: '>=0.10.0'} 1350 | dev: true 1351 | 1352 | /atob@2.1.2: 1353 | resolution: {integrity: sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==} 1354 | engines: {node: '>= 4.5.0'} 1355 | hasBin: true 1356 | dev: true 1357 | 1358 | /axios@0.21.4: 1359 | resolution: {integrity: sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==} 1360 | dependencies: 1361 | follow-redirects: 1.15.2 1362 | transitivePeerDependencies: 1363 | - debug 1364 | dev: true 1365 | 1366 | /axobject-query@3.2.1: 1367 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 1368 | dependencies: 1369 | dequal: 2.0.3 1370 | dev: true 1371 | 1372 | /balanced-match@1.0.2: 1373 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 1374 | dev: true 1375 | 1376 | /base64-arraybuffer@1.0.2: 1377 | resolution: {integrity: sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==} 1378 | engines: {node: '>= 0.6.0'} 1379 | requiresBuild: true 1380 | dev: true 1381 | optional: true 1382 | 1383 | /base64-js@1.5.1: 1384 | resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 1385 | dev: true 1386 | 1387 | /binary-extensions@2.2.0: 1388 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 1389 | engines: {node: '>=8'} 1390 | dev: true 1391 | 1392 | /brace-expansion@1.1.11: 1393 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 1394 | dependencies: 1395 | balanced-match: 1.0.2 1396 | concat-map: 0.0.1 1397 | dev: true 1398 | 1399 | /brace-expansion@2.0.1: 1400 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 1401 | dependencies: 1402 | balanced-match: 1.0.2 1403 | dev: true 1404 | 1405 | /braces@3.0.2: 1406 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 1407 | engines: {node: '>=8'} 1408 | dependencies: 1409 | fill-range: 7.0.1 1410 | dev: true 1411 | 1412 | /btoa@1.2.1: 1413 | resolution: {integrity: sha512-SB4/MIGlsiVkMcHmT+pSmIPoNDoHg+7cMzmt3Uxt628MTz2487DKSqK/fuhFBrkuqrYv5UCEnACpF4dTFNKc/g==} 1414 | engines: {node: '>= 0.4.0'} 1415 | hasBin: true 1416 | dev: true 1417 | 1418 | /buffer-crc32@0.2.13: 1419 | resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} 1420 | dev: true 1421 | 1422 | /buffer@6.0.3: 1423 | resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 1424 | dependencies: 1425 | base64-js: 1.5.1 1426 | ieee754: 1.2.1 1427 | dev: true 1428 | 1429 | /bulma@1.0.0: 1430 | resolution: {integrity: sha512-7n49v/gdHXaHcU9fVobqGXO2OguiCoMh6CLbeX7jq00XrZ5vOSE4LNS0S/0Q6rlBbckY6kk6W7LwqxS0nu4bug==} 1431 | dependencies: 1432 | sass: 1.75.0 1433 | dev: true 1434 | 1435 | /bytewise-core@1.2.3: 1436 | resolution: {integrity: sha512-nZD//kc78OOxeYtRlVk8/zXqTB4gf/nlguL1ggWA8FuchMyOxcyHR4QPQZMUmA7czC+YnaBrPUCubqAWe50DaA==} 1437 | dependencies: 1438 | typewise-core: 1.2.0 1439 | dev: true 1440 | 1441 | /bytewise@1.1.0: 1442 | resolution: {integrity: sha512-rHuuseJ9iQ0na6UDhnrRVDh8YnWVlU6xM3VH6q/+yHDeUH2zIhUzP+2/h3LIrhLDBtTqzWpE3p3tP/boefskKQ==} 1443 | dependencies: 1444 | bytewise-core: 1.2.3 1445 | typewise: 1.0.3 1446 | dev: true 1447 | 1448 | /callsites@3.1.0: 1449 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 1450 | engines: {node: '>=6'} 1451 | dev: true 1452 | 1453 | /canvg@3.0.10: 1454 | resolution: {integrity: sha512-qwR2FRNO9NlzTeKIPIKpnTY6fqwuYSequ8Ru8c0YkYU7U0oW+hLUvWadLvAu1Rl72OMNiFhoLu4f8eUjQ7l/+Q==} 1455 | engines: {node: '>=10.0.0'} 1456 | requiresBuild: true 1457 | dependencies: 1458 | '@babel/runtime': 7.22.10 1459 | '@types/raf': 3.4.0 1460 | core-js: 3.40.0 1461 | raf: 3.4.1 1462 | regenerator-runtime: 0.13.11 1463 | rgbcolor: 1.0.1 1464 | stackblur-canvas: 2.6.0 1465 | svg-pathdata: 6.0.3 1466 | dev: true 1467 | optional: true 1468 | 1469 | /chalk@4.1.2: 1470 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 1471 | engines: {node: '>=10'} 1472 | dependencies: 1473 | ansi-styles: 4.3.0 1474 | supports-color: 7.2.0 1475 | dev: true 1476 | 1477 | /chokidar@3.5.3: 1478 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 1479 | engines: {node: '>= 8.10.0'} 1480 | dependencies: 1481 | anymatch: 3.1.3 1482 | braces: 3.0.2 1483 | glob-parent: 5.1.2 1484 | is-binary-path: 2.1.0 1485 | is-glob: 4.0.3 1486 | normalize-path: 3.0.0 1487 | readdirp: 3.6.0 1488 | optionalDependencies: 1489 | fsevents: 2.3.3 1490 | dev: true 1491 | 1492 | /chroma-js@2.4.2: 1493 | resolution: {integrity: sha512-U9eDw6+wt7V8z5NncY2jJfZa+hUH8XEj8FQHgFJTrUFnJfXYf4Ml4adI2vXZOjqRDpFWtYVWypDfZwnJ+HIR4A==} 1494 | dev: true 1495 | 1496 | /code-red@1.0.4: 1497 | resolution: {integrity: sha512-7qJWqItLA8/VPVlKJlFXU+NBlo/qyfs39aJcuMT/2ere32ZqvF5OSxgdM5xOfJJ7O429gg2HM47y8v9P+9wrNw==} 1498 | dependencies: 1499 | '@jridgewell/sourcemap-codec': 1.4.15 1500 | '@types/estree': 1.0.6 1501 | acorn: 8.10.0 1502 | estree-walker: 3.0.3 1503 | periscopic: 3.1.0 1504 | dev: true 1505 | 1506 | /color-convert@2.0.1: 1507 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 1508 | engines: {node: '>=7.0.0'} 1509 | dependencies: 1510 | color-name: 1.1.4 1511 | dev: true 1512 | 1513 | /color-name@1.1.4: 1514 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 1515 | dev: true 1516 | 1517 | /colord@2.9.3: 1518 | resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==} 1519 | dev: true 1520 | 1521 | /concat-map@0.0.1: 1522 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 1523 | dev: true 1524 | 1525 | /cookie@0.6.0: 1526 | resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} 1527 | engines: {node: '>= 0.6'} 1528 | dev: true 1529 | 1530 | /core-js@3.40.0: 1531 | resolution: {integrity: sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==} 1532 | requiresBuild: true 1533 | dev: true 1534 | optional: true 1535 | 1536 | /cross-spawn@7.0.3: 1537 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 1538 | engines: {node: '>= 8'} 1539 | dependencies: 1540 | path-key: 3.1.1 1541 | shebang-command: 2.0.0 1542 | which: 2.0.2 1543 | dev: true 1544 | 1545 | /css-line-break@2.1.0: 1546 | resolution: {integrity: sha512-FHcKFCZcAha3LwfVBhCQbW2nCNbkZXn7KVUJcsT5/P8YmfsVja0FMPJr0B903j/E69HUphKiV9iQArX8SDYA4w==} 1547 | requiresBuild: true 1548 | dependencies: 1549 | utrie: 1.0.2 1550 | dev: true 1551 | optional: true 1552 | 1553 | /css-tree@2.3.1: 1554 | resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} 1555 | engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} 1556 | dependencies: 1557 | mdn-data: 2.0.30 1558 | source-map-js: 1.2.1 1559 | dev: true 1560 | 1561 | /csscolorparser@1.0.3: 1562 | resolution: {integrity: sha512-umPSgYwZkdFoUrH5hIq5kf0wPSXiro51nPw0j2K/c83KflkPSTBGMz6NJvMB+07VlL0y7VPo6QJcDjcgKTTm3w==} 1563 | dev: true 1564 | 1565 | /cssesc@3.0.0: 1566 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 1567 | engines: {node: '>=4'} 1568 | hasBin: true 1569 | dev: true 1570 | 1571 | /debounce@2.0.0: 1572 | resolution: {integrity: sha512-xRetU6gL1VJbs85Mc4FoEGSjQxzpdxRyFhe3lmWFyy2EzydIcD4xzUvRJMD+NPDfMwKNhxa3PvsIOU32luIWeA==} 1573 | engines: {node: '>=18'} 1574 | dev: true 1575 | 1576 | /debug@4.3.4: 1577 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 1578 | engines: {node: '>=6.0'} 1579 | peerDependencies: 1580 | supports-color: '*' 1581 | peerDependenciesMeta: 1582 | supports-color: 1583 | optional: true 1584 | dependencies: 1585 | ms: 2.1.2 1586 | dev: true 1587 | 1588 | /deep-is@0.1.4: 1589 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 1590 | dev: true 1591 | 1592 | /deepmerge@4.3.1: 1593 | resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 1594 | engines: {node: '>=0.10.0'} 1595 | dev: true 1596 | 1597 | /dequal@2.0.3: 1598 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 1599 | engines: {node: '>=6'} 1600 | dev: true 1601 | 1602 | /detect-indent@6.1.0: 1603 | resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==} 1604 | engines: {node: '>=8'} 1605 | dev: true 1606 | 1607 | /detect-touch-device@1.1.6: 1608 | resolution: {integrity: sha512-9DYLJE05EFGI9f8m/GyJtWjw7aMZMBQM2QVy6bb7zX8uC3iorOE3Erdrk3TWCj5FVOlHTfinU0bATTE9GWYebw==} 1609 | dev: true 1610 | 1611 | /devalue@5.1.1: 1612 | resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} 1613 | dev: true 1614 | 1615 | /dir-glob@3.0.1: 1616 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1617 | engines: {node: '>=8'} 1618 | dependencies: 1619 | path-type: 4.0.0 1620 | dev: true 1621 | 1622 | /doctrine@3.0.0: 1623 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1624 | engines: {node: '>=6.0.0'} 1625 | dependencies: 1626 | esutils: 2.0.3 1627 | dev: true 1628 | 1629 | /dompurify@2.5.8: 1630 | resolution: {integrity: sha512-o1vSNgrmYMQObbSSvF/1brBYEQPHhV1+gsmrusO7/GXtp1T9rCS8cXFqVxK/9crT1jA6Ccv+5MTSjBNqr7Sovw==} 1631 | requiresBuild: true 1632 | dev: true 1633 | optional: true 1634 | 1635 | /earcut@2.2.4: 1636 | resolution: {integrity: sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==} 1637 | dev: true 1638 | 1639 | /es6-promise@3.3.1: 1640 | resolution: {integrity: sha512-SOp9Phqvqn7jtEUxPWdWfWoLmyt2VaJ6MpvP9Comy1MceMXqE6bxvaTu4iaxpYYPzhny28Lc+M87/c2cPK6lDg==} 1641 | dev: true 1642 | 1643 | /esbuild@0.21.5: 1644 | resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 1645 | engines: {node: '>=12'} 1646 | hasBin: true 1647 | requiresBuild: true 1648 | optionalDependencies: 1649 | '@esbuild/aix-ppc64': 0.21.5 1650 | '@esbuild/android-arm': 0.21.5 1651 | '@esbuild/android-arm64': 0.21.5 1652 | '@esbuild/android-x64': 0.21.5 1653 | '@esbuild/darwin-arm64': 0.21.5 1654 | '@esbuild/darwin-x64': 0.21.5 1655 | '@esbuild/freebsd-arm64': 0.21.5 1656 | '@esbuild/freebsd-x64': 0.21.5 1657 | '@esbuild/linux-arm': 0.21.5 1658 | '@esbuild/linux-arm64': 0.21.5 1659 | '@esbuild/linux-ia32': 0.21.5 1660 | '@esbuild/linux-loong64': 0.21.5 1661 | '@esbuild/linux-mips64el': 0.21.5 1662 | '@esbuild/linux-ppc64': 0.21.5 1663 | '@esbuild/linux-riscv64': 0.21.5 1664 | '@esbuild/linux-s390x': 0.21.5 1665 | '@esbuild/linux-x64': 0.21.5 1666 | '@esbuild/netbsd-x64': 0.21.5 1667 | '@esbuild/openbsd-x64': 0.21.5 1668 | '@esbuild/sunos-x64': 0.21.5 1669 | '@esbuild/win32-arm64': 0.21.5 1670 | '@esbuild/win32-ia32': 0.21.5 1671 | '@esbuild/win32-x64': 0.21.5 1672 | dev: true 1673 | 1674 | /escape-string-regexp@4.0.0: 1675 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1676 | engines: {node: '>=10'} 1677 | dev: true 1678 | 1679 | /eslint-config-prettier@9.0.0(eslint@8.50.0): 1680 | resolution: {integrity: sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==} 1681 | hasBin: true 1682 | peerDependencies: 1683 | eslint: '>=7.0.0' 1684 | dependencies: 1685 | eslint: 8.50.0 1686 | dev: true 1687 | 1688 | /eslint-plugin-svelte@2.33.2(eslint@8.50.0)(svelte@4.0.5): 1689 | resolution: {integrity: sha512-knWmauax+E/jvQ9CmuX5dAhQKP9P4eGQZxWa5RMutEJVCcy0wFmiUvOeDND2jR4vUkbDlX4khKjaceY7QzbkYw==} 1690 | engines: {node: ^14.17.0 || >=16.0.0} 1691 | peerDependencies: 1692 | eslint: ^7.0.0 || ^8.0.0-0 1693 | svelte: ^3.37.0 || ^4.0.0 1694 | peerDependenciesMeta: 1695 | svelte: 1696 | optional: true 1697 | dependencies: 1698 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0) 1699 | '@jridgewell/sourcemap-codec': 1.4.15 1700 | debug: 4.3.4 1701 | eslint: 8.50.0 1702 | esutils: 2.0.3 1703 | known-css-properties: 0.28.0 1704 | postcss: 8.4.28 1705 | postcss-load-config: 3.1.4(postcss@8.4.28) 1706 | postcss-safe-parser: 6.0.0(postcss@8.4.28) 1707 | postcss-selector-parser: 6.0.13 1708 | semver: 7.5.4 1709 | svelte: 4.0.5 1710 | svelte-eslint-parser: 0.33.0(svelte@4.0.5) 1711 | transitivePeerDependencies: 1712 | - supports-color 1713 | - ts-node 1714 | dev: true 1715 | 1716 | /eslint-scope@7.2.2: 1717 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1718 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1719 | dependencies: 1720 | esrecurse: 4.3.0 1721 | estraverse: 5.3.0 1722 | dev: true 1723 | 1724 | /eslint-visitor-keys@3.4.3: 1725 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1726 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1727 | dev: true 1728 | 1729 | /eslint@8.50.0: 1730 | resolution: {integrity: sha512-FOnOGSuFuFLv/Sa+FDVRZl4GGVAAFFi8LecRsI5a1tMO5HIE8nCm4ivAlzt4dT3ol/PaaGC0rJEEXQmHJBGoOg==} 1731 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1732 | hasBin: true 1733 | dependencies: 1734 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0) 1735 | '@eslint-community/regexpp': 4.6.2 1736 | '@eslint/eslintrc': 2.1.2 1737 | '@eslint/js': 8.50.0 1738 | '@humanwhocodes/config-array': 0.11.11 1739 | '@humanwhocodes/module-importer': 1.0.1 1740 | '@nodelib/fs.walk': 1.2.8 1741 | ajv: 6.12.6 1742 | chalk: 4.1.2 1743 | cross-spawn: 7.0.3 1744 | debug: 4.3.4 1745 | doctrine: 3.0.0 1746 | escape-string-regexp: 4.0.0 1747 | eslint-scope: 7.2.2 1748 | eslint-visitor-keys: 3.4.3 1749 | espree: 9.6.1 1750 | esquery: 1.5.0 1751 | esutils: 2.0.3 1752 | fast-deep-equal: 3.1.3 1753 | file-entry-cache: 6.0.1 1754 | find-up: 5.0.0 1755 | glob-parent: 6.0.2 1756 | globals: 13.21.0 1757 | graphemer: 1.4.0 1758 | ignore: 5.2.4 1759 | imurmurhash: 0.1.4 1760 | is-glob: 4.0.3 1761 | is-path-inside: 3.0.3 1762 | js-yaml: 4.1.0 1763 | json-stable-stringify-without-jsonify: 1.0.1 1764 | levn: 0.4.1 1765 | lodash.merge: 4.6.2 1766 | minimatch: 3.1.2 1767 | natural-compare: 1.4.0 1768 | optionator: 0.9.3 1769 | strip-ansi: 6.0.1 1770 | text-table: 0.2.0 1771 | transitivePeerDependencies: 1772 | - supports-color 1773 | dev: true 1774 | 1775 | /esm-env@1.1.4: 1776 | resolution: {integrity: sha512-oO82nKPHKkzIj/hbtuDYy/JHqBHFlMIW36SDiPCVsj87ntDLcWN+sJ1erdVryd4NxODacFTsdrIE3b7IamqbOg==} 1777 | dev: true 1778 | 1779 | /espree@9.6.1: 1780 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1781 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1782 | dependencies: 1783 | acorn: 8.10.0 1784 | acorn-jsx: 5.3.2(acorn@8.10.0) 1785 | eslint-visitor-keys: 3.4.3 1786 | dev: true 1787 | 1788 | /esquery@1.5.0: 1789 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1790 | engines: {node: '>=0.10'} 1791 | dependencies: 1792 | estraverse: 5.3.0 1793 | dev: true 1794 | 1795 | /esrecurse@4.3.0: 1796 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1797 | engines: {node: '>=4.0'} 1798 | dependencies: 1799 | estraverse: 5.3.0 1800 | dev: true 1801 | 1802 | /estraverse@5.3.0: 1803 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1804 | engines: {node: '>=4.0'} 1805 | dev: true 1806 | 1807 | /estree-walker@3.0.3: 1808 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 1809 | dependencies: 1810 | '@types/estree': 1.0.6 1811 | dev: true 1812 | 1813 | /esutils@2.0.3: 1814 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1815 | engines: {node: '>=0.10.0'} 1816 | dev: true 1817 | 1818 | /events@3.3.0: 1819 | resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 1820 | engines: {node: '>=0.8.x'} 1821 | dev: true 1822 | 1823 | /extend-shallow@2.0.1: 1824 | resolution: {integrity: sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==} 1825 | engines: {node: '>=0.10.0'} 1826 | dependencies: 1827 | is-extendable: 0.1.1 1828 | dev: true 1829 | 1830 | /extend-shallow@3.0.2: 1831 | resolution: {integrity: sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==} 1832 | engines: {node: '>=0.10.0'} 1833 | dependencies: 1834 | assign-symbols: 1.0.0 1835 | is-extendable: 1.0.1 1836 | dev: true 1837 | 1838 | /fast-deep-equal@3.1.3: 1839 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1840 | dev: true 1841 | 1842 | /fast-glob@3.3.1: 1843 | resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 1844 | engines: {node: '>=8.6.0'} 1845 | dependencies: 1846 | '@nodelib/fs.stat': 2.0.5 1847 | '@nodelib/fs.walk': 1.2.8 1848 | glob-parent: 5.1.2 1849 | merge2: 1.4.1 1850 | micromatch: 4.0.5 1851 | dev: true 1852 | 1853 | /fast-json-stable-stringify@2.1.0: 1854 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1855 | dev: true 1856 | 1857 | /fast-levenshtein@2.0.6: 1858 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1859 | dev: true 1860 | 1861 | /fastq@1.15.0: 1862 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 1863 | dependencies: 1864 | reusify: 1.0.4 1865 | dev: true 1866 | 1867 | /fflate@0.4.8: 1868 | resolution: {integrity: sha512-FJqqoDBR00Mdj9ppamLa/Y7vxm+PRmNWA67N846RvsoYVMKB4q3y/de5PA7gUmRMYK/8CMz2GDZQmCRN1wBcWA==} 1869 | dev: true 1870 | 1871 | /fflate@0.8.0: 1872 | resolution: {integrity: sha512-FAdS4qMuFjsJj6XHbBaZeXOgaypXp8iw/Tpyuq/w3XA41jjLHT8NPA+n7czH/DDhdncq0nAyDZmPeWXh2qmdIg==} 1873 | dev: true 1874 | 1875 | /file-entry-cache@6.0.1: 1876 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1877 | engines: {node: ^10.12.0 || >=12.0.0} 1878 | dependencies: 1879 | flat-cache: 3.0.4 1880 | dev: true 1881 | 1882 | /fill-range@7.0.1: 1883 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1884 | engines: {node: '>=8'} 1885 | dependencies: 1886 | to-regex-range: 5.0.1 1887 | dev: true 1888 | 1889 | /find-up@5.0.0: 1890 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1891 | engines: {node: '>=10'} 1892 | dependencies: 1893 | locate-path: 6.0.0 1894 | path-exists: 4.0.0 1895 | dev: true 1896 | 1897 | /flat-cache@3.0.4: 1898 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1899 | engines: {node: ^10.12.0 || >=12.0.0} 1900 | dependencies: 1901 | flatted: 3.2.7 1902 | rimraf: 3.0.2 1903 | dev: true 1904 | 1905 | /flatted@3.2.7: 1906 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 1907 | dev: true 1908 | 1909 | /follow-redirects@1.15.2: 1910 | resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} 1911 | engines: {node: '>=4.0'} 1912 | peerDependencies: 1913 | debug: '*' 1914 | peerDependenciesMeta: 1915 | debug: 1916 | optional: true 1917 | dev: true 1918 | 1919 | /fs.realpath@1.0.0: 1920 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1921 | dev: true 1922 | 1923 | /fsevents@2.3.3: 1924 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1925 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1926 | os: [darwin] 1927 | requiresBuild: true 1928 | dev: true 1929 | optional: true 1930 | 1931 | /fuzzy@0.1.3: 1932 | resolution: {integrity: sha512-/gZffu4ykarLrCiP3Ygsa86UAo1E5vEVlvTrpkKywXSbP9Xhln3oSp9QSV57gEq3JFFpGJ4GZ+5zdEp3FcUh4w==} 1933 | engines: {node: '>= 0.6.0'} 1934 | dev: true 1935 | 1936 | /geojson-vt@3.2.1: 1937 | resolution: {integrity: sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg==} 1938 | dev: true 1939 | 1940 | /get-stream@6.0.1: 1941 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1942 | engines: {node: '>=10'} 1943 | dev: true 1944 | 1945 | /get-value@2.0.6: 1946 | resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==} 1947 | engines: {node: '>=0.10.0'} 1948 | dev: true 1949 | 1950 | /gl-matrix@3.4.3: 1951 | resolution: {integrity: sha512-wcCp8vu8FT22BnvKVPjXa/ICBWRq/zjFfdofZy1WSpQZpphblv12/bOQLBC1rMM7SGOFS9ltVmKOHil5+Ml7gA==} 1952 | dev: true 1953 | 1954 | /glob-parent@5.1.2: 1955 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1956 | engines: {node: '>= 6'} 1957 | dependencies: 1958 | is-glob: 4.0.3 1959 | dev: true 1960 | 1961 | /glob-parent@6.0.2: 1962 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1963 | engines: {node: '>=10.13.0'} 1964 | dependencies: 1965 | is-glob: 4.0.3 1966 | dev: true 1967 | 1968 | /glob@7.2.3: 1969 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1970 | dependencies: 1971 | fs.realpath: 1.0.0 1972 | inflight: 1.0.6 1973 | inherits: 2.0.4 1974 | minimatch: 3.1.2 1975 | once: 1.4.0 1976 | path-is-absolute: 1.0.1 1977 | dev: true 1978 | 1979 | /global-mercator@3.1.0: 1980 | resolution: {integrity: sha512-Ws/8nyCHDFzpDQjfr6fcbWY+yU/Oh6rk7+WXNr/pZl7O1WCktAnMZy+9wpJ2stNCqM2SWwvZoqWbIzTiFN++2A==} 1981 | dev: true 1982 | 1983 | /global-prefix@3.0.0: 1984 | resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==} 1985 | engines: {node: '>=6'} 1986 | dependencies: 1987 | ini: 1.3.8 1988 | kind-of: 6.0.3 1989 | which: 1.3.1 1990 | dev: true 1991 | 1992 | /globals@13.21.0: 1993 | resolution: {integrity: sha512-ybyme3s4yy/t/3s35bewwXKOf7cvzfreG2lH0lZl0JB7I4GxRP2ghxOK/Nb9EkRXdbBXZLfq/p/0W2JUONB/Gg==} 1994 | engines: {node: '>=8'} 1995 | dependencies: 1996 | type-fest: 0.20.2 1997 | dev: true 1998 | 1999 | /globalyzer@0.1.0: 2000 | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} 2001 | dev: true 2002 | 2003 | /globby@11.1.0: 2004 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 2005 | engines: {node: '>=10'} 2006 | dependencies: 2007 | array-union: 2.1.0 2008 | dir-glob: 3.0.1 2009 | fast-glob: 3.3.1 2010 | ignore: 5.2.4 2011 | merge2: 1.4.1 2012 | slash: 3.0.0 2013 | dev: true 2014 | 2015 | /globrex@0.1.2: 2016 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 2017 | dev: true 2018 | 2019 | /graceful-fs@4.2.11: 2020 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 2021 | dev: true 2022 | 2023 | /graphemer@1.4.0: 2024 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 2025 | dev: true 2026 | 2027 | /has-flag@4.0.0: 2028 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 2029 | engines: {node: '>=8'} 2030 | dev: true 2031 | 2032 | /html2canvas@1.4.1: 2033 | resolution: {integrity: sha512-fPU6BHNpsyIhr8yyMpTLLxAbkaK8ArIBcmZIRiBLiDhjeqvXolaEmDGmELFuX9I4xDcaKKcJl+TKZLqruBbmWA==} 2034 | engines: {node: '>=8.0.0'} 2035 | requiresBuild: true 2036 | dependencies: 2037 | css-line-break: 2.1.0 2038 | text-segmentation: 1.0.3 2039 | dev: true 2040 | optional: true 2041 | 2042 | /ieee754@1.2.1: 2043 | resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 2044 | dev: true 2045 | 2046 | /ignore@5.2.4: 2047 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 2048 | engines: {node: '>= 4'} 2049 | dev: true 2050 | 2051 | /immutable@4.3.2: 2052 | resolution: {integrity: sha512-oGXzbEDem9OOpDWZu88jGiYCvIsLHMvGw+8OXlpsvTFvIQplQbjg1B1cvKg8f7Hoch6+NGjpPsH1Fr+Mc2D1aA==} 2053 | dev: true 2054 | 2055 | /import-fresh@3.3.0: 2056 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 2057 | engines: {node: '>=6'} 2058 | dependencies: 2059 | parent-module: 1.0.1 2060 | resolve-from: 4.0.0 2061 | dev: true 2062 | 2063 | /import-meta-resolve@4.1.0: 2064 | resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 2065 | dev: true 2066 | 2067 | /imurmurhash@0.1.4: 2068 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 2069 | engines: {node: '>=0.8.19'} 2070 | dev: true 2071 | 2072 | /inflight@1.0.6: 2073 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 2074 | dependencies: 2075 | once: 1.4.0 2076 | wrappy: 1.0.2 2077 | dev: true 2078 | 2079 | /inherits@2.0.4: 2080 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2081 | dev: true 2082 | 2083 | /ini@1.3.8: 2084 | resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 2085 | dev: true 2086 | 2087 | /is-binary-path@2.1.0: 2088 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 2089 | engines: {node: '>=8'} 2090 | dependencies: 2091 | binary-extensions: 2.2.0 2092 | dev: true 2093 | 2094 | /is-extendable@0.1.1: 2095 | resolution: {integrity: sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==} 2096 | engines: {node: '>=0.10.0'} 2097 | dev: true 2098 | 2099 | /is-extendable@1.0.1: 2100 | resolution: {integrity: sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==} 2101 | engines: {node: '>=0.10.0'} 2102 | dependencies: 2103 | is-plain-object: 2.0.4 2104 | dev: true 2105 | 2106 | /is-extglob@2.1.1: 2107 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 2108 | engines: {node: '>=0.10.0'} 2109 | dev: true 2110 | 2111 | /is-glob@4.0.3: 2112 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2113 | engines: {node: '>=0.10.0'} 2114 | dependencies: 2115 | is-extglob: 2.1.1 2116 | dev: true 2117 | 2118 | /is-number@7.0.0: 2119 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2120 | engines: {node: '>=0.12.0'} 2121 | dev: true 2122 | 2123 | /is-path-inside@3.0.3: 2124 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 2125 | engines: {node: '>=8'} 2126 | dev: true 2127 | 2128 | /is-plain-object@2.0.4: 2129 | resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} 2130 | engines: {node: '>=0.10.0'} 2131 | dependencies: 2132 | isobject: 3.0.1 2133 | dev: true 2134 | 2135 | /is-reference@3.0.1: 2136 | resolution: {integrity: sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==} 2137 | dependencies: 2138 | '@types/estree': 1.0.6 2139 | dev: true 2140 | 2141 | /isexe@2.0.0: 2142 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 2143 | dev: true 2144 | 2145 | /isobject@3.0.1: 2146 | resolution: {integrity: sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==} 2147 | engines: {node: '>=0.10.0'} 2148 | dev: true 2149 | 2150 | /js-yaml@4.1.0: 2151 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 2152 | hasBin: true 2153 | dependencies: 2154 | argparse: 2.0.1 2155 | dev: true 2156 | 2157 | /json-schema-traverse@0.4.1: 2158 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 2159 | dev: true 2160 | 2161 | /json-stable-stringify-without-jsonify@1.0.1: 2162 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 2163 | dev: true 2164 | 2165 | /json-stringify-pretty-compact@2.0.0: 2166 | resolution: {integrity: sha512-WRitRfs6BGq4q8gTgOy4ek7iPFXjbra0H3PmDLKm2xnZ+Gh1HUhiKGgCZkSPNULlP7mvfu6FV/mOLhCarspADQ==} 2167 | dev: true 2168 | 2169 | /json-stringify-pretty-compact@3.0.0: 2170 | resolution: {integrity: sha512-Rc2suX5meI0S3bfdZuA7JMFBGkJ875ApfVyq2WHELjBiiG22My/l7/8zPpH/CfFVQHuVLd8NLR0nv6vi0BYYKA==} 2171 | dev: true 2172 | 2173 | /json-stringify-pretty-compact@4.0.0: 2174 | resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==} 2175 | dev: true 2176 | 2177 | /jspdf@2.5.1: 2178 | resolution: {integrity: sha512-hXObxz7ZqoyhxET78+XR34Xu2qFGrJJ2I2bE5w4SM8eFaFEkW2xcGRVUss360fYelwRSid/jT078kbNvmoW0QA==} 2179 | dependencies: 2180 | '@babel/runtime': 7.22.10 2181 | atob: 2.1.2 2182 | btoa: 1.2.1 2183 | fflate: 0.4.8 2184 | optionalDependencies: 2185 | canvg: 3.0.10 2186 | core-js: 3.40.0 2187 | dompurify: 2.5.8 2188 | html2canvas: 1.4.1 2189 | dev: true 2190 | 2191 | /kdbush@4.0.2: 2192 | resolution: {integrity: sha512-WbCVYJ27Sz8zi9Q7Q0xHC+05iwkm3Znipc2XTlrnJbsHMYktW4hPhXUE8Ys1engBrvffoSCqbil1JQAa7clRpA==} 2193 | dev: true 2194 | 2195 | /kind-of@6.0.3: 2196 | resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==} 2197 | engines: {node: '>=0.10.0'} 2198 | dev: true 2199 | 2200 | /kleur@4.1.5: 2201 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 2202 | engines: {node: '>=6'} 2203 | dev: true 2204 | 2205 | /known-css-properties@0.28.0: 2206 | resolution: {integrity: sha512-9pSL5XB4J+ifHP0e0jmmC98OGC1nL8/JjS+fi6mnTlIf//yt/MfVLtKg7S6nCtj/8KTcWX7nRlY0XywoYY1ISQ==} 2207 | dev: true 2208 | 2209 | /levn@0.4.1: 2210 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 2211 | engines: {node: '>= 0.8.0'} 2212 | dependencies: 2213 | prelude-ls: 1.2.1 2214 | type-check: 0.4.0 2215 | dev: true 2216 | 2217 | /lilconfig@2.1.0: 2218 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 2219 | engines: {node: '>=10'} 2220 | dev: true 2221 | 2222 | /locate-character@3.0.0: 2223 | resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} 2224 | dev: true 2225 | 2226 | /locate-path@6.0.0: 2227 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 2228 | engines: {node: '>=10'} 2229 | dependencies: 2230 | p-locate: 5.0.0 2231 | dev: true 2232 | 2233 | /lodash-es@4.17.21: 2234 | resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} 2235 | dev: true 2236 | 2237 | /lodash.debounce@4.0.8: 2238 | resolution: {integrity: sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==} 2239 | dev: true 2240 | 2241 | /lodash.merge@4.6.2: 2242 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 2243 | dev: true 2244 | 2245 | /lru-cache@6.0.0: 2246 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 2247 | engines: {node: '>=10'} 2248 | dependencies: 2249 | yallist: 4.0.0 2250 | dev: true 2251 | 2252 | /magic-string@0.27.0: 2253 | resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==} 2254 | engines: {node: '>=12'} 2255 | dependencies: 2256 | '@jridgewell/sourcemap-codec': 1.5.0 2257 | dev: true 2258 | 2259 | /magic-string@0.30.13: 2260 | resolution: {integrity: sha512-8rYBO+MsWkgjDSOvLomYnzhdwEG51olQ4zL5KXnNJWV5MNmrb4rTZdrtkhxjnD/QyZUqR/Z/XDsUs/4ej2nx0g==} 2261 | dependencies: 2262 | '@jridgewell/sourcemap-codec': 1.5.0 2263 | dev: true 2264 | 2265 | /magic-string@0.30.2: 2266 | resolution: {integrity: sha512-lNZdu7pewtq/ZvWUp9Wpf/x7WzMTsR26TWV03BRZrXFsv+BI6dy8RAiKgm1uM/kyR0rCfUcqvOlXKG66KhIGug==} 2267 | engines: {node: '>=12'} 2268 | dependencies: 2269 | '@jridgewell/sourcemap-codec': 1.4.15 2270 | dev: true 2271 | 2272 | /magic-string@0.30.8: 2273 | resolution: {integrity: sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==} 2274 | engines: {node: '>=12'} 2275 | dependencies: 2276 | '@jridgewell/sourcemap-codec': 1.5.0 2277 | dev: true 2278 | 2279 | /maplibre-gl@3.3.1: 2280 | resolution: {integrity: sha512-SfRq9bT68GytDzCOG0IoTGg2rASbgdYunW/6xhnp55QuLmwG1M/YOlXxqHaphwia7kZbMvBOocvY0fp5yfTjZA==} 2281 | engines: {node: '>=16.14.0', npm: '>=8.1.0'} 2282 | dependencies: 2283 | '@mapbox/geojson-rewind': 0.5.2 2284 | '@mapbox/jsonlint-lines-primitives': 2.0.2 2285 | '@mapbox/point-geometry': 0.1.0 2286 | '@mapbox/tiny-sdf': 2.0.6 2287 | '@mapbox/unitbezier': 0.0.1 2288 | '@mapbox/vector-tile': 1.3.1 2289 | '@mapbox/whoots-js': 3.1.0 2290 | '@maplibre/maplibre-gl-style-spec': 19.3.0 2291 | '@types/geojson': 7946.0.10 2292 | '@types/mapbox__point-geometry': 0.1.2 2293 | '@types/mapbox__vector-tile': 1.3.0 2294 | '@types/pbf': 3.0.2 2295 | '@types/supercluster': 7.1.0 2296 | earcut: 2.2.4 2297 | geojson-vt: 3.2.1 2298 | gl-matrix: 3.4.3 2299 | global-prefix: 3.0.0 2300 | kdbush: 4.0.2 2301 | murmurhash-js: 1.0.0 2302 | pbf: 3.2.1 2303 | potpack: 2.0.0 2304 | quickselect: 2.0.0 2305 | supercluster: 8.0.1 2306 | tinyqueue: 2.0.3 2307 | vt-pbf: 3.1.3 2308 | dev: true 2309 | 2310 | /maplibre-gl@4.1.1: 2311 | resolution: {integrity: sha512-DmHru9FTHCOngNHzIx9W2+MlUziYPfPxd2qjyeWwczBYNx2SDpmH394MkuCvSgnfUm5Zvs4NaYCqMu44jUga1Q==} 2312 | engines: {node: '>=16.14.0', npm: '>=8.1.0'} 2313 | dependencies: 2314 | '@mapbox/geojson-rewind': 0.5.2 2315 | '@mapbox/jsonlint-lines-primitives': 2.0.2 2316 | '@mapbox/point-geometry': 0.1.0 2317 | '@mapbox/tiny-sdf': 2.0.6 2318 | '@mapbox/unitbezier': 0.0.1 2319 | '@mapbox/vector-tile': 1.3.1 2320 | '@mapbox/whoots-js': 3.1.0 2321 | '@maplibre/maplibre-gl-style-spec': 20.1.1 2322 | '@types/geojson': 7946.0.14 2323 | '@types/geojson-vt': 3.2.5 2324 | '@types/mapbox__point-geometry': 0.1.4 2325 | '@types/mapbox__vector-tile': 1.3.4 2326 | '@types/pbf': 3.0.5 2327 | '@types/supercluster': 7.1.3 2328 | earcut: 2.2.4 2329 | geojson-vt: 3.2.1 2330 | gl-matrix: 3.4.3 2331 | global-prefix: 3.0.0 2332 | kdbush: 4.0.2 2333 | murmurhash-js: 1.0.0 2334 | pbf: 3.2.1 2335 | potpack: 2.0.0 2336 | quickselect: 2.0.0 2337 | supercluster: 8.0.1 2338 | tinyqueue: 2.0.3 2339 | vt-pbf: 3.1.3 2340 | dev: true 2341 | 2342 | /mdn-data@2.0.30: 2343 | resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} 2344 | dev: true 2345 | 2346 | /merge2@1.4.1: 2347 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2348 | engines: {node: '>= 8'} 2349 | dev: true 2350 | 2351 | /micromatch@4.0.5: 2352 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 2353 | engines: {node: '>=8.6'} 2354 | dependencies: 2355 | braces: 3.0.2 2356 | picomatch: 2.3.1 2357 | dev: true 2358 | 2359 | /min-indent@1.0.1: 2360 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 2361 | engines: {node: '>=4'} 2362 | dev: true 2363 | 2364 | /minimatch@3.1.2: 2365 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 2366 | dependencies: 2367 | brace-expansion: 1.1.11 2368 | dev: true 2369 | 2370 | /minimatch@9.0.3: 2371 | resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 2372 | engines: {node: '>=16 || 14 >=14.17'} 2373 | dependencies: 2374 | brace-expansion: 2.0.1 2375 | dev: true 2376 | 2377 | /minimist@1.2.8: 2378 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 2379 | dev: true 2380 | 2381 | /mkdirp@0.5.6: 2382 | resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} 2383 | hasBin: true 2384 | dependencies: 2385 | minimist: 1.2.8 2386 | dev: true 2387 | 2388 | /mri@1.2.0: 2389 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} 2390 | engines: {node: '>=4'} 2391 | dev: true 2392 | 2393 | /mrmime@2.0.0: 2394 | resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} 2395 | engines: {node: '>=10'} 2396 | dev: true 2397 | 2398 | /ms@2.1.2: 2399 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 2400 | dev: true 2401 | 2402 | /murmurhash-js@1.0.0: 2403 | resolution: {integrity: sha512-TvmkNhkv8yct0SVBSy+o8wYzXjE4Zz3PCesbfs8HiCXXdcTuocApFv11UWlNFWKYsP2okqrhb7JNlSm9InBhIw==} 2404 | dev: true 2405 | 2406 | /nanoid@3.3.7: 2407 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 2408 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2409 | hasBin: true 2410 | dev: true 2411 | 2412 | /nanoid@3.3.8: 2413 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 2414 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2415 | hasBin: true 2416 | dev: true 2417 | 2418 | /natural-compare@1.4.0: 2419 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 2420 | dev: true 2421 | 2422 | /normalize-path@3.0.0: 2423 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 2424 | engines: {node: '>=0.10.0'} 2425 | dev: true 2426 | 2427 | /once@1.4.0: 2428 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2429 | dependencies: 2430 | wrappy: 1.0.2 2431 | dev: true 2432 | 2433 | /optionator@0.9.3: 2434 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 2435 | engines: {node: '>= 0.8.0'} 2436 | dependencies: 2437 | '@aashutoshrathi/word-wrap': 1.2.6 2438 | deep-is: 0.1.4 2439 | fast-levenshtein: 2.0.6 2440 | levn: 0.4.1 2441 | prelude-ls: 1.2.1 2442 | type-check: 0.4.0 2443 | dev: true 2444 | 2445 | /p-limit@3.1.0: 2446 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2447 | engines: {node: '>=10'} 2448 | dependencies: 2449 | yocto-queue: 0.1.0 2450 | dev: true 2451 | 2452 | /p-locate@5.0.0: 2453 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2454 | engines: {node: '>=10'} 2455 | dependencies: 2456 | p-limit: 3.1.0 2457 | dev: true 2458 | 2459 | /pako@2.1.0: 2460 | resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==} 2461 | dev: true 2462 | 2463 | /parent-module@1.0.1: 2464 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2465 | engines: {node: '>=6'} 2466 | dependencies: 2467 | callsites: 3.1.0 2468 | dev: true 2469 | 2470 | /path-exists@4.0.0: 2471 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2472 | engines: {node: '>=8'} 2473 | dev: true 2474 | 2475 | /path-is-absolute@1.0.1: 2476 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2477 | engines: {node: '>=0.10.0'} 2478 | dev: true 2479 | 2480 | /path-key@3.1.1: 2481 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2482 | engines: {node: '>=8'} 2483 | dev: true 2484 | 2485 | /path-type@4.0.0: 2486 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2487 | engines: {node: '>=8'} 2488 | dev: true 2489 | 2490 | /pbf@3.2.1: 2491 | resolution: {integrity: sha512-ClrV7pNOn7rtmoQVF4TS1vyU0WhYRnP92fzbfF75jAIwpnzdJXf8iTd4CMEqO4yUenH6NDqLiwjqlh6QgZzgLQ==} 2492 | hasBin: true 2493 | dependencies: 2494 | ieee754: 1.2.1 2495 | resolve-protobuf-schema: 2.1.0 2496 | dev: true 2497 | 2498 | /performance-now@2.1.0: 2499 | resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==} 2500 | requiresBuild: true 2501 | dev: true 2502 | optional: true 2503 | 2504 | /periscopic@3.1.0: 2505 | resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==} 2506 | dependencies: 2507 | '@types/estree': 1.0.6 2508 | estree-walker: 3.0.3 2509 | is-reference: 3.0.1 2510 | dev: true 2511 | 2512 | /picocolors@1.0.0: 2513 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2514 | dev: true 2515 | 2516 | /picocolors@1.1.1: 2517 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 2518 | dev: true 2519 | 2520 | /picomatch@2.3.1: 2521 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2522 | engines: {node: '>=8.6'} 2523 | dev: true 2524 | 2525 | /pmtiles@3.0.5: 2526 | resolution: {integrity: sha512-K6NxVvW/vXE3052VZKF2ppyjdyhLx41FidR5yV8L/+El+lcMJpXS0vHBSPFmjdag5zkYv2XGDdq+3VjB2K7l6w==} 2527 | dependencies: 2528 | '@types/leaflet': 1.9.8 2529 | fflate: 0.8.0 2530 | dev: true 2531 | 2532 | /postcss-load-config@3.1.4(postcss@8.4.28): 2533 | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} 2534 | engines: {node: '>= 10'} 2535 | peerDependencies: 2536 | postcss: '>=8.0.9' 2537 | ts-node: '>=9.0.0' 2538 | peerDependenciesMeta: 2539 | postcss: 2540 | optional: true 2541 | ts-node: 2542 | optional: true 2543 | dependencies: 2544 | lilconfig: 2.1.0 2545 | postcss: 8.4.28 2546 | yaml: 1.10.2 2547 | dev: true 2548 | 2549 | /postcss-safe-parser@6.0.0(postcss@8.4.28): 2550 | resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} 2551 | engines: {node: '>=12.0'} 2552 | peerDependencies: 2553 | postcss: ^8.3.3 2554 | dependencies: 2555 | postcss: 8.4.28 2556 | dev: true 2557 | 2558 | /postcss-scss@4.0.7(postcss@8.4.28): 2559 | resolution: {integrity: sha512-xPv2GseoyXPa58Nro7M73ZntttusuCmZdeOojUFR5PZDz2BR62vfYx1w9TyOnp1+nYFowgOMipsCBhxzVkAEPw==} 2560 | engines: {node: '>=12.0'} 2561 | peerDependencies: 2562 | postcss: ^8.4.19 2563 | dependencies: 2564 | postcss: 8.4.28 2565 | dev: true 2566 | 2567 | /postcss-selector-parser@6.0.13: 2568 | resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} 2569 | engines: {node: '>=4'} 2570 | dependencies: 2571 | cssesc: 3.0.0 2572 | util-deprecate: 1.0.2 2573 | dev: true 2574 | 2575 | /postcss@8.4.28: 2576 | resolution: {integrity: sha512-Z7V5j0cq8oEKyejIKfpD8b4eBy9cwW2JWPk0+fB1HOAMsfHbnAXLLS+PfVWlzMSLQaWttKDt607I0XHmpE67Vw==} 2577 | engines: {node: ^10 || ^12 || >=14} 2578 | dependencies: 2579 | nanoid: 3.3.7 2580 | picocolors: 1.0.0 2581 | source-map-js: 1.0.2 2582 | dev: true 2583 | 2584 | /postcss@8.5.1: 2585 | resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==} 2586 | engines: {node: ^10 || ^12 || >=14} 2587 | dependencies: 2588 | nanoid: 3.3.8 2589 | picocolors: 1.1.1 2590 | source-map-js: 1.2.1 2591 | dev: true 2592 | 2593 | /potpack@2.0.0: 2594 | resolution: {integrity: sha512-Q+/tYsFU9r7xoOJ+y/ZTtdVQwTWfzjbiXBDMM/JKUux3+QPP02iUuIoeBQ+Ot6oEDlC+/PGjB/5A3K7KKb7hcw==} 2595 | dev: true 2596 | 2597 | /prelude-ls@1.2.1: 2598 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2599 | engines: {node: '>= 0.8.0'} 2600 | dev: true 2601 | 2602 | /prettier-plugin-svelte@3.0.3(prettier@3.0.3)(svelte@4.0.5): 2603 | resolution: {integrity: sha512-dLhieh4obJEK1hnZ6koxF+tMUrZbV5YGvRpf2+OADyanjya5j0z1Llo8iGwiHmFWZVG/hLEw/AJD5chXd9r3XA==} 2604 | peerDependencies: 2605 | prettier: ^3.0.0 2606 | svelte: ^3.2.0 || ^4.0.0-next.0 2607 | dependencies: 2608 | prettier: 3.0.3 2609 | svelte: 4.0.5 2610 | dev: true 2611 | 2612 | /prettier@3.0.3: 2613 | resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==} 2614 | engines: {node: '>=14'} 2615 | hasBin: true 2616 | dev: true 2617 | 2618 | /protocol-buffers-schema@3.6.0: 2619 | resolution: {integrity: sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==} 2620 | dev: true 2621 | 2622 | /punycode@2.3.0: 2623 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 2624 | engines: {node: '>=6'} 2625 | dev: true 2626 | 2627 | /queue-microtask@1.2.3: 2628 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2629 | dev: true 2630 | 2631 | /quickselect@2.0.0: 2632 | resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==} 2633 | dev: true 2634 | 2635 | /raf@3.4.1: 2636 | resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==} 2637 | requiresBuild: true 2638 | dependencies: 2639 | performance-now: 2.1.0 2640 | dev: true 2641 | optional: true 2642 | 2643 | /readdirp@3.6.0: 2644 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2645 | engines: {node: '>=8.10.0'} 2646 | dependencies: 2647 | picomatch: 2.3.1 2648 | dev: true 2649 | 2650 | /regenerator-runtime@0.13.11: 2651 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 2652 | requiresBuild: true 2653 | dev: true 2654 | optional: true 2655 | 2656 | /regenerator-runtime@0.14.0: 2657 | resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} 2658 | dev: true 2659 | 2660 | /resolve-from@4.0.0: 2661 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2662 | engines: {node: '>=4'} 2663 | dev: true 2664 | 2665 | /resolve-protobuf-schema@2.1.0: 2666 | resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==} 2667 | dependencies: 2668 | protocol-buffers-schema: 3.6.0 2669 | dev: true 2670 | 2671 | /reusify@1.0.4: 2672 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2673 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2674 | dev: true 2675 | 2676 | /rgbcolor@1.0.1: 2677 | resolution: {integrity: sha512-9aZLIrhRaD97sgVhtJOW6ckOEh6/GnvQtdVNfdZ6s67+3/XwLS9lBcQYzEEhYVeUowN7pRzMLsyGhK2i/xvWbw==} 2678 | engines: {node: '>= 0.8.15'} 2679 | requiresBuild: true 2680 | dev: true 2681 | optional: true 2682 | 2683 | /rimraf@2.7.1: 2684 | resolution: {integrity: sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==} 2685 | hasBin: true 2686 | dependencies: 2687 | glob: 7.2.3 2688 | dev: true 2689 | 2690 | /rimraf@3.0.2: 2691 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2692 | hasBin: true 2693 | dependencies: 2694 | glob: 7.2.3 2695 | dev: true 2696 | 2697 | /rollup@4.31.0: 2698 | resolution: {integrity: sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==} 2699 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 2700 | hasBin: true 2701 | dependencies: 2702 | '@types/estree': 1.0.6 2703 | optionalDependencies: 2704 | '@rollup/rollup-android-arm-eabi': 4.31.0 2705 | '@rollup/rollup-android-arm64': 4.31.0 2706 | '@rollup/rollup-darwin-arm64': 4.31.0 2707 | '@rollup/rollup-darwin-x64': 4.31.0 2708 | '@rollup/rollup-freebsd-arm64': 4.31.0 2709 | '@rollup/rollup-freebsd-x64': 4.31.0 2710 | '@rollup/rollup-linux-arm-gnueabihf': 4.31.0 2711 | '@rollup/rollup-linux-arm-musleabihf': 4.31.0 2712 | '@rollup/rollup-linux-arm64-gnu': 4.31.0 2713 | '@rollup/rollup-linux-arm64-musl': 4.31.0 2714 | '@rollup/rollup-linux-loongarch64-gnu': 4.31.0 2715 | '@rollup/rollup-linux-powerpc64le-gnu': 4.31.0 2716 | '@rollup/rollup-linux-riscv64-gnu': 4.31.0 2717 | '@rollup/rollup-linux-s390x-gnu': 4.31.0 2718 | '@rollup/rollup-linux-x64-gnu': 4.31.0 2719 | '@rollup/rollup-linux-x64-musl': 4.31.0 2720 | '@rollup/rollup-win32-arm64-msvc': 4.31.0 2721 | '@rollup/rollup-win32-ia32-msvc': 4.31.0 2722 | '@rollup/rollup-win32-x64-msvc': 4.31.0 2723 | fsevents: 2.3.3 2724 | dev: true 2725 | 2726 | /run-parallel@1.2.0: 2727 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2728 | dependencies: 2729 | queue-microtask: 1.2.3 2730 | dev: true 2731 | 2732 | /rw@1.3.3: 2733 | resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} 2734 | dev: true 2735 | 2736 | /sade@1.8.1: 2737 | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 2738 | engines: {node: '>=6'} 2739 | dependencies: 2740 | mri: 1.2.0 2741 | dev: true 2742 | 2743 | /sander@0.5.1: 2744 | resolution: {integrity: sha512-3lVqBir7WuKDHGrKRDn/1Ye3kwpXaDOMsiRP1wd6wpZW56gJhsbp5RqQpA6JG/P+pkXizygnr1dKR8vzWaVsfA==} 2745 | dependencies: 2746 | es6-promise: 3.3.1 2747 | graceful-fs: 4.2.11 2748 | mkdirp: 0.5.6 2749 | rimraf: 2.7.1 2750 | dev: true 2751 | 2752 | /sass@1.68.0: 2753 | resolution: {integrity: sha512-Lmj9lM/fef0nQswm1J2HJcEsBUba4wgNx2fea6yJHODREoMFnwRpZydBnX/RjyXw2REIwdkbqE4hrTo4qfDBUA==} 2754 | engines: {node: '>=14.0.0'} 2755 | hasBin: true 2756 | dependencies: 2757 | chokidar: 3.5.3 2758 | immutable: 4.3.2 2759 | source-map-js: 1.0.2 2760 | dev: true 2761 | 2762 | /sass@1.75.0: 2763 | resolution: {integrity: sha512-ShMYi3WkrDWxExyxSZPst4/okE9ts46xZmJDSawJQrnte7M1V9fScVB+uNXOVKRBt0PggHOwoZcn8mYX4trnBw==} 2764 | engines: {node: '>=14.0.0'} 2765 | hasBin: true 2766 | dependencies: 2767 | chokidar: 3.5.3 2768 | immutable: 4.3.2 2769 | source-map-js: 1.0.2 2770 | dev: true 2771 | 2772 | /semver@7.5.4: 2773 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 2774 | engines: {node: '>=10'} 2775 | hasBin: true 2776 | dependencies: 2777 | lru-cache: 6.0.0 2778 | dev: true 2779 | 2780 | /set-cookie-parser@2.7.1: 2781 | resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==} 2782 | dev: true 2783 | 2784 | /set-value@2.0.1: 2785 | resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==} 2786 | engines: {node: '>=0.10.0'} 2787 | dependencies: 2788 | extend-shallow: 2.0.1 2789 | is-extendable: 0.1.1 2790 | is-plain-object: 2.0.4 2791 | split-string: 3.1.0 2792 | dev: true 2793 | 2794 | /shebang-command@2.0.0: 2795 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2796 | engines: {node: '>=8'} 2797 | dependencies: 2798 | shebang-regex: 3.0.0 2799 | dev: true 2800 | 2801 | /shebang-regex@3.0.0: 2802 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2803 | engines: {node: '>=8'} 2804 | dev: true 2805 | 2806 | /sirv@3.0.0: 2807 | resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==} 2808 | engines: {node: '>=18'} 2809 | dependencies: 2810 | '@polka/url': 1.0.0-next.28 2811 | mrmime: 2.0.0 2812 | totalist: 3.0.1 2813 | dev: true 2814 | 2815 | /slash@3.0.0: 2816 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2817 | engines: {node: '>=8'} 2818 | dev: true 2819 | 2820 | /sorcery@0.11.0: 2821 | resolution: {integrity: sha512-J69LQ22xrQB1cIFJhPfgtLuI6BpWRiWu1Y3vSsIwK/eAScqJxd/+CJlUuHQRdX2C9NGFamq+KqNywGgaThwfHw==} 2822 | hasBin: true 2823 | dependencies: 2824 | '@jridgewell/sourcemap-codec': 1.5.0 2825 | buffer-crc32: 0.2.13 2826 | minimist: 1.2.8 2827 | sander: 0.5.1 2828 | dev: true 2829 | 2830 | /sort-asc@0.1.0: 2831 | resolution: {integrity: sha512-jBgdDd+rQ+HkZF2/OHCmace5dvpos/aWQpcxuyRs9QUbPRnkEJmYVo81PIGpjIdpOcsnJ4rGjStfDHsbn+UVyw==} 2832 | engines: {node: '>=0.10.0'} 2833 | dev: true 2834 | 2835 | /sort-asc@0.2.0: 2836 | resolution: {integrity: sha512-umMGhjPeHAI6YjABoSTrFp2zaBtXBej1a0yKkuMUyjjqu6FJsTF+JYwCswWDg+zJfk/5npWUUbd33HH/WLzpaA==} 2837 | engines: {node: '>=0.10.0'} 2838 | dev: true 2839 | 2840 | /sort-desc@0.1.1: 2841 | resolution: {integrity: sha512-jfZacW5SKOP97BF5rX5kQfJmRVZP5/adDUTY8fCSPvNcXDVpUEe2pr/iKGlcyZzchRJZrswnp68fgk3qBXgkJw==} 2842 | engines: {node: '>=0.10.0'} 2843 | dev: true 2844 | 2845 | /sort-desc@0.2.0: 2846 | resolution: {integrity: sha512-NqZqyvL4VPW+RAxxXnB8gvE1kyikh8+pR+T+CXLksVRN9eiQqkQlPwqWYU0mF9Jm7UnctShlxLyAt1CaBOTL1w==} 2847 | engines: {node: '>=0.10.0'} 2848 | dev: true 2849 | 2850 | /sort-object@0.3.2: 2851 | resolution: {integrity: sha512-aAQiEdqFTTdsvUFxXm3umdo04J7MRljoVGbBlkH7BgNsMvVNAJyGj7C/wV1A8wHWAJj/YikeZbfuCKqhggNWGA==} 2852 | engines: {node: '>=0.10.0'} 2853 | dependencies: 2854 | sort-asc: 0.1.0 2855 | sort-desc: 0.1.1 2856 | dev: true 2857 | 2858 | /sort-object@3.0.3: 2859 | resolution: {integrity: sha512-nK7WOY8jik6zaG9CRwZTaD5O7ETWDLZYMM12pqY8htll+7dYeqGfEUPcUBHOpSJg2vJOrvFIY2Dl5cX2ih1hAQ==} 2860 | engines: {node: '>=0.10.0'} 2861 | dependencies: 2862 | bytewise: 1.1.0 2863 | get-value: 2.0.6 2864 | is-extendable: 0.1.1 2865 | sort-asc: 0.2.0 2866 | sort-desc: 0.2.0 2867 | union-value: 1.0.1 2868 | dev: true 2869 | 2870 | /source-map-js@1.0.2: 2871 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 2872 | engines: {node: '>=0.10.0'} 2873 | dev: true 2874 | 2875 | /source-map-js@1.2.1: 2876 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 2877 | engines: {node: '>=0.10.0'} 2878 | dev: true 2879 | 2880 | /split-string@3.1.0: 2881 | resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==} 2882 | engines: {node: '>=0.10.0'} 2883 | dependencies: 2884 | extend-shallow: 3.0.2 2885 | dev: true 2886 | 2887 | /stackblur-canvas@2.6.0: 2888 | resolution: {integrity: sha512-8S1aIA+UoF6erJYnglGPug6MaHYGo1Ot7h5fuXx4fUPvcvQfcdw2o/ppCse63+eZf8PPidSu4v1JnmEVtEDnpg==} 2889 | engines: {node: '>=0.1.14'} 2890 | requiresBuild: true 2891 | dev: true 2892 | optional: true 2893 | 2894 | /strip-ansi@6.0.1: 2895 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2896 | engines: {node: '>=8'} 2897 | dependencies: 2898 | ansi-regex: 5.0.1 2899 | dev: true 2900 | 2901 | /strip-indent@3.0.0: 2902 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 2903 | engines: {node: '>=8'} 2904 | dependencies: 2905 | min-indent: 1.0.1 2906 | dev: true 2907 | 2908 | /strip-json-comments@3.1.1: 2909 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2910 | engines: {node: '>=8'} 2911 | dev: true 2912 | 2913 | /subtag@0.5.0: 2914 | resolution: {integrity: sha512-CaIBcTSb/nyk4xiiSOtZYz1B+F12ZxW8NEp54CdT+84vmh/h4sUnHGC6+KQXUfED8u22PQjCYWfZny8d2ELXwg==} 2915 | dev: true 2916 | 2917 | /suggestions-list@0.0.2: 2918 | resolution: {integrity: sha512-Yw0fdq14c6RQWQIfE1/8WEi9Dp8rjyCD6FhYA/Tit2/ADbE9Y4ADG4ezlvivsa8Civ5nz++pyVVBMjOMlgIUJw==} 2919 | dependencies: 2920 | fuzzy: 0.1.3 2921 | xtend: 4.0.2 2922 | dev: true 2923 | 2924 | /supercluster@8.0.1: 2925 | resolution: {integrity: sha512-IiOea5kJ9iqzD2t7QJq/cREyLHTtSmUT6gQsweojg9WH2sYJqZK9SswTu6jrscO6D1G5v5vYZ9ru/eq85lXeZQ==} 2926 | dependencies: 2927 | kdbush: 4.0.2 2928 | dev: true 2929 | 2930 | /supports-color@7.2.0: 2931 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2932 | engines: {node: '>=8'} 2933 | dependencies: 2934 | has-flag: 4.0.0 2935 | dev: true 2936 | 2937 | /svelte-awesome-color-picker@2.4.8: 2938 | resolution: {integrity: sha512-p6yzMMeo/IjqKMYb8oXa2vGbbRvtEDvi8LejGpY8AsZsjNwXSR0WKxQplaz67u1eqZFIRLPX0+IknQrhT5gI+g==} 2939 | dependencies: 2940 | colord: 2.9.3 2941 | dev: true 2942 | 2943 | /svelte-check@3.5.2(postcss@8.4.28)(sass@1.68.0)(svelte@4.0.5): 2944 | resolution: {integrity: sha512-5a/YWbiH4c+AqAUP+0VneiV5bP8YOk9JL3jwvN+k2PEPLgpu85bjQc5eE67+eIZBBwUEJzmO3I92OqKcqbp3fw==} 2945 | hasBin: true 2946 | peerDependencies: 2947 | svelte: ^3.55.0 || ^4.0.0-next.0 || ^4.0.0 2948 | dependencies: 2949 | '@jridgewell/trace-mapping': 0.3.19 2950 | chokidar: 3.5.3 2951 | fast-glob: 3.3.1 2952 | import-fresh: 3.3.0 2953 | picocolors: 1.0.0 2954 | sade: 1.8.1 2955 | svelte: 4.0.5 2956 | svelte-preprocess: 5.0.4(postcss@8.4.28)(sass@1.68.0)(svelte@4.0.5)(typescript@5.5.2) 2957 | typescript: 5.5.2 2958 | transitivePeerDependencies: 2959 | - '@babel/core' 2960 | - coffeescript 2961 | - less 2962 | - postcss 2963 | - postcss-load-config 2964 | - pug 2965 | - sass 2966 | - stylus 2967 | - sugarss 2968 | dev: true 2969 | 2970 | /svelte-copy@1.4.1(svelte@4.0.5): 2971 | resolution: {integrity: sha512-ixNNlTfIQWYnQzE0pdMYVCS/2jzMhXm41jmtSvk8EK2Dh+B5sDFEz2xYYo4fVtwtK0dLW5M5ZH/Rs5Jah0r6dw==} 2972 | peerDependencies: 2973 | svelte: ^3.55.0 || ^4.0.0 2974 | dependencies: 2975 | svelte: 4.0.5 2976 | dev: true 2977 | 2978 | /svelte-eslint-parser@0.33.0(svelte@4.0.5): 2979 | resolution: {integrity: sha512-5awZ6Bs+Tb/zQwa41PSdcLynAVQTwW0HGyCBjtbAQ59taLZqDgQSMzRlDmapjZdDtzERm0oXDZNE0E+PKJ6ryg==} 2980 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2981 | peerDependencies: 2982 | svelte: ^3.37.0 || ^4.0.0 2983 | peerDependenciesMeta: 2984 | svelte: 2985 | optional: true 2986 | dependencies: 2987 | eslint-scope: 7.2.2 2988 | eslint-visitor-keys: 3.4.3 2989 | espree: 9.6.1 2990 | postcss: 8.4.28 2991 | postcss-scss: 4.0.7(postcss@8.4.28) 2992 | svelte: 4.0.5 2993 | dev: true 2994 | 2995 | /svelte-fa@4.0.2(svelte@4.0.5): 2996 | resolution: {integrity: sha512-lza8Jfii6jcpMQB73mBStONxaLfZsUS+rKJ/hH6WxsHUd+g68+oHIL9yQTk4a0uY9HQk78T/CPvQnED0msqJfg==} 2997 | peerDependencies: 2998 | svelte: ^4.0.0 2999 | dependencies: 3000 | svelte: 4.0.5 3001 | dev: true 3002 | 3003 | /svelte-hmr@0.15.3(svelte@4.0.5): 3004 | resolution: {integrity: sha512-41snaPswvSf8TJUhlkoJBekRrABDXDMdpNpT2tfHIv4JuhgvHqLMhEPGtaQn0BmbNSTkuz2Ed20DF2eHw0SmBQ==} 3005 | engines: {node: ^12.20 || ^14.13.1 || >= 16} 3006 | peerDependencies: 3007 | svelte: ^3.19.0 || ^4.0.0 3008 | dependencies: 3009 | svelte: 4.0.5 3010 | dev: true 3011 | 3012 | /svelte-popperjs@1.3.2(@popperjs/core@2.11.8)(svelte@4.0.5): 3013 | resolution: {integrity: sha512-fwrErlkvngL876WXRnL3OLlfk/n9YkZwwLxuKRpZOYCJLt1zrwhoKTXS+/sRgDveD/zd6GQ35hV89EOip+NBGA==} 3014 | peerDependencies: 3015 | '@popperjs/core': '>=2' 3016 | svelte: '>=3' 3017 | dependencies: 3018 | '@popperjs/core': 2.11.8 3019 | svelte: 4.0.5 3020 | dev: true 3021 | 3022 | /svelte-preprocess@5.0.4(postcss@8.4.28)(sass@1.68.0)(svelte@4.0.5)(typescript@5.5.2): 3023 | resolution: {integrity: sha512-ABia2QegosxOGsVlsSBJvoWeXy1wUKSfF7SWJdTjLAbx/Y3SrVevvvbFNQqrSJw89+lNSsM58SipmZJ5SRi5iw==} 3024 | engines: {node: '>= 14.10.0'} 3025 | requiresBuild: true 3026 | peerDependencies: 3027 | '@babel/core': ^7.10.2 3028 | coffeescript: ^2.5.1 3029 | less: ^3.11.3 || ^4.0.0 3030 | postcss: ^7 || ^8 3031 | postcss-load-config: ^2.1.0 || ^3.0.0 || ^4.0.0 3032 | pug: ^3.0.0 3033 | sass: ^1.26.8 3034 | stylus: ^0.55.0 3035 | sugarss: ^2.0.0 || ^3.0.0 || ^4.0.0 3036 | svelte: ^3.23.0 || ^4.0.0-next.0 || ^4.0.0 3037 | typescript: '>=3.9.5 || ^4.0.0 || ^5.0.0' 3038 | peerDependenciesMeta: 3039 | '@babel/core': 3040 | optional: true 3041 | coffeescript: 3042 | optional: true 3043 | less: 3044 | optional: true 3045 | postcss: 3046 | optional: true 3047 | postcss-load-config: 3048 | optional: true 3049 | pug: 3050 | optional: true 3051 | sass: 3052 | optional: true 3053 | stylus: 3054 | optional: true 3055 | sugarss: 3056 | optional: true 3057 | typescript: 3058 | optional: true 3059 | dependencies: 3060 | '@types/pug': 2.0.6 3061 | detect-indent: 6.1.0 3062 | magic-string: 0.27.0 3063 | postcss: 8.4.28 3064 | sass: 1.68.0 3065 | sorcery: 0.11.0 3066 | strip-indent: 3.0.0 3067 | svelte: 4.0.5 3068 | typescript: 5.5.2 3069 | dev: true 3070 | 3071 | /svelte-range-slider-pips@2.3.1: 3072 | resolution: {integrity: sha512-P29PNqHld+SiaDuHzf98rLvhSYWXb3TVL9p7U5RG9UX8emUgypZgp9zuIIwpmIXysGQC6JG8duMc5FuaPnSVdg==} 3073 | dev: true 3074 | 3075 | /svelte-tippy@1.3.2: 3076 | resolution: {integrity: sha512-41f+85hwhKBRqX0UNYrgFsi34Kk/KDvUkIZXYANxkWoA2NTVTCZbUC2J8hRNZ4TRVxObTshoZRjK2co5+i6LMw==} 3077 | dependencies: 3078 | tippy.js: 6.3.7 3079 | dev: true 3080 | 3081 | /svelte-use-click-outside@1.0.0: 3082 | resolution: {integrity: sha512-tOWeMPxeIoW9RshS0WbogRhdYdbxcJV0ebkzSh1lwR7Ihl0hSZMmB4YyCHHoXJK4xcbxCCFh0AnQ1vkzGZfLVQ==} 3083 | dev: true 3084 | 3085 | /svelte@4.0.5: 3086 | resolution: {integrity: sha512-PHKPWP1wiWHBtsE57nCb8xiWB3Ht7/3Kvi3jac0XIxUM2rep8alO7YoAtgWeGD7++tFy46krilOrPW0mG3Dx+A==} 3087 | engines: {node: '>=16'} 3088 | dependencies: 3089 | '@ampproject/remapping': 2.2.1 3090 | '@jridgewell/sourcemap-codec': 1.4.15 3091 | '@jridgewell/trace-mapping': 0.3.19 3092 | acorn: 8.10.0 3093 | aria-query: 5.3.0 3094 | axobject-query: 3.2.1 3095 | code-red: 1.0.4 3096 | css-tree: 2.3.1 3097 | estree-walker: 3.0.3 3098 | is-reference: 3.0.1 3099 | locate-character: 3.0.0 3100 | magic-string: 0.30.2 3101 | periscopic: 3.1.0 3102 | dev: true 3103 | 3104 | /svg-pathdata@6.0.3: 3105 | resolution: {integrity: sha512-qsjeeq5YjBZ5eMdFuUa4ZosMLxgr5RZ+F+Y1OrDhuOCEInRMA3x74XdBtggJcj9kOeInz0WE+LgCPDkZFlBYJw==} 3106 | engines: {node: '>=12.0.0'} 3107 | requiresBuild: true 3108 | dev: true 3109 | optional: true 3110 | 3111 | /text-segmentation@1.0.3: 3112 | resolution: {integrity: sha512-iOiPUo/BGnZ6+54OsWxZidGCsdU8YbE4PSpdPinp7DeMtUJNJBoJ/ouUSTJjHkh1KntHaltHl/gDs2FC4i5+Nw==} 3113 | requiresBuild: true 3114 | dependencies: 3115 | utrie: 1.0.2 3116 | dev: true 3117 | optional: true 3118 | 3119 | /text-table@0.2.0: 3120 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 3121 | dev: true 3122 | 3123 | /tiny-glob@0.2.9: 3124 | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} 3125 | dependencies: 3126 | globalyzer: 0.1.0 3127 | globrex: 0.1.2 3128 | dev: true 3129 | 3130 | /tinyqueue@2.0.3: 3131 | resolution: {integrity: sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA==} 3132 | dev: true 3133 | 3134 | /tippy.js@6.3.7: 3135 | resolution: {integrity: sha512-E1d3oP2emgJ9dRQZdf3Kkn0qJgI6ZLpyS5z6ZkY1DF3kaQaBsGZsndEpHwx+eC+tYM41HaSNvNtLx8tU57FzTQ==} 3136 | dependencies: 3137 | '@popperjs/core': 2.11.8 3138 | dev: true 3139 | 3140 | /to-regex-range@5.0.1: 3141 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3142 | engines: {node: '>=8.0'} 3143 | dependencies: 3144 | is-number: 7.0.0 3145 | dev: true 3146 | 3147 | /totalist@3.0.1: 3148 | resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} 3149 | engines: {node: '>=6'} 3150 | dev: true 3151 | 3152 | /ts-api-utils@1.0.2(typescript@5.5.2): 3153 | resolution: {integrity: sha512-Cbu4nIqnEdd+THNEsBdkolnOXhg0I8XteoHaEKgvsxpsbWda4IsUut2c187HxywQCvveojow0Dgw/amxtSKVkQ==} 3154 | engines: {node: '>=16.13.0'} 3155 | peerDependencies: 3156 | typescript: '>=4.2.0' 3157 | dependencies: 3158 | typescript: 5.5.2 3159 | dev: true 3160 | 3161 | /tslib@2.6.2: 3162 | resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} 3163 | dev: true 3164 | 3165 | /type-check@0.4.0: 3166 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 3167 | engines: {node: '>= 0.8.0'} 3168 | dependencies: 3169 | prelude-ls: 1.2.1 3170 | dev: true 3171 | 3172 | /type-fest@0.20.2: 3173 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 3174 | engines: {node: '>=10'} 3175 | dev: true 3176 | 3177 | /typescript@5.5.2: 3178 | resolution: {integrity: sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==} 3179 | engines: {node: '>=14.17'} 3180 | hasBin: true 3181 | dev: true 3182 | 3183 | /typewise-core@1.2.0: 3184 | resolution: {integrity: sha512-2SCC/WLzj2SbUwzFOzqMCkz5amXLlxtJqDKTICqg30x+2DZxcfZN2MvQZmGfXWKNWaKK9pBPsvkcwv8bF/gxKg==} 3185 | dev: true 3186 | 3187 | /typewise@1.0.3: 3188 | resolution: {integrity: sha512-aXofE06xGhaQSPzt8hlTY+/YWQhm9P0jYUp1f2XtmW/3Bk0qzXcyFWAtPoo2uTGQj1ZwbDuSyuxicq+aDo8lCQ==} 3189 | dependencies: 3190 | typewise-core: 1.2.0 3191 | dev: true 3192 | 3193 | /union-value@1.0.1: 3194 | resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} 3195 | engines: {node: '>=0.10.0'} 3196 | dependencies: 3197 | arr-union: 3.1.0 3198 | get-value: 2.0.6 3199 | is-extendable: 0.1.1 3200 | set-value: 2.0.1 3201 | dev: true 3202 | 3203 | /uri-js@4.4.1: 3204 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 3205 | dependencies: 3206 | punycode: 2.3.0 3207 | dev: true 3208 | 3209 | /util-deprecate@1.0.2: 3210 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 3211 | dev: true 3212 | 3213 | /utrie@1.0.2: 3214 | resolution: {integrity: sha512-1MLa5ouZiOmQzUbjbu9VmjLzn1QLXBhwpUa7kdLUQK+KQ5KA9I1vk5U4YHe/X2Ch7PYnJfWuWT+VbuxbGwljhw==} 3215 | requiresBuild: true 3216 | dependencies: 3217 | base64-arraybuffer: 1.0.2 3218 | dev: true 3219 | optional: true 3220 | 3221 | /vite@5.4.12(@types/node@20.8.0)(sass@1.68.0): 3222 | resolution: {integrity: sha512-KwUaKB27TvWwDJr1GjjWthLMATbGEbeWYZIbGZ5qFIsgPP3vWzLu4cVooqhm5/Z2SPDUMjyPVjTztm5tYKwQxA==} 3223 | engines: {node: ^18.0.0 || >=20.0.0} 3224 | hasBin: true 3225 | peerDependencies: 3226 | '@types/node': ^18.0.0 || >=20.0.0 3227 | less: '*' 3228 | lightningcss: ^1.21.0 3229 | sass: '*' 3230 | sass-embedded: '*' 3231 | stylus: '*' 3232 | sugarss: '*' 3233 | terser: ^5.4.0 3234 | peerDependenciesMeta: 3235 | '@types/node': 3236 | optional: true 3237 | less: 3238 | optional: true 3239 | lightningcss: 3240 | optional: true 3241 | sass: 3242 | optional: true 3243 | sass-embedded: 3244 | optional: true 3245 | stylus: 3246 | optional: true 3247 | sugarss: 3248 | optional: true 3249 | terser: 3250 | optional: true 3251 | dependencies: 3252 | '@types/node': 20.8.0 3253 | esbuild: 0.21.5 3254 | postcss: 8.5.1 3255 | rollup: 4.31.0 3256 | sass: 1.68.0 3257 | optionalDependencies: 3258 | fsevents: 2.3.3 3259 | dev: true 3260 | 3261 | /vitefu@0.2.5(vite@5.4.12): 3262 | resolution: {integrity: sha512-SgHtMLoqaeeGnd2evZ849ZbACbnwQCIwRH57t18FxcXoZop0uQu0uzlIhJBlF/eWVzuce0sHeqPcDo+evVcg8Q==} 3263 | peerDependencies: 3264 | vite: ^3.0.0 || ^4.0.0 || ^5.0.0 3265 | peerDependenciesMeta: 3266 | vite: 3267 | optional: true 3268 | dependencies: 3269 | vite: 5.4.12(@types/node@20.8.0)(sass@1.68.0) 3270 | dev: true 3271 | 3272 | /vt-pbf@3.1.3: 3273 | resolution: {integrity: sha512-2LzDFzt0mZKZ9IpVF2r69G9bXaP2Q2sArJCmcCgvfTdCCZzSyz4aCLoQyUilu37Ll56tCblIZrXFIjNUpGIlmA==} 3274 | dependencies: 3275 | '@mapbox/point-geometry': 0.1.0 3276 | '@mapbox/vector-tile': 1.3.1 3277 | pbf: 3.2.1 3278 | dev: true 3279 | 3280 | /webp-hero@0.0.0-dev.27: 3281 | resolution: {integrity: sha512-ptEl95qLj2bDweaEw3UR9w8pucJ7KA9OlzUYLkV+zhb3OrZyIC6mNDdZFHzWpzuBDAtfS5jM24vj/aOje/8cKQ==} 3282 | dev: true 3283 | 3284 | /which@1.3.1: 3285 | resolution: {integrity: sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==} 3286 | hasBin: true 3287 | dependencies: 3288 | isexe: 2.0.0 3289 | dev: true 3290 | 3291 | /which@2.0.2: 3292 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 3293 | engines: {node: '>= 8'} 3294 | hasBin: true 3295 | dependencies: 3296 | isexe: 2.0.0 3297 | dev: true 3298 | 3299 | /wrappy@1.0.2: 3300 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 3301 | dev: true 3302 | 3303 | /xtend@4.0.2: 3304 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 3305 | engines: {node: '>=0.4'} 3306 | dev: true 3307 | 3308 | /yallist@4.0.0: 3309 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 3310 | dev: true 3311 | 3312 | /yaml@1.10.2: 3313 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 3314 | engines: {node: '>= 6'} 3315 | dev: true 3316 | 3317 | /yocto-queue@0.1.0: 3318 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 3319 | engines: {node: '>=10'} 3320 | dev: true 3321 | -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://docs.renovatebot.com/renovate-schema.json", 3 | "extends": [ 4 | "github>whitesource/merge-confidence:beta", 5 | "config:base", 6 | ":preserveSemverRanges", 7 | "group:allNonMajor", 8 | ":semanticCommitTypeAll(chore)" 9 | ], 10 | "lockFileMaintenance": { 11 | "enabled": true, 12 | "automerge": true 13 | }, 14 | "packageRules": [ 15 | { 16 | "matchPackageNames": ["@types/node", "vite"], 17 | "matchUpdateTypes": ["minor", "patch", "pin", "digest"] 18 | }, 19 | { 20 | "matchDepTypes": ["devDependencies"], 21 | "matchPackagePatterns": ["lint", "prettier"], 22 | "automerge": true 23 | }, 24 | { 25 | "matchUpdateTypes": ["minor", "patch"], 26 | "matchCurrentVersion": "!/^0/", 27 | "automerge": true 28 | } 29 | ], 30 | "major": { 31 | "stabilityDays": 7 32 | }, 33 | "minor": { 34 | "stabilityDays": 3 35 | }, 36 | "patch": { 37 | "stabilityDays": 2 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | // See https://kit.svelte.dev/docs/types#app 4 | // for information about these interfaces 5 | declare namespace App { 6 | // interface Locals {} 7 | // interface Platform {} 8 | // interface Session {} 9 | // interface Stuff {} 10 | } 11 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | GIS for Water - Visualise, Analise and Share Water & Sanitation data 7 | 11 | 15 | 16 | 17 | 18 | 19 | 23 | 27 | 28 | 29 | 30 | 31 | 32 | 36 | 40 | 41 | 42 | 43 | 44 | 49 | 50 | %sveltekit.head% 51 | 52 | 67 | 68 |
%sveltekit.body%
69 | 70 | 71 | -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- 1 | import type { Config } from './lib/types'; 2 | 3 | export const config: Config = { 4 | title: 'GIS for Water - Visualise, Analise and Share Water & Sanitation data', 5 | url: 'https://water-gis.com', 6 | logo: 'https://raw.githubusercontent.com/watergis/logo/main/logo.svg', 7 | // basePath: process.env.NODE_ENV === 'production' ? '/sveltekit-watergis-template' : '', 8 | basePath: '', 9 | // change attribution to yours 10 | attribution: '©NARWASSCO', 11 | // change stylefiles URLs to yours 12 | styles: [ 13 | { 14 | title: 'UNVT Water (OSM)', 15 | uri: `https://narwassco.github.io/mapbox-stylefiles/unvt/style.json` 16 | }, 17 | { 18 | title: 'UNVT Water (Building)', 19 | uri: `https://narwassco.github.io/mapbox-stylefiles/unvt/style-buildings.json` 20 | }, 21 | { 22 | title: 'Satellite Water', 23 | uri: `https://narwassco.github.io/mapbox-stylefiles/unvt/style-aerial.json` 24 | }, 25 | { 26 | title: 'UNVT Sewer', 27 | uri: `https://narwassco.github.io/mapbox-stylefiles/unvt/style-sewer.json` 28 | }, 29 | { 30 | title: 'Satellite Sewer', 31 | uri: `https://narwassco.github.io/mapbox-stylefiles/unvt/style-aerial-sewer.json` 32 | } 33 | ], 34 | // change initial location and zoom level to yours 35 | center: { lng: 35.87063, lat: -1.08551 }, 36 | zoom: 13, 37 | // you can put your geojson file for searching functions 38 | search: { 39 | url: 'https://narwassco.github.io/vt/meter.geojson', 40 | target: ['connno', 'serialno'], 41 | format: (p) => { 42 | return `${p.customer}, ${p.connno}, ${p.serialno}, ${p.village}`; 43 | }, 44 | place_type: ['meter'], 45 | placeholder: 'Search CONN NO or S/N', 46 | zoom: 17, 47 | limit: 50 48 | }, 49 | // please specify layers' name for showing popup with attributes table. 50 | popup: { 51 | target: [ 52 | 'meter', 53 | 'flow meter', 54 | 'valve', 55 | 'washout', 56 | 'firehydrant', 57 | 'tank', 58 | 'pipeline', 59 | 'pg-building', 60 | 'sewer-connection', 61 | 'sewer_commercial', 62 | 'sewer_institution', 63 | 'sewer_public_toilet', 64 | 'sewer_pipeline', 65 | 'sewer_treatment_plant', 66 | 'manhole' 67 | ] 68 | }, 69 | // please specify your covered area if you have multipul locations to do waterworks 70 | areaSwitcher: { 71 | areas: [ 72 | { title: 'Narok', latlng: [35.87063, -1.08551], zoom: 14 }, 73 | { title: "Ololulung'a", latlng: [35.65072, -1.0085], zoom: 13 }, 74 | { title: 'Kilgoris', latlng: [34.87533, -1.00278], zoom: 14 }, 75 | { title: 'Suswa', latlng: [36.33078, -1.05307], zoom: 13 } 76 | ] 77 | }, 78 | // please specify layer name for showing in legend panel. 79 | legend: { 80 | targets: { 81 | pipeline: 'Pipeline', 82 | pipeline_annotation: 'Pipeline Label', 83 | meter: 'Water Meter', 84 | 'flow meter': 'Flow Meter', 85 | valve: 'Valve', 86 | firehydrant: 'Fire Hydrant', 87 | washout: 'Washout', 88 | tank: 'Tank', 89 | tank_annotation: 'Tank Label', 90 | wtp: 'WTP', 91 | wtp_annotation: 'WTP Label', 92 | intake: 'Intake', 93 | intake_annotation: 'Intake Label', 94 | parcels: 'Parcels', 95 | parcels_annotation: 'Parcels Label', 96 | village: 'Village', 97 | village_annotation: 'Village Label', 98 | dma: 'DMA', 99 | 'dma-annotation': 'DMA Label', 100 | 'contour-line': 'Countour', 101 | 'contour-label': 'Contour Label', 102 | hillshade: 'Hillshade', 103 | sewer_connection: 'Households (Sewer)', 104 | sewer_commercial: 'Commecial (Sewer)', 105 | sewer_institution: 'Institution (Sewer)', 106 | sewer_public_toilet: 'Public Toilet (Sewer)', 107 | manhole: 'Manhole', 108 | sewer_pipeline: 'Sewer pipeline', 109 | sewer_treatment_plant: 'Wastewater treatment plant' 110 | } 111 | }, 112 | elevation: { 113 | url: 'https://narwassco.github.io/narok-terrain/tiles/{z}/{x}/{y}.png', 114 | options: { 115 | tileSize: 512, 116 | font: ['Roboto Medium'], 117 | fontSize: 12, 118 | fontHalo: 1, 119 | mainColor: '#263238', 120 | haloColor: '#fff', 121 | units: 'kilometers' 122 | } 123 | }, 124 | valhalla: { 125 | url: 'https://valhalla.water-gis.com', 126 | isoChroneOptions: { 127 | Contours: [ 128 | { 129 | time: 3, 130 | distance: 1, 131 | color: 'ff0000' 132 | }, 133 | { 134 | time: 5, 135 | distance: 2, 136 | color: 'ffff00' 137 | }, 138 | { 139 | time: 10, 140 | distance: 3, 141 | color: '0000ff' 142 | }, 143 | { 144 | time: 15, 145 | distance: 4, 146 | color: 'ff00ff' 147 | } 148 | ], 149 | isochrone: { 150 | font: ['Roboto Medium'], 151 | fontSize: 14, 152 | fontHalo: 3, 153 | fontColor: '#263238', 154 | fontHaloColor: '#fff' 155 | } 156 | }, 157 | routingOptions: { 158 | font: ['Roboto Medium'], 159 | fontSize: 14, 160 | fontHalo: 3, 161 | fontColor: '#263238', 162 | fontHaloColor: '#fff', 163 | iconImage: 'marker', 164 | iconSize: 1 165 | } 166 | }, 167 | terrain: { 168 | source: 'narok-dem', 169 | exaggeration: 1 170 | }, 171 | attributeTable: { 172 | rowsPerPage: 50, 173 | minZoom: 14 174 | }, 175 | tour: { 176 | tourGuideOptions: { 177 | steps: [ 178 | { 179 | title: 'Welcome to sveltekit watergis template!', 180 | content: `This tutorial is going to take you around the main features of the application.
Let's begin!`, 181 | order: 1 182 | }, 183 | { 184 | title: 'Geospatial analytics tools', 185 | content: ` 186 |
187 | Click this button to start analysing the datasets. 188 |

189 | In the Layers tab, 190 |
191 | 192 | firstly you can switch base maps either OSM or aerial from the below select box. 193 |
194 | 195 |
196 | You can also switch layer visibility by clicking this button. 197 |
198 | 199 |
200 | From the above palette button, you can edit layer style as you want. 201 |

202 | In Advanced tab, there are three main features: 203 |
204 | 1) measuring tool: 205 |
206 | 207 |
208 | Click "Start measure" button, then click locations on the map to query the distance and altitude. 209 |
210 |
211 | 2) routing tool; 212 |
213 | 214 |
215 | Click "Start routing" button, then you can calculate the shortest route by clicking on the route on the map with your prefered means of transport. 216 |
217 |
218 | 3)isochrone analysis tool. 219 |
220 | 221 |
Isochrone is a very powerful tool to estimate contours by certain time or distance by selected transport option. It can be used for some SDG indicator such as "Water access within 30 minute round trip". 222 |
223 | 224 |
225 | `, 226 | target: '.maplibregl-ctrl-menu', 227 | order: 2 228 | }, 229 | { 230 | title: 'Attribute table tool', 231 | content: `
232 | Click this button to start exploring attributes data of selected layer. 233 | You can also filter the data by keyword, and sort them, zoom to the select feature. 234 |
235 | 236 |
237 | Firstly, select a layer to show attribute table. The table will show all records within current map extent. Please refresh table if you move map. 238 |
239 | 240 |
241 | You can zoom to selected feature by clicking the above button. 242 |
243 | 244 |
245 | You can pan to selected feature by clicking the above button. 246 |
`, 247 | target: '.maplibregl-ctrl-attribute-table', 248 | order: 3 249 | }, 250 | { 251 | title: 'Sharing tool', 252 | content: 253 | 'This button enables you to copy and share URL of current map with your colleagues.', 254 | target: '.maplibregl-ctrl-share', 255 | order: 4 256 | }, 257 | { 258 | title: 'Query tool', 259 | content: `This button enables you to query details information of selected features on the map. If the tool is enabled, you can click the feature on the map to enquiry details information.`, 260 | target: '.maplibregl-ctrl-identify', 261 | order: 5 262 | }, 263 | { 264 | title: 'Export tool', 265 | content: `This button enables you to export images with your preferences.
You can choose file size, image format (png, jpeg, pdf and svg), and DPI resolution, orientation of the exported image`, 266 | target: '.maplibregl-ctrl-export', 267 | order: 6 268 | }, 269 | { 270 | title: 'Search features', 271 | content: `You can search features by typing keywords from the searching box.`, 272 | target: '.maplibregl-ctrl-geocoder', 273 | order: 7 274 | }, 275 | { 276 | title: 'Area switching tool', 277 | content: `You can switch the map to the selected area instantly.`, 278 | target: '.maplibregl-area-switcher', 279 | order: 8 280 | }, 281 | { 282 | title: 'Terrain tool', 283 | content: `If this is enabled, 3D terrain landscape will be shown. In order to use this, you can tilt the map by holding right-click (mouse) or two fingers (smartphone or tablet)`, 284 | target: '.maplibregl-ctrl-terrain', 285 | order: 9 286 | }, 287 | { 288 | title: 'GNSS positioning tool', 289 | content: `GNSS positioning your current location is available by clicking this button.`, 290 | target: '.maplibregl-ctrl-geolocate', 291 | order: 10 292 | } 293 | ], 294 | rememberStep: true 295 | }, 296 | tourControlOptions: { 297 | localStorageKey: `watergis-{url}` 298 | } 299 | } 300 | }; 301 | -------------------------------------------------------------------------------- /src/lib/components/AdvancedPanel.svelte: -------------------------------------------------------------------------------- 1 | 64 | 65 | 66 | 67 |
68 | {#if config.elevation} 69 | 70 |
71 | 76 |
77 |
78 | {/if} 79 | {#if config.valhalla} 80 | 81 |
82 | 87 |
88 |
89 | 94 |
95 | 100 |
101 |
102 | {/if} 103 |
104 | 105 | 117 | -------------------------------------------------------------------------------- /src/lib/components/DrawerContent.svelte: -------------------------------------------------------------------------------- 1 | 29 | 30 |
31 |
32 | 35 |
36 | 52 |
53 |
54 | 57 | 60 |
61 | 62 | 78 | -------------------------------------------------------------------------------- /src/lib/components/LayerListPanel.svelte: -------------------------------------------------------------------------------- 1 | 30 | 31 | 32 | 33 |
34 | 40 |
41 |
42 | 51 | 60 | 72 |
73 |
74 | 82 |
83 | 84 | 91 | -------------------------------------------------------------------------------- /src/lib/components/Map.svelte: -------------------------------------------------------------------------------- 1 | 182 | 183 | 184 | 185 | 186 |
187 | 188 |
189 |
190 | 198 |
199 | 200 | {#await isInitialising then} 201 | 202 | 203 | 209 | {/await} 210 |
211 | 212 | 213 | 237 | -------------------------------------------------------------------------------- /src/lib/stores/index.ts: -------------------------------------------------------------------------------- 1 | import type { StyleSwitcherOption } from '@watergis/svelte-maplibre-style-switcher'; 2 | import type { Map } from 'maplibre-gl'; 3 | import { writable } from 'svelte/store'; 4 | 5 | // map store for maplibre-gl object 6 | export const map = writable(null); 7 | 8 | export const selectedStyle = writable(null); 9 | -------------------------------------------------------------------------------- /src/lib/types/config.ts: -------------------------------------------------------------------------------- 1 | import type { LngLatLike, TerrainSpecification } from 'maplibre-gl'; 2 | import type { StyleSwitcherOption } from '@watergis/svelte-maplibre-style-switcher'; 3 | import type { 4 | ValhallaIsochroneOptions, 5 | ValhallaRoutingOptions 6 | } from '@watergis/svelte-maplibre-valhalla'; 7 | import type { TourGuideOptions, MaplibreTourControlOptions } from '@watergis/maplibre-gl-tour'; 8 | 9 | export type Config = { 10 | title: string; 11 | url: string; 12 | logo: string; 13 | basePath: string; 14 | attribution: string; 15 | styles: StyleSwitcherOption[]; 16 | center: LngLatLike; 17 | zoom: number; 18 | search?: { 19 | url: string; 20 | target: string[]; 21 | format: (p: { [key: string]: string }) => string; 22 | place_type: string[]; 23 | placeholder: string; 24 | zoom: number; 25 | limit: number; 26 | }; 27 | popup: { 28 | target: string[]; 29 | }; 30 | areaSwitcher?: { 31 | areas: { 32 | title: string; 33 | latlng: number[]; 34 | zoom: number; 35 | }[]; 36 | }; 37 | legend?: { 38 | targets: { [key: string]: string }; 39 | }; 40 | elevation?: { 41 | url: string; 42 | options?: { 43 | tileSize?: number; 44 | font?: string[]; 45 | fontSize?: number; 46 | fontHalo?: number; 47 | mainColor?: string; 48 | haloColor?: string; 49 | units?: string; 50 | }; 51 | }; 52 | valhalla?: { 53 | url: string; 54 | isoChroneOptions: ValhallaIsochroneOptions; 55 | routingOptions: ValhallaRoutingOptions; 56 | }; 57 | terrain?: TerrainSpecification; 58 | attributeTable?: { 59 | rowsPerPage: number; 60 | minZoom: number; 61 | }; 62 | tour?: { 63 | tourGuideOptions: TourGuideOptions; 64 | tourControlOptions: MaplibreTourControlOptions; 65 | }; 66 | }; 67 | -------------------------------------------------------------------------------- /src/lib/types/index.ts: -------------------------------------------------------------------------------- 1 | export type { Config } from './config'; 2 | -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 | 9 | 10 | 11 | 18 | 19 | 20 | 21 | 22 | 25 | -------------------------------------------------------------------------------- /src/routes/+page.ts: -------------------------------------------------------------------------------- 1 | export const prerender = true; 2 | export const ssr = false; 3 | -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- 1 | /// 2 | import { build, files, version } from '$service-worker'; 3 | 4 | // Create a unique cache name for this deployment 5 | const CACHE = `cache-${version}`; 6 | 7 | const ASSETS = [ 8 | ...build, // the app itself 9 | ...files // everything in `static` 10 | ]; 11 | 12 | self.addEventListener('install', (event) => { 13 | // Create a new cache and add all files to it 14 | async function addFilesToCache() { 15 | const cache = await caches.open(CACHE); 16 | await cache.addAll(ASSETS); 17 | } 18 | 19 | event.waitUntil(addFilesToCache()); 20 | }); 21 | 22 | self.addEventListener('activate', (event) => { 23 | // Remove previous cached data from disk 24 | async function deleteOldCaches() { 25 | for (const key of await caches.keys()) { 26 | if (key !== CACHE) await caches.delete(key); 27 | } 28 | } 29 | 30 | event.waitUntil(deleteOldCaches()); 31 | }); 32 | 33 | self.addEventListener('fetch', (event) => { 34 | // ignore POST requests etc 35 | if (event.request.method !== 'GET') return; 36 | 37 | async function respond() { 38 | const url = new URL(event.request.url); 39 | const cache = await caches.open(CACHE); 40 | 41 | // `build`/`files` can always be served from the cache 42 | if (ASSETS.includes(url.pathname)) { 43 | return cache.match(url.pathname); 44 | } 45 | 46 | // for everything else, try the network first, but 47 | // fall back to the cache if we're offline 48 | try { 49 | const response = await fetch(event.request); 50 | 51 | if (response.status === 200) { 52 | cache.put(event.request, response.clone()); 53 | } 54 | 55 | return response; 56 | } catch { 57 | return cache.match(event.request); 58 | } 59 | } 60 | 61 | event.respondWith(respond()); 62 | }); 63 | -------------------------------------------------------------------------------- /static/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/.nojekyll -------------------------------------------------------------------------------- /static/assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /static/assets/icons/icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/icons/icon-144x144.png -------------------------------------------------------------------------------- /static/assets/icons/icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/icons/icon-152x152.png -------------------------------------------------------------------------------- /static/assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /static/assets/icons/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/icons/icon-384x384.png -------------------------------------------------------------------------------- /static/assets/icons/icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/icons/icon-48x48.png -------------------------------------------------------------------------------- /static/assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /static/assets/icons/icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/icons/icon-72x72.png -------------------------------------------------------------------------------- /static/assets/icons/icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/icons/icon-96x96.png -------------------------------------------------------------------------------- /static/assets/preview-1200x630.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/preview-1200x630.png -------------------------------------------------------------------------------- /static/assets/tutorial/attr-table-selectbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/tutorial/attr-table-selectbox.png -------------------------------------------------------------------------------- /static/assets/tutorial/eye-solid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/assets/tutorial/isochrone-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/tutorial/isochrone-example.png -------------------------------------------------------------------------------- /static/assets/tutorial/isochrone-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/tutorial/isochrone-tool.png -------------------------------------------------------------------------------- /static/assets/tutorial/magnifying-glass-plus-solid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/assets/tutorial/measure-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/tutorial/measure-tool.png -------------------------------------------------------------------------------- /static/assets/tutorial/palette-solid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/assets/tutorial/routing-tool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/tutorial/routing-tool.png -------------------------------------------------------------------------------- /static/assets/tutorial/style-switcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/assets/tutorial/style-switcher.png -------------------------------------------------------------------------------- /static/assets/tutorial/up-down-left-right-solid.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watergis/sveltekit-watergis-template/41a2a21b319f0a758c87602ab25c1357772633e9/static/favicon.png -------------------------------------------------------------------------------- /static/manifest.webmanifest: -------------------------------------------------------------------------------- 1 | { 2 | "name": "watergis-pwa", 3 | "short_name": "watergis-pwa", 4 | "theme_color": "#1976d2", 5 | "background_color": "#fafafa", 6 | "display": "standalone", 7 | "scope": "/", 8 | "start_url": "/", 9 | "icons": [ 10 | { 11 | "src": "assets/icons/icon-72x72.png", 12 | "sizes": "72x72", 13 | "type": "image/png", 14 | "purpose": "maskable any" 15 | }, 16 | { 17 | "src": "assets/icons/icon-96x96.png", 18 | "sizes": "96x96", 19 | "type": "image/png", 20 | "purpose": "maskable any" 21 | }, 22 | { 23 | "src": "assets/icons/icon-128x128.png", 24 | "sizes": "128x128", 25 | "type": "image/png", 26 | "purpose": "maskable any" 27 | }, 28 | { 29 | "src": "assets/icons/icon-144x144.png", 30 | "sizes": "144x144", 31 | "type": "image/png", 32 | "purpose": "maskable any" 33 | }, 34 | { 35 | "src": "assets/icons/icon-152x152.png", 36 | "sizes": "152x152", 37 | "type": "image/png", 38 | "purpose": "maskable any" 39 | }, 40 | { 41 | "src": "assets/icons/icon-192x192.png", 42 | "sizes": "192x192", 43 | "type": "image/png", 44 | "purpose": "maskable any" 45 | }, 46 | { 47 | "src": "assets/icons/icon-384x384.png", 48 | "sizes": "384x384", 49 | "type": "image/png", 50 | "purpose": "maskable any" 51 | }, 52 | { 53 | "src": "assets/icons/icon-512x512.png", 54 | "sizes": "512x512", 55 | "type": "image/png", 56 | "purpose": "maskable any" 57 | } 58 | ] 59 | } 60 | -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- 1 | import adapter from '@sveltejs/adapter-static'; 2 | import preprocess from 'svelte-preprocess'; 3 | 4 | /** @type {import('@sveltejs/kit').Config} */ 5 | const config = { 6 | // Consult https://github.com/sveltejs/svelte-preprocess 7 | // for more information about preprocessors 8 | preprocess: preprocess(), 9 | 10 | kit: { 11 | adapter: adapter({ 12 | // default options are shown 13 | pages: 'build', 14 | assets: 'build', 15 | fallback: null 16 | }), 17 | paths: { 18 | // YOUR github repository name 19 | // base: process.env.NODE_ENV === 'production' ? '/sveltekit-watergis-template' : '' 20 | base: '' 21 | } 22 | }, 23 | onwarn: () => { 24 | const SKIP_DEPLOY_TO_GHPAGES = process.env.SKIP_DEPLOY_TO_GHPAGES; 25 | if (SKIP_DEPLOY_TO_GHPAGES) { 26 | return; 27 | } 28 | } 29 | }; 30 | 31 | export default config; 32 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.svelte-kit/tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { sveltekit } from '@sveltejs/kit/vite'; 2 | import { resolve } from 'path'; 3 | import type { UserConfig } from 'vite'; 4 | 5 | const config: UserConfig = { 6 | plugins: [sveltekit()], 7 | resolve: { 8 | alias: { 9 | $config: resolve('./src/config.ts') 10 | } 11 | } 12 | }; 13 | 14 | export default config; 15 | --------------------------------------------------------------------------------