├── .env ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.mjs.disabled ├── jsconfig.json ├── package.json ├── pnpm-lock.yaml ├── src ├── app.html ├── global.d.ts ├── lib │ ├── asset-loader.js │ ├── components.js │ ├── event-bindings.js │ ├── geocoder │ │ ├── Geocoder.svelte │ │ └── geocoder-action.js │ ├── map │ │ ├── Map.svelte │ │ ├── Marker.svelte │ │ ├── controls │ │ │ ├── GeolocateControl.svelte │ │ │ ├── NavigationControl.svelte │ │ │ └── ScaleControl.svelte │ │ └── map-action.js │ ├── mapbox.js │ └── queue.js └── routes │ ├── +page.svelte │ ├── _Earthquakes.svelte │ └── _MiniScroller.svelte ├── static ├── favicon.png ├── normalize.css ├── prettify.css └── style.css ├── svelte.config.js └── vite.config.js /.env: -------------------------------------------------------------------------------- 1 | PUBLIC_MAPBOX_TOKEN=your_mapbox_token 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- 1 | name: publish 2 | 3 | on: 4 | push: 5 | branches: 6 | - '*' 7 | tags: 8 | - 'v*' 9 | pull_request: 10 | branches: 11 | - '*' 12 | 13 | env: 14 | NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 15 | 16 | jobs: 17 | publish-npm: 18 | if: startsWith(github.ref, 'refs/tags/v') 19 | runs-on: ubuntu-latest 20 | steps: 21 | - name: checkout 22 | uses: actions/checkout@v4 23 | 24 | - name: set up node and pnpm 25 | run: | 26 | corepack enable 27 | pnpm config set '//registry.npmjs.org/:_authToken' "${NODE_AUTH_TOKEN}" 28 | pnpm i 29 | 30 | - name: publish 31 | run: pnpm publish --no-git-checks --access public -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /.svelte-kit 4 | /package 5 | .env.local -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | use-node-version=22.11.0 -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Svelte-Mapbox Changelog 2 | 3 | # Change Log 4 | All notable changes to this project will be documented in this file. 5 | 6 | The format is based on [Keep a Changelog](http://keepachangelog.com/) 7 | and this project adheres to [Semantic Versioning](http://semver.org/). 8 | 9 | ## [8.0.0] 10 | 11 | ### Recentre event 12 | 13 | Events made more predictable - the recentre event from a map used to actually be `dragend`. It is now triggered by `moveend` - which means it will be fired for anything which moves the map. `dragend` now fires the `dragend` event. 14 | 15 | To retain prior behaviour - change uses of `recentre` on `Map` to be `dragend`. 16 | 17 | ### SvelteKit Support 18 | 19 | All external dependencies have been removed (except Mapbox of course!) 20 | `fastq` is removed in favour of svelte stores, and because it didn't support ESM. 21 | `@beyonk/svelte-loader` is removed in favour of using actions to load dependencies. 22 | This module should work fine with `SvelteKit` now. 23 | 24 | ### IE11 Support 25 | 26 | This module no longer attempts to support IE11, and neither should you. 27 | 28 | ### Actions driven 29 | 30 | Both components now use Svelte `actions` instead of `onMount`, resulting in faster loading. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2021 [these people](https://github.com/beyonk-adventures/svelte-mapbox/graphs/contributors) 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 |
6 |
7 |
8 | 9 | ## Svelte MapBox 10 | 11 | [![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](http://standardjs.com) [![svelte-v3](https://img.shields.io/badge/svelte-v3-blueviolet.svg)](https://svelte.dev) ![publish](https://github.com/beyonk-adventures/svelte-mapbox/workflows/publish/badge.svg) 12 | 13 | Maps and Geocoding (Autocomplete) [MapBox](https://www.mapbox.com/) components in Vanilla JS (or Svelte) 14 | 15 | * SvelteKit Ready 16 | * SSR Ready 17 | * Lightweight 18 | * No clientside dependencies (Map) 19 | * Allow creation of custom Svelte components on the map 20 | 21 | * Note that the GeoCoder has a clientside dependency, since it adds about 0.5mb to the bundle size, and significant time to the build time if bundled. 22 | 23 | ## Installing 24 | 25 | ``` 26 | npm install --save-dev @beyonk/svelte-mapbox 27 | ``` 28 | 29 | ### Basic Usage (Map) 30 | 31 | The container component is the map, and there are a variety of components which go on the map. 32 | 33 | ```jsx 34 | console.log(e.detail.center.lat, e.detail.center.lng) } // recentre events 38 | options={{ scrollZoom: false }} // // add arbitrary options to the map from the mapbox api 39 | > 40 | // Any custom component you create or want here - see marker example 41 | // built in Marker component 42 | 43 | 44 | 45 | 46 | 47 | 63 | 64 | 70 | ``` 71 | 72 | ### Markers 73 | 74 | By default, markers are typical map pins to which you can pass a color property. 75 | 76 | ```jsx 77 | 78 | ``` 79 | 80 | You may also create a custom pin with the default slot. 81 | 82 | ```jsx 83 | 87 | 88 |
93 |
94 |
95 |
96 | ``` 97 | 98 | ### Marker Popups 99 | By default a popup is revealed when you click a pin. It is populated with text provided in the label property. 100 | 101 | ```jsx 102 | 103 | ``` 104 | 105 | To indicate interactivity, you may target the marker with some custom CSS: 106 | 107 | ```jsx 108 | 113 | ``` 114 | 115 | Optionally, disable the popup with the `popup={false}` property: 116 | 117 | ```jsx 118 | 119 | ``` 120 | 121 | You may alternatively pass a custom DOM element to the marker to use as a popup. 122 | 123 | ```jsx 124 | 125 |
126 |

{pin.name}

127 | 128 |
129 | {pin.name} 130 | 131 |
132 | ``` 133 | 134 | ### Reactive Properties 135 | 136 | The map has reactive properties for `center` and `zoom`. This means that if you set these properties, or modify them whilst the map is displayed, the map will react accordingly. 137 | 138 | This also means that if you bind these properties to a variable, that variable will automatically be updated with the current `center` and `zoom` of the map if the user moves or zooms the map. 139 | 140 | This is often easier than waiting for events such as `recentre` or `zoom` to be fired, to update markers and similar: 141 | 142 | ```jsx 143 | 144 | 145 | 146 | 147 | 154 | ``` 155 | 156 | ### Methods 157 | 158 | The map has a variety of methods which delegate to a queue. The reason for this is that MapBox is quite a heavy library, and rendering a map is a pretty heavy operation. It's hard to guarantee 159 | when everything is ready in your browser, and when you can start doing things with it. 160 | 161 | In case you want raw map access to interact directly with the map, you can call `getMap` on the map and interact with it that way. However we don't recommend it, as you have no guarantees that the 162 | map is ready in your browser when you call it this way. 163 | 164 | ## Basic Usage (Geocoder) 165 | 166 | The Geocoder is an autocompleting place lookup, which returns a lat and lng for a place. 167 | 168 | ```jsx 169 | 170 | 171 | 174 | ``` 175 | 176 | The geocoder has five events you can subscribe to: `on:loading`, `on:result`, `on:results`, `on:clear`, and `on:error` which are [documented here](https://github.com/mapbox/mapbox-gl-geocoder/blob/master/API.md#on) 177 | 178 | The most important event is `on:result` which is fired when a user selects an autocomplete result. 179 | 180 | There is a sixth event specific to this library, which is `on:ready`, which is fired when the component is ready for use. You can likely ignore it. 181 | 182 | ## Custom CSS 183 | 184 | You can add additional css to override mapbox provided CSS by passing the `customStylesheetUrl` property to either the `Map` or `Geocoder` components. 185 | 186 | ## Demo 187 | 188 | To see the earthquakes demo: 189 | 190 | Make sure you copy the `.env` file to `.env.local` and then populate it with your mapbox key. 191 | 192 | ` 193 | npm run dev 194 | ` 195 | 196 | -------------------------------------------------------------------------------- /eslint.config.mjs.disabled: -------------------------------------------------------------------------------- 1 | import path from "node:path"; 2 | import { fileURLToPath } from "node:url"; 3 | import js from "@eslint/js"; 4 | import { FlatCompat } from "@eslint/eslintrc"; 5 | 6 | const __filename = fileURLToPath(import.meta.url); 7 | const __dirname = path.dirname(__filename); 8 | const compat = new FlatCompat({ 9 | baseDirectory: __dirname, 10 | recommendedConfig: js.configs.recommended, 11 | allConfig: js.configs.all 12 | }); 13 | 14 | export default [{ 15 | ignores: ["**/package", "**/.svelte-kit"], 16 | }, ...compat.extends("@beyonk/eslint-config/svelte"), { 17 | languageOptions: { 18 | ecmaVersion: 2020, 19 | sourceType: "module", 20 | }, 21 | }]; -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.svelte-kit/tsconfig.json", 3 | "compilerOptions": { 4 | "baseUrl": ".", 5 | "paths": { 6 | "$lib": ["src/lib"], 7 | "$lib/*": ["src/lib/*"] 8 | } 9 | }, 10 | "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"] 11 | } 12 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@beyonk/svelte-mapbox", 3 | "version": "11.0.0", 4 | "scripts": { 5 | "dev": "vite dev --port 3030", 6 | "build": "vite build", 7 | "preview": "vite preview", 8 | "lint": "eslint ." 9 | }, 10 | "devDependencies": { 11 | "@beyonk/eslint-config": "^8.0.2", 12 | "@eslint/eslintrc": "^3.1.0", 13 | "@eslint/js": "^9.14.0", 14 | "@sveltejs/kit": "^2.8.0", 15 | "@sveltejs/vite-plugin-svelte": "^4.0.0", 16 | "eslint": "^9.14.0", 17 | "eslint-plugin-svelte": "^2.46.0", 18 | "svelte": "^5.1.14", 19 | "svelte2tsx": "^0.7.23", 20 | "typescript": "^5.6.3", 21 | "vite": "^5.4.11" 22 | }, 23 | "peerDependencies": { 24 | "svelte": ">=4.0.0" 25 | }, 26 | "exports": { 27 | ".": "./src/lib/components.js" 28 | }, 29 | "types": "./components.d.ts", 30 | "type": "module", 31 | "packageManager": "pnpm@8.15.7" 32 | } 33 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | devDependencies: 8 | '@beyonk/eslint-config': 9 | specifier: ^8.0.2 10 | version: 8.0.2(eslint@9.14.0)(svelte@5.1.14) 11 | '@eslint/eslintrc': 12 | specifier: ^3.1.0 13 | version: 3.1.0 14 | '@eslint/js': 15 | specifier: ^9.14.0 16 | version: 9.14.0 17 | '@sveltejs/kit': 18 | specifier: ^2.8.0 19 | version: 2.8.0(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.14)(vite@5.4.11) 20 | '@sveltejs/vite-plugin-svelte': 21 | specifier: ^4.0.0 22 | version: 4.0.0(svelte@5.1.14)(vite@5.4.11) 23 | eslint: 24 | specifier: ^9.14.0 25 | version: 9.14.0 26 | eslint-plugin-svelte: 27 | specifier: ^2.46.0 28 | version: 2.46.0(eslint@9.14.0)(svelte@5.1.14) 29 | svelte: 30 | specifier: ^5.1.14 31 | version: 5.1.14 32 | svelte2tsx: 33 | specifier: ^0.7.23 34 | version: 0.7.23(svelte@5.1.14)(typescript@5.6.3) 35 | typescript: 36 | specifier: ^5.6.3 37 | version: 5.6.3 38 | vite: 39 | specifier: ^5.4.11 40 | version: 5.4.11 41 | 42 | packages: 43 | 44 | /@ampproject/remapping@2.3.0: 45 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 46 | engines: {node: '>=6.0.0'} 47 | dependencies: 48 | '@jridgewell/gen-mapping': 0.3.5 49 | '@jridgewell/trace-mapping': 0.3.25 50 | dev: true 51 | 52 | /@beyonk/eslint-config@8.0.2(eslint@9.14.0)(svelte@5.1.14): 53 | resolution: {integrity: sha512-STaKEC04VbJjForI7MahYuYbqXW0f2WHq1JNzJ+uTfxdyp3smSWxKH585UsV6nk+mAqPgub2w9ypfFBQLjROpQ==} 54 | peerDependencies: 55 | eslint: ^8.56.0 56 | dependencies: 57 | eslint: 9.14.0 58 | eslint-config-standard: 17.1.0(eslint-plugin-import@2.31.0)(eslint-plugin-n@15.7.0)(eslint-plugin-promise@6.6.0)(eslint@9.14.0) 59 | eslint-plugin-import: 2.31.0(eslint@9.14.0) 60 | eslint-plugin-mocha: 10.5.0(eslint@9.14.0) 61 | eslint-plugin-n: 15.7.0(eslint@9.14.0) 62 | eslint-plugin-promise: 6.6.0(eslint@9.14.0) 63 | eslint-plugin-svelte: 2.46.0(eslint@9.14.0)(svelte@5.1.14) 64 | transitivePeerDependencies: 65 | - '@typescript-eslint/parser' 66 | - eslint-import-resolver-typescript 67 | - eslint-import-resolver-webpack 68 | - supports-color 69 | - svelte 70 | - ts-node 71 | dev: true 72 | 73 | /@esbuild/aix-ppc64@0.21.5: 74 | resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 75 | engines: {node: '>=12'} 76 | cpu: [ppc64] 77 | os: [aix] 78 | requiresBuild: true 79 | dev: true 80 | optional: true 81 | 82 | /@esbuild/android-arm64@0.21.5: 83 | resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 84 | engines: {node: '>=12'} 85 | cpu: [arm64] 86 | os: [android] 87 | requiresBuild: true 88 | dev: true 89 | optional: true 90 | 91 | /@esbuild/android-arm@0.21.5: 92 | resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 93 | engines: {node: '>=12'} 94 | cpu: [arm] 95 | os: [android] 96 | requiresBuild: true 97 | dev: true 98 | optional: true 99 | 100 | /@esbuild/android-x64@0.21.5: 101 | resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 102 | engines: {node: '>=12'} 103 | cpu: [x64] 104 | os: [android] 105 | requiresBuild: true 106 | dev: true 107 | optional: true 108 | 109 | /@esbuild/darwin-arm64@0.21.5: 110 | resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 111 | engines: {node: '>=12'} 112 | cpu: [arm64] 113 | os: [darwin] 114 | requiresBuild: true 115 | dev: true 116 | optional: true 117 | 118 | /@esbuild/darwin-x64@0.21.5: 119 | resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 120 | engines: {node: '>=12'} 121 | cpu: [x64] 122 | os: [darwin] 123 | requiresBuild: true 124 | dev: true 125 | optional: true 126 | 127 | /@esbuild/freebsd-arm64@0.21.5: 128 | resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 129 | engines: {node: '>=12'} 130 | cpu: [arm64] 131 | os: [freebsd] 132 | requiresBuild: true 133 | dev: true 134 | optional: true 135 | 136 | /@esbuild/freebsd-x64@0.21.5: 137 | resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 138 | engines: {node: '>=12'} 139 | cpu: [x64] 140 | os: [freebsd] 141 | requiresBuild: true 142 | dev: true 143 | optional: true 144 | 145 | /@esbuild/linux-arm64@0.21.5: 146 | resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 147 | engines: {node: '>=12'} 148 | cpu: [arm64] 149 | os: [linux] 150 | requiresBuild: true 151 | dev: true 152 | optional: true 153 | 154 | /@esbuild/linux-arm@0.21.5: 155 | resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 156 | engines: {node: '>=12'} 157 | cpu: [arm] 158 | os: [linux] 159 | requiresBuild: true 160 | dev: true 161 | optional: true 162 | 163 | /@esbuild/linux-ia32@0.21.5: 164 | resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 165 | engines: {node: '>=12'} 166 | cpu: [ia32] 167 | os: [linux] 168 | requiresBuild: true 169 | dev: true 170 | optional: true 171 | 172 | /@esbuild/linux-loong64@0.21.5: 173 | resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 174 | engines: {node: '>=12'} 175 | cpu: [loong64] 176 | os: [linux] 177 | requiresBuild: true 178 | dev: true 179 | optional: true 180 | 181 | /@esbuild/linux-mips64el@0.21.5: 182 | resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 183 | engines: {node: '>=12'} 184 | cpu: [mips64el] 185 | os: [linux] 186 | requiresBuild: true 187 | dev: true 188 | optional: true 189 | 190 | /@esbuild/linux-ppc64@0.21.5: 191 | resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 192 | engines: {node: '>=12'} 193 | cpu: [ppc64] 194 | os: [linux] 195 | requiresBuild: true 196 | dev: true 197 | optional: true 198 | 199 | /@esbuild/linux-riscv64@0.21.5: 200 | resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 201 | engines: {node: '>=12'} 202 | cpu: [riscv64] 203 | os: [linux] 204 | requiresBuild: true 205 | dev: true 206 | optional: true 207 | 208 | /@esbuild/linux-s390x@0.21.5: 209 | resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 210 | engines: {node: '>=12'} 211 | cpu: [s390x] 212 | os: [linux] 213 | requiresBuild: true 214 | dev: true 215 | optional: true 216 | 217 | /@esbuild/linux-x64@0.21.5: 218 | resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 219 | engines: {node: '>=12'} 220 | cpu: [x64] 221 | os: [linux] 222 | requiresBuild: true 223 | dev: true 224 | optional: true 225 | 226 | /@esbuild/netbsd-x64@0.21.5: 227 | resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 228 | engines: {node: '>=12'} 229 | cpu: [x64] 230 | os: [netbsd] 231 | requiresBuild: true 232 | dev: true 233 | optional: true 234 | 235 | /@esbuild/openbsd-x64@0.21.5: 236 | resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 237 | engines: {node: '>=12'} 238 | cpu: [x64] 239 | os: [openbsd] 240 | requiresBuild: true 241 | dev: true 242 | optional: true 243 | 244 | /@esbuild/sunos-x64@0.21.5: 245 | resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 246 | engines: {node: '>=12'} 247 | cpu: [x64] 248 | os: [sunos] 249 | requiresBuild: true 250 | dev: true 251 | optional: true 252 | 253 | /@esbuild/win32-arm64@0.21.5: 254 | resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 255 | engines: {node: '>=12'} 256 | cpu: [arm64] 257 | os: [win32] 258 | requiresBuild: true 259 | dev: true 260 | optional: true 261 | 262 | /@esbuild/win32-ia32@0.21.5: 263 | resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 264 | engines: {node: '>=12'} 265 | cpu: [ia32] 266 | os: [win32] 267 | requiresBuild: true 268 | dev: true 269 | optional: true 270 | 271 | /@esbuild/win32-x64@0.21.5: 272 | resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 273 | engines: {node: '>=12'} 274 | cpu: [x64] 275 | os: [win32] 276 | requiresBuild: true 277 | dev: true 278 | optional: true 279 | 280 | /@eslint-community/eslint-utils@4.4.1(eslint@9.14.0): 281 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 282 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 283 | peerDependencies: 284 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 285 | dependencies: 286 | eslint: 9.14.0 287 | eslint-visitor-keys: 3.4.3 288 | dev: true 289 | 290 | /@eslint-community/regexpp@4.12.1: 291 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 292 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 293 | dev: true 294 | 295 | /@eslint/config-array@0.18.0: 296 | resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==} 297 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 298 | dependencies: 299 | '@eslint/object-schema': 2.1.4 300 | debug: 4.3.7 301 | minimatch: 3.1.2 302 | transitivePeerDependencies: 303 | - supports-color 304 | dev: true 305 | 306 | /@eslint/core@0.7.0: 307 | resolution: {integrity: sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==} 308 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 309 | dev: true 310 | 311 | /@eslint/eslintrc@3.1.0: 312 | resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} 313 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 314 | dependencies: 315 | ajv: 6.12.6 316 | debug: 4.3.7 317 | espree: 10.3.0 318 | globals: 14.0.0 319 | ignore: 5.3.2 320 | import-fresh: 3.3.0 321 | js-yaml: 4.1.0 322 | minimatch: 3.1.2 323 | strip-json-comments: 3.1.1 324 | transitivePeerDependencies: 325 | - supports-color 326 | dev: true 327 | 328 | /@eslint/js@9.14.0: 329 | resolution: {integrity: sha512-pFoEtFWCPyDOl+C6Ift+wC7Ro89otjigCf5vcuWqWgqNSQbRrpjSvdeE6ofLz4dHmyxD5f7gIdGT4+p36L6Twg==} 330 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 331 | dev: true 332 | 333 | /@eslint/object-schema@2.1.4: 334 | resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} 335 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 336 | dev: true 337 | 338 | /@eslint/plugin-kit@0.2.2: 339 | resolution: {integrity: sha512-CXtq5nR4Su+2I47WPOlWud98Y5Lv8Kyxp2ukhgFx/eW6Blm18VXJO5WuQylPugRo8nbluoi6GvvxBLqHcvqUUw==} 340 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 341 | dependencies: 342 | levn: 0.4.1 343 | dev: true 344 | 345 | /@humanfs/core@0.19.1: 346 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 347 | engines: {node: '>=18.18.0'} 348 | dev: true 349 | 350 | /@humanfs/node@0.16.6: 351 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} 352 | engines: {node: '>=18.18.0'} 353 | dependencies: 354 | '@humanfs/core': 0.19.1 355 | '@humanwhocodes/retry': 0.3.1 356 | dev: true 357 | 358 | /@humanwhocodes/module-importer@1.0.1: 359 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 360 | engines: {node: '>=12.22'} 361 | dev: true 362 | 363 | /@humanwhocodes/retry@0.3.1: 364 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} 365 | engines: {node: '>=18.18'} 366 | dev: true 367 | 368 | /@humanwhocodes/retry@0.4.1: 369 | resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} 370 | engines: {node: '>=18.18'} 371 | dev: true 372 | 373 | /@jridgewell/gen-mapping@0.3.5: 374 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 375 | engines: {node: '>=6.0.0'} 376 | dependencies: 377 | '@jridgewell/set-array': 1.2.1 378 | '@jridgewell/sourcemap-codec': 1.5.0 379 | '@jridgewell/trace-mapping': 0.3.25 380 | dev: true 381 | 382 | /@jridgewell/resolve-uri@3.1.2: 383 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 384 | engines: {node: '>=6.0.0'} 385 | dev: true 386 | 387 | /@jridgewell/set-array@1.2.1: 388 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 389 | engines: {node: '>=6.0.0'} 390 | dev: true 391 | 392 | /@jridgewell/sourcemap-codec@1.5.0: 393 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 394 | dev: true 395 | 396 | /@jridgewell/trace-mapping@0.3.25: 397 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 398 | dependencies: 399 | '@jridgewell/resolve-uri': 3.1.2 400 | '@jridgewell/sourcemap-codec': 1.5.0 401 | dev: true 402 | 403 | /@polka/url@1.0.0-next.28: 404 | resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==} 405 | dev: true 406 | 407 | /@rollup/rollup-android-arm-eabi@4.25.0: 408 | resolution: {integrity: sha512-CC/ZqFZwlAIbU1wUPisHyV/XRc5RydFrNLtgl3dGYskdwPZdt4HERtKm50a/+DtTlKeCq9IXFEWR+P6blwjqBA==} 409 | cpu: [arm] 410 | os: [android] 411 | requiresBuild: true 412 | dev: true 413 | optional: true 414 | 415 | /@rollup/rollup-android-arm64@4.25.0: 416 | resolution: {integrity: sha512-/Y76tmLGUJqVBXXCfVS8Q8FJqYGhgH4wl4qTA24E9v/IJM0XvJCGQVSW1QZ4J+VURO9h8YCa28sTFacZXwK7Rg==} 417 | cpu: [arm64] 418 | os: [android] 419 | requiresBuild: true 420 | dev: true 421 | optional: true 422 | 423 | /@rollup/rollup-darwin-arm64@4.25.0: 424 | resolution: {integrity: sha512-YVT6L3UrKTlC0FpCZd0MGA7NVdp7YNaEqkENbWQ7AOVOqd/7VzyHpgIpc1mIaxRAo1ZsJRH45fq8j4N63I/vvg==} 425 | cpu: [arm64] 426 | os: [darwin] 427 | requiresBuild: true 428 | dev: true 429 | optional: true 430 | 431 | /@rollup/rollup-darwin-x64@4.25.0: 432 | resolution: {integrity: sha512-ZRL+gexs3+ZmmWmGKEU43Bdn67kWnMeWXLFhcVv5Un8FQcx38yulHBA7XR2+KQdYIOtD0yZDWBCudmfj6lQJoA==} 433 | cpu: [x64] 434 | os: [darwin] 435 | requiresBuild: true 436 | dev: true 437 | optional: true 438 | 439 | /@rollup/rollup-freebsd-arm64@4.25.0: 440 | resolution: {integrity: sha512-xpEIXhiP27EAylEpreCozozsxWQ2TJbOLSivGfXhU4G1TBVEYtUPi2pOZBnvGXHyOdLAUUhPnJzH3ah5cqF01g==} 441 | cpu: [arm64] 442 | os: [freebsd] 443 | requiresBuild: true 444 | dev: true 445 | optional: true 446 | 447 | /@rollup/rollup-freebsd-x64@4.25.0: 448 | resolution: {integrity: sha512-sC5FsmZGlJv5dOcURrsnIK7ngc3Kirnx3as2XU9uER+zjfyqIjdcMVgzy4cOawhsssqzoAX19qmxgJ8a14Qrqw==} 449 | cpu: [x64] 450 | os: [freebsd] 451 | requiresBuild: true 452 | dev: true 453 | optional: true 454 | 455 | /@rollup/rollup-linux-arm-gnueabihf@4.25.0: 456 | resolution: {integrity: sha512-uD/dbLSs1BEPzg564TpRAQ/YvTnCds2XxyOndAO8nJhaQcqQGFgv/DAVko/ZHap3boCvxnzYMa3mTkV/B/3SWA==} 457 | cpu: [arm] 458 | os: [linux] 459 | requiresBuild: true 460 | dev: true 461 | optional: true 462 | 463 | /@rollup/rollup-linux-arm-musleabihf@4.25.0: 464 | resolution: {integrity: sha512-ZVt/XkrDlQWegDWrwyC3l0OfAF7yeJUF4fq5RMS07YM72BlSfn2fQQ6lPyBNjt+YbczMguPiJoCfaQC2dnflpQ==} 465 | cpu: [arm] 466 | os: [linux] 467 | requiresBuild: true 468 | dev: true 469 | optional: true 470 | 471 | /@rollup/rollup-linux-arm64-gnu@4.25.0: 472 | resolution: {integrity: sha512-qboZ+T0gHAW2kkSDPHxu7quaFaaBlynODXpBVnPxUgvWYaE84xgCKAPEYE+fSMd3Zv5PyFZR+L0tCdYCMAtG0A==} 473 | cpu: [arm64] 474 | os: [linux] 475 | requiresBuild: true 476 | dev: true 477 | optional: true 478 | 479 | /@rollup/rollup-linux-arm64-musl@4.25.0: 480 | resolution: {integrity: sha512-ndWTSEmAaKr88dBuogGH2NZaxe7u2rDoArsejNslugHZ+r44NfWiwjzizVS1nUOHo+n1Z6qV3X60rqE/HlISgw==} 481 | cpu: [arm64] 482 | os: [linux] 483 | requiresBuild: true 484 | dev: true 485 | optional: true 486 | 487 | /@rollup/rollup-linux-powerpc64le-gnu@4.25.0: 488 | resolution: {integrity: sha512-BVSQvVa2v5hKwJSy6X7W1fjDex6yZnNKy3Kx1JGimccHft6HV0THTwNtC2zawtNXKUu+S5CjXslilYdKBAadzA==} 489 | cpu: [ppc64] 490 | os: [linux] 491 | requiresBuild: true 492 | dev: true 493 | optional: true 494 | 495 | /@rollup/rollup-linux-riscv64-gnu@4.25.0: 496 | resolution: {integrity: sha512-G4hTREQrIdeV0PE2JruzI+vXdRnaK1pg64hemHq2v5fhv8C7WjVaeXc9P5i4Q5UC06d/L+zA0mszYIKl+wY8oA==} 497 | cpu: [riscv64] 498 | os: [linux] 499 | requiresBuild: true 500 | dev: true 501 | optional: true 502 | 503 | /@rollup/rollup-linux-s390x-gnu@4.25.0: 504 | resolution: {integrity: sha512-9T/w0kQ+upxdkFL9zPVB6zy9vWW1deA3g8IauJxojN4bnz5FwSsUAD034KpXIVX5j5p/rn6XqumBMxfRkcHapQ==} 505 | cpu: [s390x] 506 | os: [linux] 507 | requiresBuild: true 508 | dev: true 509 | optional: true 510 | 511 | /@rollup/rollup-linux-x64-gnu@4.25.0: 512 | resolution: {integrity: sha512-ThcnU0EcMDn+J4B9LD++OgBYxZusuA7iemIIiz5yzEcFg04VZFzdFjuwPdlURmYPZw+fgVrFzj4CA64jSTG4Ig==} 513 | cpu: [x64] 514 | os: [linux] 515 | requiresBuild: true 516 | dev: true 517 | optional: true 518 | 519 | /@rollup/rollup-linux-x64-musl@4.25.0: 520 | resolution: {integrity: sha512-zx71aY2oQxGxAT1JShfhNG79PnjYhMC6voAjzpu/xmMjDnKNf6Nl/xv7YaB/9SIa9jDYf8RBPWEnjcdlhlv1rQ==} 521 | cpu: [x64] 522 | os: [linux] 523 | requiresBuild: true 524 | dev: true 525 | optional: true 526 | 527 | /@rollup/rollup-win32-arm64-msvc@4.25.0: 528 | resolution: {integrity: sha512-JT8tcjNocMs4CylWY/CxVLnv8e1lE7ff1fi6kbGocWwxDq9pj30IJ28Peb+Y8yiPNSF28oad42ApJB8oUkwGww==} 529 | cpu: [arm64] 530 | os: [win32] 531 | requiresBuild: true 532 | dev: true 533 | optional: true 534 | 535 | /@rollup/rollup-win32-ia32-msvc@4.25.0: 536 | resolution: {integrity: sha512-dRLjLsO3dNOfSN6tjyVlG+Msm4IiZnGkuZ7G5NmpzwF9oOc582FZG05+UdfTbz5Jd4buK/wMb6UeHFhG18+OEg==} 537 | cpu: [ia32] 538 | os: [win32] 539 | requiresBuild: true 540 | dev: true 541 | optional: true 542 | 543 | /@rollup/rollup-win32-x64-msvc@4.25.0: 544 | resolution: {integrity: sha512-/RqrIFtLB926frMhZD0a5oDa4eFIbyNEwLLloMTEjmqfwZWXywwVVOVmwTsuyhC9HKkVEZcOOi+KV4U9wmOdlg==} 545 | cpu: [x64] 546 | os: [win32] 547 | requiresBuild: true 548 | dev: true 549 | optional: true 550 | 551 | /@rtsao/scc@1.1.0: 552 | resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} 553 | dev: true 554 | 555 | /@sveltejs/kit@2.8.0(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.14)(vite@5.4.11): 556 | resolution: {integrity: sha512-HCiWupCuKJQ3aPaC4Xc6lpPdjOOnoGzEiYjOqMqppdtfGtY2ABrx932Vw66ZwS2RGXc0BmZvFvNq5SzqlmDVLg==} 557 | engines: {node: '>=18.13'} 558 | hasBin: true 559 | requiresBuild: true 560 | peerDependencies: 561 | '@sveltejs/vite-plugin-svelte': ^3.0.0 || ^4.0.0-next.1 562 | svelte: ^4.0.0 || ^5.0.0-next.0 563 | vite: ^5.0.3 564 | dependencies: 565 | '@sveltejs/vite-plugin-svelte': 4.0.0(svelte@5.1.14)(vite@5.4.11) 566 | '@types/cookie': 0.6.0 567 | cookie: 0.6.0 568 | devalue: 5.1.1 569 | esm-env: 1.1.4 570 | import-meta-resolve: 4.1.0 571 | kleur: 4.1.5 572 | magic-string: 0.30.12 573 | mrmime: 2.0.0 574 | sade: 1.8.1 575 | set-cookie-parser: 2.7.1 576 | sirv: 3.0.0 577 | svelte: 5.1.14 578 | tiny-glob: 0.2.9 579 | vite: 5.4.11 580 | dev: true 581 | 582 | /@sveltejs/vite-plugin-svelte-inspector@3.0.1(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.14)(vite@5.4.11): 583 | resolution: {integrity: sha512-2CKypmj1sM4GE7HjllT7UKmo4Q6L5xFRd7VMGEWhYnZ+wc6AUVU01IBd7yUi6WnFndEwWoMNOd6e8UjoN0nbvQ==} 584 | engines: {node: ^18.0.0 || ^20.0.0 || >=22} 585 | peerDependencies: 586 | '@sveltejs/vite-plugin-svelte': ^4.0.0-next.0||^4.0.0 587 | svelte: ^5.0.0-next.96 || ^5.0.0 588 | vite: ^5.0.0 589 | dependencies: 590 | '@sveltejs/vite-plugin-svelte': 4.0.0(svelte@5.1.14)(vite@5.4.11) 591 | debug: 4.3.7 592 | svelte: 5.1.14 593 | vite: 5.4.11 594 | transitivePeerDependencies: 595 | - supports-color 596 | dev: true 597 | 598 | /@sveltejs/vite-plugin-svelte@4.0.0(svelte@5.1.14)(vite@5.4.11): 599 | resolution: {integrity: sha512-kpVJwF+gNiMEsoHaw+FJL76IYiwBikkxYU83+BpqQLdVMff19KeRKLd2wisS8niNBMJ2omv5gG+iGDDwd8jzag==} 600 | engines: {node: ^18.0.0 || ^20.0.0 || >=22} 601 | peerDependencies: 602 | svelte: ^5.0.0-next.96 || ^5.0.0 603 | vite: ^5.0.0 604 | dependencies: 605 | '@sveltejs/vite-plugin-svelte-inspector': 3.0.1(@sveltejs/vite-plugin-svelte@4.0.0)(svelte@5.1.14)(vite@5.4.11) 606 | debug: 4.3.7 607 | deepmerge: 4.3.1 608 | kleur: 4.1.5 609 | magic-string: 0.30.12 610 | svelte: 5.1.14 611 | vite: 5.4.11 612 | vitefu: 1.0.3(vite@5.4.11) 613 | transitivePeerDependencies: 614 | - supports-color 615 | dev: true 616 | 617 | /@types/cookie@0.6.0: 618 | resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 619 | dev: true 620 | 621 | /@types/estree@1.0.6: 622 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 623 | dev: true 624 | 625 | /@types/json-schema@7.0.15: 626 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 627 | dev: true 628 | 629 | /@types/json5@0.0.29: 630 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 631 | dev: true 632 | 633 | /acorn-jsx@5.3.2(acorn@8.14.0): 634 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 635 | peerDependencies: 636 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 637 | dependencies: 638 | acorn: 8.14.0 639 | dev: true 640 | 641 | /acorn-typescript@1.4.13(acorn@8.14.0): 642 | resolution: {integrity: sha512-xsc9Xv0xlVfwp2o7sQ+GCQ1PgbkdcpWdTzrwXxO3xDMTAywVS3oXVOcOHuRjAPkS4P9b+yc/qNF15460v+jp4Q==} 643 | peerDependencies: 644 | acorn: '>=8.9.0' 645 | dependencies: 646 | acorn: 8.14.0 647 | dev: true 648 | 649 | /acorn@8.14.0: 650 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 651 | engines: {node: '>=0.4.0'} 652 | hasBin: true 653 | dev: true 654 | 655 | /ajv@6.12.6: 656 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 657 | dependencies: 658 | fast-deep-equal: 3.1.3 659 | fast-json-stable-stringify: 2.1.0 660 | json-schema-traverse: 0.4.1 661 | uri-js: 4.4.1 662 | dev: true 663 | 664 | /ansi-styles@4.3.0: 665 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 666 | engines: {node: '>=8'} 667 | dependencies: 668 | color-convert: 2.0.1 669 | dev: true 670 | 671 | /argparse@2.0.1: 672 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 673 | dev: true 674 | 675 | /aria-query@5.3.2: 676 | resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 677 | engines: {node: '>= 0.4'} 678 | dev: true 679 | 680 | /array-buffer-byte-length@1.0.1: 681 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 682 | engines: {node: '>= 0.4'} 683 | dependencies: 684 | call-bind: 1.0.7 685 | is-array-buffer: 3.0.4 686 | dev: true 687 | 688 | /array-includes@3.1.8: 689 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 690 | engines: {node: '>= 0.4'} 691 | dependencies: 692 | call-bind: 1.0.7 693 | define-properties: 1.2.1 694 | es-abstract: 1.23.3 695 | es-object-atoms: 1.0.0 696 | get-intrinsic: 1.2.4 697 | is-string: 1.0.7 698 | dev: true 699 | 700 | /array.prototype.findlastindex@1.2.5: 701 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 702 | engines: {node: '>= 0.4'} 703 | dependencies: 704 | call-bind: 1.0.7 705 | define-properties: 1.2.1 706 | es-abstract: 1.23.3 707 | es-errors: 1.3.0 708 | es-object-atoms: 1.0.0 709 | es-shim-unscopables: 1.0.2 710 | dev: true 711 | 712 | /array.prototype.flat@1.3.2: 713 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 714 | engines: {node: '>= 0.4'} 715 | dependencies: 716 | call-bind: 1.0.7 717 | define-properties: 1.2.1 718 | es-abstract: 1.23.3 719 | es-shim-unscopables: 1.0.2 720 | dev: true 721 | 722 | /array.prototype.flatmap@1.3.2: 723 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 724 | engines: {node: '>= 0.4'} 725 | dependencies: 726 | call-bind: 1.0.7 727 | define-properties: 1.2.1 728 | es-abstract: 1.23.3 729 | es-shim-unscopables: 1.0.2 730 | dev: true 731 | 732 | /arraybuffer.prototype.slice@1.0.3: 733 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} 734 | engines: {node: '>= 0.4'} 735 | dependencies: 736 | array-buffer-byte-length: 1.0.1 737 | call-bind: 1.0.7 738 | define-properties: 1.2.1 739 | es-abstract: 1.23.3 740 | es-errors: 1.3.0 741 | get-intrinsic: 1.2.4 742 | is-array-buffer: 3.0.4 743 | is-shared-array-buffer: 1.0.3 744 | dev: true 745 | 746 | /available-typed-arrays@1.0.7: 747 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 748 | engines: {node: '>= 0.4'} 749 | dependencies: 750 | possible-typed-array-names: 1.0.0 751 | dev: true 752 | 753 | /axobject-query@4.1.0: 754 | resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 755 | engines: {node: '>= 0.4'} 756 | dev: true 757 | 758 | /balanced-match@1.0.2: 759 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 760 | dev: true 761 | 762 | /brace-expansion@1.1.11: 763 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 764 | dependencies: 765 | balanced-match: 1.0.2 766 | concat-map: 0.0.1 767 | dev: true 768 | 769 | /builtins@5.1.0: 770 | resolution: {integrity: sha512-SW9lzGTLvWTP1AY8xeAMZimqDrIaSdLQUcVr9DMef51niJ022Ri87SwRRKYm4A6iHfkPaiVUu/Duw2Wc4J7kKg==} 771 | dependencies: 772 | semver: 7.6.3 773 | dev: true 774 | 775 | /call-bind@1.0.7: 776 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 777 | engines: {node: '>= 0.4'} 778 | dependencies: 779 | es-define-property: 1.0.0 780 | es-errors: 1.3.0 781 | function-bind: 1.1.2 782 | get-intrinsic: 1.2.4 783 | set-function-length: 1.2.2 784 | dev: true 785 | 786 | /callsites@3.1.0: 787 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 788 | engines: {node: '>=6'} 789 | dev: true 790 | 791 | /chalk@4.1.2: 792 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 793 | engines: {node: '>=10'} 794 | dependencies: 795 | ansi-styles: 4.3.0 796 | supports-color: 7.2.0 797 | dev: true 798 | 799 | /color-convert@2.0.1: 800 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 801 | engines: {node: '>=7.0.0'} 802 | dependencies: 803 | color-name: 1.1.4 804 | dev: true 805 | 806 | /color-name@1.1.4: 807 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 808 | dev: true 809 | 810 | /concat-map@0.0.1: 811 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 812 | dev: true 813 | 814 | /cookie@0.6.0: 815 | resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==} 816 | engines: {node: '>= 0.6'} 817 | dev: true 818 | 819 | /cross-spawn@7.0.3: 820 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 821 | engines: {node: '>= 8'} 822 | dependencies: 823 | path-key: 3.1.1 824 | shebang-command: 2.0.0 825 | which: 2.0.2 826 | dev: true 827 | 828 | /cssesc@3.0.0: 829 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 830 | engines: {node: '>=4'} 831 | hasBin: true 832 | dev: true 833 | 834 | /data-view-buffer@1.0.1: 835 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} 836 | engines: {node: '>= 0.4'} 837 | dependencies: 838 | call-bind: 1.0.7 839 | es-errors: 1.3.0 840 | is-data-view: 1.0.1 841 | dev: true 842 | 843 | /data-view-byte-length@1.0.1: 844 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} 845 | engines: {node: '>= 0.4'} 846 | dependencies: 847 | call-bind: 1.0.7 848 | es-errors: 1.3.0 849 | is-data-view: 1.0.1 850 | dev: true 851 | 852 | /data-view-byte-offset@1.0.0: 853 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} 854 | engines: {node: '>= 0.4'} 855 | dependencies: 856 | call-bind: 1.0.7 857 | es-errors: 1.3.0 858 | is-data-view: 1.0.1 859 | dev: true 860 | 861 | /debug@3.2.7: 862 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 863 | peerDependencies: 864 | supports-color: '*' 865 | peerDependenciesMeta: 866 | supports-color: 867 | optional: true 868 | dependencies: 869 | ms: 2.1.3 870 | dev: true 871 | 872 | /debug@4.3.7: 873 | resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 874 | engines: {node: '>=6.0'} 875 | peerDependencies: 876 | supports-color: '*' 877 | peerDependenciesMeta: 878 | supports-color: 879 | optional: true 880 | dependencies: 881 | ms: 2.1.3 882 | dev: true 883 | 884 | /dedent-js@1.0.1: 885 | resolution: {integrity: sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==} 886 | dev: true 887 | 888 | /deep-is@0.1.4: 889 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 890 | dev: true 891 | 892 | /deepmerge@4.3.1: 893 | resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 894 | engines: {node: '>=0.10.0'} 895 | dev: true 896 | 897 | /define-data-property@1.1.4: 898 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 899 | engines: {node: '>= 0.4'} 900 | dependencies: 901 | es-define-property: 1.0.0 902 | es-errors: 1.3.0 903 | gopd: 1.0.1 904 | dev: true 905 | 906 | /define-properties@1.2.1: 907 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 908 | engines: {node: '>= 0.4'} 909 | dependencies: 910 | define-data-property: 1.1.4 911 | has-property-descriptors: 1.0.2 912 | object-keys: 1.1.1 913 | dev: true 914 | 915 | /devalue@5.1.1: 916 | resolution: {integrity: sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==} 917 | dev: true 918 | 919 | /doctrine@2.1.0: 920 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 921 | engines: {node: '>=0.10.0'} 922 | dependencies: 923 | esutils: 2.0.3 924 | dev: true 925 | 926 | /es-abstract@1.23.3: 927 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} 928 | engines: {node: '>= 0.4'} 929 | dependencies: 930 | array-buffer-byte-length: 1.0.1 931 | arraybuffer.prototype.slice: 1.0.3 932 | available-typed-arrays: 1.0.7 933 | call-bind: 1.0.7 934 | data-view-buffer: 1.0.1 935 | data-view-byte-length: 1.0.1 936 | data-view-byte-offset: 1.0.0 937 | es-define-property: 1.0.0 938 | es-errors: 1.3.0 939 | es-object-atoms: 1.0.0 940 | es-set-tostringtag: 2.0.3 941 | es-to-primitive: 1.2.1 942 | function.prototype.name: 1.1.6 943 | get-intrinsic: 1.2.4 944 | get-symbol-description: 1.0.2 945 | globalthis: 1.0.4 946 | gopd: 1.0.1 947 | has-property-descriptors: 1.0.2 948 | has-proto: 1.0.3 949 | has-symbols: 1.0.3 950 | hasown: 2.0.2 951 | internal-slot: 1.0.7 952 | is-array-buffer: 3.0.4 953 | is-callable: 1.2.7 954 | is-data-view: 1.0.1 955 | is-negative-zero: 2.0.3 956 | is-regex: 1.1.4 957 | is-shared-array-buffer: 1.0.3 958 | is-string: 1.0.7 959 | is-typed-array: 1.1.13 960 | is-weakref: 1.0.2 961 | object-inspect: 1.13.3 962 | object-keys: 1.1.1 963 | object.assign: 4.1.5 964 | regexp.prototype.flags: 1.5.3 965 | safe-array-concat: 1.1.2 966 | safe-regex-test: 1.0.3 967 | string.prototype.trim: 1.2.9 968 | string.prototype.trimend: 1.0.8 969 | string.prototype.trimstart: 1.0.8 970 | typed-array-buffer: 1.0.2 971 | typed-array-byte-length: 1.0.1 972 | typed-array-byte-offset: 1.0.2 973 | typed-array-length: 1.0.6 974 | unbox-primitive: 1.0.2 975 | which-typed-array: 1.1.15 976 | dev: true 977 | 978 | /es-define-property@1.0.0: 979 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} 980 | engines: {node: '>= 0.4'} 981 | dependencies: 982 | get-intrinsic: 1.2.4 983 | dev: true 984 | 985 | /es-errors@1.3.0: 986 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 987 | engines: {node: '>= 0.4'} 988 | dev: true 989 | 990 | /es-object-atoms@1.0.0: 991 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} 992 | engines: {node: '>= 0.4'} 993 | dependencies: 994 | es-errors: 1.3.0 995 | dev: true 996 | 997 | /es-set-tostringtag@2.0.3: 998 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 999 | engines: {node: '>= 0.4'} 1000 | dependencies: 1001 | get-intrinsic: 1.2.4 1002 | has-tostringtag: 1.0.2 1003 | hasown: 2.0.2 1004 | dev: true 1005 | 1006 | /es-shim-unscopables@1.0.2: 1007 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 1008 | dependencies: 1009 | hasown: 2.0.2 1010 | dev: true 1011 | 1012 | /es-to-primitive@1.2.1: 1013 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 1014 | engines: {node: '>= 0.4'} 1015 | dependencies: 1016 | is-callable: 1.2.7 1017 | is-date-object: 1.0.5 1018 | is-symbol: 1.0.4 1019 | dev: true 1020 | 1021 | /esbuild@0.21.5: 1022 | resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 1023 | engines: {node: '>=12'} 1024 | hasBin: true 1025 | requiresBuild: true 1026 | optionalDependencies: 1027 | '@esbuild/aix-ppc64': 0.21.5 1028 | '@esbuild/android-arm': 0.21.5 1029 | '@esbuild/android-arm64': 0.21.5 1030 | '@esbuild/android-x64': 0.21.5 1031 | '@esbuild/darwin-arm64': 0.21.5 1032 | '@esbuild/darwin-x64': 0.21.5 1033 | '@esbuild/freebsd-arm64': 0.21.5 1034 | '@esbuild/freebsd-x64': 0.21.5 1035 | '@esbuild/linux-arm': 0.21.5 1036 | '@esbuild/linux-arm64': 0.21.5 1037 | '@esbuild/linux-ia32': 0.21.5 1038 | '@esbuild/linux-loong64': 0.21.5 1039 | '@esbuild/linux-mips64el': 0.21.5 1040 | '@esbuild/linux-ppc64': 0.21.5 1041 | '@esbuild/linux-riscv64': 0.21.5 1042 | '@esbuild/linux-s390x': 0.21.5 1043 | '@esbuild/linux-x64': 0.21.5 1044 | '@esbuild/netbsd-x64': 0.21.5 1045 | '@esbuild/openbsd-x64': 0.21.5 1046 | '@esbuild/sunos-x64': 0.21.5 1047 | '@esbuild/win32-arm64': 0.21.5 1048 | '@esbuild/win32-ia32': 0.21.5 1049 | '@esbuild/win32-x64': 0.21.5 1050 | dev: true 1051 | 1052 | /escape-string-regexp@4.0.0: 1053 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1054 | engines: {node: '>=10'} 1055 | dev: true 1056 | 1057 | /eslint-compat-utils@0.5.1(eslint@9.14.0): 1058 | resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} 1059 | engines: {node: '>=12'} 1060 | peerDependencies: 1061 | eslint: '>=6.0.0' 1062 | dependencies: 1063 | eslint: 9.14.0 1064 | semver: 7.6.3 1065 | dev: true 1066 | 1067 | /eslint-config-standard@17.1.0(eslint-plugin-import@2.31.0)(eslint-plugin-n@15.7.0)(eslint-plugin-promise@6.6.0)(eslint@9.14.0): 1068 | resolution: {integrity: sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==} 1069 | engines: {node: '>=12.0.0'} 1070 | peerDependencies: 1071 | eslint: ^8.0.1 1072 | eslint-plugin-import: ^2.25.2 1073 | eslint-plugin-n: '^15.0.0 || ^16.0.0 ' 1074 | eslint-plugin-promise: ^6.0.0 1075 | dependencies: 1076 | eslint: 9.14.0 1077 | eslint-plugin-import: 2.31.0(eslint@9.14.0) 1078 | eslint-plugin-n: 15.7.0(eslint@9.14.0) 1079 | eslint-plugin-promise: 6.6.0(eslint@9.14.0) 1080 | dev: true 1081 | 1082 | /eslint-import-resolver-node@0.3.9: 1083 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 1084 | dependencies: 1085 | debug: 3.2.7 1086 | is-core-module: 2.15.1 1087 | resolve: 1.22.8 1088 | transitivePeerDependencies: 1089 | - supports-color 1090 | dev: true 1091 | 1092 | /eslint-module-utils@2.12.0(eslint-import-resolver-node@0.3.9)(eslint@9.14.0): 1093 | resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} 1094 | engines: {node: '>=4'} 1095 | peerDependencies: 1096 | '@typescript-eslint/parser': '*' 1097 | eslint: '*' 1098 | eslint-import-resolver-node: '*' 1099 | eslint-import-resolver-typescript: '*' 1100 | eslint-import-resolver-webpack: '*' 1101 | peerDependenciesMeta: 1102 | '@typescript-eslint/parser': 1103 | optional: true 1104 | eslint: 1105 | optional: true 1106 | eslint-import-resolver-node: 1107 | optional: true 1108 | eslint-import-resolver-typescript: 1109 | optional: true 1110 | eslint-import-resolver-webpack: 1111 | optional: true 1112 | dependencies: 1113 | debug: 3.2.7 1114 | eslint: 9.14.0 1115 | eslint-import-resolver-node: 0.3.9 1116 | transitivePeerDependencies: 1117 | - supports-color 1118 | dev: true 1119 | 1120 | /eslint-plugin-es@4.1.0(eslint@9.14.0): 1121 | resolution: {integrity: sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ==} 1122 | engines: {node: '>=8.10.0'} 1123 | peerDependencies: 1124 | eslint: '>=4.19.1' 1125 | dependencies: 1126 | eslint: 9.14.0 1127 | eslint-utils: 2.1.0 1128 | regexpp: 3.2.0 1129 | dev: true 1130 | 1131 | /eslint-plugin-import@2.31.0(eslint@9.14.0): 1132 | resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} 1133 | engines: {node: '>=4'} 1134 | peerDependencies: 1135 | '@typescript-eslint/parser': '*' 1136 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 1137 | peerDependenciesMeta: 1138 | '@typescript-eslint/parser': 1139 | optional: true 1140 | dependencies: 1141 | '@rtsao/scc': 1.1.0 1142 | array-includes: 3.1.8 1143 | array.prototype.findlastindex: 1.2.5 1144 | array.prototype.flat: 1.3.2 1145 | array.prototype.flatmap: 1.3.2 1146 | debug: 3.2.7 1147 | doctrine: 2.1.0 1148 | eslint: 9.14.0 1149 | eslint-import-resolver-node: 0.3.9 1150 | eslint-module-utils: 2.12.0(eslint-import-resolver-node@0.3.9)(eslint@9.14.0) 1151 | hasown: 2.0.2 1152 | is-core-module: 2.15.1 1153 | is-glob: 4.0.3 1154 | minimatch: 3.1.2 1155 | object.fromentries: 2.0.8 1156 | object.groupby: 1.0.3 1157 | object.values: 1.2.0 1158 | semver: 6.3.1 1159 | string.prototype.trimend: 1.0.8 1160 | tsconfig-paths: 3.15.0 1161 | transitivePeerDependencies: 1162 | - eslint-import-resolver-typescript 1163 | - eslint-import-resolver-webpack 1164 | - supports-color 1165 | dev: true 1166 | 1167 | /eslint-plugin-mocha@10.5.0(eslint@9.14.0): 1168 | resolution: {integrity: sha512-F2ALmQVPT1GoP27O1JTZGrV9Pqg8k79OeIuvw63UxMtQKREZtmkK1NFgkZQ2TW7L2JSSFKHFPTtHu5z8R9QNRw==} 1169 | engines: {node: '>=14.0.0'} 1170 | peerDependencies: 1171 | eslint: '>=7.0.0' 1172 | dependencies: 1173 | eslint: 9.14.0 1174 | eslint-utils: 3.0.0(eslint@9.14.0) 1175 | globals: 13.24.0 1176 | rambda: 7.5.0 1177 | dev: true 1178 | 1179 | /eslint-plugin-n@15.7.0(eslint@9.14.0): 1180 | resolution: {integrity: sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q==} 1181 | engines: {node: '>=12.22.0'} 1182 | peerDependencies: 1183 | eslint: '>=7.0.0' 1184 | dependencies: 1185 | builtins: 5.1.0 1186 | eslint: 9.14.0 1187 | eslint-plugin-es: 4.1.0(eslint@9.14.0) 1188 | eslint-utils: 3.0.0(eslint@9.14.0) 1189 | ignore: 5.3.2 1190 | is-core-module: 2.15.1 1191 | minimatch: 3.1.2 1192 | resolve: 1.22.8 1193 | semver: 7.6.3 1194 | dev: true 1195 | 1196 | /eslint-plugin-promise@6.6.0(eslint@9.14.0): 1197 | resolution: {integrity: sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ==} 1198 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1199 | peerDependencies: 1200 | eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 1201 | dependencies: 1202 | eslint: 9.14.0 1203 | dev: true 1204 | 1205 | /eslint-plugin-svelte@2.46.0(eslint@9.14.0)(svelte@5.1.14): 1206 | resolution: {integrity: sha512-1A7iEMkzmCZ9/Iz+EAfOGYL8IoIG6zeKEq1SmpxGeM5SXmoQq+ZNnCpXFVJpsxPWYx8jIVGMerQMzX20cqUl0g==} 1207 | engines: {node: ^14.17.0 || >=16.0.0} 1208 | peerDependencies: 1209 | eslint: ^7.0.0 || ^8.0.0-0 || ^9.0.0-0 1210 | svelte: ^3.37.0 || ^4.0.0 || ^5.0.0 1211 | peerDependenciesMeta: 1212 | svelte: 1213 | optional: true 1214 | dependencies: 1215 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0) 1216 | '@jridgewell/sourcemap-codec': 1.5.0 1217 | eslint: 9.14.0 1218 | eslint-compat-utils: 0.5.1(eslint@9.14.0) 1219 | esutils: 2.0.3 1220 | known-css-properties: 0.35.0 1221 | postcss: 8.4.48 1222 | postcss-load-config: 3.1.4(postcss@8.4.48) 1223 | postcss-safe-parser: 6.0.0(postcss@8.4.48) 1224 | postcss-selector-parser: 6.1.2 1225 | semver: 7.6.3 1226 | svelte: 5.1.14 1227 | svelte-eslint-parser: 0.43.0(svelte@5.1.14) 1228 | transitivePeerDependencies: 1229 | - ts-node 1230 | dev: true 1231 | 1232 | /eslint-scope@7.2.2: 1233 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1234 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1235 | dependencies: 1236 | esrecurse: 4.3.0 1237 | estraverse: 5.3.0 1238 | dev: true 1239 | 1240 | /eslint-scope@8.2.0: 1241 | resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} 1242 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1243 | dependencies: 1244 | esrecurse: 4.3.0 1245 | estraverse: 5.3.0 1246 | dev: true 1247 | 1248 | /eslint-utils@2.1.0: 1249 | resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} 1250 | engines: {node: '>=6'} 1251 | dependencies: 1252 | eslint-visitor-keys: 1.3.0 1253 | dev: true 1254 | 1255 | /eslint-utils@3.0.0(eslint@9.14.0): 1256 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==} 1257 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0} 1258 | peerDependencies: 1259 | eslint: '>=5' 1260 | dependencies: 1261 | eslint: 9.14.0 1262 | eslint-visitor-keys: 2.1.0 1263 | dev: true 1264 | 1265 | /eslint-visitor-keys@1.3.0: 1266 | resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} 1267 | engines: {node: '>=4'} 1268 | dev: true 1269 | 1270 | /eslint-visitor-keys@2.1.0: 1271 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 1272 | engines: {node: '>=10'} 1273 | dev: true 1274 | 1275 | /eslint-visitor-keys@3.4.3: 1276 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1277 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1278 | dev: true 1279 | 1280 | /eslint-visitor-keys@4.2.0: 1281 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 1282 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1283 | dev: true 1284 | 1285 | /eslint@9.14.0: 1286 | resolution: {integrity: sha512-c2FHsVBr87lnUtjP4Yhvk4yEhKrQavGafRA/Se1ouse8PfbfC/Qh9Mxa00yWsZRlqeUB9raXip0aiiUZkgnr9g==} 1287 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1288 | hasBin: true 1289 | peerDependencies: 1290 | jiti: '*' 1291 | peerDependenciesMeta: 1292 | jiti: 1293 | optional: true 1294 | dependencies: 1295 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.14.0) 1296 | '@eslint-community/regexpp': 4.12.1 1297 | '@eslint/config-array': 0.18.0 1298 | '@eslint/core': 0.7.0 1299 | '@eslint/eslintrc': 3.1.0 1300 | '@eslint/js': 9.14.0 1301 | '@eslint/plugin-kit': 0.2.2 1302 | '@humanfs/node': 0.16.6 1303 | '@humanwhocodes/module-importer': 1.0.1 1304 | '@humanwhocodes/retry': 0.4.1 1305 | '@types/estree': 1.0.6 1306 | '@types/json-schema': 7.0.15 1307 | ajv: 6.12.6 1308 | chalk: 4.1.2 1309 | cross-spawn: 7.0.3 1310 | debug: 4.3.7 1311 | escape-string-regexp: 4.0.0 1312 | eslint-scope: 8.2.0 1313 | eslint-visitor-keys: 4.2.0 1314 | espree: 10.3.0 1315 | esquery: 1.6.0 1316 | esutils: 2.0.3 1317 | fast-deep-equal: 3.1.3 1318 | file-entry-cache: 8.0.0 1319 | find-up: 5.0.0 1320 | glob-parent: 6.0.2 1321 | ignore: 5.3.2 1322 | imurmurhash: 0.1.4 1323 | is-glob: 4.0.3 1324 | json-stable-stringify-without-jsonify: 1.0.1 1325 | lodash.merge: 4.6.2 1326 | minimatch: 3.1.2 1327 | natural-compare: 1.4.0 1328 | optionator: 0.9.4 1329 | text-table: 0.2.0 1330 | transitivePeerDependencies: 1331 | - supports-color 1332 | dev: true 1333 | 1334 | /esm-env@1.1.4: 1335 | resolution: {integrity: sha512-oO82nKPHKkzIj/hbtuDYy/JHqBHFlMIW36SDiPCVsj87ntDLcWN+sJ1erdVryd4NxODacFTsdrIE3b7IamqbOg==} 1336 | dev: true 1337 | 1338 | /espree@10.3.0: 1339 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} 1340 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1341 | dependencies: 1342 | acorn: 8.14.0 1343 | acorn-jsx: 5.3.2(acorn@8.14.0) 1344 | eslint-visitor-keys: 4.2.0 1345 | dev: true 1346 | 1347 | /espree@9.6.1: 1348 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1349 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1350 | dependencies: 1351 | acorn: 8.14.0 1352 | acorn-jsx: 5.3.2(acorn@8.14.0) 1353 | eslint-visitor-keys: 3.4.3 1354 | dev: true 1355 | 1356 | /esquery@1.6.0: 1357 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 1358 | engines: {node: '>=0.10'} 1359 | dependencies: 1360 | estraverse: 5.3.0 1361 | dev: true 1362 | 1363 | /esrap@1.2.2: 1364 | resolution: {integrity: sha512-F2pSJklxx1BlQIQgooczXCPHmcWpn6EsP5oo73LQfonG9fIlIENQ8vMmfGXeojP9MrkzUNAfyU5vdFlR9shHAw==} 1365 | dependencies: 1366 | '@jridgewell/sourcemap-codec': 1.5.0 1367 | '@types/estree': 1.0.6 1368 | dev: true 1369 | 1370 | /esrecurse@4.3.0: 1371 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1372 | engines: {node: '>=4.0'} 1373 | dependencies: 1374 | estraverse: 5.3.0 1375 | dev: true 1376 | 1377 | /estraverse@5.3.0: 1378 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1379 | engines: {node: '>=4.0'} 1380 | dev: true 1381 | 1382 | /esutils@2.0.3: 1383 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1384 | engines: {node: '>=0.10.0'} 1385 | dev: true 1386 | 1387 | /fast-deep-equal@3.1.3: 1388 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1389 | dev: true 1390 | 1391 | /fast-json-stable-stringify@2.1.0: 1392 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1393 | dev: true 1394 | 1395 | /fast-levenshtein@2.0.6: 1396 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1397 | dev: true 1398 | 1399 | /file-entry-cache@8.0.0: 1400 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 1401 | engines: {node: '>=16.0.0'} 1402 | dependencies: 1403 | flat-cache: 4.0.1 1404 | dev: true 1405 | 1406 | /find-up@5.0.0: 1407 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1408 | engines: {node: '>=10'} 1409 | dependencies: 1410 | locate-path: 6.0.0 1411 | path-exists: 4.0.0 1412 | dev: true 1413 | 1414 | /flat-cache@4.0.1: 1415 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 1416 | engines: {node: '>=16'} 1417 | dependencies: 1418 | flatted: 3.3.1 1419 | keyv: 4.5.4 1420 | dev: true 1421 | 1422 | /flatted@3.3.1: 1423 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 1424 | dev: true 1425 | 1426 | /for-each@0.3.3: 1427 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1428 | dependencies: 1429 | is-callable: 1.2.7 1430 | dev: true 1431 | 1432 | /fsevents@2.3.3: 1433 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1434 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1435 | os: [darwin] 1436 | requiresBuild: true 1437 | dev: true 1438 | optional: true 1439 | 1440 | /function-bind@1.1.2: 1441 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1442 | dev: true 1443 | 1444 | /function.prototype.name@1.1.6: 1445 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 1446 | engines: {node: '>= 0.4'} 1447 | dependencies: 1448 | call-bind: 1.0.7 1449 | define-properties: 1.2.1 1450 | es-abstract: 1.23.3 1451 | functions-have-names: 1.2.3 1452 | dev: true 1453 | 1454 | /functions-have-names@1.2.3: 1455 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1456 | dev: true 1457 | 1458 | /get-intrinsic@1.2.4: 1459 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} 1460 | engines: {node: '>= 0.4'} 1461 | dependencies: 1462 | es-errors: 1.3.0 1463 | function-bind: 1.1.2 1464 | has-proto: 1.0.3 1465 | has-symbols: 1.0.3 1466 | hasown: 2.0.2 1467 | dev: true 1468 | 1469 | /get-symbol-description@1.0.2: 1470 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} 1471 | engines: {node: '>= 0.4'} 1472 | dependencies: 1473 | call-bind: 1.0.7 1474 | es-errors: 1.3.0 1475 | get-intrinsic: 1.2.4 1476 | dev: true 1477 | 1478 | /glob-parent@6.0.2: 1479 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1480 | engines: {node: '>=10.13.0'} 1481 | dependencies: 1482 | is-glob: 4.0.3 1483 | dev: true 1484 | 1485 | /globals@13.24.0: 1486 | resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} 1487 | engines: {node: '>=8'} 1488 | dependencies: 1489 | type-fest: 0.20.2 1490 | dev: true 1491 | 1492 | /globals@14.0.0: 1493 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 1494 | engines: {node: '>=18'} 1495 | dev: true 1496 | 1497 | /globalthis@1.0.4: 1498 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 1499 | engines: {node: '>= 0.4'} 1500 | dependencies: 1501 | define-properties: 1.2.1 1502 | gopd: 1.0.1 1503 | dev: true 1504 | 1505 | /globalyzer@0.1.0: 1506 | resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} 1507 | dev: true 1508 | 1509 | /globrex@0.1.2: 1510 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 1511 | dev: true 1512 | 1513 | /gopd@1.0.1: 1514 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1515 | dependencies: 1516 | get-intrinsic: 1.2.4 1517 | dev: true 1518 | 1519 | /has-bigints@1.0.2: 1520 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1521 | dev: true 1522 | 1523 | /has-flag@4.0.0: 1524 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1525 | engines: {node: '>=8'} 1526 | dev: true 1527 | 1528 | /has-property-descriptors@1.0.2: 1529 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 1530 | dependencies: 1531 | es-define-property: 1.0.0 1532 | dev: true 1533 | 1534 | /has-proto@1.0.3: 1535 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} 1536 | engines: {node: '>= 0.4'} 1537 | dev: true 1538 | 1539 | /has-symbols@1.0.3: 1540 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1541 | engines: {node: '>= 0.4'} 1542 | dev: true 1543 | 1544 | /has-tostringtag@1.0.2: 1545 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 1546 | engines: {node: '>= 0.4'} 1547 | dependencies: 1548 | has-symbols: 1.0.3 1549 | dev: true 1550 | 1551 | /hasown@2.0.2: 1552 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1553 | engines: {node: '>= 0.4'} 1554 | dependencies: 1555 | function-bind: 1.1.2 1556 | dev: true 1557 | 1558 | /ignore@5.3.2: 1559 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1560 | engines: {node: '>= 4'} 1561 | dev: true 1562 | 1563 | /import-fresh@3.3.0: 1564 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1565 | engines: {node: '>=6'} 1566 | dependencies: 1567 | parent-module: 1.0.1 1568 | resolve-from: 4.0.0 1569 | dev: true 1570 | 1571 | /import-meta-resolve@4.1.0: 1572 | resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} 1573 | dev: true 1574 | 1575 | /imurmurhash@0.1.4: 1576 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1577 | engines: {node: '>=0.8.19'} 1578 | dev: true 1579 | 1580 | /internal-slot@1.0.7: 1581 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 1582 | engines: {node: '>= 0.4'} 1583 | dependencies: 1584 | es-errors: 1.3.0 1585 | hasown: 2.0.2 1586 | side-channel: 1.0.6 1587 | dev: true 1588 | 1589 | /is-array-buffer@3.0.4: 1590 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 1591 | engines: {node: '>= 0.4'} 1592 | dependencies: 1593 | call-bind: 1.0.7 1594 | get-intrinsic: 1.2.4 1595 | dev: true 1596 | 1597 | /is-bigint@1.0.4: 1598 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1599 | dependencies: 1600 | has-bigints: 1.0.2 1601 | dev: true 1602 | 1603 | /is-boolean-object@1.1.2: 1604 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1605 | engines: {node: '>= 0.4'} 1606 | dependencies: 1607 | call-bind: 1.0.7 1608 | has-tostringtag: 1.0.2 1609 | dev: true 1610 | 1611 | /is-callable@1.2.7: 1612 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1613 | engines: {node: '>= 0.4'} 1614 | dev: true 1615 | 1616 | /is-core-module@2.15.1: 1617 | resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} 1618 | engines: {node: '>= 0.4'} 1619 | dependencies: 1620 | hasown: 2.0.2 1621 | dev: true 1622 | 1623 | /is-data-view@1.0.1: 1624 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} 1625 | engines: {node: '>= 0.4'} 1626 | dependencies: 1627 | is-typed-array: 1.1.13 1628 | dev: true 1629 | 1630 | /is-date-object@1.0.5: 1631 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1632 | engines: {node: '>= 0.4'} 1633 | dependencies: 1634 | has-tostringtag: 1.0.2 1635 | dev: true 1636 | 1637 | /is-extglob@2.1.1: 1638 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1639 | engines: {node: '>=0.10.0'} 1640 | dev: true 1641 | 1642 | /is-glob@4.0.3: 1643 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1644 | engines: {node: '>=0.10.0'} 1645 | dependencies: 1646 | is-extglob: 2.1.1 1647 | dev: true 1648 | 1649 | /is-negative-zero@2.0.3: 1650 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 1651 | engines: {node: '>= 0.4'} 1652 | dev: true 1653 | 1654 | /is-number-object@1.0.7: 1655 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1656 | engines: {node: '>= 0.4'} 1657 | dependencies: 1658 | has-tostringtag: 1.0.2 1659 | dev: true 1660 | 1661 | /is-reference@3.0.2: 1662 | resolution: {integrity: sha512-v3rht/LgVcsdZa3O2Nqs+NMowLOxeOm7Ay9+/ARQ2F+qEoANRcqrjAZKGN0v8ymUetZGgkp26LTnGT7H0Qo9Pg==} 1663 | dependencies: 1664 | '@types/estree': 1.0.6 1665 | dev: true 1666 | 1667 | /is-regex@1.1.4: 1668 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1669 | engines: {node: '>= 0.4'} 1670 | dependencies: 1671 | call-bind: 1.0.7 1672 | has-tostringtag: 1.0.2 1673 | dev: true 1674 | 1675 | /is-shared-array-buffer@1.0.3: 1676 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} 1677 | engines: {node: '>= 0.4'} 1678 | dependencies: 1679 | call-bind: 1.0.7 1680 | dev: true 1681 | 1682 | /is-string@1.0.7: 1683 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1684 | engines: {node: '>= 0.4'} 1685 | dependencies: 1686 | has-tostringtag: 1.0.2 1687 | dev: true 1688 | 1689 | /is-symbol@1.0.4: 1690 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1691 | engines: {node: '>= 0.4'} 1692 | dependencies: 1693 | has-symbols: 1.0.3 1694 | dev: true 1695 | 1696 | /is-typed-array@1.1.13: 1697 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 1698 | engines: {node: '>= 0.4'} 1699 | dependencies: 1700 | which-typed-array: 1.1.15 1701 | dev: true 1702 | 1703 | /is-weakref@1.0.2: 1704 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1705 | dependencies: 1706 | call-bind: 1.0.7 1707 | dev: true 1708 | 1709 | /isarray@2.0.5: 1710 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1711 | dev: true 1712 | 1713 | /isexe@2.0.0: 1714 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1715 | dev: true 1716 | 1717 | /js-yaml@4.1.0: 1718 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1719 | hasBin: true 1720 | dependencies: 1721 | argparse: 2.0.1 1722 | dev: true 1723 | 1724 | /json-buffer@3.0.1: 1725 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1726 | dev: true 1727 | 1728 | /json-schema-traverse@0.4.1: 1729 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1730 | dev: true 1731 | 1732 | /json-stable-stringify-without-jsonify@1.0.1: 1733 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1734 | dev: true 1735 | 1736 | /json5@1.0.2: 1737 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1738 | hasBin: true 1739 | dependencies: 1740 | minimist: 1.2.8 1741 | dev: true 1742 | 1743 | /keyv@4.5.4: 1744 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1745 | dependencies: 1746 | json-buffer: 3.0.1 1747 | dev: true 1748 | 1749 | /kleur@4.1.5: 1750 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 1751 | engines: {node: '>=6'} 1752 | dev: true 1753 | 1754 | /known-css-properties@0.35.0: 1755 | resolution: {integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==} 1756 | dev: true 1757 | 1758 | /levn@0.4.1: 1759 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1760 | engines: {node: '>= 0.8.0'} 1761 | dependencies: 1762 | prelude-ls: 1.2.1 1763 | type-check: 0.4.0 1764 | dev: true 1765 | 1766 | /lilconfig@2.1.0: 1767 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 1768 | engines: {node: '>=10'} 1769 | dev: true 1770 | 1771 | /locate-character@3.0.0: 1772 | resolution: {integrity: sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==} 1773 | dev: true 1774 | 1775 | /locate-path@6.0.0: 1776 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1777 | engines: {node: '>=10'} 1778 | dependencies: 1779 | p-locate: 5.0.0 1780 | dev: true 1781 | 1782 | /lodash.merge@4.6.2: 1783 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1784 | dev: true 1785 | 1786 | /lower-case@2.0.2: 1787 | resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==} 1788 | dependencies: 1789 | tslib: 2.4.1 1790 | dev: true 1791 | 1792 | /magic-string@0.30.12: 1793 | resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==} 1794 | dependencies: 1795 | '@jridgewell/sourcemap-codec': 1.5.0 1796 | dev: true 1797 | 1798 | /minimatch@3.1.2: 1799 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1800 | dependencies: 1801 | brace-expansion: 1.1.11 1802 | dev: true 1803 | 1804 | /minimist@1.2.8: 1805 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1806 | dev: true 1807 | 1808 | /mri@1.1.6: 1809 | resolution: {integrity: sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ==} 1810 | engines: {node: '>=4'} 1811 | dev: true 1812 | 1813 | /mrmime@2.0.0: 1814 | resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} 1815 | engines: {node: '>=10'} 1816 | dev: true 1817 | 1818 | /ms@2.1.3: 1819 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1820 | dev: true 1821 | 1822 | /nanoid@3.3.7: 1823 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1824 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1825 | hasBin: true 1826 | dev: true 1827 | 1828 | /natural-compare@1.4.0: 1829 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1830 | dev: true 1831 | 1832 | /no-case@3.0.4: 1833 | resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==} 1834 | dependencies: 1835 | lower-case: 2.0.2 1836 | tslib: 2.4.1 1837 | dev: true 1838 | 1839 | /object-inspect@1.13.3: 1840 | resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} 1841 | engines: {node: '>= 0.4'} 1842 | dev: true 1843 | 1844 | /object-keys@1.1.1: 1845 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1846 | engines: {node: '>= 0.4'} 1847 | dev: true 1848 | 1849 | /object.assign@4.1.5: 1850 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 1851 | engines: {node: '>= 0.4'} 1852 | dependencies: 1853 | call-bind: 1.0.7 1854 | define-properties: 1.2.1 1855 | has-symbols: 1.0.3 1856 | object-keys: 1.1.1 1857 | dev: true 1858 | 1859 | /object.fromentries@2.0.8: 1860 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1861 | engines: {node: '>= 0.4'} 1862 | dependencies: 1863 | call-bind: 1.0.7 1864 | define-properties: 1.2.1 1865 | es-abstract: 1.23.3 1866 | es-object-atoms: 1.0.0 1867 | dev: true 1868 | 1869 | /object.groupby@1.0.3: 1870 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 1871 | engines: {node: '>= 0.4'} 1872 | dependencies: 1873 | call-bind: 1.0.7 1874 | define-properties: 1.2.1 1875 | es-abstract: 1.23.3 1876 | dev: true 1877 | 1878 | /object.values@1.2.0: 1879 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} 1880 | engines: {node: '>= 0.4'} 1881 | dependencies: 1882 | call-bind: 1.0.7 1883 | define-properties: 1.2.1 1884 | es-object-atoms: 1.0.0 1885 | dev: true 1886 | 1887 | /optionator@0.9.4: 1888 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1889 | engines: {node: '>= 0.8.0'} 1890 | dependencies: 1891 | deep-is: 0.1.4 1892 | fast-levenshtein: 2.0.6 1893 | levn: 0.4.1 1894 | prelude-ls: 1.2.1 1895 | type-check: 0.4.0 1896 | word-wrap: 1.2.5 1897 | dev: true 1898 | 1899 | /p-limit@3.1.0: 1900 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1901 | engines: {node: '>=10'} 1902 | dependencies: 1903 | yocto-queue: 0.1.0 1904 | dev: true 1905 | 1906 | /p-locate@5.0.0: 1907 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1908 | engines: {node: '>=10'} 1909 | dependencies: 1910 | p-limit: 3.1.0 1911 | dev: true 1912 | 1913 | /parent-module@1.0.1: 1914 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1915 | engines: {node: '>=6'} 1916 | dependencies: 1917 | callsites: 3.1.0 1918 | dev: true 1919 | 1920 | /pascal-case@3.1.2: 1921 | resolution: {integrity: sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==} 1922 | dependencies: 1923 | no-case: 3.0.4 1924 | tslib: 2.4.1 1925 | dev: true 1926 | 1927 | /path-exists@4.0.0: 1928 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1929 | engines: {node: '>=8'} 1930 | dev: true 1931 | 1932 | /path-key@3.1.1: 1933 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1934 | engines: {node: '>=8'} 1935 | dev: true 1936 | 1937 | /path-parse@1.0.7: 1938 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1939 | dev: true 1940 | 1941 | /picocolors@1.1.1: 1942 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1943 | dev: true 1944 | 1945 | /possible-typed-array-names@1.0.0: 1946 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1947 | engines: {node: '>= 0.4'} 1948 | dev: true 1949 | 1950 | /postcss-load-config@3.1.4(postcss@8.4.48): 1951 | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} 1952 | engines: {node: '>= 10'} 1953 | peerDependencies: 1954 | postcss: '>=8.0.9' 1955 | ts-node: '>=9.0.0' 1956 | peerDependenciesMeta: 1957 | postcss: 1958 | optional: true 1959 | ts-node: 1960 | optional: true 1961 | dependencies: 1962 | lilconfig: 2.1.0 1963 | postcss: 8.4.48 1964 | yaml: 1.10.2 1965 | dev: true 1966 | 1967 | /postcss-safe-parser@6.0.0(postcss@8.4.48): 1968 | resolution: {integrity: sha512-FARHN8pwH+WiS2OPCxJI8FuRJpTVnn6ZNFiqAM2aeW2LwTHWWmWgIyKC6cUo0L8aeKiF/14MNvnpls6R2PBeMQ==} 1969 | engines: {node: '>=12.0'} 1970 | peerDependencies: 1971 | postcss: ^8.3.3 1972 | dependencies: 1973 | postcss: 8.4.48 1974 | dev: true 1975 | 1976 | /postcss-scss@4.0.9(postcss@8.4.48): 1977 | resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==} 1978 | engines: {node: '>=12.0'} 1979 | peerDependencies: 1980 | postcss: ^8.4.29 1981 | dependencies: 1982 | postcss: 8.4.48 1983 | dev: true 1984 | 1985 | /postcss-selector-parser@6.1.2: 1986 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} 1987 | engines: {node: '>=4'} 1988 | dependencies: 1989 | cssesc: 3.0.0 1990 | util-deprecate: 1.0.2 1991 | dev: true 1992 | 1993 | /postcss@8.4.48: 1994 | resolution: {integrity: sha512-GCRK8F6+Dl7xYniR5a4FYbpBzU8XnZVeowqsQFYdcXuSbChgiks7qybSkbvnaeqv0G0B+dd9/jJgH8kkLDQeEA==} 1995 | engines: {node: ^10 || ^12 || >=14} 1996 | dependencies: 1997 | nanoid: 3.3.7 1998 | picocolors: 1.1.1 1999 | source-map-js: 1.2.1 2000 | dev: true 2001 | 2002 | /prelude-ls@1.2.1: 2003 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2004 | engines: {node: '>= 0.8.0'} 2005 | dev: true 2006 | 2007 | /punycode@2.3.0: 2008 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 2009 | engines: {node: '>=6'} 2010 | dev: true 2011 | 2012 | /rambda@7.5.0: 2013 | resolution: {integrity: sha512-y/M9weqWAH4iopRd7EHDEQQvpFPHj1AA3oHozE9tfITHUtTR7Z9PSlIRRG2l1GuW7sefC1cXFfIcF+cgnShdBA==} 2014 | dev: true 2015 | 2016 | /regexp.prototype.flags@1.5.3: 2017 | resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} 2018 | engines: {node: '>= 0.4'} 2019 | dependencies: 2020 | call-bind: 1.0.7 2021 | define-properties: 1.2.1 2022 | es-errors: 1.3.0 2023 | set-function-name: 2.0.2 2024 | dev: true 2025 | 2026 | /regexpp@3.2.0: 2027 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 2028 | engines: {node: '>=8'} 2029 | dev: true 2030 | 2031 | /resolve-from@4.0.0: 2032 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2033 | engines: {node: '>=4'} 2034 | dev: true 2035 | 2036 | /resolve@1.22.8: 2037 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} 2038 | hasBin: true 2039 | dependencies: 2040 | is-core-module: 2.15.1 2041 | path-parse: 1.0.7 2042 | supports-preserve-symlinks-flag: 1.0.0 2043 | dev: true 2044 | 2045 | /rollup@4.25.0: 2046 | resolution: {integrity: sha512-uVbClXmR6wvx5R1M3Od4utyLUxrmOcEm3pAtMphn73Apq19PDtHpgZoEvqH2YnnaNUuvKmg2DgRd2Sqv+odyqg==} 2047 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 2048 | hasBin: true 2049 | dependencies: 2050 | '@types/estree': 1.0.6 2051 | optionalDependencies: 2052 | '@rollup/rollup-android-arm-eabi': 4.25.0 2053 | '@rollup/rollup-android-arm64': 4.25.0 2054 | '@rollup/rollup-darwin-arm64': 4.25.0 2055 | '@rollup/rollup-darwin-x64': 4.25.0 2056 | '@rollup/rollup-freebsd-arm64': 4.25.0 2057 | '@rollup/rollup-freebsd-x64': 4.25.0 2058 | '@rollup/rollup-linux-arm-gnueabihf': 4.25.0 2059 | '@rollup/rollup-linux-arm-musleabihf': 4.25.0 2060 | '@rollup/rollup-linux-arm64-gnu': 4.25.0 2061 | '@rollup/rollup-linux-arm64-musl': 4.25.0 2062 | '@rollup/rollup-linux-powerpc64le-gnu': 4.25.0 2063 | '@rollup/rollup-linux-riscv64-gnu': 4.25.0 2064 | '@rollup/rollup-linux-s390x-gnu': 4.25.0 2065 | '@rollup/rollup-linux-x64-gnu': 4.25.0 2066 | '@rollup/rollup-linux-x64-musl': 4.25.0 2067 | '@rollup/rollup-win32-arm64-msvc': 4.25.0 2068 | '@rollup/rollup-win32-ia32-msvc': 4.25.0 2069 | '@rollup/rollup-win32-x64-msvc': 4.25.0 2070 | fsevents: 2.3.3 2071 | dev: true 2072 | 2073 | /sade@1.8.1: 2074 | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==} 2075 | engines: {node: '>=6'} 2076 | dependencies: 2077 | mri: 1.1.6 2078 | dev: true 2079 | 2080 | /safe-array-concat@1.1.2: 2081 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 2082 | engines: {node: '>=0.4'} 2083 | dependencies: 2084 | call-bind: 1.0.7 2085 | get-intrinsic: 1.2.4 2086 | has-symbols: 1.0.3 2087 | isarray: 2.0.5 2088 | dev: true 2089 | 2090 | /safe-regex-test@1.0.3: 2091 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} 2092 | engines: {node: '>= 0.4'} 2093 | dependencies: 2094 | call-bind: 1.0.7 2095 | es-errors: 1.3.0 2096 | is-regex: 1.1.4 2097 | dev: true 2098 | 2099 | /semver@6.3.1: 2100 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 2101 | hasBin: true 2102 | dev: true 2103 | 2104 | /semver@7.6.3: 2105 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 2106 | engines: {node: '>=10'} 2107 | hasBin: true 2108 | dev: true 2109 | 2110 | /set-cookie-parser@2.7.1: 2111 | resolution: {integrity: sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==} 2112 | dev: true 2113 | 2114 | /set-function-length@1.2.2: 2115 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 2116 | engines: {node: '>= 0.4'} 2117 | dependencies: 2118 | define-data-property: 1.1.4 2119 | es-errors: 1.3.0 2120 | function-bind: 1.1.2 2121 | get-intrinsic: 1.2.4 2122 | gopd: 1.0.1 2123 | has-property-descriptors: 1.0.2 2124 | dev: true 2125 | 2126 | /set-function-name@2.0.2: 2127 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 2128 | engines: {node: '>= 0.4'} 2129 | dependencies: 2130 | define-data-property: 1.1.4 2131 | es-errors: 1.3.0 2132 | functions-have-names: 1.2.3 2133 | has-property-descriptors: 1.0.2 2134 | dev: true 2135 | 2136 | /shebang-command@2.0.0: 2137 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2138 | engines: {node: '>=8'} 2139 | dependencies: 2140 | shebang-regex: 3.0.0 2141 | dev: true 2142 | 2143 | /shebang-regex@3.0.0: 2144 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2145 | engines: {node: '>=8'} 2146 | dev: true 2147 | 2148 | /side-channel@1.0.6: 2149 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 2150 | engines: {node: '>= 0.4'} 2151 | dependencies: 2152 | call-bind: 1.0.7 2153 | es-errors: 1.3.0 2154 | get-intrinsic: 1.2.4 2155 | object-inspect: 1.13.3 2156 | dev: true 2157 | 2158 | /sirv@3.0.0: 2159 | resolution: {integrity: sha512-BPwJGUeDaDCHihkORDchNyyTvWFhcusy1XMmhEVTQTwGeybFbp8YEmB+njbPnth1FibULBSBVwCQni25XlCUDg==} 2160 | engines: {node: '>=18'} 2161 | dependencies: 2162 | '@polka/url': 1.0.0-next.28 2163 | mrmime: 2.0.0 2164 | totalist: 3.0.1 2165 | dev: true 2166 | 2167 | /source-map-js@1.2.1: 2168 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 2169 | engines: {node: '>=0.10.0'} 2170 | dev: true 2171 | 2172 | /string.prototype.trim@1.2.9: 2173 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} 2174 | engines: {node: '>= 0.4'} 2175 | dependencies: 2176 | call-bind: 1.0.7 2177 | define-properties: 1.2.1 2178 | es-abstract: 1.23.3 2179 | es-object-atoms: 1.0.0 2180 | dev: true 2181 | 2182 | /string.prototype.trimend@1.0.8: 2183 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} 2184 | dependencies: 2185 | call-bind: 1.0.7 2186 | define-properties: 1.2.1 2187 | es-object-atoms: 1.0.0 2188 | dev: true 2189 | 2190 | /string.prototype.trimstart@1.0.8: 2191 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 2192 | engines: {node: '>= 0.4'} 2193 | dependencies: 2194 | call-bind: 1.0.7 2195 | define-properties: 1.2.1 2196 | es-object-atoms: 1.0.0 2197 | dev: true 2198 | 2199 | /strip-bom@3.0.0: 2200 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2201 | engines: {node: '>=4'} 2202 | dev: true 2203 | 2204 | /strip-json-comments@3.1.1: 2205 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2206 | engines: {node: '>=8'} 2207 | dev: true 2208 | 2209 | /supports-color@7.2.0: 2210 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2211 | engines: {node: '>=8'} 2212 | dependencies: 2213 | has-flag: 4.0.0 2214 | dev: true 2215 | 2216 | /supports-preserve-symlinks-flag@1.0.0: 2217 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2218 | engines: {node: '>= 0.4'} 2219 | dev: true 2220 | 2221 | /svelte-eslint-parser@0.43.0(svelte@5.1.14): 2222 | resolution: {integrity: sha512-GpU52uPKKcVnh8tKN5P4UZpJ/fUDndmq7wfsvoVXsyP+aY0anol7Yqo01fyrlaWGMFfm4av5DyrjlaXdLRJvGA==} 2223 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 2224 | peerDependencies: 2225 | svelte: ^3.37.0 || ^4.0.0 || ^5.0.0 2226 | peerDependenciesMeta: 2227 | svelte: 2228 | optional: true 2229 | dependencies: 2230 | eslint-scope: 7.2.2 2231 | eslint-visitor-keys: 3.4.3 2232 | espree: 9.6.1 2233 | postcss: 8.4.48 2234 | postcss-scss: 4.0.9(postcss@8.4.48) 2235 | svelte: 5.1.14 2236 | dev: true 2237 | 2238 | /svelte2tsx@0.7.23(svelte@5.1.14)(typescript@5.6.3): 2239 | resolution: {integrity: sha512-LUVKEHlblBYvzOXdpMHhyMle7iSZ/qr71gGhf1AIrsk1j0FjwTLXp9QuSmPop4C4IlL5BSGFS95Kr78Rb9Eyuw==} 2240 | peerDependencies: 2241 | svelte: ^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0 2242 | typescript: ^4.9.4 || ^5.0.0 2243 | dependencies: 2244 | dedent-js: 1.0.1 2245 | pascal-case: 3.1.2 2246 | svelte: 5.1.14 2247 | typescript: 5.6.3 2248 | dev: true 2249 | 2250 | /svelte@5.1.14: 2251 | resolution: {integrity: sha512-1ZURTV4OBeWS6qKFzKjTIa9K4RWCR3CtpgOen/hsamCIS/dwBpvglwPNMjvNJR/yMlUWxtq+KC4mmvCo7G7m6Q==} 2252 | engines: {node: '>=18'} 2253 | dependencies: 2254 | '@ampproject/remapping': 2.3.0 2255 | '@jridgewell/sourcemap-codec': 1.5.0 2256 | '@types/estree': 1.0.6 2257 | acorn: 8.14.0 2258 | acorn-typescript: 1.4.13(acorn@8.14.0) 2259 | aria-query: 5.3.2 2260 | axobject-query: 4.1.0 2261 | esm-env: 1.1.4 2262 | esrap: 1.2.2 2263 | is-reference: 3.0.2 2264 | locate-character: 3.0.0 2265 | magic-string: 0.30.12 2266 | zimmerframe: 1.1.2 2267 | dev: true 2268 | 2269 | /text-table@0.2.0: 2270 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2271 | dev: true 2272 | 2273 | /tiny-glob@0.2.9: 2274 | resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==} 2275 | dependencies: 2276 | globalyzer: 0.1.0 2277 | globrex: 0.1.2 2278 | dev: true 2279 | 2280 | /totalist@3.0.1: 2281 | resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} 2282 | engines: {node: '>=6'} 2283 | dev: true 2284 | 2285 | /tsconfig-paths@3.15.0: 2286 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 2287 | dependencies: 2288 | '@types/json5': 0.0.29 2289 | json5: 1.0.2 2290 | minimist: 1.2.8 2291 | strip-bom: 3.0.0 2292 | dev: true 2293 | 2294 | /tslib@2.4.1: 2295 | resolution: {integrity: sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==} 2296 | dev: true 2297 | 2298 | /type-check@0.4.0: 2299 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2300 | engines: {node: '>= 0.8.0'} 2301 | dependencies: 2302 | prelude-ls: 1.2.1 2303 | dev: true 2304 | 2305 | /type-fest@0.20.2: 2306 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2307 | engines: {node: '>=10'} 2308 | dev: true 2309 | 2310 | /typed-array-buffer@1.0.2: 2311 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} 2312 | engines: {node: '>= 0.4'} 2313 | dependencies: 2314 | call-bind: 1.0.7 2315 | es-errors: 1.3.0 2316 | is-typed-array: 1.1.13 2317 | dev: true 2318 | 2319 | /typed-array-byte-length@1.0.1: 2320 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} 2321 | engines: {node: '>= 0.4'} 2322 | dependencies: 2323 | call-bind: 1.0.7 2324 | for-each: 0.3.3 2325 | gopd: 1.0.1 2326 | has-proto: 1.0.3 2327 | is-typed-array: 1.1.13 2328 | dev: true 2329 | 2330 | /typed-array-byte-offset@1.0.2: 2331 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} 2332 | engines: {node: '>= 0.4'} 2333 | dependencies: 2334 | available-typed-arrays: 1.0.7 2335 | call-bind: 1.0.7 2336 | for-each: 0.3.3 2337 | gopd: 1.0.1 2338 | has-proto: 1.0.3 2339 | is-typed-array: 1.1.13 2340 | dev: true 2341 | 2342 | /typed-array-length@1.0.6: 2343 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} 2344 | engines: {node: '>= 0.4'} 2345 | dependencies: 2346 | call-bind: 1.0.7 2347 | for-each: 0.3.3 2348 | gopd: 1.0.1 2349 | has-proto: 1.0.3 2350 | is-typed-array: 1.1.13 2351 | possible-typed-array-names: 1.0.0 2352 | dev: true 2353 | 2354 | /typescript@5.6.3: 2355 | resolution: {integrity: sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==} 2356 | engines: {node: '>=14.17'} 2357 | hasBin: true 2358 | dev: true 2359 | 2360 | /unbox-primitive@1.0.2: 2361 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2362 | dependencies: 2363 | call-bind: 1.0.7 2364 | has-bigints: 1.0.2 2365 | has-symbols: 1.0.3 2366 | which-boxed-primitive: 1.0.2 2367 | dev: true 2368 | 2369 | /uri-js@4.4.1: 2370 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2371 | dependencies: 2372 | punycode: 2.3.0 2373 | dev: true 2374 | 2375 | /util-deprecate@1.0.2: 2376 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2377 | dev: true 2378 | 2379 | /vite@5.4.11: 2380 | resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} 2381 | engines: {node: ^18.0.0 || >=20.0.0} 2382 | hasBin: true 2383 | peerDependencies: 2384 | '@types/node': ^18.0.0 || >=20.0.0 2385 | less: '*' 2386 | lightningcss: ^1.21.0 2387 | sass: '*' 2388 | sass-embedded: '*' 2389 | stylus: '*' 2390 | sugarss: '*' 2391 | terser: ^5.4.0 2392 | peerDependenciesMeta: 2393 | '@types/node': 2394 | optional: true 2395 | less: 2396 | optional: true 2397 | lightningcss: 2398 | optional: true 2399 | sass: 2400 | optional: true 2401 | sass-embedded: 2402 | optional: true 2403 | stylus: 2404 | optional: true 2405 | sugarss: 2406 | optional: true 2407 | terser: 2408 | optional: true 2409 | dependencies: 2410 | esbuild: 0.21.5 2411 | postcss: 8.4.48 2412 | rollup: 4.25.0 2413 | optionalDependencies: 2414 | fsevents: 2.3.3 2415 | dev: true 2416 | 2417 | /vitefu@1.0.3(vite@5.4.11): 2418 | resolution: {integrity: sha512-iKKfOMBHob2WxEJbqbJjHAkmYgvFDPhuqrO82om83S8RLk+17FtyMBfcyeH8GqD0ihShtkMW/zzJgiA51hCNCQ==} 2419 | peerDependencies: 2420 | vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0-beta.0 2421 | peerDependenciesMeta: 2422 | vite: 2423 | optional: true 2424 | dependencies: 2425 | vite: 5.4.11 2426 | dev: true 2427 | 2428 | /which-boxed-primitive@1.0.2: 2429 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2430 | dependencies: 2431 | is-bigint: 1.0.4 2432 | is-boolean-object: 1.1.2 2433 | is-number-object: 1.0.7 2434 | is-string: 1.0.7 2435 | is-symbol: 1.0.4 2436 | dev: true 2437 | 2438 | /which-typed-array@1.1.15: 2439 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} 2440 | engines: {node: '>= 0.4'} 2441 | dependencies: 2442 | available-typed-arrays: 1.0.7 2443 | call-bind: 1.0.7 2444 | for-each: 0.3.3 2445 | gopd: 1.0.1 2446 | has-tostringtag: 1.0.2 2447 | dev: true 2448 | 2449 | /which@2.0.2: 2450 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2451 | engines: {node: '>= 8'} 2452 | hasBin: true 2453 | dependencies: 2454 | isexe: 2.0.0 2455 | dev: true 2456 | 2457 | /word-wrap@1.2.5: 2458 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 2459 | engines: {node: '>=0.10.0'} 2460 | dev: true 2461 | 2462 | /yaml@1.10.2: 2463 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 2464 | engines: {node: '>= 6'} 2465 | dev: true 2466 | 2467 | /yocto-queue@0.1.0: 2468 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2469 | engines: {node: '>=10'} 2470 | dev: true 2471 | 2472 | /zimmerframe@1.1.2: 2473 | resolution: {integrity: sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==} 2474 | dev: true 2475 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Svelte Mapbox Maps | Developer Documentation 6 | 7 | 8 | 9 | 10 | 11 | 12 | %sveltekit.head% 13 | 14 | 15 |
%sveltekit.body%
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/lib/asset-loader.js: -------------------------------------------------------------------------------- 1 | function load (assets, cb) { 2 | for (const { type, value, id } of assets) { 3 | const existing = document.getElementById(id) 4 | 5 | if (existing) { 6 | if (type === 'script') { 7 | cb() 8 | } 9 | return 10 | } 11 | 12 | const tag = document.createElement(type) 13 | tag.id = id 14 | if (type === 'script') { 15 | tag.async = true 16 | tag.defer = true 17 | tag.src = value 18 | tag.onload = () => cb() 19 | } else { 20 | tag.rel = 'stylesheet' 21 | tag.href = value 22 | } 23 | document.body.appendChild(tag) 24 | } 25 | } 26 | 27 | export { 28 | load 29 | } 30 | -------------------------------------------------------------------------------- /src/lib/components.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | import Map from './map/Map.svelte' 4 | import Marker from './map/Marker.svelte' 5 | import Geocoder from './geocoder/Geocoder.svelte' 6 | import { contextKey } from './mapbox.js' 7 | import GeolocateControl from './map/controls/GeolocateControl.svelte' 8 | import NavigationControl from './map/controls/NavigationControl.svelte' 9 | import ScaleControl from './map/controls/ScaleControl.svelte' 10 | 11 | const controls = { 12 | GeolocateControl, 13 | NavigationControl, 14 | ScaleControl 15 | } 16 | 17 | export { 18 | Map, 19 | Marker, 20 | Geocoder, 21 | contextKey, 22 | controls 23 | } 24 | -------------------------------------------------------------------------------- /src/lib/event-bindings.js: -------------------------------------------------------------------------------- 1 | function bindEvents (el, handlers, mapbox, node) { 2 | const unbindings = [] 3 | 4 | for (const [ handler, fn ] of Object.entries(handlers)) { 5 | const cmd = ev => { 6 | const [ eventName, detail ] = fn(el, ev, mapbox) 7 | node.dispatchEvent( 8 | new CustomEvent(eventName, { detail }) 9 | ) 10 | } 11 | el.on(handler, cmd) 12 | unbindings.push([ handler, cmd ]) 13 | } 14 | 15 | return () => { 16 | for (const [ handler, cmd ] of unbindings) { 17 | el.off(handler, cmd) 18 | } 19 | } 20 | } 21 | 22 | export { 23 | bindEvents 24 | } 25 | -------------------------------------------------------------------------------- /src/lib/geocoder/Geocoder.svelte: -------------------------------------------------------------------------------- 1 |
12 | 13 | 43 | 44 | -------------------------------------------------------------------------------- /src/lib/geocoder/geocoder-action.js: -------------------------------------------------------------------------------- 1 | import { load } from '../asset-loader.js' 2 | import { bindEvents } from '../event-bindings.js' 3 | 4 | export default function action (node, options = {}) { 5 | let map 6 | 7 | const resources = [ 8 | { type: 'script', value: `//api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/${options.version}/mapbox-gl-geocoder.min.js`, id: 'byk-gc-js' } 9 | ] 10 | 11 | const customStylesheetUrl = options.customStylesheetUrl 12 | if (customStylesheetUrl) { 13 | resources.push({ type: 'link', value: customStylesheetUrl, id: 'byk-gcsu-css' }) 14 | } else { 15 | resources.push({ type: 'link', value: `//api.mapbox.com/mapbox-gl-js/plugins/mapbox-gl-geocoder/${options.version}/mapbox-gl-geocoder.css`, id: 'byk-gc-css' }) 16 | } 17 | 18 | let unbind = () => {} 19 | load(resources, () => { 20 | unbind = init(options, node) 21 | }) 22 | 23 | return { 24 | destroy () { 25 | unbind() 26 | map && map.remove && map.remove() 27 | } 28 | } 29 | } 30 | 31 | function init (options, node) { 32 | const geocoder = new window.MapboxGeocoder(options) 33 | geocoder.addTo(`#${node.id}`) 34 | if (options.value) { 35 | geocoder.setInput(options.value) 36 | } 37 | 38 | return bindEvents(geocoder, handlers, false, node) 39 | } 40 | 41 | const handlers = { 42 | results: (el, ev) => { 43 | return [ 'results', ev ] 44 | }, 45 | result: (el, ev) => { 46 | return [ 'result', ev ] 47 | }, 48 | loading: (el, ev) => { 49 | return [ 'loading', ev ] 50 | }, 51 | error: (el, ev) => { 52 | return [ 'error', ev ] 53 | }, 54 | clear: (el, ev) => { 55 | return [ 'clear', ev ] 56 | }, 57 | load: el => { 58 | return [ 'ready', { geocoder: el } ] 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /src/lib/map/Map.svelte: -------------------------------------------------------------------------------- 1 | 2 |
16 | {#if map} 17 | 18 | {/if} 19 |
20 | 21 | 27 | 28 | 116 | -------------------------------------------------------------------------------- /src/lib/map/Marker.svelte: -------------------------------------------------------------------------------- 1 | 68 | 69 |
70 | 71 |
72 | 73 | 76 | -------------------------------------------------------------------------------- /src/lib/map/controls/GeolocateControl.svelte: -------------------------------------------------------------------------------- 1 |
9 | 10 | 53 | 54 | 57 | -------------------------------------------------------------------------------- /src/lib/map/controls/NavigationControl.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/map/controls/ScaleControl.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/map/map-action.js: -------------------------------------------------------------------------------- 1 | import { load } from '../asset-loader.js' 2 | import { bindEvents } from '../event-bindings.js' 3 | 4 | export default function action (node, options = {}) { 5 | let map 6 | 7 | const resources = [ 8 | { type: 'script', attr: 'src', value: `//api.mapbox.com/mapbox-gl-js/${options.version}/mapbox-gl.js`, id: 'byk-gl-js' }, 9 | { type: 'link', attr: 'href', value: `//api.mapbox.com/mapbox-gl-js/${options.version}/mapbox-gl.css`, id: 'byk-gl-css' } 10 | ] 11 | 12 | const customStylesheetUrl = options.customStylesheetUrl 13 | if (customStylesheetUrl) { 14 | resources.push({ type: 'link', attr: 'href', value: customStylesheetUrl, id: 'byk-mcsu-css' }) 15 | } 16 | 17 | let unbind = () => {} 18 | load(resources, () => { 19 | unbind = init({ ...options, container: node }, node) 20 | }) 21 | 22 | return { 23 | destroy () { 24 | unbind() 25 | map && map.remove && map.remove() 26 | } 27 | } 28 | } 29 | 30 | function init (options, node) { 31 | window.mapboxgl.accessToken = options.accessToken 32 | const el = new window.mapboxgl.Map(options) 33 | 34 | return bindEvents(el, handlers, window.mapboxgl, node) 35 | } 36 | 37 | const handlers = { 38 | dragend: el => { 39 | return [ 'dragend', { center: el.getCenter() } ] 40 | }, 41 | drag: el => { 42 | return [ 'drag', { center: el.getCenter() } ] 43 | }, 44 | moveend: el => { 45 | return [ 'recentre', { center: el.getCenter() } ] 46 | }, 47 | click: (el, { lngLat }) => { 48 | return [ 'click', { lng: lngLat.lng, lat: lngLat.lat } ] 49 | }, 50 | zoomstart: el => { 51 | return [ 'zoomstart', { zoom: el.getZoom() } ] 52 | }, 53 | zoom: el => { 54 | return [ 'zoom', { zoom: el.getZoom() } ] 55 | }, 56 | zoomend: el => { 57 | return [ 'zoomend', { zoom: el.getZoom() } ] 58 | }, 59 | load: (el, ev, mapbox) => { 60 | return [ 'ready', { map: el, mapbox } ] 61 | } 62 | } 63 | -------------------------------------------------------------------------------- /src/lib/mapbox.js: -------------------------------------------------------------------------------- 1 | const contextKey = {} 2 | 3 | export { contextKey } 4 | -------------------------------------------------------------------------------- /src/lib/queue.js: -------------------------------------------------------------------------------- 1 | import { writable } from 'svelte/store' 2 | 3 | export class EventQueue { 4 | constructor () { 5 | this.queue = writable([]) 6 | this.unsubscribe = null 7 | this.started = false 8 | } 9 | 10 | send (command, params = []) { 11 | if (!command) { return } 12 | this.queue.update(q => ([ ...q, [ command, params ] ])) 13 | } 14 | 15 | start (map) { 16 | this.unsubscribe = this.queue.subscribe(queue => { 17 | while (queue.length) { 18 | const [ command, params ] = queue.shift() 19 | map[command].apply(map, params) 20 | } 21 | }) 22 | this.started = true 23 | } 24 | 25 | stop () { 26 | if (!this.started) { return } 27 | this.unsubscribe() 28 | this.queue = writable([]) 29 | this.started = false 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 |
2 |
3 |
4 |
5 | 27 |
28 |
29 |
30 | Svelte MapBox Developer Documentation 31 |
32 |
33 |
34 | Github 35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 | 54 | 103 |
104 |
105 |
106 |
107 | 116 |
117 |
118 |
119 |
120 | © 2019 Beyonk. All rights reserved. 121 |
122 |
123 |
124 |
125 | 126 | 162 | 163 | -------------------------------------------------------------------------------- /src/routes/_Earthquakes.svelte: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/routes/_MiniScroller.svelte: -------------------------------------------------------------------------------- 1 |

hello

-------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beyonk-group/svelte-mapbox/a5a5073f5289cf773f6d29d3320c40d25a20debc/static/favicon.png -------------------------------------------------------------------------------- /static/normalize.css: -------------------------------------------------------------------------------- 1 | html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;} 2 | body{margin:0;} 3 | article, 4 | aside, 5 | details, 6 | figcaption, 7 | figure, 8 | footer, 9 | header, 10 | hgroup, 11 | main, 12 | menu, 13 | nav, 14 | section, 15 | summary{display:block;} 16 | audio, 17 | canvas, 18 | progress, 19 | video{display:inline-block;vertical-align:baseline;} 20 | audio:not([controls]){display:none;height:0;} 21 | [hidden], 22 | template{display:none;} 23 | a{background-color:transparent;} 24 | a:active, 25 | a:hover{outline:0;} 26 | abbr[title]{border-bottom:1px dotted;} 27 | b, 28 | strong{font-weight:bold;} 29 | dfn{font-style:italic;} 30 | h1{font-size:2em;margin:0.67em 0;} 31 | mark{background:#ff0;color:#000;} 32 | small{font-size:80%;} 33 | sub, 34 | sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;} 35 | sup{top:-0.5em;} 36 | sub{bottom:-0.25em;} 37 | img{border:0;} 38 | svg:not(:root){overflow:hidden;} 39 | figure{margin:1em 40px;} 40 | hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;} 41 | pre{overflow:auto;} 42 | code, 43 | kbd, 44 | pre, 45 | samp{font-family:monospace, monospace;font-size:1em;} 46 | button, 47 | input, 48 | optgroup, 49 | select, 50 | textarea{color:inherit;font:inherit;margin:0;} 51 | button{overflow:visible;} 52 | button, 53 | select{text-transform:none;} 54 | button, 55 | html input[type="button"], 56 | input[type="reset"], 57 | input[type="submit"]{-webkit-appearance:button;cursor:pointer;} 58 | button[disabled], 59 | html input[disabled]{cursor:default;} 60 | button::-moz-focus-inner, 61 | input::-moz-focus-inner{border:0;padding:0;} 62 | input{line-height:normal;} 63 | input[type="checkbox"], 64 | input[type="radio"]{box-sizing:border-box;padding:0;} 65 | input[type="number"]::-webkit-inner-spin-button, 66 | input[type="number"]::-webkit-outer-spin-button{height:auto;} 67 | input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;} 68 | input[type="search"]::-webkit-search-cancel-button, 69 | input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;} 70 | fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;} 71 | legend{border:0;padding:0;} 72 | textarea{overflow:auto;} 73 | optgroup{font-weight:bold;} 74 | table{border-collapse:collapse;border-spacing:0;} 75 | td, 76 | th{padding:0;} -------------------------------------------------------------------------------- /static/prettify.css: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright (C) 2015 Google Inc. 4 | * 5 | * Licensed under the Apache License, Version 2.0 (the "License"); 6 | * you may not use this file except in compliance with the License. 7 | * You may obtain a copy of the License at 8 | * 9 | * http://www.apache.org/licenses/LICENSE-2.0 10 | * 11 | * Unless required by applicable law or agreed to in writing, software 12 | * distributed under the License is distributed on an "AS IS" BASIS, 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | * See the License for the specific language governing permissions and 15 | * limitations under the License. 16 | */ 17 | 18 | /* Pretty printing styles. Used with prettify.js. */ 19 | 20 | 21 | /* SPAN elements with the classes below are added by prettyprint. */ 22 | .pln { color: #000 } /* plain text */ 23 | 24 | @media screen { 25 | .str { color: #080 } /* string content */ 26 | .kwd { color: #008 } /* a keyword */ 27 | .com { color: #800 } /* a comment */ 28 | .typ { color: #606 } /* a type name */ 29 | .lit { color: #066 } /* a literal value */ 30 | /* punctuation, lisp open bracket, lisp close bracket */ 31 | .pun, .opn, .clo { color: #660 } 32 | .tag { color: #008 } /* a markup tag name */ 33 | .atn { color: #606 } /* a markup attribute name */ 34 | .atv { color: #080 } /* a markup attribute value */ 35 | .dec, .var { color: #606 } /* a declaration; a variable name */ 36 | .fun { color: red } /* a function name */ 37 | } 38 | 39 | /* Use higher contrast and text-weight for printable form. */ 40 | @media print, projection { 41 | .str { color: #060 } 42 | .kwd { color: #006; font-weight: bold } 43 | .com { color: #600; font-style: italic } 44 | .typ { color: #404; font-weight: bold } 45 | .lit { color: #044 } 46 | .pun, .opn, .clo { color: #440 } 47 | .tag { color: #006; font-weight: bold } 48 | .atn { color: #404 } 49 | .atv { color: #060 } 50 | } 51 | 52 | /* Put a border around prettyprinted code snippets. */ 53 | pre.prettyprint { padding: 20px; border: 0!important; background: #f5f5f5!important;margin-bottom:14px; } 54 | 55 | /* Specify class=linenums on a pre to get line numbering */ 56 | ol.linenums { margin-top: 0; margin-bottom: 0 } /* IE indents via margin-left */ 57 | li.L0, 58 | li.L1, 59 | li.L2, 60 | li.L3, 61 | li.L5, 62 | li.L6, 63 | li.L7, 64 | li.L8 { list-style-type: decimal !important } 65 | /* Alternate shading for lines */ 66 | li.L1, 67 | li.L3, 68 | li.L5, 69 | li.L7, 70 | li.L9 { background: #f5f5f5!important } -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: 'Open Sans', sans-serif; 3 | background:#eaedf2; 4 | color:#666; 5 | font-size:14px; 6 | } 7 | * { 8 | -webkit-box-sizing: border-box; 9 | -moz-box-sizing: border-box; 10 | box-sizing: border-box; 11 | } 12 | 13 | a{ 14 | -webkit-transition: all .3s ease; 15 | -moz-transition: all .3s ease; 16 | -o-transition: all .3s ease; 17 | transition: all .3s ease; 18 | text-decoration:none; 19 | } 20 | .content-info a{ 21 | color:#22A7F0 22 | } 23 | .content-info a:hover{ 24 | color:#000; 25 | } 26 | a img { 27 | border:0; 28 | } 29 | 30 | section img{ 31 | display:block; 32 | max-width:100%; 33 | height:auto; 34 | margin:15px 0 15px 0; 35 | } 36 | 37 | article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { 38 | display: block; 39 | } 40 | section{ 41 | position:relative; 42 | } 43 | h1, h2, h3, h4, h5, h6{ 44 | font-weight:400; 45 | } 46 | h1{ 47 | font-size:36px; 48 | margin:0 0 30px 0; 49 | } 50 | h2{ 51 | font-size:30px; 52 | margin:0 0 30px 0; 53 | } 54 | h3{ 55 | font-size:24px; 56 | margin:0 0 30px 0; 57 | } 58 | h4{ 59 | font-size:20px; 60 | margin:0 0 20px 0; 61 | } 62 | h5{ 63 | font-size:18px; 64 | margin:0 0 15px 0; 65 | } 66 | h6{ 67 | font-size:16px; 68 | margin:0 0 10px 0; 69 | } 70 | 71 | .container { 72 | padding-right: 15px; 73 | padding-left: 15px; 74 | margin-right: auto; 75 | margin-left: auto; 76 | width: 1200px; 77 | } 78 | .container:before, .container:after, .clearfix:before, .row:before, .clearfix:after, .row:after { 79 | display: table; 80 | content: " "; 81 | } 82 | .container:after, .clearfix:after, .row:after { 83 | clear: both; 84 | } 85 | .row { 86 | margin-right: -15px; 87 | margin-left: -15px; 88 | } 89 | 90 | .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11 { 91 | float: left; 92 | } 93 | .col-xs-1, 94 | .col-sm-1, 95 | .col-md-1, 96 | .col-lg-1, 97 | .col-xs-2, 98 | .col-sm-2, 99 | .col-md-2, 100 | .col-lg-2, 101 | .col-xs-3, 102 | .col-sm-3, 103 | .col-md-3, 104 | .col-lg-3, 105 | .col-xs-4, 106 | .col-sm-4, 107 | .col-md-4, 108 | .col-lg-4, 109 | .col-xs-5, 110 | .col-sm-5, 111 | .col-md-5, 112 | .col-lg-5, 113 | .col-xs-6, 114 | .col-sm-6, 115 | .col-md-6, 116 | .col-lg-6, 117 | .col-xs-7, 118 | .col-sm-7, 119 | .col-md-7, 120 | .col-lg-7, 121 | .col-xs-8, 122 | .col-sm-8, 123 | .col-md-8, 124 | .col-lg-8, 125 | .col-xs-9, 126 | .col-sm-9, 127 | .col-md-9, 128 | .col-lg-9, 129 | .col-xs-10, 130 | .col-sm-10, 131 | .col-md-10, 132 | .col-lg-10, 133 | .col-xs-11, 134 | .col-sm-11, 135 | .col-md-11, 136 | .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { 137 | position: relative; 138 | min-height: 1px; 139 | padding-right: 15px; 140 | padding-left: 15px; 141 | } 142 | .col-lg-12 { 143 | width: 100%; 144 | } 145 | .col-lg-11 { 146 | width: 91.66666667%; 147 | } 148 | .col-lg-10 { 149 | width: 83.33333333%; 150 | } 151 | .col-lg-9 { 152 | width: 75%; 153 | } 154 | .col-lg-8 { 155 | width: 66.66666667%; 156 | } 157 | .col-lg-7 { 158 | width: 58.33333333%; 159 | } 160 | .col-lg-6 { 161 | width: 50%; 162 | } 163 | .col-lg-5 { 164 | width: 41.66666667%; 165 | } 166 | .col-lg-4 { 167 | width: 33.33333333%; 168 | } 169 | .col-lg-3 { 170 | width: 25%; 171 | } 172 | .col-lg-2 { 173 | width: 16.66666667%; 174 | } 175 | .col-lg-1 { 176 | width: 8.33333333%; 177 | } 178 | .center{ 179 | text-align:center; 180 | } 181 | .left{ 182 | text-align:left; 183 | } 184 | .right{ 185 | text-align:right; 186 | } 187 | .btn{ 188 | display:inline-block; 189 | width:160px; 190 | height:40px; 191 | line-height:38px; 192 | background:#3498db; 193 | color:#fff; 194 | font-weight:400; 195 | text-align:center; 196 | text-transform:uppercase; 197 | font-size:14px; 198 | border-bottom:2px solid #2a8bcc; 199 | } 200 | .btn:hover{ 201 | background:#2a8bcc 202 | } 203 | header{ 204 | margin:0 0 50px 0; 205 | padding:20px 0; 206 | background:#22A7F0 207 | } 208 | .slogan{ 209 | color:#fff; 210 | font-weight:300; 211 | font-size:20px; 212 | line-height:34px; 213 | } 214 | #logo img{ 215 | display:block; 216 | height:34px; 217 | } 218 | 219 | section .container{ 220 | background:#fff; 221 | } 222 | 223 | .content-wrap{ 224 | padding:50px 0 225 | } 226 | 227 | aside{ 228 | color:#fff; 229 | float:left; 230 | padding-left:15px; 231 | width:285px; 232 | } 233 | .fixed{ 234 | position:fixed; 235 | top:15px; 236 | } 237 | aside h4{ 238 | font-size:20px; 239 | font-weight:400; 240 | margin:0 0 30px 0; 241 | } 242 | 243 | .menu-box{ 244 | padding:20px; 245 | background:#34495e; 246 | } 247 | .menu-box ul{ 248 | margin:0; 249 | padding:0; 250 | } 251 | .menu-box li{ 252 | display:block; 253 | } 254 | .menu-box li a{ 255 | display:block; 256 | padding:15px 20px; 257 | margin-left: -20px; 258 | margin-right: -20px; 259 | color:#fff; 260 | border-bottom:1px solid #314559; 261 | } 262 | .menu-box li a:hover, .menu-box li a.current{ 263 | background:#2c3e50; 264 | } 265 | .menu-box li:last-child a{ 266 | border-bottom:0; 267 | } 268 | 269 | .content-info{ 270 | padding-right:15px; 271 | padding-left:315px; 272 | } 273 | .section-txt{ 274 | padding-bottom:15px; 275 | margin-bottom:30px; 276 | border-bottom:1px solid #dcdcdc; 277 | } 278 | .section-txt:last-child{ 279 | margin-bottom:0; 280 | padding-bottom:0; 281 | border-bottom:0; 282 | } 283 | .content-info h3{ 284 | font-size:24px; 285 | font-weight:400; 286 | color:#444; 287 | margin:0 0 30px 0; 288 | } 289 | .content-info p{ 290 | color:#666; 291 | line-height:24px; 292 | font-size:16px; 293 | font-weight:300; 294 | } 295 | .content-info ul{ 296 | margin:0 0 14px 0; 297 | } 298 | .content-info ul li{ 299 | line-height:24px; 300 | font-size:16px; 301 | font-weight:300; 302 | } 303 | 304 | .content-info iframe { 305 | width: 100%!important; 306 | height: 350px; 307 | border: 0!important; 308 | } 309 | 310 | .footer-area{ 311 | margin-top:50px; 312 | padding:60px 0; 313 | background:#222; 314 | font-size:16px; 315 | line-height:24px; 316 | color:#fff; 317 | font-weight:300; 318 | } 319 | 320 | .footer-area a{ 321 | color:#999; 322 | } 323 | .footer-area a:hover{ 324 | color:#eee 325 | } 326 | footer{ 327 | background:#111; 328 | padding:20px 0; 329 | font-weight:300; 330 | font-size:12px; 331 | } 332 | 333 | @media only screen and (max-width: 1200px) { 334 | .container{ 335 | width:970px; 336 | } 337 | .hidden-md{ 338 | display:none; 339 | } 340 | .col-md-12 { 341 | width: 100%; 342 | } 343 | .col-md-11 { 344 | width: 91.66666667%; 345 | } 346 | .col-md-10 { 347 | width: 83.33333333%; 348 | } 349 | .col-md-9 { 350 | width: 75%; 351 | } 352 | .col-md-8 { 353 | width: 66.66666667%; 354 | } 355 | .col-md-7 { 356 | width: 58.33333333%; 357 | } 358 | .col-md-6 { 359 | width: 50%; 360 | } 361 | .col-md-5 { 362 | width: 41.66666667%; 363 | } 364 | .col-md-4 { 365 | width: 33.33333333%; 366 | } 367 | .col-md-3 { 368 | width: 25%; 369 | } 370 | .col-md-2 { 371 | width: 16.66666667%; 372 | } 373 | .col-md-1 { 374 | width: 8.33333333%; 375 | } 376 | 377 | } 378 | 379 | 380 | @media only screen and (max-width: 992px){ 381 | .container{ 382 | width:750px; 383 | } 384 | .hidden-sm{ 385 | display:none; 386 | } 387 | .col-sm-12 { 388 | width: 100%; 389 | } 390 | .col-sm-11 { 391 | width: 91.66666667%; 392 | } 393 | .col-sm-10 { 394 | width: 83.33333333%; 395 | } 396 | .col-sm-9 { 397 | width: 75%; 398 | } 399 | .col-sm-8 { 400 | width: 66.66666667%; 401 | } 402 | .col-sm-7 { 403 | width: 58.33333333%; 404 | } 405 | .col-sm-6 { 406 | width: 50%; 407 | } 408 | .col-sm-5 { 409 | width: 41.66666667%; 410 | } 411 | .col-sm-4 { 412 | width: 33.33333333%; 413 | } 414 | .col-sm-3 { 415 | width: 25%; 416 | } 417 | .col-sm-2 { 418 | width: 16.66666667%; 419 | } 420 | .col-sm-1 { 421 | width: 8.33333333%; 422 | } 423 | .slogan { 424 | font-size: 16px; 425 | } 426 | 427 | } 428 | 429 | @media only screen and (max-width: 768px){ 430 | .container{ 431 | width:100%; 432 | } 433 | .hidden-xs{ 434 | display:none; 435 | } 436 | .col-xs-12 { 437 | width: 100%; 438 | } 439 | .col-xs-11 { 440 | width: 91.66666667%; 441 | } 442 | .col-xs-10 { 443 | width: 83.33333333%; 444 | } 445 | .col-xs-9 { 446 | width: 75%; 447 | } 448 | .col-xs-8 { 449 | width: 66.66666667%; 450 | } 451 | .col-xs-7 { 452 | width: 58.33333333%; 453 | } 454 | .col-xs-6 { 455 | width: 50%; 456 | } 457 | .col-xs-5 { 458 | width: 41.66666667%; 459 | } 460 | .col-xs-4 { 461 | width: 33.33333333%; 462 | } 463 | .col-xs-3 { 464 | width: 25%; 465 | } 466 | .col-xs-2 { 467 | width: 16.66666667%; 468 | } 469 | .col-xs-1 { 470 | width: 8.33333333%; 471 | } 472 | header{ 473 | margin-bottom:30px; 474 | } 475 | .content-wrap { 476 | padding: 30px 0; 477 | } 478 | .slogan{ 479 | text-align:center; 480 | line-height:22px; 481 | margin-bottom:15px; 482 | } 483 | #logo { 484 | text-align:center; 485 | margin-bottom:15px; 486 | } 487 | #logo img{ 488 | margin:0 auto; 489 | } 490 | .btn{ 491 | display:block; 492 | margin:0 auto; 493 | } 494 | aside{ 495 | width:100%; 496 | float:none; 497 | padding:0 15px; 498 | margin-bottom:30px; 499 | } 500 | .content-info { 501 | padding-right: 15px; 502 | padding-left: 15px; 503 | } 504 | .content-info p, .content-info ul li{ 505 | font-size:14px; 506 | line-height:22px; 507 | } 508 | .content-info h3 { 509 | font-size: 20px; 510 | } 511 | h1{ 512 | font-size:32px; 513 | } 514 | h2{ 515 | font-size:26px; 516 | } 517 | h3{ 518 | font-size:20px; 519 | } 520 | h4{ 521 | font-size:18px; 522 | } 523 | h5{ 524 | font-size:16px; 525 | } 526 | h6{ 527 | font-size:14px; 528 | } 529 | .footer-area { 530 | margin-top: 30px; 531 | padding: 50px 0; 532 | font-size:14px; 533 | } 534 | } -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- 1 | 2 | /** @type {import('@sveltejs/kit').Config} */ 3 | const config = {} 4 | 5 | export default config 6 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { sveltekit } from '@sveltejs/kit/vite' 2 | 3 | /** @type {import('vite').UserConfig} */ 4 | const config = { 5 | plugins: [ sveltekit() ] 6 | } 7 | 8 | export default config 9 | --------------------------------------------------------------------------------