├── .eslintignore ├── .github └── workflows │ └── npm-publish.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── dist ├── dom │ ├── index.d.ts │ └── index.js ├── index.d.ts └── index.js ├── eslint.config.js ├── package-lock.json ├── package.json ├── src ├── app.d.ts ├── app.html ├── lib │ ├── dom │ │ └── index.ts │ └── index.ts └── routes │ ├── +layout.svelte │ ├── +page.svelte │ ├── arrow │ └── +page.svelte │ ├── styles │ └── index.css │ └── virtual │ └── +page.svelte ├── static └── favicon.png ├── svelte-floating-ui.png ├── svelte.config.js ├── tsconfig.json └── vite.config.js /.eslintignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- 1 | name: 'npm-publish' 2 | on: 3 | workflow_dispatch: 4 | release: 5 | types: [created] 6 | jobs: 7 | build: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/checkout@v3 11 | # Setup .npmrc file to publish to npm 12 | - uses: actions/setup-node@v3 13 | with: 14 | node-version: '22.x' 15 | registry-url: 'https://registry.npmjs.org' 16 | - name: 'install' 17 | run: npm install --frozen-lockfile 18 | - name: 'create package' 19 | run: npm run package 20 | - name: 'publish' 21 | run: npm publish 22 | env: 23 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | /build 4 | /.svelte-kit 5 | /package 6 | .env 7 | .env.* 8 | !.env.example 9 | 10 | # Ignore files for PNPM, NPM and YARN 11 | pnpm-lock.yaml 12 | package-lock.json 13 | yarn.lock 14 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100 6 | } 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Nikita Fedorov 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | Svelte Floating UI 3 |

4 | 5 | # 🎈Svelte Floating UI 6 | 7 | [![npm version](http://img.shields.io/npm/v/svelte-floating-ui.svg)](https://www.npmjs.com/package/svelte-floating-ui) 8 | [![npm downloads](https://img.shields.io/npm/dm/svelte-floating-ui.svg)](https://www.npmjs.com/package/svelte-floating-ui) 9 | ![license](https://img.shields.io/npm/l/svelte-floating-ui) 10 | 11 | [Floating UI](https://github.com/floating-ui/floating-ui/) for Svelte with [actions](https://svelte.dev/docs#use_action). No wrapper components or component bindings required! 12 | 13 | ```bash 14 | npm install svelte-floating-ui 15 | ``` 16 | ```bash 17 | pnpm install svelte-floating-ui 18 | ``` 19 | ```bash 20 | yarn add svelte-floating-ui 21 | ``` 22 | 23 | 24 | ## Usage 25 | 26 | `createFloatingActions` takes an optional [options object](https://floating-ui.com/docs/computePosition#options) for configuring the content placement. The content action also takes an optional [options object](https://floating-ui.com/docs/computePosition#options) for updating the options of the content placement. 27 | 28 | `createFloatingActions` also returns an `update` method as it's third value which can be used to [manually update](https://floating-ui.com/docs/computePosition#updating) the content position. 29 | 30 | ### Example 31 | 32 | ```svelte 33 | 49 | 50 | 55 | 56 | {#if showTooltip} 57 |

58 | Tooltip 59 |
60 | {/if} 61 | ``` 62 | 63 | ## API 64 | 65 | ### Setting Floating UI options 66 | 67 | Floating UI options can be set statically when creating the actions, or dynamically on the content action. 68 | 69 | If both are set, then the dynamic options will be merged with the initial options. 70 | 71 | ```svelte 72 | 76 | 77 | 78 |
79 | ``` 80 | 81 | ### Updating the Floating UI position 82 | 83 | The content element's position can be manually updated by using the third value returned by `createFloatingActions`. This method takes an optional options object which will be merged with the initial options. 84 | 85 | ```svelte 86 | 92 | ``` 93 | 94 | ### [Floating UI autoUpdate](https://floating-ui.com/docs/autoUpdate) 95 | 96 | You can use [autoUpdate options](https://floating-ui.com/docs/autoUpdate#options) directly in initOptions for [createFloatingActions or floatingContent](https://github.com/fedorovvvv/svelte-floating-ui#example), but not in [update](https://github.com/fedorovvvv/svelte-floating-ui#updating-the-floating-ui-position) 97 | 98 | ```svelte 99 | 117 | ``` 118 | 119 | What values can autoUpdate have? 120 | 121 | Partial<[Options](https://floating-ui.com/docs/autoUpdate#options)> 122 | 123 | ```ts 124 | /** 125 | * false: Don't initialize autoUpdate; 126 | * true: Standard autoUpdate values from the documentation; 127 | * object: All as in the autoUpdate documentation. Your parameters are added to the default ones; 128 | * @default true 129 | */ 130 | autoUpdate?: boolean | Partial 131 | ``` 132 | 133 | ### [Virtual Elements](https://floating-ui.com/docs/virtual-elements) 134 | 135 | **Svelte Floating UI** allows you to use the `floatingRef` (reference node) like [VirtualElement](https://floating-ui.com/docs/virtual-elements) 136 | 137 | This is an example of creating a tooltip that runs behind the mouse cursor: 138 | 139 | ```svelte 140 | 175 | 176 | 177 | 178 |
179 |

Magic

180 |
181 | ``` 182 | 183 | ### Applying custom styles on compute 184 | 185 | To apply styles manually, you can pass the `onComputed` option to `createFloatingActions`. This is a function that recieves a [`ComputePositionReturn`](https://floating-ui.com/docs/computeposition#return-value). This function is called every time the tooltip's position is computed. 186 | 187 | See [Arrow Middleware](#arrow-middleware) for an example on it's usage. 188 | 189 | ## Arrow Middleware 190 | 191 | For convenience, a custom [Arrow middleware](https://floating-ui.com/docs/arrow) is provided. Rather than accepting an `HTMLElement`, this takes a `Writable` (`createArrowRef`). Otherwise, this middleware works exactly as the regular Floating UI one, including needing to manually set the arrow styles. 192 | 193 | To set the styles, you can pass the [`onComputed`](#applying-custom-styles-on-compute) option. The below implementation is copied from the [Floating UI Tutorial](https://floating-ui.com/docs/tutorial#arrow-middleware). 194 | 195 | ```svelte 196 | 225 | 226 |
227 | 232 | 233 | {#if showTooltip} 234 |
235 | Tooltip this is some longer text than the button 236 |
^
237 |
238 | {/if} 239 |
240 | 241 | ``` 242 | 243 | _Thanks to [TehNut/svelte-floating-ui](https://github.com/TehNut/svelte-floating-ui) for the foundation for this package_ 244 | -------------------------------------------------------------------------------- /dist/dom/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from '@floating-ui/dom'; 2 | -------------------------------------------------------------------------------- /dist/dom/index.js: -------------------------------------------------------------------------------- 1 | export * from '@floating-ui/dom'; 2 | -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { ClientRectObject, ComputePositionConfig, ComputePositionReturn, Middleware, Padding, VirtualElement } from './dom/index.js'; 2 | import { type AutoUpdateOptions } from './dom/index.js'; 3 | import type { Writable } from 'svelte/store'; 4 | export type ComputeConfig = Partial & { 5 | onComputed?: (computed: ComputePositionReturn) => void; 6 | /** 7 | * false: Don't initialize autoUpdate; 8 | * true: Standard autoUpdate values from the documentation; 9 | * object: All as in the autoUpdate documentation. Your parameters are added to the default ones; 10 | * @default true 11 | */ 12 | autoUpdate?: boolean | Partial; 13 | }; 14 | export type Update = (contentOptions?: Omit) => void; 15 | export type ReferenceAction = (node: HTMLElement | SVGElement | VirtualElementStore | VirtualElement) => void; 16 | export type ContentAction = (node: HTMLElement, contentOptions?: ComputeConfig) => void; 17 | export type ArrowOptions = { 18 | padding?: Padding; 19 | element: Writable; 20 | }; 21 | export type CreateVirtualElementOptions = Omit & { 22 | getBoundingClientRect: ClientRectObject; 23 | getClientRects?: ReturnType>; 24 | }; 25 | export type VirtualElementStore = Pick, 'subscribe'> & { 26 | update: (options: CreateVirtualElementOptions) => void; 27 | }; 28 | export type CreateVirtualElement = (options: CreateVirtualElementOptions) => VirtualElementStore; 29 | export declare const createFloatingActions: (initOptions?: ComputeConfig) => [ReferenceAction, ContentAction, Update]; 30 | export declare const arrow: (options: ArrowOptions) => Middleware; 31 | export declare const createArrowRef: () => Writable; 32 | export declare const createVirtualElement: CreateVirtualElement; 33 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- 1 | import { autoUpdate as floatingAutoUpdate, computePosition, arrow as arrowDom } from './dom/index.js'; 2 | import { get, writable } from 'svelte/store'; 3 | import { onDestroy, tick } from 'svelte'; 4 | export const createFloatingActions = (initOptions) => { 5 | let referenceElement; 6 | let floatingElement; 7 | const defaultOptions = { 8 | autoUpdate: true 9 | }; 10 | let options = initOptions ?? {}; 11 | const getOptions = (mixin) => { 12 | return { ...defaultOptions, ...(initOptions || {}), ...(mixin || {}) }; 13 | }; 14 | const update = (updateOptions) => { 15 | if (referenceElement && floatingElement) { 16 | options = getOptions(updateOptions); 17 | computePosition(referenceElement, floatingElement, options).then((v) => { 18 | Object.assign(floatingElement.style, { 19 | position: v.strategy, 20 | left: `${v.x}px`, 21 | top: `${v.y}px` 22 | }); 23 | options?.onComputed && options.onComputed(v); 24 | }); 25 | } 26 | }; 27 | const referenceAction = (node) => { 28 | if ('subscribe' in node) { 29 | setupVirtualElementObserver(node); 30 | return {}; 31 | } 32 | else { 33 | referenceElement = node; 34 | update(); 35 | } 36 | }; 37 | const contentAction = (node, contentOptions) => { 38 | let autoUpdateDestroy; 39 | floatingElement = node; 40 | options = getOptions(contentOptions); 41 | setTimeout(() => update(contentOptions), 0); //tick doesn't work 42 | update(contentOptions); 43 | const destroyAutoUpdate = () => { 44 | if (autoUpdateDestroy) { 45 | autoUpdateDestroy(); 46 | autoUpdateDestroy = undefined; 47 | } 48 | }; 49 | const initAutoUpdate = (_options = options) => { 50 | return new Promise((resolve) => { 51 | const { autoUpdate } = _options || {}; 52 | destroyAutoUpdate(); 53 | if (autoUpdate !== false) { 54 | tick().then(() => { 55 | resolve(floatingAutoUpdate(referenceElement, floatingElement, () => update(_options), autoUpdate === true ? {} : autoUpdate)); 56 | }); 57 | } 58 | }); 59 | }; 60 | initAutoUpdate().then((destroy) => (autoUpdateDestroy = destroy)); 61 | return { 62 | update(contentOptions) { 63 | update(contentOptions); 64 | initAutoUpdate().then((destroy) => (autoUpdateDestroy = destroy)); 65 | }, 66 | destroy() { 67 | destroyAutoUpdate(); 68 | } 69 | }; 70 | }; 71 | const setupVirtualElementObserver = (node) => { 72 | const unsubscribe = node.subscribe(($node) => { 73 | if (referenceElement === undefined) { 74 | referenceElement = $node; 75 | update(); 76 | } 77 | else { 78 | // Preserve the reference to the virtual element. 79 | Object.assign(referenceElement, $node); 80 | update(); 81 | } 82 | }); 83 | onDestroy(unsubscribe); 84 | }; 85 | return [referenceAction, contentAction, update]; 86 | }; 87 | export const arrow = (options) => { 88 | return { 89 | name: 'arrow', 90 | options, 91 | fn(args) { 92 | const element = get(options.element); 93 | if (element) { 94 | return arrowDom({ 95 | element, 96 | padding: options.padding 97 | }).fn(args); 98 | } 99 | return {}; 100 | } 101 | }; 102 | }; 103 | export const createArrowRef = () => writable(null); 104 | const parseVirtualElementOptions = ({ getBoundingClientRect, getClientRects, ...options }) => { 105 | return { 106 | getBoundingClientRect: () => getBoundingClientRect, 107 | getClientRects: getClientRects && (() => getClientRects), 108 | ...options 109 | }; 110 | }; 111 | export const createVirtualElement = (options) => { 112 | const store = writable(parseVirtualElementOptions(options)); 113 | const update = (options) => { 114 | store.set(parseVirtualElementOptions(options)); 115 | }; 116 | return { 117 | subscribe: store.subscribe, 118 | update 119 | }; 120 | }; 121 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import prettier from 'eslint-config-prettier'; 2 | import js from '@eslint/js'; 3 | import { includeIgnoreFile } from '@eslint/compat'; 4 | import svelte from 'eslint-plugin-svelte'; 5 | import globals from 'globals'; 6 | import { fileURLToPath } from 'node:url'; 7 | import ts from 'typescript-eslint'; 8 | import svelteConfig from './svelte.config.js'; 9 | const gitignorePath = fileURLToPath(new URL('./.gitignore', import.meta.url)); 10 | 11 | export default ts.config( 12 | includeIgnoreFile(gitignorePath), 13 | js.configs.recommended, 14 | ...ts.configs.recommended, 15 | ...svelte.configs.recommended, 16 | prettier, 17 | ...svelte.configs.prettier, 18 | { 19 | languageOptions: { 20 | globals: { 21 | ...globals.browser, 22 | ...globals.node 23 | } 24 | } 25 | }, 26 | { 27 | files: ['**/*.svelte', '**/*.svelte.ts', '**/*.svelte.js'], 28 | ignores: ['eslint.config.js', 'svelte.config.js'], 29 | 30 | languageOptions: { 31 | parserOptions: { 32 | projectService: true, 33 | extraFileExtensions: ['.svelte'], 34 | parser: ts.parser, 35 | svelteConfig 36 | } 37 | } 38 | } 39 | ); 40 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svelte-floating-ui", 3 | "version": "1.6.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "svelte-floating-ui", 9 | "version": "1.6.0", 10 | "license": "MIT", 11 | "dependencies": { 12 | "@floating-ui/dom": "^1.6.13" 13 | }, 14 | "devDependencies": { 15 | "@sveltejs/kit": "^2.20.2", 16 | "@sveltejs/package": "^2.3.10", 17 | "@sveltejs/vite-plugin-svelte": "^5.0.3", 18 | "@typescript-eslint/eslint-plugin": "^8.28.0", 19 | "@typescript-eslint/parser": "^8.28.0", 20 | "eslint": "^9.23.0", 21 | "eslint-config-prettier": "^10.1.1", 22 | "prettier": "^3.5.3", 23 | "prettier-plugin-svelte": "^3.3.3", 24 | "svelte": "^5.25.3", 25 | "svelte-check": "^4.1.5", 26 | "tslib": "^2.8.1", 27 | "typescript": "^5.8.2", 28 | "vite": "^6.2.3" 29 | } 30 | }, 31 | "node_modules/@ampproject/remapping": { 32 | "version": "2.3.0", 33 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 34 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 35 | "dev": true, 36 | "license": "Apache-2.0", 37 | "dependencies": { 38 | "@jridgewell/gen-mapping": "^0.3.5", 39 | "@jridgewell/trace-mapping": "^0.3.24" 40 | }, 41 | "engines": { 42 | "node": ">=6.0.0" 43 | } 44 | }, 45 | "node_modules/@esbuild/aix-ppc64": { 46 | "version": "0.25.1", 47 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz", 48 | "integrity": "sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==", 49 | "cpu": [ 50 | "ppc64" 51 | ], 52 | "dev": true, 53 | "license": "MIT", 54 | "optional": true, 55 | "os": [ 56 | "aix" 57 | ], 58 | "engines": { 59 | "node": ">=18" 60 | } 61 | }, 62 | "node_modules/@esbuild/android-arm": { 63 | "version": "0.25.1", 64 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.1.tgz", 65 | "integrity": "sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==", 66 | "cpu": [ 67 | "arm" 68 | ], 69 | "dev": true, 70 | "license": "MIT", 71 | "optional": true, 72 | "os": [ 73 | "android" 74 | ], 75 | "engines": { 76 | "node": ">=18" 77 | } 78 | }, 79 | "node_modules/@esbuild/android-arm64": { 80 | "version": "0.25.1", 81 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz", 82 | "integrity": "sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==", 83 | "cpu": [ 84 | "arm64" 85 | ], 86 | "dev": true, 87 | "license": "MIT", 88 | "optional": true, 89 | "os": [ 90 | "android" 91 | ], 92 | "engines": { 93 | "node": ">=18" 94 | } 95 | }, 96 | "node_modules/@esbuild/android-x64": { 97 | "version": "0.25.1", 98 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.1.tgz", 99 | "integrity": "sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==", 100 | "cpu": [ 101 | "x64" 102 | ], 103 | "dev": true, 104 | "license": "MIT", 105 | "optional": true, 106 | "os": [ 107 | "android" 108 | ], 109 | "engines": { 110 | "node": ">=18" 111 | } 112 | }, 113 | "node_modules/@esbuild/darwin-arm64": { 114 | "version": "0.25.1", 115 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz", 116 | "integrity": "sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==", 117 | "cpu": [ 118 | "arm64" 119 | ], 120 | "dev": true, 121 | "license": "MIT", 122 | "optional": true, 123 | "os": [ 124 | "darwin" 125 | ], 126 | "engines": { 127 | "node": ">=18" 128 | } 129 | }, 130 | "node_modules/@esbuild/darwin-x64": { 131 | "version": "0.25.1", 132 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz", 133 | "integrity": "sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==", 134 | "cpu": [ 135 | "x64" 136 | ], 137 | "dev": true, 138 | "license": "MIT", 139 | "optional": true, 140 | "os": [ 141 | "darwin" 142 | ], 143 | "engines": { 144 | "node": ">=18" 145 | } 146 | }, 147 | "node_modules/@esbuild/freebsd-arm64": { 148 | "version": "0.25.1", 149 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz", 150 | "integrity": "sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==", 151 | "cpu": [ 152 | "arm64" 153 | ], 154 | "dev": true, 155 | "license": "MIT", 156 | "optional": true, 157 | "os": [ 158 | "freebsd" 159 | ], 160 | "engines": { 161 | "node": ">=18" 162 | } 163 | }, 164 | "node_modules/@esbuild/freebsd-x64": { 165 | "version": "0.25.1", 166 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz", 167 | "integrity": "sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==", 168 | "cpu": [ 169 | "x64" 170 | ], 171 | "dev": true, 172 | "license": "MIT", 173 | "optional": true, 174 | "os": [ 175 | "freebsd" 176 | ], 177 | "engines": { 178 | "node": ">=18" 179 | } 180 | }, 181 | "node_modules/@esbuild/linux-arm": { 182 | "version": "0.25.1", 183 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz", 184 | "integrity": "sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==", 185 | "cpu": [ 186 | "arm" 187 | ], 188 | "dev": true, 189 | "license": "MIT", 190 | "optional": true, 191 | "os": [ 192 | "linux" 193 | ], 194 | "engines": { 195 | "node": ">=18" 196 | } 197 | }, 198 | "node_modules/@esbuild/linux-arm64": { 199 | "version": "0.25.1", 200 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz", 201 | "integrity": "sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==", 202 | "cpu": [ 203 | "arm64" 204 | ], 205 | "dev": true, 206 | "license": "MIT", 207 | "optional": true, 208 | "os": [ 209 | "linux" 210 | ], 211 | "engines": { 212 | "node": ">=18" 213 | } 214 | }, 215 | "node_modules/@esbuild/linux-ia32": { 216 | "version": "0.25.1", 217 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz", 218 | "integrity": "sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==", 219 | "cpu": [ 220 | "ia32" 221 | ], 222 | "dev": true, 223 | "license": "MIT", 224 | "optional": true, 225 | "os": [ 226 | "linux" 227 | ], 228 | "engines": { 229 | "node": ">=18" 230 | } 231 | }, 232 | "node_modules/@esbuild/linux-loong64": { 233 | "version": "0.25.1", 234 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz", 235 | "integrity": "sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==", 236 | "cpu": [ 237 | "loong64" 238 | ], 239 | "dev": true, 240 | "license": "MIT", 241 | "optional": true, 242 | "os": [ 243 | "linux" 244 | ], 245 | "engines": { 246 | "node": ">=18" 247 | } 248 | }, 249 | "node_modules/@esbuild/linux-mips64el": { 250 | "version": "0.25.1", 251 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz", 252 | "integrity": "sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==", 253 | "cpu": [ 254 | "mips64el" 255 | ], 256 | "dev": true, 257 | "license": "MIT", 258 | "optional": true, 259 | "os": [ 260 | "linux" 261 | ], 262 | "engines": { 263 | "node": ">=18" 264 | } 265 | }, 266 | "node_modules/@esbuild/linux-ppc64": { 267 | "version": "0.25.1", 268 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz", 269 | "integrity": "sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==", 270 | "cpu": [ 271 | "ppc64" 272 | ], 273 | "dev": true, 274 | "license": "MIT", 275 | "optional": true, 276 | "os": [ 277 | "linux" 278 | ], 279 | "engines": { 280 | "node": ">=18" 281 | } 282 | }, 283 | "node_modules/@esbuild/linux-riscv64": { 284 | "version": "0.25.1", 285 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz", 286 | "integrity": "sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==", 287 | "cpu": [ 288 | "riscv64" 289 | ], 290 | "dev": true, 291 | "license": "MIT", 292 | "optional": true, 293 | "os": [ 294 | "linux" 295 | ], 296 | "engines": { 297 | "node": ">=18" 298 | } 299 | }, 300 | "node_modules/@esbuild/linux-s390x": { 301 | "version": "0.25.1", 302 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz", 303 | "integrity": "sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==", 304 | "cpu": [ 305 | "s390x" 306 | ], 307 | "dev": true, 308 | "license": "MIT", 309 | "optional": true, 310 | "os": [ 311 | "linux" 312 | ], 313 | "engines": { 314 | "node": ">=18" 315 | } 316 | }, 317 | "node_modules/@esbuild/linux-x64": { 318 | "version": "0.25.1", 319 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz", 320 | "integrity": "sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==", 321 | "cpu": [ 322 | "x64" 323 | ], 324 | "dev": true, 325 | "license": "MIT", 326 | "optional": true, 327 | "os": [ 328 | "linux" 329 | ], 330 | "engines": { 331 | "node": ">=18" 332 | } 333 | }, 334 | "node_modules/@esbuild/netbsd-arm64": { 335 | "version": "0.25.1", 336 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz", 337 | "integrity": "sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==", 338 | "cpu": [ 339 | "arm64" 340 | ], 341 | "dev": true, 342 | "license": "MIT", 343 | "optional": true, 344 | "os": [ 345 | "netbsd" 346 | ], 347 | "engines": { 348 | "node": ">=18" 349 | } 350 | }, 351 | "node_modules/@esbuild/netbsd-x64": { 352 | "version": "0.25.1", 353 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz", 354 | "integrity": "sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==", 355 | "cpu": [ 356 | "x64" 357 | ], 358 | "dev": true, 359 | "license": "MIT", 360 | "optional": true, 361 | "os": [ 362 | "netbsd" 363 | ], 364 | "engines": { 365 | "node": ">=18" 366 | } 367 | }, 368 | "node_modules/@esbuild/openbsd-arm64": { 369 | "version": "0.25.1", 370 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz", 371 | "integrity": "sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==", 372 | "cpu": [ 373 | "arm64" 374 | ], 375 | "dev": true, 376 | "license": "MIT", 377 | "optional": true, 378 | "os": [ 379 | "openbsd" 380 | ], 381 | "engines": { 382 | "node": ">=18" 383 | } 384 | }, 385 | "node_modules/@esbuild/openbsd-x64": { 386 | "version": "0.25.1", 387 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz", 388 | "integrity": "sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==", 389 | "cpu": [ 390 | "x64" 391 | ], 392 | "dev": true, 393 | "license": "MIT", 394 | "optional": true, 395 | "os": [ 396 | "openbsd" 397 | ], 398 | "engines": { 399 | "node": ">=18" 400 | } 401 | }, 402 | "node_modules/@esbuild/sunos-x64": { 403 | "version": "0.25.1", 404 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz", 405 | "integrity": "sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==", 406 | "cpu": [ 407 | "x64" 408 | ], 409 | "dev": true, 410 | "license": "MIT", 411 | "optional": true, 412 | "os": [ 413 | "sunos" 414 | ], 415 | "engines": { 416 | "node": ">=18" 417 | } 418 | }, 419 | "node_modules/@esbuild/win32-arm64": { 420 | "version": "0.25.1", 421 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz", 422 | "integrity": "sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==", 423 | "cpu": [ 424 | "arm64" 425 | ], 426 | "dev": true, 427 | "license": "MIT", 428 | "optional": true, 429 | "os": [ 430 | "win32" 431 | ], 432 | "engines": { 433 | "node": ">=18" 434 | } 435 | }, 436 | "node_modules/@esbuild/win32-ia32": { 437 | "version": "0.25.1", 438 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz", 439 | "integrity": "sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==", 440 | "cpu": [ 441 | "ia32" 442 | ], 443 | "dev": true, 444 | "license": "MIT", 445 | "optional": true, 446 | "os": [ 447 | "win32" 448 | ], 449 | "engines": { 450 | "node": ">=18" 451 | } 452 | }, 453 | "node_modules/@esbuild/win32-x64": { 454 | "version": "0.25.1", 455 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz", 456 | "integrity": "sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==", 457 | "cpu": [ 458 | "x64" 459 | ], 460 | "dev": true, 461 | "license": "MIT", 462 | "optional": true, 463 | "os": [ 464 | "win32" 465 | ], 466 | "engines": { 467 | "node": ">=18" 468 | } 469 | }, 470 | "node_modules/@eslint-community/eslint-utils": { 471 | "version": "4.5.1", 472 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz", 473 | "integrity": "sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==", 474 | "dev": true, 475 | "license": "MIT", 476 | "dependencies": { 477 | "eslint-visitor-keys": "^3.4.3" 478 | }, 479 | "engines": { 480 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 481 | }, 482 | "funding": { 483 | "url": "https://opencollective.com/eslint" 484 | }, 485 | "peerDependencies": { 486 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 487 | } 488 | }, 489 | "node_modules/@eslint-community/regexpp": { 490 | "version": "4.12.1", 491 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 492 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 493 | "dev": true, 494 | "license": "MIT", 495 | "engines": { 496 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 497 | } 498 | }, 499 | "node_modules/@eslint/config-array": { 500 | "version": "0.19.2", 501 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz", 502 | "integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==", 503 | "dev": true, 504 | "license": "Apache-2.0", 505 | "dependencies": { 506 | "@eslint/object-schema": "^2.1.6", 507 | "debug": "^4.3.1", 508 | "minimatch": "^3.1.2" 509 | }, 510 | "engines": { 511 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 512 | } 513 | }, 514 | "node_modules/@eslint/config-array/node_modules/brace-expansion": { 515 | "version": "1.1.11", 516 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 517 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 518 | "dev": true, 519 | "license": "MIT", 520 | "dependencies": { 521 | "balanced-match": "^1.0.0", 522 | "concat-map": "0.0.1" 523 | } 524 | }, 525 | "node_modules/@eslint/config-array/node_modules/minimatch": { 526 | "version": "3.1.2", 527 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 528 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 529 | "dev": true, 530 | "license": "ISC", 531 | "dependencies": { 532 | "brace-expansion": "^1.1.7" 533 | }, 534 | "engines": { 535 | "node": "*" 536 | } 537 | }, 538 | "node_modules/@eslint/config-helpers": { 539 | "version": "0.2.0", 540 | "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.0.tgz", 541 | "integrity": "sha512-yJLLmLexii32mGrhW29qvU3QBVTu0GUmEf/J4XsBtVhp4JkIUFN/BjWqTF63yRvGApIDpZm5fa97LtYtINmfeQ==", 542 | "dev": true, 543 | "license": "Apache-2.0", 544 | "engines": { 545 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 546 | } 547 | }, 548 | "node_modules/@eslint/core": { 549 | "version": "0.12.0", 550 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz", 551 | "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==", 552 | "dev": true, 553 | "license": "Apache-2.0", 554 | "dependencies": { 555 | "@types/json-schema": "^7.0.15" 556 | }, 557 | "engines": { 558 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 559 | } 560 | }, 561 | "node_modules/@eslint/eslintrc": { 562 | "version": "3.3.1", 563 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", 564 | "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", 565 | "dev": true, 566 | "license": "MIT", 567 | "dependencies": { 568 | "ajv": "^6.12.4", 569 | "debug": "^4.3.2", 570 | "espree": "^10.0.1", 571 | "globals": "^14.0.0", 572 | "ignore": "^5.2.0", 573 | "import-fresh": "^3.2.1", 574 | "js-yaml": "^4.1.0", 575 | "minimatch": "^3.1.2", 576 | "strip-json-comments": "^3.1.1" 577 | }, 578 | "engines": { 579 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 580 | }, 581 | "funding": { 582 | "url": "https://opencollective.com/eslint" 583 | } 584 | }, 585 | "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { 586 | "version": "1.1.11", 587 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 588 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 589 | "dev": true, 590 | "license": "MIT", 591 | "dependencies": { 592 | "balanced-match": "^1.0.0", 593 | "concat-map": "0.0.1" 594 | } 595 | }, 596 | "node_modules/@eslint/eslintrc/node_modules/minimatch": { 597 | "version": "3.1.2", 598 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 599 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 600 | "dev": true, 601 | "license": "ISC", 602 | "dependencies": { 603 | "brace-expansion": "^1.1.7" 604 | }, 605 | "engines": { 606 | "node": "*" 607 | } 608 | }, 609 | "node_modules/@eslint/js": { 610 | "version": "9.23.0", 611 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.23.0.tgz", 612 | "integrity": "sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==", 613 | "dev": true, 614 | "license": "MIT", 615 | "engines": { 616 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 617 | } 618 | }, 619 | "node_modules/@eslint/object-schema": { 620 | "version": "2.1.6", 621 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", 622 | "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", 623 | "dev": true, 624 | "license": "Apache-2.0", 625 | "engines": { 626 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 627 | } 628 | }, 629 | "node_modules/@eslint/plugin-kit": { 630 | "version": "0.2.7", 631 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz", 632 | "integrity": "sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==", 633 | "dev": true, 634 | "license": "Apache-2.0", 635 | "dependencies": { 636 | "@eslint/core": "^0.12.0", 637 | "levn": "^0.4.1" 638 | }, 639 | "engines": { 640 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 641 | } 642 | }, 643 | "node_modules/@floating-ui/core": { 644 | "version": "1.6.9", 645 | "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.9.tgz", 646 | "integrity": "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==", 647 | "license": "MIT", 648 | "dependencies": { 649 | "@floating-ui/utils": "^0.2.9" 650 | } 651 | }, 652 | "node_modules/@floating-ui/dom": { 653 | "version": "1.6.13", 654 | "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.13.tgz", 655 | "integrity": "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==", 656 | "license": "MIT", 657 | "dependencies": { 658 | "@floating-ui/core": "^1.6.0", 659 | "@floating-ui/utils": "^0.2.9" 660 | } 661 | }, 662 | "node_modules/@floating-ui/utils": { 663 | "version": "0.2.9", 664 | "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.9.tgz", 665 | "integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==", 666 | "license": "MIT" 667 | }, 668 | "node_modules/@humanfs/core": { 669 | "version": "0.19.1", 670 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 671 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 672 | "dev": true, 673 | "license": "Apache-2.0", 674 | "engines": { 675 | "node": ">=18.18.0" 676 | } 677 | }, 678 | "node_modules/@humanfs/node": { 679 | "version": "0.16.6", 680 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 681 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 682 | "dev": true, 683 | "license": "Apache-2.0", 684 | "dependencies": { 685 | "@humanfs/core": "^0.19.1", 686 | "@humanwhocodes/retry": "^0.3.0" 687 | }, 688 | "engines": { 689 | "node": ">=18.18.0" 690 | } 691 | }, 692 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 693 | "version": "0.3.1", 694 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 695 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 696 | "dev": true, 697 | "license": "Apache-2.0", 698 | "engines": { 699 | "node": ">=18.18" 700 | }, 701 | "funding": { 702 | "type": "github", 703 | "url": "https://github.com/sponsors/nzakas" 704 | } 705 | }, 706 | "node_modules/@humanwhocodes/module-importer": { 707 | "version": "1.0.1", 708 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 709 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 710 | "dev": true, 711 | "license": "Apache-2.0", 712 | "engines": { 713 | "node": ">=12.22" 714 | }, 715 | "funding": { 716 | "type": "github", 717 | "url": "https://github.com/sponsors/nzakas" 718 | } 719 | }, 720 | "node_modules/@humanwhocodes/retry": { 721 | "version": "0.4.2", 722 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", 723 | "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", 724 | "dev": true, 725 | "license": "Apache-2.0", 726 | "engines": { 727 | "node": ">=18.18" 728 | }, 729 | "funding": { 730 | "type": "github", 731 | "url": "https://github.com/sponsors/nzakas" 732 | } 733 | }, 734 | "node_modules/@jridgewell/gen-mapping": { 735 | "version": "0.3.8", 736 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 737 | "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 738 | "dev": true, 739 | "license": "MIT", 740 | "dependencies": { 741 | "@jridgewell/set-array": "^1.2.1", 742 | "@jridgewell/sourcemap-codec": "^1.4.10", 743 | "@jridgewell/trace-mapping": "^0.3.24" 744 | }, 745 | "engines": { 746 | "node": ">=6.0.0" 747 | } 748 | }, 749 | "node_modules/@jridgewell/resolve-uri": { 750 | "version": "3.1.2", 751 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 752 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 753 | "dev": true, 754 | "license": "MIT", 755 | "engines": { 756 | "node": ">=6.0.0" 757 | } 758 | }, 759 | "node_modules/@jridgewell/set-array": { 760 | "version": "1.2.1", 761 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 762 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 763 | "dev": true, 764 | "license": "MIT", 765 | "engines": { 766 | "node": ">=6.0.0" 767 | } 768 | }, 769 | "node_modules/@jridgewell/sourcemap-codec": { 770 | "version": "1.5.0", 771 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 772 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 773 | "dev": true, 774 | "license": "MIT" 775 | }, 776 | "node_modules/@jridgewell/trace-mapping": { 777 | "version": "0.3.25", 778 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 779 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 780 | "dev": true, 781 | "license": "MIT", 782 | "dependencies": { 783 | "@jridgewell/resolve-uri": "^3.1.0", 784 | "@jridgewell/sourcemap-codec": "^1.4.14" 785 | } 786 | }, 787 | "node_modules/@nodelib/fs.scandir": { 788 | "version": "2.1.5", 789 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 790 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 791 | "dev": true, 792 | "license": "MIT", 793 | "dependencies": { 794 | "@nodelib/fs.stat": "2.0.5", 795 | "run-parallel": "^1.1.9" 796 | }, 797 | "engines": { 798 | "node": ">= 8" 799 | } 800 | }, 801 | "node_modules/@nodelib/fs.stat": { 802 | "version": "2.0.5", 803 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 804 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 805 | "dev": true, 806 | "license": "MIT", 807 | "engines": { 808 | "node": ">= 8" 809 | } 810 | }, 811 | "node_modules/@nodelib/fs.walk": { 812 | "version": "1.2.8", 813 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 814 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 815 | "dev": true, 816 | "license": "MIT", 817 | "dependencies": { 818 | "@nodelib/fs.scandir": "2.1.5", 819 | "fastq": "^1.6.0" 820 | }, 821 | "engines": { 822 | "node": ">= 8" 823 | } 824 | }, 825 | "node_modules/@polka/url": { 826 | "version": "1.0.0-next.28", 827 | "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz", 828 | "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==", 829 | "dev": true, 830 | "license": "MIT" 831 | }, 832 | "node_modules/@rollup/rollup-android-arm-eabi": { 833 | "version": "4.37.0", 834 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.37.0.tgz", 835 | "integrity": "sha512-l7StVw6WAa8l3vA1ov80jyetOAEo1FtHvZDbzXDO/02Sq/QVvqlHkYoFwDJPIMj0GKiistsBudfx5tGFnwYWDQ==", 836 | "cpu": [ 837 | "arm" 838 | ], 839 | "dev": true, 840 | "license": "MIT", 841 | "optional": true, 842 | "os": [ 843 | "android" 844 | ] 845 | }, 846 | "node_modules/@rollup/rollup-android-arm64": { 847 | "version": "4.37.0", 848 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.37.0.tgz", 849 | "integrity": "sha512-6U3SlVyMxezt8Y+/iEBcbp945uZjJwjZimu76xoG7tO1av9VO691z8PkhzQ85ith2I8R2RddEPeSfcbyPfD4hA==", 850 | "cpu": [ 851 | "arm64" 852 | ], 853 | "dev": true, 854 | "license": "MIT", 855 | "optional": true, 856 | "os": [ 857 | "android" 858 | ] 859 | }, 860 | "node_modules/@rollup/rollup-darwin-arm64": { 861 | "version": "4.37.0", 862 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.37.0.tgz", 863 | "integrity": "sha512-+iTQ5YHuGmPt10NTzEyMPbayiNTcOZDWsbxZYR1ZnmLnZxG17ivrPSWFO9j6GalY0+gV3Jtwrrs12DBscxnlYA==", 864 | "cpu": [ 865 | "arm64" 866 | ], 867 | "dev": true, 868 | "license": "MIT", 869 | "optional": true, 870 | "os": [ 871 | "darwin" 872 | ] 873 | }, 874 | "node_modules/@rollup/rollup-darwin-x64": { 875 | "version": "4.37.0", 876 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.37.0.tgz", 877 | "integrity": "sha512-m8W2UbxLDcmRKVjgl5J/k4B8d7qX2EcJve3Sut7YGrQoPtCIQGPH5AMzuFvYRWZi0FVS0zEY4c8uttPfX6bwYQ==", 878 | "cpu": [ 879 | "x64" 880 | ], 881 | "dev": true, 882 | "license": "MIT", 883 | "optional": true, 884 | "os": [ 885 | "darwin" 886 | ] 887 | }, 888 | "node_modules/@rollup/rollup-freebsd-arm64": { 889 | "version": "4.37.0", 890 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.37.0.tgz", 891 | "integrity": "sha512-FOMXGmH15OmtQWEt174v9P1JqqhlgYge/bUjIbiVD1nI1NeJ30HYT9SJlZMqdo1uQFyt9cz748F1BHghWaDnVA==", 892 | "cpu": [ 893 | "arm64" 894 | ], 895 | "dev": true, 896 | "license": "MIT", 897 | "optional": true, 898 | "os": [ 899 | "freebsd" 900 | ] 901 | }, 902 | "node_modules/@rollup/rollup-freebsd-x64": { 903 | "version": "4.37.0", 904 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.37.0.tgz", 905 | "integrity": "sha512-SZMxNttjPKvV14Hjck5t70xS3l63sbVwl98g3FlVVx2YIDmfUIy29jQrsw06ewEYQ8lQSuY9mpAPlmgRD2iSsA==", 906 | "cpu": [ 907 | "x64" 908 | ], 909 | "dev": true, 910 | "license": "MIT", 911 | "optional": true, 912 | "os": [ 913 | "freebsd" 914 | ] 915 | }, 916 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 917 | "version": "4.37.0", 918 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.37.0.tgz", 919 | "integrity": "sha512-hhAALKJPidCwZcj+g+iN+38SIOkhK2a9bqtJR+EtyxrKKSt1ynCBeqrQy31z0oWU6thRZzdx53hVgEbRkuI19w==", 920 | "cpu": [ 921 | "arm" 922 | ], 923 | "dev": true, 924 | "license": "MIT", 925 | "optional": true, 926 | "os": [ 927 | "linux" 928 | ] 929 | }, 930 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 931 | "version": "4.37.0", 932 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.37.0.tgz", 933 | "integrity": "sha512-jUb/kmn/Gd8epbHKEqkRAxq5c2EwRt0DqhSGWjPFxLeFvldFdHQs/n8lQ9x85oAeVb6bHcS8irhTJX2FCOd8Ag==", 934 | "cpu": [ 935 | "arm" 936 | ], 937 | "dev": true, 938 | "license": "MIT", 939 | "optional": true, 940 | "os": [ 941 | "linux" 942 | ] 943 | }, 944 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 945 | "version": "4.37.0", 946 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.37.0.tgz", 947 | "integrity": "sha512-oNrJxcQT9IcbcmKlkF+Yz2tmOxZgG9D9GRq+1OE6XCQwCVwxixYAa38Z8qqPzQvzt1FCfmrHX03E0pWoXm1DqA==", 948 | "cpu": [ 949 | "arm64" 950 | ], 951 | "dev": true, 952 | "license": "MIT", 953 | "optional": true, 954 | "os": [ 955 | "linux" 956 | ] 957 | }, 958 | "node_modules/@rollup/rollup-linux-arm64-musl": { 959 | "version": "4.37.0", 960 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.37.0.tgz", 961 | "integrity": "sha512-pfxLBMls+28Ey2enpX3JvjEjaJMBX5XlPCZNGxj4kdJyHduPBXtxYeb8alo0a7bqOoWZW2uKynhHxF/MWoHaGQ==", 962 | "cpu": [ 963 | "arm64" 964 | ], 965 | "dev": true, 966 | "license": "MIT", 967 | "optional": true, 968 | "os": [ 969 | "linux" 970 | ] 971 | }, 972 | "node_modules/@rollup/rollup-linux-loongarch64-gnu": { 973 | "version": "4.37.0", 974 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.37.0.tgz", 975 | "integrity": "sha512-yCE0NnutTC/7IGUq/PUHmoeZbIwq3KRh02e9SfFh7Vmc1Z7atuJRYWhRME5fKgT8aS20mwi1RyChA23qSyRGpA==", 976 | "cpu": [ 977 | "loong64" 978 | ], 979 | "dev": true, 980 | "license": "MIT", 981 | "optional": true, 982 | "os": [ 983 | "linux" 984 | ] 985 | }, 986 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 987 | "version": "4.37.0", 988 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.37.0.tgz", 989 | "integrity": "sha512-NxcICptHk06E2Lh3a4Pu+2PEdZ6ahNHuK7o6Np9zcWkrBMuv21j10SQDJW3C9Yf/A/P7cutWoC/DptNLVsZ0VQ==", 990 | "cpu": [ 991 | "ppc64" 992 | ], 993 | "dev": true, 994 | "license": "MIT", 995 | "optional": true, 996 | "os": [ 997 | "linux" 998 | ] 999 | }, 1000 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1001 | "version": "4.37.0", 1002 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.37.0.tgz", 1003 | "integrity": "sha512-PpWwHMPCVpFZLTfLq7EWJWvrmEuLdGn1GMYcm5MV7PaRgwCEYJAwiN94uBuZev0/J/hFIIJCsYw4nLmXA9J7Pw==", 1004 | "cpu": [ 1005 | "riscv64" 1006 | ], 1007 | "dev": true, 1008 | "license": "MIT", 1009 | "optional": true, 1010 | "os": [ 1011 | "linux" 1012 | ] 1013 | }, 1014 | "node_modules/@rollup/rollup-linux-riscv64-musl": { 1015 | "version": "4.37.0", 1016 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.37.0.tgz", 1017 | "integrity": "sha512-DTNwl6a3CfhGTAOYZ4KtYbdS8b+275LSLqJVJIrPa5/JuIufWWZ/QFvkxp52gpmguN95eujrM68ZG+zVxa8zHA==", 1018 | "cpu": [ 1019 | "riscv64" 1020 | ], 1021 | "dev": true, 1022 | "license": "MIT", 1023 | "optional": true, 1024 | "os": [ 1025 | "linux" 1026 | ] 1027 | }, 1028 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 1029 | "version": "4.37.0", 1030 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.37.0.tgz", 1031 | "integrity": "sha512-hZDDU5fgWvDdHFuExN1gBOhCuzo/8TMpidfOR+1cPZJflcEzXdCy1LjnklQdW8/Et9sryOPJAKAQRw8Jq7Tg+A==", 1032 | "cpu": [ 1033 | "s390x" 1034 | ], 1035 | "dev": true, 1036 | "license": "MIT", 1037 | "optional": true, 1038 | "os": [ 1039 | "linux" 1040 | ] 1041 | }, 1042 | "node_modules/@rollup/rollup-linux-x64-gnu": { 1043 | "version": "4.37.0", 1044 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.37.0.tgz", 1045 | "integrity": "sha512-pKivGpgJM5g8dwj0ywBwe/HeVAUSuVVJhUTa/URXjxvoyTT/AxsLTAbkHkDHG7qQxLoW2s3apEIl26uUe08LVQ==", 1046 | "cpu": [ 1047 | "x64" 1048 | ], 1049 | "dev": true, 1050 | "license": "MIT", 1051 | "optional": true, 1052 | "os": [ 1053 | "linux" 1054 | ] 1055 | }, 1056 | "node_modules/@rollup/rollup-linux-x64-musl": { 1057 | "version": "4.37.0", 1058 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.37.0.tgz", 1059 | "integrity": "sha512-E2lPrLKE8sQbY/2bEkVTGDEk4/49UYRVWgj90MY8yPjpnGBQ+Xi1Qnr7b7UIWw1NOggdFQFOLZ8+5CzCiz143w==", 1060 | "cpu": [ 1061 | "x64" 1062 | ], 1063 | "dev": true, 1064 | "license": "MIT", 1065 | "optional": true, 1066 | "os": [ 1067 | "linux" 1068 | ] 1069 | }, 1070 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 1071 | "version": "4.37.0", 1072 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.37.0.tgz", 1073 | "integrity": "sha512-Jm7biMazjNzTU4PrQtr7VS8ibeys9Pn29/1bm4ph7CP2kf21950LgN+BaE2mJ1QujnvOc6p54eWWiVvn05SOBg==", 1074 | "cpu": [ 1075 | "arm64" 1076 | ], 1077 | "dev": true, 1078 | "license": "MIT", 1079 | "optional": true, 1080 | "os": [ 1081 | "win32" 1082 | ] 1083 | }, 1084 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 1085 | "version": "4.37.0", 1086 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.37.0.tgz", 1087 | "integrity": "sha512-e3/1SFm1OjefWICB2Ucstg2dxYDkDTZGDYgwufcbsxTHyqQps1UQf33dFEChBNmeSsTOyrjw2JJq0zbG5GF6RA==", 1088 | "cpu": [ 1089 | "ia32" 1090 | ], 1091 | "dev": true, 1092 | "license": "MIT", 1093 | "optional": true, 1094 | "os": [ 1095 | "win32" 1096 | ] 1097 | }, 1098 | "node_modules/@rollup/rollup-win32-x64-msvc": { 1099 | "version": "4.37.0", 1100 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.37.0.tgz", 1101 | "integrity": "sha512-LWbXUBwn/bcLx2sSsqy7pK5o+Nr+VCoRoAohfJ5C/aBio9nfJmGQqHAhU6pwxV/RmyTk5AqdySma7uwWGlmeuA==", 1102 | "cpu": [ 1103 | "x64" 1104 | ], 1105 | "dev": true, 1106 | "license": "MIT", 1107 | "optional": true, 1108 | "os": [ 1109 | "win32" 1110 | ] 1111 | }, 1112 | "node_modules/@sveltejs/acorn-typescript": { 1113 | "version": "1.0.5", 1114 | "resolved": "https://registry.npmjs.org/@sveltejs/acorn-typescript/-/acorn-typescript-1.0.5.tgz", 1115 | "integrity": "sha512-IwQk4yfwLdibDlrXVE04jTZYlLnwsTT2PIOQQGNLWfjavGifnk1JD1LcZjZaBTRcxZu2FfPfNLOE04DSu9lqtQ==", 1116 | "dev": true, 1117 | "license": "MIT", 1118 | "peerDependencies": { 1119 | "acorn": "^8.9.0" 1120 | } 1121 | }, 1122 | "node_modules/@sveltejs/kit": { 1123 | "version": "2.20.2", 1124 | "resolved": "https://registry.npmjs.org/@sveltejs/kit/-/kit-2.20.2.tgz", 1125 | "integrity": "sha512-Dv8TOAZC9vyfcAB9TMsvUEJsRbklRTeNfcYBPaeH6KnABJ99i3CvCB2eNx8fiiliIqe+9GIchBg4RodRH5p1BQ==", 1126 | "dev": true, 1127 | "license": "MIT", 1128 | "dependencies": { 1129 | "@types/cookie": "^0.6.0", 1130 | "cookie": "^0.6.0", 1131 | "devalue": "^5.1.0", 1132 | "esm-env": "^1.2.2", 1133 | "import-meta-resolve": "^4.1.0", 1134 | "kleur": "^4.1.5", 1135 | "magic-string": "^0.30.5", 1136 | "mrmime": "^2.0.0", 1137 | "sade": "^1.8.1", 1138 | "set-cookie-parser": "^2.6.0", 1139 | "sirv": "^3.0.0" 1140 | }, 1141 | "bin": { 1142 | "svelte-kit": "svelte-kit.js" 1143 | }, 1144 | "engines": { 1145 | "node": ">=18.13" 1146 | }, 1147 | "peerDependencies": { 1148 | "@sveltejs/vite-plugin-svelte": "^3.0.0 || ^4.0.0-next.1 || ^5.0.0", 1149 | "svelte": "^4.0.0 || ^5.0.0-next.0", 1150 | "vite": "^5.0.3 || ^6.0.0" 1151 | } 1152 | }, 1153 | "node_modules/@sveltejs/package": { 1154 | "version": "2.3.10", 1155 | "resolved": "https://registry.npmjs.org/@sveltejs/package/-/package-2.3.10.tgz", 1156 | "integrity": "sha512-A4fQacgjJ7C/7oSmxR61/TdB14u6ecyMZ8V9JCR5Lol0bLj/PdJPU4uFodFBsKzO3iFiJMpNTgZZ+zYsYZNpUg==", 1157 | "dev": true, 1158 | "license": "MIT", 1159 | "dependencies": { 1160 | "chokidar": "^4.0.3", 1161 | "kleur": "^4.1.5", 1162 | "sade": "^1.8.1", 1163 | "semver": "^7.5.4", 1164 | "svelte2tsx": "~0.7.33" 1165 | }, 1166 | "bin": { 1167 | "svelte-package": "svelte-package.js" 1168 | }, 1169 | "engines": { 1170 | "node": "^16.14 || >=18" 1171 | }, 1172 | "peerDependencies": { 1173 | "svelte": "^3.44.0 || ^4.0.0 || ^5.0.0-next.1" 1174 | } 1175 | }, 1176 | "node_modules/@sveltejs/vite-plugin-svelte": { 1177 | "version": "5.0.3", 1178 | "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte/-/vite-plugin-svelte-5.0.3.tgz", 1179 | "integrity": "sha512-MCFS6CrQDu1yGwspm4qtli0e63vaPCehf6V7pIMP15AsWgMKrqDGCPFF/0kn4SP0ii4aySu4Pa62+fIRGFMjgw==", 1180 | "dev": true, 1181 | "license": "MIT", 1182 | "dependencies": { 1183 | "@sveltejs/vite-plugin-svelte-inspector": "^4.0.1", 1184 | "debug": "^4.4.0", 1185 | "deepmerge": "^4.3.1", 1186 | "kleur": "^4.1.5", 1187 | "magic-string": "^0.30.15", 1188 | "vitefu": "^1.0.4" 1189 | }, 1190 | "engines": { 1191 | "node": "^18.0.0 || ^20.0.0 || >=22" 1192 | }, 1193 | "peerDependencies": { 1194 | "svelte": "^5.0.0", 1195 | "vite": "^6.0.0" 1196 | } 1197 | }, 1198 | "node_modules/@sveltejs/vite-plugin-svelte-inspector": { 1199 | "version": "4.0.1", 1200 | "resolved": "https://registry.npmjs.org/@sveltejs/vite-plugin-svelte-inspector/-/vite-plugin-svelte-inspector-4.0.1.tgz", 1201 | "integrity": "sha512-J/Nmb2Q2y7mck2hyCX4ckVHcR5tu2J+MtBEQqpDrrgELZ2uvraQcK/ioCV61AqkdXFgriksOKIceDcQmqnGhVw==", 1202 | "dev": true, 1203 | "license": "MIT", 1204 | "dependencies": { 1205 | "debug": "^4.3.7" 1206 | }, 1207 | "engines": { 1208 | "node": "^18.0.0 || ^20.0.0 || >=22" 1209 | }, 1210 | "peerDependencies": { 1211 | "@sveltejs/vite-plugin-svelte": "^5.0.0", 1212 | "svelte": "^5.0.0", 1213 | "vite": "^6.0.0" 1214 | } 1215 | }, 1216 | "node_modules/@types/cookie": { 1217 | "version": "0.6.0", 1218 | "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", 1219 | "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", 1220 | "dev": true, 1221 | "license": "MIT" 1222 | }, 1223 | "node_modules/@types/estree": { 1224 | "version": "1.0.7", 1225 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", 1226 | "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", 1227 | "dev": true, 1228 | "license": "MIT" 1229 | }, 1230 | "node_modules/@types/json-schema": { 1231 | "version": "7.0.15", 1232 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 1233 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 1234 | "dev": true, 1235 | "license": "MIT" 1236 | }, 1237 | "node_modules/@typescript-eslint/eslint-plugin": { 1238 | "version": "8.28.0", 1239 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.28.0.tgz", 1240 | "integrity": "sha512-lvFK3TCGAHsItNdWZ/1FkvpzCxTHUVuFrdnOGLMa0GGCFIbCgQWVk3CzCGdA7kM3qGVc+dfW9tr0Z/sHnGDFyg==", 1241 | "dev": true, 1242 | "license": "MIT", 1243 | "dependencies": { 1244 | "@eslint-community/regexpp": "^4.10.0", 1245 | "@typescript-eslint/scope-manager": "8.28.0", 1246 | "@typescript-eslint/type-utils": "8.28.0", 1247 | "@typescript-eslint/utils": "8.28.0", 1248 | "@typescript-eslint/visitor-keys": "8.28.0", 1249 | "graphemer": "^1.4.0", 1250 | "ignore": "^5.3.1", 1251 | "natural-compare": "^1.4.0", 1252 | "ts-api-utils": "^2.0.1" 1253 | }, 1254 | "engines": { 1255 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1256 | }, 1257 | "funding": { 1258 | "type": "opencollective", 1259 | "url": "https://opencollective.com/typescript-eslint" 1260 | }, 1261 | "peerDependencies": { 1262 | "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", 1263 | "eslint": "^8.57.0 || ^9.0.0", 1264 | "typescript": ">=4.8.4 <5.9.0" 1265 | } 1266 | }, 1267 | "node_modules/@typescript-eslint/parser": { 1268 | "version": "8.28.0", 1269 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.28.0.tgz", 1270 | "integrity": "sha512-LPcw1yHD3ToaDEoljFEfQ9j2xShY367h7FZ1sq5NJT9I3yj4LHer1Xd1yRSOdYy9BpsrxU7R+eoDokChYM53lQ==", 1271 | "dev": true, 1272 | "license": "MIT", 1273 | "dependencies": { 1274 | "@typescript-eslint/scope-manager": "8.28.0", 1275 | "@typescript-eslint/types": "8.28.0", 1276 | "@typescript-eslint/typescript-estree": "8.28.0", 1277 | "@typescript-eslint/visitor-keys": "8.28.0", 1278 | "debug": "^4.3.4" 1279 | }, 1280 | "engines": { 1281 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1282 | }, 1283 | "funding": { 1284 | "type": "opencollective", 1285 | "url": "https://opencollective.com/typescript-eslint" 1286 | }, 1287 | "peerDependencies": { 1288 | "eslint": "^8.57.0 || ^9.0.0", 1289 | "typescript": ">=4.8.4 <5.9.0" 1290 | } 1291 | }, 1292 | "node_modules/@typescript-eslint/scope-manager": { 1293 | "version": "8.28.0", 1294 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.28.0.tgz", 1295 | "integrity": "sha512-u2oITX3BJwzWCapoZ/pXw6BCOl8rJP4Ij/3wPoGvY8XwvXflOzd1kLrDUUUAIEdJSFh+ASwdTHqtan9xSg8buw==", 1296 | "dev": true, 1297 | "license": "MIT", 1298 | "dependencies": { 1299 | "@typescript-eslint/types": "8.28.0", 1300 | "@typescript-eslint/visitor-keys": "8.28.0" 1301 | }, 1302 | "engines": { 1303 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1304 | }, 1305 | "funding": { 1306 | "type": "opencollective", 1307 | "url": "https://opencollective.com/typescript-eslint" 1308 | } 1309 | }, 1310 | "node_modules/@typescript-eslint/type-utils": { 1311 | "version": "8.28.0", 1312 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.28.0.tgz", 1313 | "integrity": "sha512-oRoXu2v0Rsy/VoOGhtWrOKDiIehvI+YNrDk5Oqj40Mwm0Yt01FC/Q7nFqg088d3yAsR1ZcZFVfPCTTFCe/KPwg==", 1314 | "dev": true, 1315 | "license": "MIT", 1316 | "dependencies": { 1317 | "@typescript-eslint/typescript-estree": "8.28.0", 1318 | "@typescript-eslint/utils": "8.28.0", 1319 | "debug": "^4.3.4", 1320 | "ts-api-utils": "^2.0.1" 1321 | }, 1322 | "engines": { 1323 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1324 | }, 1325 | "funding": { 1326 | "type": "opencollective", 1327 | "url": "https://opencollective.com/typescript-eslint" 1328 | }, 1329 | "peerDependencies": { 1330 | "eslint": "^8.57.0 || ^9.0.0", 1331 | "typescript": ">=4.8.4 <5.9.0" 1332 | } 1333 | }, 1334 | "node_modules/@typescript-eslint/types": { 1335 | "version": "8.28.0", 1336 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.28.0.tgz", 1337 | "integrity": "sha512-bn4WS1bkKEjx7HqiwG2JNB3YJdC1q6Ue7GyGlwPHyt0TnVq6TtD/hiOdTZt71sq0s7UzqBFXD8t8o2e63tXgwA==", 1338 | "dev": true, 1339 | "license": "MIT", 1340 | "engines": { 1341 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1342 | }, 1343 | "funding": { 1344 | "type": "opencollective", 1345 | "url": "https://opencollective.com/typescript-eslint" 1346 | } 1347 | }, 1348 | "node_modules/@typescript-eslint/typescript-estree": { 1349 | "version": "8.28.0", 1350 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.28.0.tgz", 1351 | "integrity": "sha512-H74nHEeBGeklctAVUvmDkxB1mk+PAZ9FiOMPFncdqeRBXxk1lWSYraHw8V12b7aa6Sg9HOBNbGdSHobBPuQSuA==", 1352 | "dev": true, 1353 | "license": "MIT", 1354 | "dependencies": { 1355 | "@typescript-eslint/types": "8.28.0", 1356 | "@typescript-eslint/visitor-keys": "8.28.0", 1357 | "debug": "^4.3.4", 1358 | "fast-glob": "^3.3.2", 1359 | "is-glob": "^4.0.3", 1360 | "minimatch": "^9.0.4", 1361 | "semver": "^7.6.0", 1362 | "ts-api-utils": "^2.0.1" 1363 | }, 1364 | "engines": { 1365 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1366 | }, 1367 | "funding": { 1368 | "type": "opencollective", 1369 | "url": "https://opencollective.com/typescript-eslint" 1370 | }, 1371 | "peerDependencies": { 1372 | "typescript": ">=4.8.4 <5.9.0" 1373 | } 1374 | }, 1375 | "node_modules/@typescript-eslint/utils": { 1376 | "version": "8.28.0", 1377 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.28.0.tgz", 1378 | "integrity": "sha512-OELa9hbTYciYITqgurT1u/SzpQVtDLmQMFzy/N8pQE+tefOyCWT79jHsav294aTqV1q1u+VzqDGbuujvRYaeSQ==", 1379 | "dev": true, 1380 | "license": "MIT", 1381 | "dependencies": { 1382 | "@eslint-community/eslint-utils": "^4.4.0", 1383 | "@typescript-eslint/scope-manager": "8.28.0", 1384 | "@typescript-eslint/types": "8.28.0", 1385 | "@typescript-eslint/typescript-estree": "8.28.0" 1386 | }, 1387 | "engines": { 1388 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1389 | }, 1390 | "funding": { 1391 | "type": "opencollective", 1392 | "url": "https://opencollective.com/typescript-eslint" 1393 | }, 1394 | "peerDependencies": { 1395 | "eslint": "^8.57.0 || ^9.0.0", 1396 | "typescript": ">=4.8.4 <5.9.0" 1397 | } 1398 | }, 1399 | "node_modules/@typescript-eslint/visitor-keys": { 1400 | "version": "8.28.0", 1401 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.28.0.tgz", 1402 | "integrity": "sha512-hbn8SZ8w4u2pRwgQ1GlUrPKE+t2XvcCW5tTRF7j6SMYIuYG37XuzIW44JCZPa36evi0Oy2SnM664BlIaAuQcvg==", 1403 | "dev": true, 1404 | "license": "MIT", 1405 | "dependencies": { 1406 | "@typescript-eslint/types": "8.28.0", 1407 | "eslint-visitor-keys": "^4.2.0" 1408 | }, 1409 | "engines": { 1410 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1411 | }, 1412 | "funding": { 1413 | "type": "opencollective", 1414 | "url": "https://opencollective.com/typescript-eslint" 1415 | } 1416 | }, 1417 | "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { 1418 | "version": "4.2.0", 1419 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 1420 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 1421 | "dev": true, 1422 | "license": "Apache-2.0", 1423 | "engines": { 1424 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1425 | }, 1426 | "funding": { 1427 | "url": "https://opencollective.com/eslint" 1428 | } 1429 | }, 1430 | "node_modules/acorn": { 1431 | "version": "8.14.1", 1432 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", 1433 | "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", 1434 | "dev": true, 1435 | "license": "MIT", 1436 | "bin": { 1437 | "acorn": "bin/acorn" 1438 | }, 1439 | "engines": { 1440 | "node": ">=0.4.0" 1441 | } 1442 | }, 1443 | "node_modules/acorn-jsx": { 1444 | "version": "5.3.2", 1445 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1446 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1447 | "dev": true, 1448 | "license": "MIT", 1449 | "peerDependencies": { 1450 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1451 | } 1452 | }, 1453 | "node_modules/ajv": { 1454 | "version": "6.12.6", 1455 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1456 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1457 | "dev": true, 1458 | "license": "MIT", 1459 | "dependencies": { 1460 | "fast-deep-equal": "^3.1.1", 1461 | "fast-json-stable-stringify": "^2.0.0", 1462 | "json-schema-traverse": "^0.4.1", 1463 | "uri-js": "^4.2.2" 1464 | }, 1465 | "funding": { 1466 | "type": "github", 1467 | "url": "https://github.com/sponsors/epoberezkin" 1468 | } 1469 | }, 1470 | "node_modules/ansi-styles": { 1471 | "version": "4.3.0", 1472 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1473 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1474 | "dev": true, 1475 | "license": "MIT", 1476 | "dependencies": { 1477 | "color-convert": "^2.0.1" 1478 | }, 1479 | "engines": { 1480 | "node": ">=8" 1481 | }, 1482 | "funding": { 1483 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1484 | } 1485 | }, 1486 | "node_modules/argparse": { 1487 | "version": "2.0.1", 1488 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1489 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1490 | "dev": true, 1491 | "license": "Python-2.0" 1492 | }, 1493 | "node_modules/aria-query": { 1494 | "version": "5.3.2", 1495 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.2.tgz", 1496 | "integrity": "sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==", 1497 | "dev": true, 1498 | "license": "Apache-2.0", 1499 | "engines": { 1500 | "node": ">= 0.4" 1501 | } 1502 | }, 1503 | "node_modules/axobject-query": { 1504 | "version": "4.1.0", 1505 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-4.1.0.tgz", 1506 | "integrity": "sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==", 1507 | "dev": true, 1508 | "license": "Apache-2.0", 1509 | "engines": { 1510 | "node": ">= 0.4" 1511 | } 1512 | }, 1513 | "node_modules/balanced-match": { 1514 | "version": "1.0.2", 1515 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1516 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1517 | "dev": true, 1518 | "license": "MIT" 1519 | }, 1520 | "node_modules/brace-expansion": { 1521 | "version": "2.0.1", 1522 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1523 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1524 | "dev": true, 1525 | "license": "MIT", 1526 | "dependencies": { 1527 | "balanced-match": "^1.0.0" 1528 | } 1529 | }, 1530 | "node_modules/braces": { 1531 | "version": "3.0.3", 1532 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1533 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1534 | "dev": true, 1535 | "license": "MIT", 1536 | "dependencies": { 1537 | "fill-range": "^7.1.1" 1538 | }, 1539 | "engines": { 1540 | "node": ">=8" 1541 | } 1542 | }, 1543 | "node_modules/callsites": { 1544 | "version": "3.1.0", 1545 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1546 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1547 | "dev": true, 1548 | "license": "MIT", 1549 | "engines": { 1550 | "node": ">=6" 1551 | } 1552 | }, 1553 | "node_modules/chalk": { 1554 | "version": "4.1.2", 1555 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1556 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1557 | "dev": true, 1558 | "license": "MIT", 1559 | "dependencies": { 1560 | "ansi-styles": "^4.1.0", 1561 | "supports-color": "^7.1.0" 1562 | }, 1563 | "engines": { 1564 | "node": ">=10" 1565 | }, 1566 | "funding": { 1567 | "url": "https://github.com/chalk/chalk?sponsor=1" 1568 | } 1569 | }, 1570 | "node_modules/chokidar": { 1571 | "version": "4.0.3", 1572 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.3.tgz", 1573 | "integrity": "sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==", 1574 | "dev": true, 1575 | "license": "MIT", 1576 | "dependencies": { 1577 | "readdirp": "^4.0.1" 1578 | }, 1579 | "engines": { 1580 | "node": ">= 14.16.0" 1581 | }, 1582 | "funding": { 1583 | "url": "https://paulmillr.com/funding/" 1584 | } 1585 | }, 1586 | "node_modules/clsx": { 1587 | "version": "2.1.1", 1588 | "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", 1589 | "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", 1590 | "dev": true, 1591 | "license": "MIT", 1592 | "engines": { 1593 | "node": ">=6" 1594 | } 1595 | }, 1596 | "node_modules/color-convert": { 1597 | "version": "2.0.1", 1598 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1599 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1600 | "dev": true, 1601 | "license": "MIT", 1602 | "dependencies": { 1603 | "color-name": "~1.1.4" 1604 | }, 1605 | "engines": { 1606 | "node": ">=7.0.0" 1607 | } 1608 | }, 1609 | "node_modules/color-name": { 1610 | "version": "1.1.4", 1611 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1612 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1613 | "dev": true, 1614 | "license": "MIT" 1615 | }, 1616 | "node_modules/concat-map": { 1617 | "version": "0.0.1", 1618 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1619 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1620 | "dev": true, 1621 | "license": "MIT" 1622 | }, 1623 | "node_modules/cookie": { 1624 | "version": "0.6.0", 1625 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", 1626 | "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", 1627 | "dev": true, 1628 | "license": "MIT", 1629 | "engines": { 1630 | "node": ">= 0.6" 1631 | } 1632 | }, 1633 | "node_modules/cross-spawn": { 1634 | "version": "7.0.6", 1635 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1636 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1637 | "dev": true, 1638 | "license": "MIT", 1639 | "dependencies": { 1640 | "path-key": "^3.1.0", 1641 | "shebang-command": "^2.0.0", 1642 | "which": "^2.0.1" 1643 | }, 1644 | "engines": { 1645 | "node": ">= 8" 1646 | } 1647 | }, 1648 | "node_modules/debug": { 1649 | "version": "4.4.0", 1650 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1651 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1652 | "dev": true, 1653 | "license": "MIT", 1654 | "dependencies": { 1655 | "ms": "^2.1.3" 1656 | }, 1657 | "engines": { 1658 | "node": ">=6.0" 1659 | }, 1660 | "peerDependenciesMeta": { 1661 | "supports-color": { 1662 | "optional": true 1663 | } 1664 | } 1665 | }, 1666 | "node_modules/dedent-js": { 1667 | "version": "1.0.1", 1668 | "resolved": "https://registry.npmjs.org/dedent-js/-/dedent-js-1.0.1.tgz", 1669 | "integrity": "sha512-OUepMozQULMLUmhxS95Vudo0jb0UchLimi3+pQ2plj61Fcy8axbP9hbiD4Sz6DPqn6XG3kfmziVfQ1rSys5AJQ==", 1670 | "dev": true, 1671 | "license": "MIT" 1672 | }, 1673 | "node_modules/deep-is": { 1674 | "version": "0.1.4", 1675 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1676 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1677 | "dev": true, 1678 | "license": "MIT" 1679 | }, 1680 | "node_modules/deepmerge": { 1681 | "version": "4.3.1", 1682 | "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", 1683 | "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", 1684 | "dev": true, 1685 | "license": "MIT", 1686 | "engines": { 1687 | "node": ">=0.10.0" 1688 | } 1689 | }, 1690 | "node_modules/devalue": { 1691 | "version": "5.1.1", 1692 | "resolved": "https://registry.npmjs.org/devalue/-/devalue-5.1.1.tgz", 1693 | "integrity": "sha512-maua5KUiapvEwiEAe+XnlZ3Rh0GD+qI1J/nb9vrJc3muPXvcF/8gXYTWF76+5DAqHyDUtOIImEuo0YKE9mshVw==", 1694 | "dev": true, 1695 | "license": "MIT" 1696 | }, 1697 | "node_modules/esbuild": { 1698 | "version": "0.25.1", 1699 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.1.tgz", 1700 | "integrity": "sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==", 1701 | "dev": true, 1702 | "hasInstallScript": true, 1703 | "license": "MIT", 1704 | "bin": { 1705 | "esbuild": "bin/esbuild" 1706 | }, 1707 | "engines": { 1708 | "node": ">=18" 1709 | }, 1710 | "optionalDependencies": { 1711 | "@esbuild/aix-ppc64": "0.25.1", 1712 | "@esbuild/android-arm": "0.25.1", 1713 | "@esbuild/android-arm64": "0.25.1", 1714 | "@esbuild/android-x64": "0.25.1", 1715 | "@esbuild/darwin-arm64": "0.25.1", 1716 | "@esbuild/darwin-x64": "0.25.1", 1717 | "@esbuild/freebsd-arm64": "0.25.1", 1718 | "@esbuild/freebsd-x64": "0.25.1", 1719 | "@esbuild/linux-arm": "0.25.1", 1720 | "@esbuild/linux-arm64": "0.25.1", 1721 | "@esbuild/linux-ia32": "0.25.1", 1722 | "@esbuild/linux-loong64": "0.25.1", 1723 | "@esbuild/linux-mips64el": "0.25.1", 1724 | "@esbuild/linux-ppc64": "0.25.1", 1725 | "@esbuild/linux-riscv64": "0.25.1", 1726 | "@esbuild/linux-s390x": "0.25.1", 1727 | "@esbuild/linux-x64": "0.25.1", 1728 | "@esbuild/netbsd-arm64": "0.25.1", 1729 | "@esbuild/netbsd-x64": "0.25.1", 1730 | "@esbuild/openbsd-arm64": "0.25.1", 1731 | "@esbuild/openbsd-x64": "0.25.1", 1732 | "@esbuild/sunos-x64": "0.25.1", 1733 | "@esbuild/win32-arm64": "0.25.1", 1734 | "@esbuild/win32-ia32": "0.25.1", 1735 | "@esbuild/win32-x64": "0.25.1" 1736 | } 1737 | }, 1738 | "node_modules/escape-string-regexp": { 1739 | "version": "4.0.0", 1740 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1741 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1742 | "dev": true, 1743 | "license": "MIT", 1744 | "engines": { 1745 | "node": ">=10" 1746 | }, 1747 | "funding": { 1748 | "url": "https://github.com/sponsors/sindresorhus" 1749 | } 1750 | }, 1751 | "node_modules/eslint": { 1752 | "version": "9.23.0", 1753 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.23.0.tgz", 1754 | "integrity": "sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==", 1755 | "dev": true, 1756 | "license": "MIT", 1757 | "dependencies": { 1758 | "@eslint-community/eslint-utils": "^4.2.0", 1759 | "@eslint-community/regexpp": "^4.12.1", 1760 | "@eslint/config-array": "^0.19.2", 1761 | "@eslint/config-helpers": "^0.2.0", 1762 | "@eslint/core": "^0.12.0", 1763 | "@eslint/eslintrc": "^3.3.1", 1764 | "@eslint/js": "9.23.0", 1765 | "@eslint/plugin-kit": "^0.2.7", 1766 | "@humanfs/node": "^0.16.6", 1767 | "@humanwhocodes/module-importer": "^1.0.1", 1768 | "@humanwhocodes/retry": "^0.4.2", 1769 | "@types/estree": "^1.0.6", 1770 | "@types/json-schema": "^7.0.15", 1771 | "ajv": "^6.12.4", 1772 | "chalk": "^4.0.0", 1773 | "cross-spawn": "^7.0.6", 1774 | "debug": "^4.3.2", 1775 | "escape-string-regexp": "^4.0.0", 1776 | "eslint-scope": "^8.3.0", 1777 | "eslint-visitor-keys": "^4.2.0", 1778 | "espree": "^10.3.0", 1779 | "esquery": "^1.5.0", 1780 | "esutils": "^2.0.2", 1781 | "fast-deep-equal": "^3.1.3", 1782 | "file-entry-cache": "^8.0.0", 1783 | "find-up": "^5.0.0", 1784 | "glob-parent": "^6.0.2", 1785 | "ignore": "^5.2.0", 1786 | "imurmurhash": "^0.1.4", 1787 | "is-glob": "^4.0.0", 1788 | "json-stable-stringify-without-jsonify": "^1.0.1", 1789 | "lodash.merge": "^4.6.2", 1790 | "minimatch": "^3.1.2", 1791 | "natural-compare": "^1.4.0", 1792 | "optionator": "^0.9.3" 1793 | }, 1794 | "bin": { 1795 | "eslint": "bin/eslint.js" 1796 | }, 1797 | "engines": { 1798 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1799 | }, 1800 | "funding": { 1801 | "url": "https://eslint.org/donate" 1802 | }, 1803 | "peerDependencies": { 1804 | "jiti": "*" 1805 | }, 1806 | "peerDependenciesMeta": { 1807 | "jiti": { 1808 | "optional": true 1809 | } 1810 | } 1811 | }, 1812 | "node_modules/eslint-config-prettier": { 1813 | "version": "10.1.1", 1814 | "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.1.tgz", 1815 | "integrity": "sha512-4EQQr6wXwS+ZJSzaR5ZCrYgLxqvUjdXctaEtBqHcbkW944B1NQyO4qpdHQbXBONfwxXdkAY81HH4+LUfrg+zPw==", 1816 | "dev": true, 1817 | "license": "MIT", 1818 | "bin": { 1819 | "eslint-config-prettier": "bin/cli.js" 1820 | }, 1821 | "peerDependencies": { 1822 | "eslint": ">=7.0.0" 1823 | } 1824 | }, 1825 | "node_modules/eslint-scope": { 1826 | "version": "8.3.0", 1827 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", 1828 | "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", 1829 | "dev": true, 1830 | "license": "BSD-2-Clause", 1831 | "dependencies": { 1832 | "esrecurse": "^4.3.0", 1833 | "estraverse": "^5.2.0" 1834 | }, 1835 | "engines": { 1836 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1837 | }, 1838 | "funding": { 1839 | "url": "https://opencollective.com/eslint" 1840 | } 1841 | }, 1842 | "node_modules/eslint-visitor-keys": { 1843 | "version": "3.4.3", 1844 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1845 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1846 | "dev": true, 1847 | "license": "Apache-2.0", 1848 | "engines": { 1849 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1850 | }, 1851 | "funding": { 1852 | "url": "https://opencollective.com/eslint" 1853 | } 1854 | }, 1855 | "node_modules/eslint/node_modules/brace-expansion": { 1856 | "version": "1.1.11", 1857 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1858 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1859 | "dev": true, 1860 | "license": "MIT", 1861 | "dependencies": { 1862 | "balanced-match": "^1.0.0", 1863 | "concat-map": "0.0.1" 1864 | } 1865 | }, 1866 | "node_modules/eslint/node_modules/eslint-visitor-keys": { 1867 | "version": "4.2.0", 1868 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 1869 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 1870 | "dev": true, 1871 | "license": "Apache-2.0", 1872 | "engines": { 1873 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1874 | }, 1875 | "funding": { 1876 | "url": "https://opencollective.com/eslint" 1877 | } 1878 | }, 1879 | "node_modules/eslint/node_modules/minimatch": { 1880 | "version": "3.1.2", 1881 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1882 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1883 | "dev": true, 1884 | "license": "ISC", 1885 | "dependencies": { 1886 | "brace-expansion": "^1.1.7" 1887 | }, 1888 | "engines": { 1889 | "node": "*" 1890 | } 1891 | }, 1892 | "node_modules/esm-env": { 1893 | "version": "1.2.2", 1894 | "resolved": "https://registry.npmjs.org/esm-env/-/esm-env-1.2.2.tgz", 1895 | "integrity": "sha512-Epxrv+Nr/CaL4ZcFGPJIYLWFom+YeV1DqMLHJoEd9SYRxNbaFruBwfEX/kkHUJf55j2+TUbmDcmuilbP1TmXHA==", 1896 | "dev": true, 1897 | "license": "MIT" 1898 | }, 1899 | "node_modules/espree": { 1900 | "version": "10.3.0", 1901 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 1902 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 1903 | "dev": true, 1904 | "license": "BSD-2-Clause", 1905 | "dependencies": { 1906 | "acorn": "^8.14.0", 1907 | "acorn-jsx": "^5.3.2", 1908 | "eslint-visitor-keys": "^4.2.0" 1909 | }, 1910 | "engines": { 1911 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1912 | }, 1913 | "funding": { 1914 | "url": "https://opencollective.com/eslint" 1915 | } 1916 | }, 1917 | "node_modules/espree/node_modules/eslint-visitor-keys": { 1918 | "version": "4.2.0", 1919 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 1920 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 1921 | "dev": true, 1922 | "license": "Apache-2.0", 1923 | "engines": { 1924 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1925 | }, 1926 | "funding": { 1927 | "url": "https://opencollective.com/eslint" 1928 | } 1929 | }, 1930 | "node_modules/esquery": { 1931 | "version": "1.6.0", 1932 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 1933 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 1934 | "dev": true, 1935 | "license": "BSD-3-Clause", 1936 | "dependencies": { 1937 | "estraverse": "^5.1.0" 1938 | }, 1939 | "engines": { 1940 | "node": ">=0.10" 1941 | } 1942 | }, 1943 | "node_modules/esrap": { 1944 | "version": "1.4.5", 1945 | "resolved": "https://registry.npmjs.org/esrap/-/esrap-1.4.5.tgz", 1946 | "integrity": "sha512-CjNMjkBWWZeHn+VX+gS8YvFwJ5+NDhg8aWZBSFJPR8qQduDNjbJodA2WcwCm7uQa5Rjqj+nZvVmceg1RbHFB9g==", 1947 | "dev": true, 1948 | "license": "MIT", 1949 | "dependencies": { 1950 | "@jridgewell/sourcemap-codec": "^1.4.15" 1951 | } 1952 | }, 1953 | "node_modules/esrecurse": { 1954 | "version": "4.3.0", 1955 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1956 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1957 | "dev": true, 1958 | "license": "BSD-2-Clause", 1959 | "dependencies": { 1960 | "estraverse": "^5.2.0" 1961 | }, 1962 | "engines": { 1963 | "node": ">=4.0" 1964 | } 1965 | }, 1966 | "node_modules/estraverse": { 1967 | "version": "5.3.0", 1968 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1969 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1970 | "dev": true, 1971 | "license": "BSD-2-Clause", 1972 | "engines": { 1973 | "node": ">=4.0" 1974 | } 1975 | }, 1976 | "node_modules/esutils": { 1977 | "version": "2.0.3", 1978 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1979 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1980 | "dev": true, 1981 | "license": "BSD-2-Clause", 1982 | "engines": { 1983 | "node": ">=0.10.0" 1984 | } 1985 | }, 1986 | "node_modules/fast-deep-equal": { 1987 | "version": "3.1.3", 1988 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1989 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1990 | "dev": true, 1991 | "license": "MIT" 1992 | }, 1993 | "node_modules/fast-glob": { 1994 | "version": "3.3.3", 1995 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 1996 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 1997 | "dev": true, 1998 | "license": "MIT", 1999 | "dependencies": { 2000 | "@nodelib/fs.stat": "^2.0.2", 2001 | "@nodelib/fs.walk": "^1.2.3", 2002 | "glob-parent": "^5.1.2", 2003 | "merge2": "^1.3.0", 2004 | "micromatch": "^4.0.8" 2005 | }, 2006 | "engines": { 2007 | "node": ">=8.6.0" 2008 | } 2009 | }, 2010 | "node_modules/fast-glob/node_modules/glob-parent": { 2011 | "version": "5.1.2", 2012 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2013 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2014 | "dev": true, 2015 | "license": "ISC", 2016 | "dependencies": { 2017 | "is-glob": "^4.0.1" 2018 | }, 2019 | "engines": { 2020 | "node": ">= 6" 2021 | } 2022 | }, 2023 | "node_modules/fast-json-stable-stringify": { 2024 | "version": "2.1.0", 2025 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2026 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2027 | "dev": true, 2028 | "license": "MIT" 2029 | }, 2030 | "node_modules/fast-levenshtein": { 2031 | "version": "2.0.6", 2032 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 2033 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 2034 | "dev": true, 2035 | "license": "MIT" 2036 | }, 2037 | "node_modules/fastq": { 2038 | "version": "1.19.1", 2039 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", 2040 | "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", 2041 | "dev": true, 2042 | "license": "ISC", 2043 | "dependencies": { 2044 | "reusify": "^1.0.4" 2045 | } 2046 | }, 2047 | "node_modules/file-entry-cache": { 2048 | "version": "8.0.0", 2049 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 2050 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 2051 | "dev": true, 2052 | "license": "MIT", 2053 | "dependencies": { 2054 | "flat-cache": "^4.0.0" 2055 | }, 2056 | "engines": { 2057 | "node": ">=16.0.0" 2058 | } 2059 | }, 2060 | "node_modules/fill-range": { 2061 | "version": "7.1.1", 2062 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 2063 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 2064 | "dev": true, 2065 | "license": "MIT", 2066 | "dependencies": { 2067 | "to-regex-range": "^5.0.1" 2068 | }, 2069 | "engines": { 2070 | "node": ">=8" 2071 | } 2072 | }, 2073 | "node_modules/find-up": { 2074 | "version": "5.0.0", 2075 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 2076 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 2077 | "dev": true, 2078 | "license": "MIT", 2079 | "dependencies": { 2080 | "locate-path": "^6.0.0", 2081 | "path-exists": "^4.0.0" 2082 | }, 2083 | "engines": { 2084 | "node": ">=10" 2085 | }, 2086 | "funding": { 2087 | "url": "https://github.com/sponsors/sindresorhus" 2088 | } 2089 | }, 2090 | "node_modules/flat-cache": { 2091 | "version": "4.0.1", 2092 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 2093 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 2094 | "dev": true, 2095 | "license": "MIT", 2096 | "dependencies": { 2097 | "flatted": "^3.2.9", 2098 | "keyv": "^4.5.4" 2099 | }, 2100 | "engines": { 2101 | "node": ">=16" 2102 | } 2103 | }, 2104 | "node_modules/flatted": { 2105 | "version": "3.3.3", 2106 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 2107 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 2108 | "dev": true, 2109 | "license": "ISC" 2110 | }, 2111 | "node_modules/fsevents": { 2112 | "version": "2.3.3", 2113 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2114 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2115 | "dev": true, 2116 | "hasInstallScript": true, 2117 | "license": "MIT", 2118 | "optional": true, 2119 | "os": [ 2120 | "darwin" 2121 | ], 2122 | "engines": { 2123 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2124 | } 2125 | }, 2126 | "node_modules/glob-parent": { 2127 | "version": "6.0.2", 2128 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2129 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2130 | "dev": true, 2131 | "license": "ISC", 2132 | "dependencies": { 2133 | "is-glob": "^4.0.3" 2134 | }, 2135 | "engines": { 2136 | "node": ">=10.13.0" 2137 | } 2138 | }, 2139 | "node_modules/globals": { 2140 | "version": "14.0.0", 2141 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 2142 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 2143 | "dev": true, 2144 | "license": "MIT", 2145 | "engines": { 2146 | "node": ">=18" 2147 | }, 2148 | "funding": { 2149 | "url": "https://github.com/sponsors/sindresorhus" 2150 | } 2151 | }, 2152 | "node_modules/graphemer": { 2153 | "version": "1.4.0", 2154 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2155 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2156 | "dev": true, 2157 | "license": "MIT" 2158 | }, 2159 | "node_modules/has-flag": { 2160 | "version": "4.0.0", 2161 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2162 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2163 | "dev": true, 2164 | "license": "MIT", 2165 | "engines": { 2166 | "node": ">=8" 2167 | } 2168 | }, 2169 | "node_modules/ignore": { 2170 | "version": "5.3.2", 2171 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 2172 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 2173 | "dev": true, 2174 | "license": "MIT", 2175 | "engines": { 2176 | "node": ">= 4" 2177 | } 2178 | }, 2179 | "node_modules/import-fresh": { 2180 | "version": "3.3.1", 2181 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 2182 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 2183 | "dev": true, 2184 | "license": "MIT", 2185 | "dependencies": { 2186 | "parent-module": "^1.0.0", 2187 | "resolve-from": "^4.0.0" 2188 | }, 2189 | "engines": { 2190 | "node": ">=6" 2191 | }, 2192 | "funding": { 2193 | "url": "https://github.com/sponsors/sindresorhus" 2194 | } 2195 | }, 2196 | "node_modules/import-meta-resolve": { 2197 | "version": "4.1.0", 2198 | "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", 2199 | "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", 2200 | "dev": true, 2201 | "license": "MIT", 2202 | "funding": { 2203 | "type": "github", 2204 | "url": "https://github.com/sponsors/wooorm" 2205 | } 2206 | }, 2207 | "node_modules/imurmurhash": { 2208 | "version": "0.1.4", 2209 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2210 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2211 | "dev": true, 2212 | "license": "MIT", 2213 | "engines": { 2214 | "node": ">=0.8.19" 2215 | } 2216 | }, 2217 | "node_modules/is-extglob": { 2218 | "version": "2.1.1", 2219 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2220 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2221 | "dev": true, 2222 | "license": "MIT", 2223 | "engines": { 2224 | "node": ">=0.10.0" 2225 | } 2226 | }, 2227 | "node_modules/is-glob": { 2228 | "version": "4.0.3", 2229 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2230 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2231 | "dev": true, 2232 | "license": "MIT", 2233 | "dependencies": { 2234 | "is-extglob": "^2.1.1" 2235 | }, 2236 | "engines": { 2237 | "node": ">=0.10.0" 2238 | } 2239 | }, 2240 | "node_modules/is-number": { 2241 | "version": "7.0.0", 2242 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2243 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2244 | "dev": true, 2245 | "license": "MIT", 2246 | "engines": { 2247 | "node": ">=0.12.0" 2248 | } 2249 | }, 2250 | "node_modules/is-reference": { 2251 | "version": "3.0.3", 2252 | "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-3.0.3.tgz", 2253 | "integrity": "sha512-ixkJoqQvAP88E6wLydLGGqCJsrFUnqoH6HnaczB8XmDH1oaWU+xxdptvikTgaEhtZ53Ky6YXiBuUI2WXLMCwjw==", 2254 | "dev": true, 2255 | "license": "MIT", 2256 | "dependencies": { 2257 | "@types/estree": "^1.0.6" 2258 | } 2259 | }, 2260 | "node_modules/isexe": { 2261 | "version": "2.0.0", 2262 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2263 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2264 | "dev": true, 2265 | "license": "ISC" 2266 | }, 2267 | "node_modules/js-yaml": { 2268 | "version": "4.1.0", 2269 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2270 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2271 | "dev": true, 2272 | "license": "MIT", 2273 | "dependencies": { 2274 | "argparse": "^2.0.1" 2275 | }, 2276 | "bin": { 2277 | "js-yaml": "bin/js-yaml.js" 2278 | } 2279 | }, 2280 | "node_modules/json-buffer": { 2281 | "version": "3.0.1", 2282 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2283 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2284 | "dev": true, 2285 | "license": "MIT" 2286 | }, 2287 | "node_modules/json-schema-traverse": { 2288 | "version": "0.4.1", 2289 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2290 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2291 | "dev": true, 2292 | "license": "MIT" 2293 | }, 2294 | "node_modules/json-stable-stringify-without-jsonify": { 2295 | "version": "1.0.1", 2296 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2297 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2298 | "dev": true, 2299 | "license": "MIT" 2300 | }, 2301 | "node_modules/keyv": { 2302 | "version": "4.5.4", 2303 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2304 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2305 | "dev": true, 2306 | "license": "MIT", 2307 | "dependencies": { 2308 | "json-buffer": "3.0.1" 2309 | } 2310 | }, 2311 | "node_modules/kleur": { 2312 | "version": "4.1.5", 2313 | "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", 2314 | "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", 2315 | "dev": true, 2316 | "license": "MIT", 2317 | "engines": { 2318 | "node": ">=6" 2319 | } 2320 | }, 2321 | "node_modules/levn": { 2322 | "version": "0.4.1", 2323 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2324 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2325 | "dev": true, 2326 | "license": "MIT", 2327 | "dependencies": { 2328 | "prelude-ls": "^1.2.1", 2329 | "type-check": "~0.4.0" 2330 | }, 2331 | "engines": { 2332 | "node": ">= 0.8.0" 2333 | } 2334 | }, 2335 | "node_modules/locate-character": { 2336 | "version": "3.0.0", 2337 | "resolved": "https://registry.npmjs.org/locate-character/-/locate-character-3.0.0.tgz", 2338 | "integrity": "sha512-SW13ws7BjaeJ6p7Q6CO2nchbYEc3X3J6WrmTTDto7yMPqVSZTUyY5Tjbid+Ab8gLnATtygYtiDIJGQRRn2ZOiA==", 2339 | "dev": true, 2340 | "license": "MIT" 2341 | }, 2342 | "node_modules/locate-path": { 2343 | "version": "6.0.0", 2344 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2345 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2346 | "dev": true, 2347 | "license": "MIT", 2348 | "dependencies": { 2349 | "p-locate": "^5.0.0" 2350 | }, 2351 | "engines": { 2352 | "node": ">=10" 2353 | }, 2354 | "funding": { 2355 | "url": "https://github.com/sponsors/sindresorhus" 2356 | } 2357 | }, 2358 | "node_modules/lodash.merge": { 2359 | "version": "4.6.2", 2360 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2361 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2362 | "dev": true, 2363 | "license": "MIT" 2364 | }, 2365 | "node_modules/lower-case": { 2366 | "version": "2.0.2", 2367 | "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", 2368 | "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", 2369 | "dev": true, 2370 | "license": "MIT", 2371 | "dependencies": { 2372 | "tslib": "^2.0.3" 2373 | } 2374 | }, 2375 | "node_modules/magic-string": { 2376 | "version": "0.30.17", 2377 | "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", 2378 | "integrity": "sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==", 2379 | "dev": true, 2380 | "license": "MIT", 2381 | "dependencies": { 2382 | "@jridgewell/sourcemap-codec": "^1.5.0" 2383 | } 2384 | }, 2385 | "node_modules/merge2": { 2386 | "version": "1.4.1", 2387 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2388 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2389 | "dev": true, 2390 | "license": "MIT", 2391 | "engines": { 2392 | "node": ">= 8" 2393 | } 2394 | }, 2395 | "node_modules/micromatch": { 2396 | "version": "4.0.8", 2397 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2398 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2399 | "dev": true, 2400 | "license": "MIT", 2401 | "dependencies": { 2402 | "braces": "^3.0.3", 2403 | "picomatch": "^2.3.1" 2404 | }, 2405 | "engines": { 2406 | "node": ">=8.6" 2407 | } 2408 | }, 2409 | "node_modules/minimatch": { 2410 | "version": "9.0.5", 2411 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 2412 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 2413 | "dev": true, 2414 | "license": "ISC", 2415 | "dependencies": { 2416 | "brace-expansion": "^2.0.1" 2417 | }, 2418 | "engines": { 2419 | "node": ">=16 || 14 >=14.17" 2420 | }, 2421 | "funding": { 2422 | "url": "https://github.com/sponsors/isaacs" 2423 | } 2424 | }, 2425 | "node_modules/mri": { 2426 | "version": "1.2.0", 2427 | "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", 2428 | "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", 2429 | "dev": true, 2430 | "license": "MIT", 2431 | "engines": { 2432 | "node": ">=4" 2433 | } 2434 | }, 2435 | "node_modules/mrmime": { 2436 | "version": "2.0.1", 2437 | "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz", 2438 | "integrity": "sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==", 2439 | "dev": true, 2440 | "license": "MIT", 2441 | "engines": { 2442 | "node": ">=10" 2443 | } 2444 | }, 2445 | "node_modules/ms": { 2446 | "version": "2.1.3", 2447 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2448 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2449 | "dev": true, 2450 | "license": "MIT" 2451 | }, 2452 | "node_modules/nanoid": { 2453 | "version": "3.3.11", 2454 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 2455 | "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 2456 | "dev": true, 2457 | "funding": [ 2458 | { 2459 | "type": "github", 2460 | "url": "https://github.com/sponsors/ai" 2461 | } 2462 | ], 2463 | "license": "MIT", 2464 | "bin": { 2465 | "nanoid": "bin/nanoid.cjs" 2466 | }, 2467 | "engines": { 2468 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2469 | } 2470 | }, 2471 | "node_modules/natural-compare": { 2472 | "version": "1.4.0", 2473 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2474 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2475 | "dev": true, 2476 | "license": "MIT" 2477 | }, 2478 | "node_modules/no-case": { 2479 | "version": "3.0.4", 2480 | "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", 2481 | "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", 2482 | "dev": true, 2483 | "license": "MIT", 2484 | "dependencies": { 2485 | "lower-case": "^2.0.2", 2486 | "tslib": "^2.0.3" 2487 | } 2488 | }, 2489 | "node_modules/optionator": { 2490 | "version": "0.9.4", 2491 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2492 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2493 | "dev": true, 2494 | "license": "MIT", 2495 | "dependencies": { 2496 | "deep-is": "^0.1.3", 2497 | "fast-levenshtein": "^2.0.6", 2498 | "levn": "^0.4.1", 2499 | "prelude-ls": "^1.2.1", 2500 | "type-check": "^0.4.0", 2501 | "word-wrap": "^1.2.5" 2502 | }, 2503 | "engines": { 2504 | "node": ">= 0.8.0" 2505 | } 2506 | }, 2507 | "node_modules/p-limit": { 2508 | "version": "3.1.0", 2509 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2510 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2511 | "dev": true, 2512 | "license": "MIT", 2513 | "dependencies": { 2514 | "yocto-queue": "^0.1.0" 2515 | }, 2516 | "engines": { 2517 | "node": ">=10" 2518 | }, 2519 | "funding": { 2520 | "url": "https://github.com/sponsors/sindresorhus" 2521 | } 2522 | }, 2523 | "node_modules/p-locate": { 2524 | "version": "5.0.0", 2525 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2526 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2527 | "dev": true, 2528 | "license": "MIT", 2529 | "dependencies": { 2530 | "p-limit": "^3.0.2" 2531 | }, 2532 | "engines": { 2533 | "node": ">=10" 2534 | }, 2535 | "funding": { 2536 | "url": "https://github.com/sponsors/sindresorhus" 2537 | } 2538 | }, 2539 | "node_modules/parent-module": { 2540 | "version": "1.0.1", 2541 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2542 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2543 | "dev": true, 2544 | "license": "MIT", 2545 | "dependencies": { 2546 | "callsites": "^3.0.0" 2547 | }, 2548 | "engines": { 2549 | "node": ">=6" 2550 | } 2551 | }, 2552 | "node_modules/pascal-case": { 2553 | "version": "3.1.2", 2554 | "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", 2555 | "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", 2556 | "dev": true, 2557 | "license": "MIT", 2558 | "dependencies": { 2559 | "no-case": "^3.0.4", 2560 | "tslib": "^2.0.3" 2561 | } 2562 | }, 2563 | "node_modules/path-exists": { 2564 | "version": "4.0.0", 2565 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2566 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2567 | "dev": true, 2568 | "license": "MIT", 2569 | "engines": { 2570 | "node": ">=8" 2571 | } 2572 | }, 2573 | "node_modules/path-key": { 2574 | "version": "3.1.1", 2575 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2576 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2577 | "dev": true, 2578 | "license": "MIT", 2579 | "engines": { 2580 | "node": ">=8" 2581 | } 2582 | }, 2583 | "node_modules/picocolors": { 2584 | "version": "1.1.1", 2585 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 2586 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 2587 | "dev": true, 2588 | "license": "ISC" 2589 | }, 2590 | "node_modules/picomatch": { 2591 | "version": "2.3.1", 2592 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2593 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2594 | "dev": true, 2595 | "license": "MIT", 2596 | "engines": { 2597 | "node": ">=8.6" 2598 | }, 2599 | "funding": { 2600 | "url": "https://github.com/sponsors/jonschlinkert" 2601 | } 2602 | }, 2603 | "node_modules/postcss": { 2604 | "version": "8.5.3", 2605 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", 2606 | "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", 2607 | "dev": true, 2608 | "funding": [ 2609 | { 2610 | "type": "opencollective", 2611 | "url": "https://opencollective.com/postcss/" 2612 | }, 2613 | { 2614 | "type": "tidelift", 2615 | "url": "https://tidelift.com/funding/github/npm/postcss" 2616 | }, 2617 | { 2618 | "type": "github", 2619 | "url": "https://github.com/sponsors/ai" 2620 | } 2621 | ], 2622 | "license": "MIT", 2623 | "dependencies": { 2624 | "nanoid": "^3.3.8", 2625 | "picocolors": "^1.1.1", 2626 | "source-map-js": "^1.2.1" 2627 | }, 2628 | "engines": { 2629 | "node": "^10 || ^12 || >=14" 2630 | } 2631 | }, 2632 | "node_modules/prelude-ls": { 2633 | "version": "1.2.1", 2634 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2635 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2636 | "dev": true, 2637 | "license": "MIT", 2638 | "engines": { 2639 | "node": ">= 0.8.0" 2640 | } 2641 | }, 2642 | "node_modules/prettier": { 2643 | "version": "3.5.3", 2644 | "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", 2645 | "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", 2646 | "dev": true, 2647 | "license": "MIT", 2648 | "bin": { 2649 | "prettier": "bin/prettier.cjs" 2650 | }, 2651 | "engines": { 2652 | "node": ">=14" 2653 | }, 2654 | "funding": { 2655 | "url": "https://github.com/prettier/prettier?sponsor=1" 2656 | } 2657 | }, 2658 | "node_modules/prettier-plugin-svelte": { 2659 | "version": "3.3.3", 2660 | "resolved": "https://registry.npmjs.org/prettier-plugin-svelte/-/prettier-plugin-svelte-3.3.3.tgz", 2661 | "integrity": "sha512-yViK9zqQ+H2qZD1w/bH7W8i+bVfKrD8GIFjkFe4Thl6kCT9SlAsXVNmt3jCvQOCsnOhcvYgsoVlRV/Eu6x5nNw==", 2662 | "dev": true, 2663 | "license": "MIT", 2664 | "peerDependencies": { 2665 | "prettier": "^3.0.0", 2666 | "svelte": "^3.2.0 || ^4.0.0-next.0 || ^5.0.0-next.0" 2667 | } 2668 | }, 2669 | "node_modules/punycode": { 2670 | "version": "2.3.1", 2671 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2672 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2673 | "dev": true, 2674 | "license": "MIT", 2675 | "engines": { 2676 | "node": ">=6" 2677 | } 2678 | }, 2679 | "node_modules/queue-microtask": { 2680 | "version": "1.2.3", 2681 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2682 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2683 | "dev": true, 2684 | "funding": [ 2685 | { 2686 | "type": "github", 2687 | "url": "https://github.com/sponsors/feross" 2688 | }, 2689 | { 2690 | "type": "patreon", 2691 | "url": "https://www.patreon.com/feross" 2692 | }, 2693 | { 2694 | "type": "consulting", 2695 | "url": "https://feross.org/support" 2696 | } 2697 | ], 2698 | "license": "MIT" 2699 | }, 2700 | "node_modules/readdirp": { 2701 | "version": "4.1.2", 2702 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", 2703 | "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", 2704 | "dev": true, 2705 | "license": "MIT", 2706 | "engines": { 2707 | "node": ">= 14.18.0" 2708 | }, 2709 | "funding": { 2710 | "type": "individual", 2711 | "url": "https://paulmillr.com/funding/" 2712 | } 2713 | }, 2714 | "node_modules/resolve-from": { 2715 | "version": "4.0.0", 2716 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2717 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2718 | "dev": true, 2719 | "license": "MIT", 2720 | "engines": { 2721 | "node": ">=4" 2722 | } 2723 | }, 2724 | "node_modules/reusify": { 2725 | "version": "1.1.0", 2726 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", 2727 | "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", 2728 | "dev": true, 2729 | "license": "MIT", 2730 | "engines": { 2731 | "iojs": ">=1.0.0", 2732 | "node": ">=0.10.0" 2733 | } 2734 | }, 2735 | "node_modules/rollup": { 2736 | "version": "4.37.0", 2737 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.37.0.tgz", 2738 | "integrity": "sha512-iAtQy/L4QFU+rTJ1YUjXqJOJzuwEghqWzCEYD2FEghT7Gsy1VdABntrO4CLopA5IkflTyqNiLNwPcOJ3S7UKLg==", 2739 | "dev": true, 2740 | "license": "MIT", 2741 | "dependencies": { 2742 | "@types/estree": "1.0.6" 2743 | }, 2744 | "bin": { 2745 | "rollup": "dist/bin/rollup" 2746 | }, 2747 | "engines": { 2748 | "node": ">=18.0.0", 2749 | "npm": ">=8.0.0" 2750 | }, 2751 | "optionalDependencies": { 2752 | "@rollup/rollup-android-arm-eabi": "4.37.0", 2753 | "@rollup/rollup-android-arm64": "4.37.0", 2754 | "@rollup/rollup-darwin-arm64": "4.37.0", 2755 | "@rollup/rollup-darwin-x64": "4.37.0", 2756 | "@rollup/rollup-freebsd-arm64": "4.37.0", 2757 | "@rollup/rollup-freebsd-x64": "4.37.0", 2758 | "@rollup/rollup-linux-arm-gnueabihf": "4.37.0", 2759 | "@rollup/rollup-linux-arm-musleabihf": "4.37.0", 2760 | "@rollup/rollup-linux-arm64-gnu": "4.37.0", 2761 | "@rollup/rollup-linux-arm64-musl": "4.37.0", 2762 | "@rollup/rollup-linux-loongarch64-gnu": "4.37.0", 2763 | "@rollup/rollup-linux-powerpc64le-gnu": "4.37.0", 2764 | "@rollup/rollup-linux-riscv64-gnu": "4.37.0", 2765 | "@rollup/rollup-linux-riscv64-musl": "4.37.0", 2766 | "@rollup/rollup-linux-s390x-gnu": "4.37.0", 2767 | "@rollup/rollup-linux-x64-gnu": "4.37.0", 2768 | "@rollup/rollup-linux-x64-musl": "4.37.0", 2769 | "@rollup/rollup-win32-arm64-msvc": "4.37.0", 2770 | "@rollup/rollup-win32-ia32-msvc": "4.37.0", 2771 | "@rollup/rollup-win32-x64-msvc": "4.37.0", 2772 | "fsevents": "~2.3.2" 2773 | } 2774 | }, 2775 | "node_modules/rollup/node_modules/@types/estree": { 2776 | "version": "1.0.6", 2777 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 2778 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 2779 | "dev": true, 2780 | "license": "MIT" 2781 | }, 2782 | "node_modules/run-parallel": { 2783 | "version": "1.2.0", 2784 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2785 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2786 | "dev": true, 2787 | "funding": [ 2788 | { 2789 | "type": "github", 2790 | "url": "https://github.com/sponsors/feross" 2791 | }, 2792 | { 2793 | "type": "patreon", 2794 | "url": "https://www.patreon.com/feross" 2795 | }, 2796 | { 2797 | "type": "consulting", 2798 | "url": "https://feross.org/support" 2799 | } 2800 | ], 2801 | "license": "MIT", 2802 | "dependencies": { 2803 | "queue-microtask": "^1.2.2" 2804 | } 2805 | }, 2806 | "node_modules/sade": { 2807 | "version": "1.8.1", 2808 | "resolved": "https://registry.npmjs.org/sade/-/sade-1.8.1.tgz", 2809 | "integrity": "sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==", 2810 | "dev": true, 2811 | "license": "MIT", 2812 | "dependencies": { 2813 | "mri": "^1.1.0" 2814 | }, 2815 | "engines": { 2816 | "node": ">=6" 2817 | } 2818 | }, 2819 | "node_modules/semver": { 2820 | "version": "7.7.1", 2821 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", 2822 | "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", 2823 | "dev": true, 2824 | "license": "ISC", 2825 | "bin": { 2826 | "semver": "bin/semver.js" 2827 | }, 2828 | "engines": { 2829 | "node": ">=10" 2830 | } 2831 | }, 2832 | "node_modules/set-cookie-parser": { 2833 | "version": "2.7.1", 2834 | "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", 2835 | "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", 2836 | "dev": true, 2837 | "license": "MIT" 2838 | }, 2839 | "node_modules/shebang-command": { 2840 | "version": "2.0.0", 2841 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2842 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2843 | "dev": true, 2844 | "license": "MIT", 2845 | "dependencies": { 2846 | "shebang-regex": "^3.0.0" 2847 | }, 2848 | "engines": { 2849 | "node": ">=8" 2850 | } 2851 | }, 2852 | "node_modules/shebang-regex": { 2853 | "version": "3.0.0", 2854 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2855 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2856 | "dev": true, 2857 | "license": "MIT", 2858 | "engines": { 2859 | "node": ">=8" 2860 | } 2861 | }, 2862 | "node_modules/sirv": { 2863 | "version": "3.0.1", 2864 | "resolved": "https://registry.npmjs.org/sirv/-/sirv-3.0.1.tgz", 2865 | "integrity": "sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==", 2866 | "dev": true, 2867 | "license": "MIT", 2868 | "dependencies": { 2869 | "@polka/url": "^1.0.0-next.24", 2870 | "mrmime": "^2.0.0", 2871 | "totalist": "^3.0.0" 2872 | }, 2873 | "engines": { 2874 | "node": ">=18" 2875 | } 2876 | }, 2877 | "node_modules/source-map-js": { 2878 | "version": "1.2.1", 2879 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 2880 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 2881 | "dev": true, 2882 | "license": "BSD-3-Clause", 2883 | "engines": { 2884 | "node": ">=0.10.0" 2885 | } 2886 | }, 2887 | "node_modules/strip-json-comments": { 2888 | "version": "3.1.1", 2889 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2890 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2891 | "dev": true, 2892 | "license": "MIT", 2893 | "engines": { 2894 | "node": ">=8" 2895 | }, 2896 | "funding": { 2897 | "url": "https://github.com/sponsors/sindresorhus" 2898 | } 2899 | }, 2900 | "node_modules/supports-color": { 2901 | "version": "7.2.0", 2902 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2903 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2904 | "dev": true, 2905 | "license": "MIT", 2906 | "dependencies": { 2907 | "has-flag": "^4.0.0" 2908 | }, 2909 | "engines": { 2910 | "node": ">=8" 2911 | } 2912 | }, 2913 | "node_modules/svelte": { 2914 | "version": "5.25.3", 2915 | "resolved": "https://registry.npmjs.org/svelte/-/svelte-5.25.3.tgz", 2916 | "integrity": "sha512-J9rcZ/xVJonAoESqVGHHZhrNdVbrCfkdB41BP6eiwHMoFShD9it3yZXApVYMHdGfCshBsZCKsajwJeBbS/M1zg==", 2917 | "dev": true, 2918 | "license": "MIT", 2919 | "dependencies": { 2920 | "@ampproject/remapping": "^2.3.0", 2921 | "@jridgewell/sourcemap-codec": "^1.5.0", 2922 | "@sveltejs/acorn-typescript": "^1.0.5", 2923 | "@types/estree": "^1.0.5", 2924 | "acorn": "^8.12.1", 2925 | "aria-query": "^5.3.1", 2926 | "axobject-query": "^4.1.0", 2927 | "clsx": "^2.1.1", 2928 | "esm-env": "^1.2.1", 2929 | "esrap": "^1.4.3", 2930 | "is-reference": "^3.0.3", 2931 | "locate-character": "^3.0.0", 2932 | "magic-string": "^0.30.11", 2933 | "zimmerframe": "^1.1.2" 2934 | }, 2935 | "engines": { 2936 | "node": ">=18" 2937 | } 2938 | }, 2939 | "node_modules/svelte-check": { 2940 | "version": "4.1.5", 2941 | "resolved": "https://registry.npmjs.org/svelte-check/-/svelte-check-4.1.5.tgz", 2942 | "integrity": "sha512-Gb0T2IqBNe1tLB9EB1Qh+LOe+JB8wt2/rNBDGvkxQVvk8vNeAoG+vZgFB/3P5+zC7RWlyBlzm9dVjZFph/maIg==", 2943 | "dev": true, 2944 | "license": "MIT", 2945 | "dependencies": { 2946 | "@jridgewell/trace-mapping": "^0.3.25", 2947 | "chokidar": "^4.0.1", 2948 | "fdir": "^6.2.0", 2949 | "picocolors": "^1.0.0", 2950 | "sade": "^1.7.4" 2951 | }, 2952 | "bin": { 2953 | "svelte-check": "bin/svelte-check" 2954 | }, 2955 | "engines": { 2956 | "node": ">= 18.0.0" 2957 | }, 2958 | "peerDependencies": { 2959 | "svelte": "^4.0.0 || ^5.0.0-next.0", 2960 | "typescript": ">=5.0.0" 2961 | } 2962 | }, 2963 | "node_modules/svelte-check/node_modules/fdir": { 2964 | "version": "6.4.3", 2965 | "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.3.tgz", 2966 | "integrity": "sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==", 2967 | "dev": true, 2968 | "license": "MIT", 2969 | "peerDependencies": { 2970 | "picomatch": "^3 || ^4" 2971 | }, 2972 | "peerDependenciesMeta": { 2973 | "picomatch": { 2974 | "optional": true 2975 | } 2976 | } 2977 | }, 2978 | "node_modules/svelte-check/node_modules/picomatch": { 2979 | "version": "4.0.2", 2980 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", 2981 | "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", 2982 | "dev": true, 2983 | "license": "MIT", 2984 | "optional": true, 2985 | "peer": true, 2986 | "engines": { 2987 | "node": ">=12" 2988 | }, 2989 | "funding": { 2990 | "url": "https://github.com/sponsors/jonschlinkert" 2991 | } 2992 | }, 2993 | "node_modules/svelte2tsx": { 2994 | "version": "0.7.35", 2995 | "resolved": "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.7.35.tgz", 2996 | "integrity": "sha512-z2lnOnrfb5nrlRfFQI8Qdz03xQqMHUfPj0j8l/fQuydrH89cCeN+v9jgDwK9GyMtdTRUkE7Neu9Gh+vfXJAfuQ==", 2997 | "dev": true, 2998 | "license": "MIT", 2999 | "dependencies": { 3000 | "dedent-js": "^1.0.1", 3001 | "pascal-case": "^3.1.1" 3002 | }, 3003 | "peerDependencies": { 3004 | "svelte": "^3.55 || ^4.0.0-next.0 || ^4.0 || ^5.0.0-next.0", 3005 | "typescript": "^4.9.4 || ^5.0.0" 3006 | } 3007 | }, 3008 | "node_modules/to-regex-range": { 3009 | "version": "5.0.1", 3010 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3011 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3012 | "dev": true, 3013 | "license": "MIT", 3014 | "dependencies": { 3015 | "is-number": "^7.0.0" 3016 | }, 3017 | "engines": { 3018 | "node": ">=8.0" 3019 | } 3020 | }, 3021 | "node_modules/totalist": { 3022 | "version": "3.0.1", 3023 | "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", 3024 | "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", 3025 | "dev": true, 3026 | "license": "MIT", 3027 | "engines": { 3028 | "node": ">=6" 3029 | } 3030 | }, 3031 | "node_modules/ts-api-utils": { 3032 | "version": "2.1.0", 3033 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", 3034 | "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", 3035 | "dev": true, 3036 | "license": "MIT", 3037 | "engines": { 3038 | "node": ">=18.12" 3039 | }, 3040 | "peerDependencies": { 3041 | "typescript": ">=4.8.4" 3042 | } 3043 | }, 3044 | "node_modules/tslib": { 3045 | "version": "2.8.1", 3046 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 3047 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 3048 | "dev": true, 3049 | "license": "0BSD" 3050 | }, 3051 | "node_modules/type-check": { 3052 | "version": "0.4.0", 3053 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3054 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3055 | "dev": true, 3056 | "license": "MIT", 3057 | "dependencies": { 3058 | "prelude-ls": "^1.2.1" 3059 | }, 3060 | "engines": { 3061 | "node": ">= 0.8.0" 3062 | } 3063 | }, 3064 | "node_modules/typescript": { 3065 | "version": "5.8.2", 3066 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", 3067 | "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", 3068 | "dev": true, 3069 | "license": "Apache-2.0", 3070 | "bin": { 3071 | "tsc": "bin/tsc", 3072 | "tsserver": "bin/tsserver" 3073 | }, 3074 | "engines": { 3075 | "node": ">=14.17" 3076 | } 3077 | }, 3078 | "node_modules/uri-js": { 3079 | "version": "4.4.1", 3080 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3081 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3082 | "dev": true, 3083 | "license": "BSD-2-Clause", 3084 | "dependencies": { 3085 | "punycode": "^2.1.0" 3086 | } 3087 | }, 3088 | "node_modules/vite": { 3089 | "version": "6.2.3", 3090 | "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.3.tgz", 3091 | "integrity": "sha512-IzwM54g4y9JA/xAeBPNaDXiBF8Jsgl3VBQ2YQ/wOY6fyW3xMdSoltIV3Bo59DErdqdE6RxUfv8W69DvUorE4Eg==", 3092 | "dev": true, 3093 | "license": "MIT", 3094 | "dependencies": { 3095 | "esbuild": "^0.25.0", 3096 | "postcss": "^8.5.3", 3097 | "rollup": "^4.30.1" 3098 | }, 3099 | "bin": { 3100 | "vite": "bin/vite.js" 3101 | }, 3102 | "engines": { 3103 | "node": "^18.0.0 || ^20.0.0 || >=22.0.0" 3104 | }, 3105 | "funding": { 3106 | "url": "https://github.com/vitejs/vite?sponsor=1" 3107 | }, 3108 | "optionalDependencies": { 3109 | "fsevents": "~2.3.3" 3110 | }, 3111 | "peerDependencies": { 3112 | "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", 3113 | "jiti": ">=1.21.0", 3114 | "less": "*", 3115 | "lightningcss": "^1.21.0", 3116 | "sass": "*", 3117 | "sass-embedded": "*", 3118 | "stylus": "*", 3119 | "sugarss": "*", 3120 | "terser": "^5.16.0", 3121 | "tsx": "^4.8.1", 3122 | "yaml": "^2.4.2" 3123 | }, 3124 | "peerDependenciesMeta": { 3125 | "@types/node": { 3126 | "optional": true 3127 | }, 3128 | "jiti": { 3129 | "optional": true 3130 | }, 3131 | "less": { 3132 | "optional": true 3133 | }, 3134 | "lightningcss": { 3135 | "optional": true 3136 | }, 3137 | "sass": { 3138 | "optional": true 3139 | }, 3140 | "sass-embedded": { 3141 | "optional": true 3142 | }, 3143 | "stylus": { 3144 | "optional": true 3145 | }, 3146 | "sugarss": { 3147 | "optional": true 3148 | }, 3149 | "terser": { 3150 | "optional": true 3151 | }, 3152 | "tsx": { 3153 | "optional": true 3154 | }, 3155 | "yaml": { 3156 | "optional": true 3157 | } 3158 | } 3159 | }, 3160 | "node_modules/vitefu": { 3161 | "version": "1.0.6", 3162 | "resolved": "https://registry.npmjs.org/vitefu/-/vitefu-1.0.6.tgz", 3163 | "integrity": "sha512-+Rex1GlappUyNN6UfwbVZne/9cYC4+R2XDk9xkNXBKMw6HQagdX9PgZ8V2v1WUSK1wfBLp7qbI1+XSNIlB1xmA==", 3164 | "dev": true, 3165 | "license": "MIT", 3166 | "workspaces": [ 3167 | "tests/deps/*", 3168 | "tests/projects/*" 3169 | ], 3170 | "peerDependencies": { 3171 | "vite": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" 3172 | }, 3173 | "peerDependenciesMeta": { 3174 | "vite": { 3175 | "optional": true 3176 | } 3177 | } 3178 | }, 3179 | "node_modules/which": { 3180 | "version": "2.0.2", 3181 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3182 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3183 | "dev": true, 3184 | "license": "ISC", 3185 | "dependencies": { 3186 | "isexe": "^2.0.0" 3187 | }, 3188 | "bin": { 3189 | "node-which": "bin/node-which" 3190 | }, 3191 | "engines": { 3192 | "node": ">= 8" 3193 | } 3194 | }, 3195 | "node_modules/word-wrap": { 3196 | "version": "1.2.5", 3197 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3198 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3199 | "dev": true, 3200 | "license": "MIT", 3201 | "engines": { 3202 | "node": ">=0.10.0" 3203 | } 3204 | }, 3205 | "node_modules/yocto-queue": { 3206 | "version": "0.1.0", 3207 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3208 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3209 | "dev": true, 3210 | "license": "MIT", 3211 | "engines": { 3212 | "node": ">=10" 3213 | }, 3214 | "funding": { 3215 | "url": "https://github.com/sponsors/sindresorhus" 3216 | } 3217 | }, 3218 | "node_modules/zimmerframe": { 3219 | "version": "1.1.2", 3220 | "resolved": "https://registry.npmjs.org/zimmerframe/-/zimmerframe-1.1.2.tgz", 3221 | "integrity": "sha512-rAbqEGa8ovJy4pyBxZM70hg4pE6gDgaQ0Sl9M3enG3I0d6H4XSAM3GeNGLKnsBpuijUow064sf7ww1nutC5/3w==", 3222 | "dev": true, 3223 | "license": "MIT" 3224 | } 3225 | } 3226 | } 3227 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "svelte-floating-ui", 3 | "description": "Svelte actions for working with floating ui", 4 | "version": "1.6.2", 5 | "license": "MIT", 6 | "type": "module", 7 | "main": "./dist/index.js", 8 | "types": "./dist/index.d.ts", 9 | "svelte": "./dist/index.js", 10 | "repository": "https://github.com/fedorovvvv/svelte-floating-ui", 11 | "author": "Nikita Fedorov ", 12 | "keywords": [ 13 | "svelte", 14 | "light", 15 | "floating", 16 | "floating-ui", 17 | "sveltejs", 18 | "svelte-floating-ui", 19 | "svelte-floating", 20 | "svelte-v3", 21 | "svelte3", 22 | "svelte5", 23 | "svelte-v5", 24 | "svelte-5", 25 | "sveltev5", 26 | "simple", 27 | "easy", 28 | "lightweight", 29 | "reactive" 30 | ], 31 | "scripts": { 32 | "dev": "vite dev", 33 | "build": "vite build", 34 | "package": "svelte-package", 35 | "preview": "vite preview", 36 | "prepare": "svelte-kit sync", 37 | "check": "svelte-check --tsconfig ./tsconfig.json", 38 | "check:watch": "svelte-check --tsconfig ./tsconfig.json --watch", 39 | "lint": "prettier --check --plugin-search-dir=. . && eslint .", 40 | "format": "prettier --write --plugin-search-dir=. ." 41 | }, 42 | "devDependencies": { 43 | "@sveltejs/kit": "^2.20.2", 44 | "@sveltejs/package": "^2.3.10", 45 | "@sveltejs/vite-plugin-svelte": "^5.0.3", 46 | "@typescript-eslint/eslint-plugin": "^8.28.0", 47 | "@typescript-eslint/parser": "^8.28.0", 48 | "eslint": "^9.23.0", 49 | "eslint-config-prettier": "^10.1.1", 50 | "prettier": "^3.5.3", 51 | "prettier-plugin-svelte": "^3.3.3", 52 | "svelte": "^5.25.3", 53 | "svelte-check": "^4.1.5", 54 | "tslib": "^2.8.1", 55 | "typescript": "^5.8.2", 56 | "vite": "^6.2.3" 57 | }, 58 | "dependencies": { 59 | "@floating-ui/dom": "^1.6.13" 60 | }, 61 | "exports": { 62 | "./dom": { 63 | "types": "./dist/dom/index.d.ts", 64 | "svelte": "./dist/dom/index.js", 65 | "default": "./dist/dom/index.js" 66 | }, 67 | "./package.json": "./package.json", 68 | ".": { 69 | "types": "./dist/index.d.ts", 70 | "default": "./dist/index.js" 71 | } 72 | }, 73 | "typesVersions": { 74 | ">4.0": { 75 | "svelte-floating-ui": [ 76 | "./index.d.ts" 77 | ] 78 | } 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /src/app.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | // See https://kit.svelte.dev/docs/types#app 4 | // for information about these interfaces 5 | // and what to do when importing types 6 | declare namespace App { 7 | // interface Locals {} 8 | // interface Platform {} 9 | // interface Session {} 10 | // interface Stuff {} 11 | } 12 | -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | %sveltekit.head% 8 | 9 | 10 |
%sveltekit.body%
11 | 12 | 13 | -------------------------------------------------------------------------------- /src/lib/dom/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@floating-ui/dom' -------------------------------------------------------------------------------- /src/lib/index.ts: -------------------------------------------------------------------------------- 1 | /* eslint-disable @typescript-eslint/ban-ts-comment */ 2 | import type { 3 | ClientRectObject, 4 | ComputePositionConfig, 5 | ComputePositionReturn, 6 | FloatingElement, 7 | Middleware, 8 | Padding, 9 | ReferenceElement, 10 | VirtualElement 11 | } from './dom/index.js'; 12 | import { 13 | autoUpdate as floatingAutoUpdate, 14 | computePosition, 15 | type AutoUpdateOptions, 16 | type MiddlewareState, 17 | arrow as arrowDom 18 | } from './dom/index.js'; 19 | import type { Readable, Writable } from 'svelte/store'; 20 | import { get, writable } from 'svelte/store'; 21 | import { onDestroy, tick } from 'svelte'; 22 | 23 | export type ComputeConfig = Partial & { 24 | onComputed?: (computed: ComputePositionReturn) => void; 25 | /** 26 | * false: Don't initialize autoUpdate; 27 | * true: Standard autoUpdate values from the documentation; 28 | * object: All as in the autoUpdate documentation. Your parameters are added to the default ones; 29 | * @default true 30 | */ 31 | autoUpdate?: boolean | Partial; 32 | }; 33 | export type Update = (contentOptions?: Omit) => void; 34 | export type ReferenceAction = ( 35 | node: HTMLElement | SVGElement | VirtualElementStore | VirtualElement 36 | ) => void; 37 | export type ContentAction = (node: HTMLElement, contentOptions?: ComputeConfig) => void; 38 | export type ArrowOptions = { 39 | padding?: Padding; 40 | element: Writable; 41 | }; 42 | export type CreateVirtualElementOptions = Omit & { 43 | getBoundingClientRect: ClientRectObject; 44 | getClientRects?: ReturnType>; 45 | }; 46 | export type VirtualElementStore = Pick, 'subscribe'> & { 47 | update: (options: CreateVirtualElementOptions) => void; 48 | }; 49 | export type CreateVirtualElement = (options: CreateVirtualElementOptions) => VirtualElementStore; 50 | 51 | type AutoUpdateDestroy = ReturnType; 52 | type InitAutoUpdate = (options?: ComputeConfig) => Promise; 53 | 54 | export const createFloatingActions = ( 55 | initOptions?: ComputeConfig 56 | ): [ReferenceAction, ContentAction, Update] => { 57 | let referenceElement: ReferenceElement; 58 | let floatingElement: FloatingElement; 59 | const defaultOptions: Partial = { 60 | autoUpdate: true 61 | }; 62 | 63 | let options: ComputeConfig = initOptions ?? {}; 64 | 65 | const getOptions = (mixin?: Omit): ComputeConfig => { 66 | return { ...defaultOptions, ...(initOptions || {}), ...(mixin || {}) }; 67 | }; 68 | 69 | const update: Update = (updateOptions) => { 70 | if (referenceElement && floatingElement) { 71 | options = getOptions(updateOptions); 72 | computePosition(referenceElement, floatingElement, options).then((v) => { 73 | Object.assign(floatingElement.style, { 74 | position: v.strategy, 75 | left: `${v.x}px`, 76 | top: `${v.y}px` 77 | }); 78 | options?.onComputed && options.onComputed(v); 79 | }); 80 | } 81 | }; 82 | 83 | const referenceAction: ReferenceAction = (node) => { 84 | if ('subscribe' in node) { 85 | setupVirtualElementObserver(node); 86 | return {}; 87 | } else { 88 | referenceElement = node; 89 | update(); 90 | } 91 | }; 92 | 93 | const contentAction: ContentAction = (node, contentOptions) => { 94 | let autoUpdateDestroy: AutoUpdateDestroy | undefined; 95 | floatingElement = node; 96 | options = getOptions(contentOptions); 97 | setTimeout(() => update(contentOptions), 0); //tick doesn't work 98 | update(contentOptions); 99 | 100 | const destroyAutoUpdate = () => { 101 | if (autoUpdateDestroy) { 102 | autoUpdateDestroy(); 103 | autoUpdateDestroy = undefined; 104 | } 105 | }; 106 | 107 | const initAutoUpdate: InitAutoUpdate = (_options = options) => { 108 | return new Promise((resolve) => { 109 | const { autoUpdate } = _options || {}; 110 | destroyAutoUpdate(); 111 | if (autoUpdate !== false) { 112 | tick().then(() => { 113 | resolve( 114 | floatingAutoUpdate( 115 | referenceElement, 116 | floatingElement, 117 | () => update(_options), 118 | autoUpdate === true ? {} : autoUpdate 119 | ) 120 | ); 121 | }); 122 | } 123 | }); 124 | }; 125 | 126 | initAutoUpdate().then((destroy) => (autoUpdateDestroy = destroy)); 127 | 128 | return { 129 | update(contentOptions: Parameters[1]) { 130 | update(contentOptions); 131 | initAutoUpdate().then((destroy) => (autoUpdateDestroy = destroy)); 132 | }, 133 | destroy() { 134 | destroyAutoUpdate(); 135 | } 136 | }; 137 | }; 138 | 139 | const setupVirtualElementObserver = (node: Readable) => { 140 | const unsubscribe = node.subscribe(($node) => { 141 | if (referenceElement === undefined) { 142 | referenceElement = $node; 143 | update(); 144 | } else { 145 | // Preserve the reference to the virtual element. 146 | Object.assign(referenceElement, $node); 147 | update(); 148 | } 149 | }); 150 | onDestroy(unsubscribe); 151 | }; 152 | 153 | return [referenceAction, contentAction, update]; 154 | }; 155 | 156 | export const arrow = (options: ArrowOptions): Middleware => { 157 | return { 158 | name: 'arrow', 159 | options, 160 | fn(args: MiddlewareState) { 161 | const element = get(options.element); 162 | 163 | if (element) { 164 | return arrowDom({ 165 | element, 166 | padding: options.padding 167 | }).fn(args); 168 | } 169 | 170 | return {}; 171 | } 172 | }; 173 | }; 174 | 175 | export const createArrowRef = () => writable(null); 176 | 177 | const parseVirtualElementOptions = ({ 178 | getBoundingClientRect, 179 | getClientRects, 180 | ...options 181 | }: CreateVirtualElementOptions): VirtualElement => { 182 | return { 183 | getBoundingClientRect: () => getBoundingClientRect, 184 | getClientRects: getClientRects && (() => getClientRects), 185 | ...options 186 | }; 187 | }; 188 | 189 | export const createVirtualElement: CreateVirtualElement = (options) => { 190 | const store = writable(parseVirtualElementOptions(options)); 191 | const update = (options: CreateVirtualElementOptions) => { 192 | store.set(parseVirtualElementOptions(options)); 193 | }; 194 | return { 195 | subscribe: store.subscribe, 196 | update 197 | }; 198 | }; 199 | -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 | {@render children()} 9 | -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- 1 | 27 | 28 |
29 | 32 |
33 | 34 | {#if opened} 35 |
    40 |
  • OMG!
  • 41 |
  • NONONO!
  • 42 |
43 | {/if} 44 |
45 |
46 | -------------------------------------------------------------------------------- /src/routes/arrow/+page.svelte: -------------------------------------------------------------------------------- 1 | 30 | 31 |
32 | 37 | 38 | {#if showTooltip} 39 |
40 | Tooltip this is some longer text than the button 41 |
^
42 |
43 | {/if} 44 |
45 | -------------------------------------------------------------------------------- /src/routes/styles/index.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | padding: 0; 4 | margin: 0; 5 | } 6 | main { 7 | display: flex; 8 | flex-direction: column; 9 | align-items: center; 10 | justify-content: center; 11 | height: 500px; 12 | } 13 | .wrapper { 14 | position: relative; 15 | } 16 | button { 17 | position: relative; 18 | width: 100px; 19 | height: 50px; 20 | display: block; 21 | } 22 | ul { 23 | width: 200px; 24 | height: 600px; 25 | background: #fff; 26 | border-radius: 4px; 27 | border: 2px solid #ddd; 28 | list-style: none; 29 | padding: 4px; 30 | } 31 | ul li { 32 | width: 100%; 33 | display: block; 34 | } 35 | -------------------------------------------------------------------------------- /src/routes/virtual/+page.svelte: -------------------------------------------------------------------------------- 1 | 55 | 56 | 57 |
58 | 61 |
62 | {#if opened} 63 |
    68 |
  • OMG!
  • 69 |
  • NONONO!
  • 70 |
71 | {/if} 72 |
73 |
74 | -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/5091fece14450178685636fcf0e3724a0ceed4f7/static/favicon.png -------------------------------------------------------------------------------- /svelte-floating-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fedorovvvv/svelte-floating-ui/5091fece14450178685636fcf0e3724a0ceed4f7/svelte-floating-ui.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- 1 | import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; 2 | 3 | /** @type {import('@sveltejs/kit').Config} */ 4 | const config = { 5 | preprocess: [ 6 | vitePreprocess() 7 | ] 8 | }; 9 | 10 | export default config; 11 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./.svelte-kit/tsconfig.json", 3 | "compilerOptions": { 4 | "allowJs": true, 5 | "checkJs": true, 6 | "esModuleInterop": true, 7 | "forceConsistentCasingInFileNames": true, 8 | "resolveJsonModule": true, 9 | "skipLibCheck": true, 10 | "sourceMap": true, 11 | "strict": true, 12 | "moduleResolution": "NodeNext", 13 | "module": "NodeNext", 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { sveltekit } from '@sveltejs/kit/vite'; 2 | 3 | /** @type {import('vite').UserConfig} */ 4 | const config = { 5 | plugins: [ 6 | sveltekit(), 7 | ] 8 | }; 9 | 10 | export default config; --------------------------------------------------------------------------------