├── .prettierignore ├── .gitignore ├── tests ├── vitest-setup.ts └── 01_basic.spec.tsx ├── .codesandbox └── ci.json ├── tsconfig.esm.json ├── examples ├── tsconfig.json ├── 01_counter │ ├── index.html │ ├── src │ │ ├── main.tsx │ │ └── app.tsx │ ├── tsconfig.json │ └── package.json └── 02_suspense │ ├── index.html │ ├── src │ ├── main.tsx │ └── app.tsx │ ├── tsconfig.json │ └── package.json ├── tsconfig.cjs.json ├── .github └── workflows │ ├── ci.yml │ └── cd.yml ├── CHANGELOG.md ├── tsconfig.json ├── vite.config.ts ├── eslint.config.js ├── LICENSE ├── src └── index.ts ├── README.md ├── package.json └── pnpm-lock.yaml /.prettierignore: -------------------------------------------------------------------------------- 1 | /pnpm-lock.yaml 2 | /dist 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | node_modules 4 | /dist 5 | -------------------------------------------------------------------------------- /tests/vitest-setup.ts: -------------------------------------------------------------------------------- 1 | import '@testing-library/jest-dom/vitest'; 2 | -------------------------------------------------------------------------------- /.codesandbox/ci.json: -------------------------------------------------------------------------------- 1 | { 2 | "buildCommand": "compile", 3 | "sandboxes": ["new", "react-typescript-react-ts"], 4 | "node": "18" 5 | } 6 | -------------------------------------------------------------------------------- /tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "declaration": true, 5 | "outDir": "./dist" 6 | }, 7 | "include": ["src"] 8 | } 9 | -------------------------------------------------------------------------------- /examples/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "module": "esnext", 5 | "moduleResolution": "bundler" 6 | }, 7 | "exclude": [] 8 | } 9 | -------------------------------------------------------------------------------- /tests/01_basic.spec.tsx: -------------------------------------------------------------------------------- 1 | import { expect, test } from 'vitest'; 2 | import { useValtio } from 'use-valtio'; 3 | 4 | test('should export functions', () => { 5 | expect(useValtio).toBeDefined(); 6 | }); 7 | -------------------------------------------------------------------------------- /examples/01_counter/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | example 4 | 5 | 6 |
7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /examples/02_suspense/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | example 4 | 5 | 6 |
7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /tsconfig.cjs.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "module": "commonjs", 5 | "verbatimModuleSyntax": false, 6 | "declaration": true, 7 | "outDir": "./dist/cjs" 8 | }, 9 | "include": ["src"] 10 | } 11 | -------------------------------------------------------------------------------- /examples/01_counter/src/main.tsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from 'react'; 2 | import { createRoot } from 'react-dom/client'; 3 | 4 | import App from './app'; 5 | 6 | createRoot(document.getElementById('root')!).render( 7 | 8 | 9 | , 10 | ); 11 | -------------------------------------------------------------------------------- /examples/02_suspense/src/main.tsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from 'react'; 2 | import { createRoot } from 'react-dom/client'; 3 | 4 | import App from './app'; 5 | 6 | createRoot(document.getElementById('root')!).render( 7 | 8 | 9 | , 10 | ); 11 | -------------------------------------------------------------------------------- /examples/01_counter/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "strict": true, 4 | "target": "es2018", 5 | "esModuleInterop": true, 6 | "module": "esnext", 7 | "moduleResolution": "bundler", 8 | "skipLibCheck": true, 9 | "allowJs": true, 10 | "noUncheckedIndexedAccess": true, 11 | "exactOptionalPropertyTypes": true, 12 | "jsx": "react-jsx" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /examples/02_suspense/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "strict": true, 4 | "target": "es2018", 5 | "esModuleInterop": true, 6 | "module": "esnext", 7 | "moduleResolution": "bundler", 8 | "skipLibCheck": true, 9 | "allowJs": true, 10 | "noUncheckedIndexedAccess": true, 11 | "exactOptionalPropertyTypes": true, 12 | "jsx": "react-jsx" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | 3 | on: 4 | push: 5 | pull_request: 6 | 7 | jobs: 8 | test: 9 | runs-on: ubuntu-latest 10 | steps: 11 | - uses: actions/checkout@v4 12 | - uses: pnpm/action-setup@v4 13 | - uses: actions/setup-node@v4 14 | with: 15 | node-version: 'lts/*' 16 | cache: 'pnpm' 17 | - run: pnpm install 18 | - run: pnpm test 19 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | ## [Unreleased] 4 | 5 | ## [0.2.0] - 2024-05-29 6 | 7 | ### Changed 8 | 9 | - Module-first setup #8 10 | 11 | ## [0.1.0] - 2024-03-14 12 | 13 | ### Added 14 | 15 | - feat: usage tracking like useSnapshot #7 16 | 17 | ## [0.0.2] - 2023-01-30 18 | 19 | ### Changed 20 | 21 | - fix: support changing path #1 22 | 23 | ## [0.0.1] - 2023-01-23 24 | 25 | ### Added 26 | 27 | - Initial release 28 | -------------------------------------------------------------------------------- /examples/01_counter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "version": "0.0.0", 4 | "private": true, 5 | "type": "module", 6 | "dependencies": { 7 | "react": "latest", 8 | "react-dom": "latest", 9 | "use-valtio": "latest", 10 | "valtio": "latest" 11 | }, 12 | "devDependencies": { 13 | "@types/react": "latest", 14 | "@types/react-dom": "latest", 15 | "typescript": "latest", 16 | "vite": "latest" 17 | }, 18 | "scripts": { 19 | "dev": "vite" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /examples/02_suspense/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example", 3 | "version": "0.0.0", 4 | "private": true, 5 | "type": "module", 6 | "dependencies": { 7 | "react": "latest", 8 | "react-dom": "latest", 9 | "use-valtio": "latest", 10 | "valtio": "latest" 11 | }, 12 | "devDependencies": { 13 | "@types/react": "latest", 14 | "@types/react-dom": "latest", 15 | "typescript": "latest", 16 | "vite": "latest" 17 | }, 18 | "scripts": { 19 | "dev": "vite" 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "strict": true, 4 | "target": "es2018", 5 | "esModuleInterop": true, 6 | "module": "nodenext", 7 | "skipLibCheck": true, 8 | "allowJs": true, 9 | "verbatimModuleSyntax": true, 10 | "noUncheckedIndexedAccess": true, 11 | "exactOptionalPropertyTypes": true, 12 | "jsx": "react-jsx", 13 | "baseUrl": ".", 14 | "paths": { 15 | "use-valtio": ["./src/index.ts"] 16 | } 17 | }, 18 | "exclude": ["dist", "examples"] 19 | } 20 | -------------------------------------------------------------------------------- /examples/01_counter/src/app.tsx: -------------------------------------------------------------------------------- 1 | import { proxy } from 'valtio/vanilla'; 2 | import { useValtio } from 'use-valtio'; 3 | 4 | const countState = proxy({ nested: { count: 0 } }); 5 | const Counter = () => { 6 | const snap = useValtio(countState); 7 | return ( 8 |
9 | {snap.nested.count}{' '} 10 | 13 |
14 | ); 15 | }; 16 | const App = () => ( 17 |
18 | 19 |
20 | ); 21 | 22 | export default App; 23 | -------------------------------------------------------------------------------- /.github/workflows/cd.yml: -------------------------------------------------------------------------------- 1 | name: CD 2 | 3 | on: 4 | push: 5 | tags: 6 | - v* 7 | 8 | jobs: 9 | publish: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v4 13 | - uses: pnpm/action-setup@v4 14 | - uses: actions/setup-node@v4 15 | with: 16 | node-version: 'lts/*' 17 | registry-url: 'https://registry.npmjs.org' 18 | cache: 'pnpm' 19 | - run: pnpm install 20 | - run: pnpm run compile 21 | - run: npm publish 22 | env: 23 | NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} 24 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | import { resolve } from 'node:path'; 4 | import { defineConfig } from 'vite'; 5 | import tsconfigPaths from 'vite-tsconfig-paths'; 6 | 7 | const { DIR, PORT = '8080' } = process.env; 8 | 9 | export default defineConfig(({ mode }) => { 10 | if (mode === 'test') { 11 | return { 12 | test: { 13 | environment: 'happy-dom', 14 | setupFiles: ['./tests/vitest-setup.ts'], 15 | }, 16 | plugins: [tsconfigPaths()], 17 | }; 18 | } 19 | if (!DIR) { 20 | throw new Error('DIR environment variable is required'); 21 | } 22 | return { 23 | root: resolve('examples', DIR), 24 | server: { port: Number(PORT) }, 25 | plugins: [tsconfigPaths({ root: resolve('.') })], 26 | }; 27 | }); 28 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import eslint from '@eslint/js'; 2 | import tseslint from 'typescript-eslint'; 3 | import importPlugin from 'eslint-plugin-import'; 4 | import jsxA11y from 'eslint-plugin-jsx-a11y'; 5 | import react from 'eslint-plugin-react'; 6 | import reactHooks from 'eslint-plugin-react-hooks'; 7 | 8 | export default tseslint.config( 9 | { ignores: ['dist/', 'website/'] }, 10 | eslint.configs.recommended, 11 | tseslint.configs.recommended, 12 | importPlugin.flatConfigs.recommended, 13 | jsxA11y.flatConfigs.recommended, 14 | react.configs.flat.recommended, 15 | react.configs.flat['jsx-runtime'], 16 | reactHooks.configs.recommended, 17 | { 18 | settings: { 19 | 'import/resolver': { typescript: true }, 20 | react: { version: 'detect' }, 21 | }, 22 | rules: { 23 | '@typescript-eslint/no-unused-vars': [ 24 | 'error', 25 | { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }, 26 | ], 27 | 'react-hooks/react-compiler': 'error', 28 | }, 29 | }, 30 | ); 31 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2023 Daishi Kato 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 13 | all 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 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | import { useEffect, useMemo, useReducer } from 'react'; 2 | import { subscribe, snapshot } from 'valtio/vanilla'; 3 | import type { Snapshot } from 'valtio/vanilla'; 4 | import { createProxy, isChanged } from 'proxy-compare'; 5 | 6 | const targetCache = new WeakMap(); 7 | 8 | export function useValtio(proxy: State): Snapshot { 9 | // per-proxy & per-hook affected, it's not ideal but memo compatible 10 | // eslint-disable-next-line react-hooks/react-compiler 11 | // eslint-disable-next-line react-hooks/exhaustive-deps 12 | const affected = useMemo(() => new WeakMap(), [proxy]); 13 | const [[snapshotFromReducer, proxyFromReducer], rerender] = useReducer< 14 | readonly [Snapshot, State], 15 | undefined, 16 | [] 17 | >( 18 | (prev) => { 19 | const nextSnapshot = snapshot(proxy); 20 | if ( 21 | prev[1] === proxy && 22 | !isChanged(prev[0], nextSnapshot, affected, new WeakMap()) 23 | ) { 24 | // not changed 25 | return prev; 26 | } 27 | return [nextSnapshot, proxy]; 28 | }, 29 | undefined, 30 | () => [snapshot(proxy), proxy], 31 | ); 32 | let snapshotToReturn = snapshotFromReducer; 33 | if (proxyFromReducer !== proxy) { 34 | rerender(); 35 | snapshotToReturn = snapshot(proxy); 36 | } 37 | useEffect(() => { 38 | const unsubscribe = subscribe(proxy, rerender, true); 39 | rerender(); 40 | return unsubscribe; 41 | }, [proxy]); 42 | const proxyCache = useMemo(() => new WeakMap(), []); // per-hook proxyCache 43 | return createProxy(snapshotToReturn, affected, proxyCache, targetCache); 44 | } 45 | -------------------------------------------------------------------------------- /examples/02_suspense/src/app.tsx: -------------------------------------------------------------------------------- 1 | /// 2 | 3 | import { Suspense, use, useTransition } from 'react'; 4 | 5 | import { proxy } from 'valtio/vanilla'; 6 | import { useValtio } from 'use-valtio'; 7 | 8 | const fetchPostData = async (id: number) => { 9 | const res = await fetch(`https://jsonplaceholder.typicode.com/posts/${id}`); 10 | const data = await res.json(); 11 | return data as { 12 | id: number; 13 | title: string; 14 | body: string; 15 | }; 16 | }; 17 | 18 | const postState = proxy({ 19 | post: fetchPostData(1), 20 | }); 21 | 22 | const Post = () => { 23 | const post = use(useValtio(postState).post); 24 | return ( 25 |
    26 |
  • ID: {post.id}
  • 27 |
  • Title: {post.title}
  • 28 |
  • Body: {post.body}
  • 29 |
30 | ); 31 | }; 32 | 33 | const App = () => { 34 | const [isPending, startTransition] = useTransition(); 35 | const fetchPost = (id: number) => { 36 | startTransition(() => { 37 | postState.post = fetchPostData(id); 38 | }); 39 | }; 40 | return ( 41 |
42 | 45 | 48 | 51 | 54 | {isPending &&
Pending...
} 55 |
56 | 57 | 58 | 59 |
60 | ); 61 | }; 62 | 63 | export default App; 64 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # use-valtio 2 | 3 | [![CI](https://img.shields.io/github/actions/workflow/status/dai-shi/use-valtio/ci.yml?branch=main)](https://github.com/dai-shi/use-valtio/actions?query=workflow%3ACI) 4 | [![npm](https://img.shields.io/npm/v/use-valtio)](https://www.npmjs.com/package/use-valtio) 5 | [![size](https://img.shields.io/bundlephobia/minzip/use-valtio)](https://bundlephobia.com/result?p=use-valtio) 6 | [![discord](https://img.shields.io/discord/627656437971288081)](https://discord.gg/MrQdmzd) 7 | 8 | Another custom hook to use [Valtio](https://github.com/pmndrs/valtio) proxy state 9 | 10 | ## Install 11 | 12 | ```bash 13 | npm install valtio use-valtio 14 | ``` 15 | 16 | ## Usage 17 | 18 | ```jsx 19 | import { proxy } from 'valtio/vanilla'; 20 | import { useValtio } from 'use-valtio'; 21 | 22 | const state = proxy({ count }); 23 | 24 | const Counter = () => { 25 | const { count } = useValtio(state); 26 | const inc = () => ++state.count; 27 | return ( 28 |
29 | {count} 30 |
31 | ); 32 | }; 33 | ``` 34 | 35 | ## But, why? 36 | 37 | Valtio has `useSnapshot` hook that can be used with proxy state, 38 | which is similar to `useValtio`. 39 | 40 | ```jsx 41 | import { useSnapshot } from 'valtio'; 42 | ``` 43 | 44 | `useSnapshot` is implemented with `useSyncExternalStore` which is 45 | a recommended way to use "external stores". It solves tearing issues. 46 | 47 | However, the "Sync" behavior doesn't work nicely with concurrent rendering. 48 | We can't use `startTransition` as expected. 49 | 50 | `useValtio` doesn't use `useSyncExternalStore`, 51 | but only `useReducer` and `useEffect`. 52 | It suffers from tearing, but works better with concurrent rendering. 53 | 54 | After all, it's a trade-off. 55 | 56 | There's one caveat in `useValtio`. 57 | To make it work with transitions, it forces "sync=true". 58 | By default, `useSnapshot` works with "sync=false". 59 | 60 | ```js 61 | const { count } = useValtio(state); 62 | // That 👆 is equivalent to this 👇. 63 | const { count } = useSnapshot(state, { sync: true }); 64 | ``` 65 | 66 | ## Examples 67 | 68 | The [examples](examples) folder contains working examples. 69 | You can run one of them with 70 | 71 | ```bash 72 | PORT=8080 pnpm run examples:01_counter 73 | ``` 74 | 75 | and open in your web browser. 76 | 77 | You can also try them directly: 78 | [01](https://stackblitz.com/github/valtiojs/use-valtio/tree/main/examples/01_counter) 79 | [02](https://stackblitz.com/github/valtiojs/use-valtio/tree/main/examples/02_suspense) 80 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "use-valtio", 3 | "description": "Another custom hook to use Valtio proxy state", 4 | "version": "0.2.0", 5 | "type": "module", 6 | "author": "Daishi Kato", 7 | "repository": { 8 | "type": "git", 9 | "url": "https://github.com/valtiojs/use-valtio.git" 10 | }, 11 | "source": "./src/index.ts", 12 | "main": "./dist/index.js", 13 | "types": "./dist/index.d.ts", 14 | "exports": { 15 | "./package.json": "./package.json", 16 | ".": { 17 | "require": { 18 | "types": "./dist/cjs/index.d.ts", 19 | "default": "./dist/cjs/index.js" 20 | }, 21 | "default": { 22 | "types": "./dist/index.d.ts", 23 | "default": "./dist/index.js" 24 | } 25 | } 26 | }, 27 | "sideEffects": false, 28 | "files": [ 29 | "src", 30 | "dist" 31 | ], 32 | "packageManager": "pnpm@9.4.0", 33 | "scripts": { 34 | "compile": "rm -rf dist && pnpm run '/^compile:.*/'", 35 | "compile:esm": "tsc -p tsconfig.esm.json", 36 | "compile:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json", 37 | "test": "pnpm run '/^test:.*/'", 38 | "test:format": "prettier -c .", 39 | "test:lint": "eslint .", 40 | "test:types": "tsc -p . --noEmit", 41 | "test:types:examples": "tsc -p examples --noEmit", 42 | "test:spec": "vitest run", 43 | "examples:01_counter": "DIR=01_counter vite", 44 | "examples:02_suspense": "DIR=02_suspense vite" 45 | }, 46 | "keywords": [ 47 | "react", 48 | "global state", 49 | "valtio", 50 | "suspense" 51 | ], 52 | "license": "MIT", 53 | "prettier": { 54 | "singleQuote": true 55 | }, 56 | "dependencies": { 57 | "proxy-compare": "^3.0.1" 58 | }, 59 | "devDependencies": { 60 | "@eslint/js": "^9.19.0", 61 | "@testing-library/jest-dom": "^6.6.3", 62 | "@testing-library/react": "^16.2.0", 63 | "@testing-library/user-event": "^14.6.1", 64 | "@types/node": "^22.10.10", 65 | "@types/react": "^19.0.8", 66 | "@types/react-dom": "^19.0.3", 67 | "eslint": "^9.19.0", 68 | "eslint-import-resolver-typescript": "^3.7.0", 69 | "eslint-plugin-import": "^2.31.0", 70 | "eslint-plugin-jsx-a11y": "^6.10.2", 71 | "eslint-plugin-react": "^7.37.4", 72 | "eslint-plugin-react-hooks": "6.0.0-rc.1", 73 | "happy-dom": "^16.7.2", 74 | "prettier": "^3.4.2", 75 | "react": "^19.0.0", 76 | "react-dom": "^19.0.0", 77 | "ts-expect": "^1.3.0", 78 | "typescript": "^5.7.3", 79 | "typescript-eslint": "^8.21.0", 80 | "use-valtio": "link:", 81 | "valtio": "^2.1.2", 82 | "vite": "^6.0.11", 83 | "vite-tsconfig-paths": "^5.1.4", 84 | "vitest": "^3.0.4" 85 | }, 86 | "peerDependencies": { 87 | "react": ">=18.0.0", 88 | "valtio": ">=2.0.0-rc.0" 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | proxy-compare: 12 | specifier: ^3.0.1 13 | version: 3.0.1 14 | devDependencies: 15 | '@eslint/js': 16 | specifier: ^9.19.0 17 | version: 9.19.0 18 | '@testing-library/jest-dom': 19 | specifier: ^6.6.3 20 | version: 6.6.3 21 | '@testing-library/react': 22 | specifier: ^16.2.0 23 | version: 16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 24 | '@testing-library/user-event': 25 | specifier: ^14.6.1 26 | version: 14.6.1(@testing-library/dom@10.4.0) 27 | '@types/node': 28 | specifier: ^22.10.10 29 | version: 22.10.10 30 | '@types/react': 31 | specifier: ^19.0.8 32 | version: 19.0.8 33 | '@types/react-dom': 34 | specifier: ^19.0.3 35 | version: 19.0.3(@types/react@19.0.8) 36 | eslint: 37 | specifier: ^9.19.0 38 | version: 9.19.0 39 | eslint-import-resolver-typescript: 40 | specifier: ^3.7.0 41 | version: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.19.0) 42 | eslint-plugin-import: 43 | specifier: ^2.31.0 44 | version: 2.31.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.19.0) 45 | eslint-plugin-jsx-a11y: 46 | specifier: ^6.10.2 47 | version: 6.10.2(eslint@9.19.0) 48 | eslint-plugin-react: 49 | specifier: ^7.37.4 50 | version: 7.37.4(eslint@9.19.0) 51 | eslint-plugin-react-hooks: 52 | specifier: 6.0.0-rc.1 53 | version: 6.0.0-rc.1(eslint@9.19.0) 54 | happy-dom: 55 | specifier: ^16.7.2 56 | version: 16.7.2 57 | prettier: 58 | specifier: ^3.4.2 59 | version: 3.4.2 60 | react: 61 | specifier: ^19.0.0 62 | version: 19.0.0 63 | react-dom: 64 | specifier: ^19.0.0 65 | version: 19.0.0(react@19.0.0) 66 | ts-expect: 67 | specifier: ^1.3.0 68 | version: 1.3.0 69 | typescript: 70 | specifier: ^5.7.3 71 | version: 5.7.3 72 | typescript-eslint: 73 | specifier: ^8.21.0 74 | version: 8.21.0(eslint@9.19.0)(typescript@5.7.3) 75 | use-valtio: 76 | specifier: 'link:' 77 | version: 'link:' 78 | valtio: 79 | specifier: ^2.1.2 80 | version: 2.1.2(@types/react@19.0.8)(react@19.0.0) 81 | vite: 82 | specifier: ^6.0.11 83 | version: 6.0.11(@types/node@22.10.10) 84 | vite-tsconfig-paths: 85 | specifier: ^5.1.4 86 | version: 5.1.4(typescript@5.7.3)(vite@6.0.11(@types/node@22.10.10)) 87 | vitest: 88 | specifier: ^3.0.4 89 | version: 3.0.4(@types/node@22.10.10)(happy-dom@16.7.2) 90 | 91 | packages: 92 | 93 | '@adobe/css-tools@4.4.1': 94 | resolution: {integrity: sha512-12WGKBQzjUAI4ayyF4IAtfw2QR/IDoqk6jTddXDhtYTJF9ASmoE1zst7cVtP0aL/F1jUJL5r+JxKXKEgHNbEUQ==} 95 | 96 | '@ampproject/remapping@2.3.0': 97 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 98 | engines: {node: '>=6.0.0'} 99 | 100 | '@babel/code-frame@7.26.2': 101 | resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} 102 | engines: {node: '>=6.9.0'} 103 | 104 | '@babel/code-frame@7.27.1': 105 | resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} 106 | engines: {node: '>=6.9.0'} 107 | 108 | '@babel/compat-data@7.27.2': 109 | resolution: {integrity: sha512-TUtMJYRPyUb/9aU8f3K0mjmjf6M9N5Woshn2CS6nqJSeJtTtQcpLUXjGt9vbF8ZGff0El99sWkLgzwW3VXnxZQ==} 110 | engines: {node: '>=6.9.0'} 111 | 112 | '@babel/core@7.27.1': 113 | resolution: {integrity: sha512-IaaGWsQqfsQWVLqMn9OB92MNN7zukfVA4s7KKAI0KfrrDsZ0yhi5uV4baBuLuN7n3vsZpwP8asPPcVwApxvjBQ==} 114 | engines: {node: '>=6.9.0'} 115 | 116 | '@babel/generator@7.27.1': 117 | resolution: {integrity: sha512-UnJfnIpc/+JO0/+KRVQNGU+y5taA5vCbwN8+azkX6beii/ZF+enZJSOKo11ZSzGJjlNfJHfQtmQT8H+9TXPG2w==} 118 | engines: {node: '>=6.9.0'} 119 | 120 | '@babel/helper-annotate-as-pure@7.27.1': 121 | resolution: {integrity: sha512-WnuuDILl9oOBbKnb4L+DyODx7iC47XfzmNCpTttFsSp6hTG7XZxu60+4IO+2/hPfcGOoKbFiwoI/+zwARbNQow==} 122 | engines: {node: '>=6.9.0'} 123 | 124 | '@babel/helper-compilation-targets@7.27.2': 125 | resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} 126 | engines: {node: '>=6.9.0'} 127 | 128 | '@babel/helper-create-class-features-plugin@7.27.1': 129 | resolution: {integrity: sha512-QwGAmuvM17btKU5VqXfb+Giw4JcN0hjuufz3DYnpeVDvZLAObloM77bhMXiqry3Iio+Ai4phVRDwl6WU10+r5A==} 130 | engines: {node: '>=6.9.0'} 131 | peerDependencies: 132 | '@babel/core': ^7.0.0 133 | 134 | '@babel/helper-member-expression-to-functions@7.27.1': 135 | resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==} 136 | engines: {node: '>=6.9.0'} 137 | 138 | '@babel/helper-module-imports@7.27.1': 139 | resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} 140 | engines: {node: '>=6.9.0'} 141 | 142 | '@babel/helper-module-transforms@7.27.1': 143 | resolution: {integrity: sha512-9yHn519/8KvTU5BjTVEEeIM3w9/2yXNKoD82JifINImhpKkARMJKPP59kLo+BafpdN5zgNeIcS4jsGDmd3l58g==} 144 | engines: {node: '>=6.9.0'} 145 | peerDependencies: 146 | '@babel/core': ^7.0.0 147 | 148 | '@babel/helper-optimise-call-expression@7.27.1': 149 | resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} 150 | engines: {node: '>=6.9.0'} 151 | 152 | '@babel/helper-plugin-utils@7.27.1': 153 | resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} 154 | engines: {node: '>=6.9.0'} 155 | 156 | '@babel/helper-replace-supers@7.27.1': 157 | resolution: {integrity: sha512-7EHz6qDZc8RYS5ElPoShMheWvEgERonFCs7IAonWLLUTXW59DP14bCZt89/GKyreYn8g3S83m21FelHKbeDCKA==} 158 | engines: {node: '>=6.9.0'} 159 | peerDependencies: 160 | '@babel/core': ^7.0.0 161 | 162 | '@babel/helper-skip-transparent-expression-wrappers@7.27.1': 163 | resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==} 164 | engines: {node: '>=6.9.0'} 165 | 166 | '@babel/helper-string-parser@7.27.1': 167 | resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 168 | engines: {node: '>=6.9.0'} 169 | 170 | '@babel/helper-validator-identifier@7.25.9': 171 | resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 172 | engines: {node: '>=6.9.0'} 173 | 174 | '@babel/helper-validator-identifier@7.27.1': 175 | resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 176 | engines: {node: '>=6.9.0'} 177 | 178 | '@babel/helper-validator-option@7.27.1': 179 | resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} 180 | engines: {node: '>=6.9.0'} 181 | 182 | '@babel/helpers@7.27.1': 183 | resolution: {integrity: sha512-FCvFTm0sWV8Fxhpp2McP5/W53GPllQ9QeQ7SiqGWjMf/LVG07lFa5+pgK05IRhVwtvafT22KF+ZSnM9I545CvQ==} 184 | engines: {node: '>=6.9.0'} 185 | 186 | '@babel/parser@7.27.2': 187 | resolution: {integrity: sha512-QYLs8299NA7WM/bZAdp+CviYYkVoYXlDW2rzliy3chxd1PQjej7JORuMJDJXJUb9g0TT+B99EwaVLKmX+sPXWw==} 188 | engines: {node: '>=6.0.0'} 189 | hasBin: true 190 | 191 | '@babel/plugin-transform-private-methods@7.27.1': 192 | resolution: {integrity: sha512-10FVt+X55AjRAYI9BrdISN9/AQWHqldOeZDUoLyif1Kn05a56xVBXb8ZouL8pZ9jem8QpXaOt8TS7RHUIS+GPA==} 193 | engines: {node: '>=6.9.0'} 194 | peerDependencies: 195 | '@babel/core': ^7.0.0-0 196 | 197 | '@babel/runtime@7.26.7': 198 | resolution: {integrity: sha512-AOPI3D+a8dXnja+iwsUqGRjr1BbZIe771sXdapOtYI531gSqpi92vXivKcq2asu/DFpdl1ceFAKZyRzK2PCVcQ==} 199 | engines: {node: '>=6.9.0'} 200 | 201 | '@babel/template@7.27.2': 202 | resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} 203 | engines: {node: '>=6.9.0'} 204 | 205 | '@babel/traverse@7.27.1': 206 | resolution: {integrity: sha512-ZCYtZciz1IWJB4U61UPu4KEaqyfj+r5T1Q5mqPo+IBpcG9kHv30Z0aD8LXPgC1trYa6rK0orRyAhqUgk4MjmEg==} 207 | engines: {node: '>=6.9.0'} 208 | 209 | '@babel/types@7.27.1': 210 | resolution: {integrity: sha512-+EzkxvLNfiUeKMgy/3luqfsCWFRXLb7U6wNQTk60tovuckwB15B191tJWvpp4HjiQWdJkCxO3Wbvc6jlk3Xb2Q==} 211 | engines: {node: '>=6.9.0'} 212 | 213 | '@esbuild/aix-ppc64@0.24.2': 214 | resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==} 215 | engines: {node: '>=18'} 216 | cpu: [ppc64] 217 | os: [aix] 218 | 219 | '@esbuild/android-arm64@0.24.2': 220 | resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==} 221 | engines: {node: '>=18'} 222 | cpu: [arm64] 223 | os: [android] 224 | 225 | '@esbuild/android-arm@0.24.2': 226 | resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==} 227 | engines: {node: '>=18'} 228 | cpu: [arm] 229 | os: [android] 230 | 231 | '@esbuild/android-x64@0.24.2': 232 | resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==} 233 | engines: {node: '>=18'} 234 | cpu: [x64] 235 | os: [android] 236 | 237 | '@esbuild/darwin-arm64@0.24.2': 238 | resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==} 239 | engines: {node: '>=18'} 240 | cpu: [arm64] 241 | os: [darwin] 242 | 243 | '@esbuild/darwin-x64@0.24.2': 244 | resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==} 245 | engines: {node: '>=18'} 246 | cpu: [x64] 247 | os: [darwin] 248 | 249 | '@esbuild/freebsd-arm64@0.24.2': 250 | resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==} 251 | engines: {node: '>=18'} 252 | cpu: [arm64] 253 | os: [freebsd] 254 | 255 | '@esbuild/freebsd-x64@0.24.2': 256 | resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==} 257 | engines: {node: '>=18'} 258 | cpu: [x64] 259 | os: [freebsd] 260 | 261 | '@esbuild/linux-arm64@0.24.2': 262 | resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==} 263 | engines: {node: '>=18'} 264 | cpu: [arm64] 265 | os: [linux] 266 | 267 | '@esbuild/linux-arm@0.24.2': 268 | resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==} 269 | engines: {node: '>=18'} 270 | cpu: [arm] 271 | os: [linux] 272 | 273 | '@esbuild/linux-ia32@0.24.2': 274 | resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==} 275 | engines: {node: '>=18'} 276 | cpu: [ia32] 277 | os: [linux] 278 | 279 | '@esbuild/linux-loong64@0.24.2': 280 | resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==} 281 | engines: {node: '>=18'} 282 | cpu: [loong64] 283 | os: [linux] 284 | 285 | '@esbuild/linux-mips64el@0.24.2': 286 | resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==} 287 | engines: {node: '>=18'} 288 | cpu: [mips64el] 289 | os: [linux] 290 | 291 | '@esbuild/linux-ppc64@0.24.2': 292 | resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==} 293 | engines: {node: '>=18'} 294 | cpu: [ppc64] 295 | os: [linux] 296 | 297 | '@esbuild/linux-riscv64@0.24.2': 298 | resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==} 299 | engines: {node: '>=18'} 300 | cpu: [riscv64] 301 | os: [linux] 302 | 303 | '@esbuild/linux-s390x@0.24.2': 304 | resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==} 305 | engines: {node: '>=18'} 306 | cpu: [s390x] 307 | os: [linux] 308 | 309 | '@esbuild/linux-x64@0.24.2': 310 | resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==} 311 | engines: {node: '>=18'} 312 | cpu: [x64] 313 | os: [linux] 314 | 315 | '@esbuild/netbsd-arm64@0.24.2': 316 | resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==} 317 | engines: {node: '>=18'} 318 | cpu: [arm64] 319 | os: [netbsd] 320 | 321 | '@esbuild/netbsd-x64@0.24.2': 322 | resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==} 323 | engines: {node: '>=18'} 324 | cpu: [x64] 325 | os: [netbsd] 326 | 327 | '@esbuild/openbsd-arm64@0.24.2': 328 | resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==} 329 | engines: {node: '>=18'} 330 | cpu: [arm64] 331 | os: [openbsd] 332 | 333 | '@esbuild/openbsd-x64@0.24.2': 334 | resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==} 335 | engines: {node: '>=18'} 336 | cpu: [x64] 337 | os: [openbsd] 338 | 339 | '@esbuild/sunos-x64@0.24.2': 340 | resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==} 341 | engines: {node: '>=18'} 342 | cpu: [x64] 343 | os: [sunos] 344 | 345 | '@esbuild/win32-arm64@0.24.2': 346 | resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==} 347 | engines: {node: '>=18'} 348 | cpu: [arm64] 349 | os: [win32] 350 | 351 | '@esbuild/win32-ia32@0.24.2': 352 | resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==} 353 | engines: {node: '>=18'} 354 | cpu: [ia32] 355 | os: [win32] 356 | 357 | '@esbuild/win32-x64@0.24.2': 358 | resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==} 359 | engines: {node: '>=18'} 360 | cpu: [x64] 361 | os: [win32] 362 | 363 | '@eslint-community/eslint-utils@4.4.1': 364 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} 365 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 366 | peerDependencies: 367 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 368 | 369 | '@eslint-community/regexpp@4.12.1': 370 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 371 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 372 | 373 | '@eslint/config-array@0.19.1': 374 | resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} 375 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 376 | 377 | '@eslint/core@0.10.0': 378 | resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==} 379 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 380 | 381 | '@eslint/eslintrc@3.2.0': 382 | resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} 383 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 384 | 385 | '@eslint/js@9.19.0': 386 | resolution: {integrity: sha512-rbq9/g38qjfqFLOVPvwjIvFFdNziEC5S65jmjPw5r6A//QH+W91akh9irMwjDN8zKUTak6W9EsAv4m/7Wnw0UQ==} 387 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 388 | 389 | '@eslint/object-schema@2.1.5': 390 | resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} 391 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 392 | 393 | '@eslint/plugin-kit@0.2.5': 394 | resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==} 395 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 396 | 397 | '@humanfs/core@0.19.1': 398 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 399 | engines: {node: '>=18.18.0'} 400 | 401 | '@humanfs/node@0.16.6': 402 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} 403 | engines: {node: '>=18.18.0'} 404 | 405 | '@humanwhocodes/module-importer@1.0.1': 406 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 407 | engines: {node: '>=12.22'} 408 | 409 | '@humanwhocodes/retry@0.3.1': 410 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} 411 | engines: {node: '>=18.18'} 412 | 413 | '@humanwhocodes/retry@0.4.1': 414 | resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} 415 | engines: {node: '>=18.18'} 416 | 417 | '@jridgewell/gen-mapping@0.3.8': 418 | resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 419 | engines: {node: '>=6.0.0'} 420 | 421 | '@jridgewell/resolve-uri@3.1.2': 422 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 423 | engines: {node: '>=6.0.0'} 424 | 425 | '@jridgewell/set-array@1.2.1': 426 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 427 | engines: {node: '>=6.0.0'} 428 | 429 | '@jridgewell/sourcemap-codec@1.5.0': 430 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 431 | 432 | '@jridgewell/trace-mapping@0.3.25': 433 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 434 | 435 | '@nodelib/fs.scandir@2.1.5': 436 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 437 | engines: {node: '>= 8'} 438 | 439 | '@nodelib/fs.stat@2.0.5': 440 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 441 | engines: {node: '>= 8'} 442 | 443 | '@nodelib/fs.walk@1.2.8': 444 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 445 | engines: {node: '>= 8'} 446 | 447 | '@nolyfill/is-core-module@1.0.39': 448 | resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} 449 | engines: {node: '>=12.4.0'} 450 | 451 | '@rollup/rollup-android-arm-eabi@4.32.0': 452 | resolution: {integrity: sha512-G2fUQQANtBPsNwiVFg4zKiPQyjVKZCUdQUol53R8E71J7AsheRMV/Yv/nB8giOcOVqP7//eB5xPqieBYZe9bGg==} 453 | cpu: [arm] 454 | os: [android] 455 | 456 | '@rollup/rollup-android-arm64@4.32.0': 457 | resolution: {integrity: sha512-qhFwQ+ljoymC+j5lXRv8DlaJYY/+8vyvYmVx074zrLsu5ZGWYsJNLjPPVJJjhZQpyAKUGPydOq9hRLLNvh1s3A==} 458 | cpu: [arm64] 459 | os: [android] 460 | 461 | '@rollup/rollup-darwin-arm64@4.32.0': 462 | resolution: {integrity: sha512-44n/X3lAlWsEY6vF8CzgCx+LQaoqWGN7TzUfbJDiTIOjJm4+L2Yq+r5a8ytQRGyPqgJDs3Rgyo8eVL7n9iW6AQ==} 463 | cpu: [arm64] 464 | os: [darwin] 465 | 466 | '@rollup/rollup-darwin-x64@4.32.0': 467 | resolution: {integrity: sha512-F9ct0+ZX5Np6+ZDztxiGCIvlCaW87HBdHcozUfsHnj1WCUTBUubAoanhHUfnUHZABlElyRikI0mgcw/qdEm2VQ==} 468 | cpu: [x64] 469 | os: [darwin] 470 | 471 | '@rollup/rollup-freebsd-arm64@4.32.0': 472 | resolution: {integrity: sha512-JpsGxLBB2EFXBsTLHfkZDsXSpSmKD3VxXCgBQtlPcuAqB8TlqtLcbeMhxXQkCDv1avgwNjF8uEIbq5p+Cee0PA==} 473 | cpu: [arm64] 474 | os: [freebsd] 475 | 476 | '@rollup/rollup-freebsd-x64@4.32.0': 477 | resolution: {integrity: sha512-wegiyBT6rawdpvnD9lmbOpx5Sph+yVZKHbhnSP9MqUEDX08G4UzMU+D87jrazGE7lRSyTRs6NEYHtzfkJ3FjjQ==} 478 | cpu: [x64] 479 | os: [freebsd] 480 | 481 | '@rollup/rollup-linux-arm-gnueabihf@4.32.0': 482 | resolution: {integrity: sha512-3pA7xecItbgOs1A5H58dDvOUEboG5UfpTq3WzAdF54acBbUM+olDJAPkgj1GRJ4ZqE12DZ9/hNS2QZk166v92A==} 483 | cpu: [arm] 484 | os: [linux] 485 | 486 | '@rollup/rollup-linux-arm-musleabihf@4.32.0': 487 | resolution: {integrity: sha512-Y7XUZEVISGyge51QbYyYAEHwpGgmRrAxQXO3siyYo2kmaj72USSG8LtlQQgAtlGfxYiOwu+2BdbPjzEpcOpRmQ==} 488 | cpu: [arm] 489 | os: [linux] 490 | 491 | '@rollup/rollup-linux-arm64-gnu@4.32.0': 492 | resolution: {integrity: sha512-r7/OTF5MqeBrZo5omPXcTnjvv1GsrdH8a8RerARvDFiDwFpDVDnJyByYM/nX+mvks8XXsgPUxkwe/ltaX2VH7w==} 493 | cpu: [arm64] 494 | os: [linux] 495 | 496 | '@rollup/rollup-linux-arm64-musl@4.32.0': 497 | resolution: {integrity: sha512-HJbifC9vex9NqnlodV2BHVFNuzKL5OnsV2dvTw6e1dpZKkNjPG6WUq+nhEYV6Hv2Bv++BXkwcyoGlXnPrjAKXw==} 498 | cpu: [arm64] 499 | os: [linux] 500 | 501 | '@rollup/rollup-linux-loongarch64-gnu@4.32.0': 502 | resolution: {integrity: sha512-VAEzZTD63YglFlWwRj3taofmkV1V3xhebDXffon7msNz4b14xKsz7utO6F8F4cqt8K/ktTl9rm88yryvDpsfOw==} 503 | cpu: [loong64] 504 | os: [linux] 505 | 506 | '@rollup/rollup-linux-powerpc64le-gnu@4.32.0': 507 | resolution: {integrity: sha512-Sts5DST1jXAc9YH/iik1C9QRsLcCoOScf3dfbY5i4kH9RJpKxiTBXqm7qU5O6zTXBTEZry69bGszr3SMgYmMcQ==} 508 | cpu: [ppc64] 509 | os: [linux] 510 | 511 | '@rollup/rollup-linux-riscv64-gnu@4.32.0': 512 | resolution: {integrity: sha512-qhlXeV9AqxIyY9/R1h1hBD6eMvQCO34ZmdYvry/K+/MBs6d1nRFLm6BOiITLVI+nFAAB9kUB6sdJRKyVHXnqZw==} 513 | cpu: [riscv64] 514 | os: [linux] 515 | 516 | '@rollup/rollup-linux-s390x-gnu@4.32.0': 517 | resolution: {integrity: sha512-8ZGN7ExnV0qjXa155Rsfi6H8M4iBBwNLBM9lcVS+4NcSzOFaNqmt7djlox8pN1lWrRPMRRQ8NeDlozIGx3Omsw==} 518 | cpu: [s390x] 519 | os: [linux] 520 | 521 | '@rollup/rollup-linux-x64-gnu@4.32.0': 522 | resolution: {integrity: sha512-VDzNHtLLI5s7xd/VubyS10mq6TxvZBp+4NRWoW+Hi3tgV05RtVm4qK99+dClwTN1McA6PHwob6DEJ6PlXbY83A==} 523 | cpu: [x64] 524 | os: [linux] 525 | 526 | '@rollup/rollup-linux-x64-musl@4.32.0': 527 | resolution: {integrity: sha512-qcb9qYDlkxz9DxJo7SDhWxTWV1gFuwznjbTiov289pASxlfGbaOD54mgbs9+z94VwrXtKTu+2RqwlSTbiOqxGg==} 528 | cpu: [x64] 529 | os: [linux] 530 | 531 | '@rollup/rollup-win32-arm64-msvc@4.32.0': 532 | resolution: {integrity: sha512-pFDdotFDMXW2AXVbfdUEfidPAk/OtwE/Hd4eYMTNVVaCQ6Yl8et0meDaKNL63L44Haxv4UExpv9ydSf3aSayDg==} 533 | cpu: [arm64] 534 | os: [win32] 535 | 536 | '@rollup/rollup-win32-ia32-msvc@4.32.0': 537 | resolution: {integrity: sha512-/TG7WfrCAjeRNDvI4+0AAMoHxea/USWhAzf9PVDFHbcqrQ7hMMKp4jZIy4VEjk72AAfN5k4TiSMRXRKf/0akSw==} 538 | cpu: [ia32] 539 | os: [win32] 540 | 541 | '@rollup/rollup-win32-x64-msvc@4.32.0': 542 | resolution: {integrity: sha512-5hqO5S3PTEO2E5VjCePxv40gIgyS2KvO7E7/vvC/NbIW4SIRamkMr1hqj+5Y67fbBWv/bQLB6KelBQmXlyCjWA==} 543 | cpu: [x64] 544 | os: [win32] 545 | 546 | '@rtsao/scc@1.1.0': 547 | resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} 548 | 549 | '@testing-library/dom@10.4.0': 550 | resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==} 551 | engines: {node: '>=18'} 552 | 553 | '@testing-library/jest-dom@6.6.3': 554 | resolution: {integrity: sha512-IteBhl4XqYNkM54f4ejhLRJiZNqcSCoXUOG2CPK7qbD322KjQozM4kHQOfkG2oln9b9HTYqs+Sae8vBATubxxA==} 555 | engines: {node: '>=14', npm: '>=6', yarn: '>=1'} 556 | 557 | '@testing-library/react@16.2.0': 558 | resolution: {integrity: sha512-2cSskAvA1QNtKc8Y9VJQRv0tm3hLVgxRGDB+KYhIaPQJ1I+RHbhIXcM+zClKXzMes/wshsMVzf4B9vS4IZpqDQ==} 559 | engines: {node: '>=18'} 560 | peerDependencies: 561 | '@testing-library/dom': ^10.0.0 562 | '@types/react': ^18.0.0 || ^19.0.0 563 | '@types/react-dom': ^18.0.0 || ^19.0.0 564 | react: ^18.0.0 || ^19.0.0 565 | react-dom: ^18.0.0 || ^19.0.0 566 | peerDependenciesMeta: 567 | '@types/react': 568 | optional: true 569 | '@types/react-dom': 570 | optional: true 571 | 572 | '@testing-library/user-event@14.6.1': 573 | resolution: {integrity: sha512-vq7fv0rnt+QTXgPxr5Hjc210p6YKq2kmdziLgnsZGgLJ9e6VAShx1pACLuRjd/AS/sr7phAR58OIIpf0LlmQNw==} 574 | engines: {node: '>=12', npm: '>=6'} 575 | peerDependencies: 576 | '@testing-library/dom': '>=7.21.4' 577 | 578 | '@types/aria-query@5.0.4': 579 | resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} 580 | 581 | '@types/estree@1.0.6': 582 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} 583 | 584 | '@types/json-schema@7.0.15': 585 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 586 | 587 | '@types/json5@0.0.29': 588 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 589 | 590 | '@types/node@22.10.10': 591 | resolution: {integrity: sha512-X47y/mPNzxviAGY5TcYPtYL8JsY3kAq2n8fMmKoRCxq/c4v4pyGNCzM2R6+M5/umG4ZfHuT+sgqDYqWc9rJ6ww==} 592 | 593 | '@types/react-dom@19.0.3': 594 | resolution: {integrity: sha512-0Knk+HJiMP/qOZgMyNFamlIjw9OFCsyC2ZbigmEEyXXixgre6IQpm/4V+r3qH4GC1JPvRJKInw+on2rV6YZLeA==} 595 | peerDependencies: 596 | '@types/react': ^19.0.0 597 | 598 | '@types/react@19.0.8': 599 | resolution: {integrity: sha512-9P/o1IGdfmQxrujGbIMDyYaaCykhLKc0NGCtYcECNUr9UAaDe4gwvV9bR6tvd5Br1SG0j+PBpbKr2UYY8CwqSw==} 600 | 601 | '@typescript-eslint/eslint-plugin@8.21.0': 602 | resolution: {integrity: sha512-eTH+UOR4I7WbdQnG4Z48ebIA6Bgi7WO8HvFEneeYBxG8qCOYgTOFPSg6ek9ITIDvGjDQzWHcoWHCDO2biByNzA==} 603 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 604 | peerDependencies: 605 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 606 | eslint: ^8.57.0 || ^9.0.0 607 | typescript: '>=4.8.4 <5.8.0' 608 | 609 | '@typescript-eslint/parser@8.21.0': 610 | resolution: {integrity: sha512-Wy+/sdEH9kI3w9civgACwabHbKl+qIOu0uFZ9IMKzX3Jpv9og0ZBJrZExGrPpFAY7rWsXuxs5e7CPPP17A4eYA==} 611 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 612 | peerDependencies: 613 | eslint: ^8.57.0 || ^9.0.0 614 | typescript: '>=4.8.4 <5.8.0' 615 | 616 | '@typescript-eslint/scope-manager@8.21.0': 617 | resolution: {integrity: sha512-G3IBKz0/0IPfdeGRMbp+4rbjfSSdnGkXsM/pFZA8zM9t9klXDnB/YnKOBQ0GoPmoROa4bCq2NeHgJa5ydsQ4mA==} 618 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 619 | 620 | '@typescript-eslint/type-utils@8.21.0': 621 | resolution: {integrity: sha512-95OsL6J2BtzoBxHicoXHxgk3z+9P3BEcQTpBKriqiYzLKnM2DeSqs+sndMKdamU8FosiadQFT3D+BSL9EKnAJQ==} 622 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 623 | peerDependencies: 624 | eslint: ^8.57.0 || ^9.0.0 625 | typescript: '>=4.8.4 <5.8.0' 626 | 627 | '@typescript-eslint/types@8.21.0': 628 | resolution: {integrity: sha512-PAL6LUuQwotLW2a8VsySDBwYMm129vFm4tMVlylzdoTybTHaAi0oBp7Ac6LhSrHHOdLM3efH+nAR6hAWoMF89A==} 629 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 630 | 631 | '@typescript-eslint/typescript-estree@8.21.0': 632 | resolution: {integrity: sha512-x+aeKh/AjAArSauz0GiQZsjT8ciadNMHdkUSwBB9Z6PrKc/4knM4g3UfHml6oDJmKC88a6//cdxnO/+P2LkMcg==} 633 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 634 | peerDependencies: 635 | typescript: '>=4.8.4 <5.8.0' 636 | 637 | '@typescript-eslint/utils@8.21.0': 638 | resolution: {integrity: sha512-xcXBfcq0Kaxgj7dwejMbFyq7IOHgpNMtVuDveK7w3ZGwG9owKzhALVwKpTF2yrZmEwl9SWdetf3fxNzJQaVuxw==} 639 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 640 | peerDependencies: 641 | eslint: ^8.57.0 || ^9.0.0 642 | typescript: '>=4.8.4 <5.8.0' 643 | 644 | '@typescript-eslint/visitor-keys@8.21.0': 645 | resolution: {integrity: sha512-BkLMNpdV6prozk8LlyK/SOoWLmUFi+ZD+pcqti9ILCbVvHGk1ui1g4jJOc2WDLaeExz2qWwojxlPce5PljcT3w==} 646 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 647 | 648 | '@vitest/expect@3.0.4': 649 | resolution: {integrity: sha512-Nm5kJmYw6P2BxhJPkO3eKKhGYKRsnqJqf+r0yOGRKpEP+bSCBDsjXgiu1/5QFrnPMEgzfC38ZEjvCFgaNBC0Eg==} 650 | 651 | '@vitest/mocker@3.0.4': 652 | resolution: {integrity: sha512-gEef35vKafJlfQbnyOXZ0Gcr9IBUsMTyTLXsEQwuyYAerpHqvXhzdBnDFuHLpFqth3F7b6BaFr4qV/Cs1ULx5A==} 653 | peerDependencies: 654 | msw: ^2.4.9 655 | vite: ^5.0.0 || ^6.0.0 656 | peerDependenciesMeta: 657 | msw: 658 | optional: true 659 | vite: 660 | optional: true 661 | 662 | '@vitest/pretty-format@3.0.4': 663 | resolution: {integrity: sha512-ts0fba+dEhK2aC9PFuZ9LTpULHpY/nd6jhAQ5IMU7Gaj7crPCTdCFfgvXxruRBLFS+MLraicCuFXxISEq8C93g==} 664 | 665 | '@vitest/runner@3.0.4': 666 | resolution: {integrity: sha512-dKHzTQ7n9sExAcWH/0sh1elVgwc7OJ2lMOBrAm73J7AH6Pf9T12Zh3lNE1TETZaqrWFXtLlx3NVrLRb5hCK+iw==} 667 | 668 | '@vitest/snapshot@3.0.4': 669 | resolution: {integrity: sha512-+p5knMLwIk7lTQkM3NonZ9zBewzVp9EVkVpvNta0/PlFWpiqLaRcF4+33L1it3uRUCh0BGLOaXPPGEjNKfWb4w==} 670 | 671 | '@vitest/spy@3.0.4': 672 | resolution: {integrity: sha512-sXIMF0oauYyUy2hN49VFTYodzEAu744MmGcPR3ZBsPM20G+1/cSW/n1U+3Yu/zHxX2bIDe1oJASOkml+osTU6Q==} 673 | 674 | '@vitest/utils@3.0.4': 675 | resolution: {integrity: sha512-8BqC1ksYsHtbWH+DfpOAKrFw3jl3Uf9J7yeFh85Pz52IWuh1hBBtyfEbRNNZNjl8H8A5yMLH9/t+k7HIKzQcZQ==} 676 | 677 | acorn-jsx@5.3.2: 678 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 679 | peerDependencies: 680 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 681 | 682 | acorn@8.14.0: 683 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} 684 | engines: {node: '>=0.4.0'} 685 | hasBin: true 686 | 687 | ajv@6.12.6: 688 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 689 | 690 | ansi-regex@5.0.1: 691 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 692 | engines: {node: '>=8'} 693 | 694 | ansi-styles@4.3.0: 695 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 696 | engines: {node: '>=8'} 697 | 698 | ansi-styles@5.2.0: 699 | resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 700 | engines: {node: '>=10'} 701 | 702 | argparse@2.0.1: 703 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 704 | 705 | aria-query@5.3.0: 706 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 707 | 708 | aria-query@5.3.2: 709 | resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 710 | engines: {node: '>= 0.4'} 711 | 712 | array-buffer-byte-length@1.0.2: 713 | resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} 714 | engines: {node: '>= 0.4'} 715 | 716 | array-includes@3.1.8: 717 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 718 | engines: {node: '>= 0.4'} 719 | 720 | array.prototype.findlast@1.2.5: 721 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 722 | engines: {node: '>= 0.4'} 723 | 724 | array.prototype.findlastindex@1.2.5: 725 | resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} 726 | engines: {node: '>= 0.4'} 727 | 728 | array.prototype.flat@1.3.3: 729 | resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} 730 | engines: {node: '>= 0.4'} 731 | 732 | array.prototype.flatmap@1.3.3: 733 | resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} 734 | engines: {node: '>= 0.4'} 735 | 736 | array.prototype.tosorted@1.1.4: 737 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} 738 | engines: {node: '>= 0.4'} 739 | 740 | arraybuffer.prototype.slice@1.0.4: 741 | resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} 742 | engines: {node: '>= 0.4'} 743 | 744 | assertion-error@2.0.1: 745 | resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 746 | engines: {node: '>=12'} 747 | 748 | ast-types-flow@0.0.8: 749 | resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} 750 | 751 | async-function@1.0.0: 752 | resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==} 753 | engines: {node: '>= 0.4'} 754 | 755 | available-typed-arrays@1.0.7: 756 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 757 | engines: {node: '>= 0.4'} 758 | 759 | axe-core@4.10.2: 760 | resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==} 761 | engines: {node: '>=4'} 762 | 763 | axobject-query@4.1.0: 764 | resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 765 | engines: {node: '>= 0.4'} 766 | 767 | balanced-match@1.0.2: 768 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 769 | 770 | brace-expansion@1.1.11: 771 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 772 | 773 | brace-expansion@2.0.1: 774 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 775 | 776 | braces@3.0.3: 777 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 778 | engines: {node: '>=8'} 779 | 780 | browserslist@4.24.5: 781 | resolution: {integrity: sha512-FDToo4Wo82hIdgc1CQ+NQD0hEhmpPjrZ3hiUgwgOG6IuTdlpr8jdjyG24P6cNP1yJpTLzS5OcGgSw0xmDU1/Tw==} 782 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 783 | hasBin: true 784 | 785 | cac@6.7.14: 786 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 787 | engines: {node: '>=8'} 788 | 789 | call-bind-apply-helpers@1.0.1: 790 | resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} 791 | engines: {node: '>= 0.4'} 792 | 793 | call-bind@1.0.8: 794 | resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} 795 | engines: {node: '>= 0.4'} 796 | 797 | call-bound@1.0.3: 798 | resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} 799 | engines: {node: '>= 0.4'} 800 | 801 | callsites@3.1.0: 802 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 803 | engines: {node: '>=6'} 804 | 805 | caniuse-lite@1.0.30001718: 806 | resolution: {integrity: sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==} 807 | 808 | chai@5.1.2: 809 | resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} 810 | engines: {node: '>=12'} 811 | 812 | chalk@3.0.0: 813 | resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} 814 | engines: {node: '>=8'} 815 | 816 | chalk@4.1.2: 817 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 818 | engines: {node: '>=10'} 819 | 820 | check-error@2.1.1: 821 | resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} 822 | engines: {node: '>= 16'} 823 | 824 | color-convert@2.0.1: 825 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 826 | engines: {node: '>=7.0.0'} 827 | 828 | color-name@1.1.4: 829 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 830 | 831 | concat-map@0.0.1: 832 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 833 | 834 | convert-source-map@2.0.0: 835 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 836 | 837 | cross-spawn@7.0.6: 838 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 839 | engines: {node: '>= 8'} 840 | 841 | css.escape@1.5.1: 842 | resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} 843 | 844 | csstype@3.1.3: 845 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 846 | 847 | damerau-levenshtein@1.0.8: 848 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 849 | 850 | data-view-buffer@1.0.2: 851 | resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} 852 | engines: {node: '>= 0.4'} 853 | 854 | data-view-byte-length@1.0.2: 855 | resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} 856 | engines: {node: '>= 0.4'} 857 | 858 | data-view-byte-offset@1.0.1: 859 | resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} 860 | engines: {node: '>= 0.4'} 861 | 862 | debug@3.2.7: 863 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 864 | peerDependencies: 865 | supports-color: '*' 866 | peerDependenciesMeta: 867 | supports-color: 868 | optional: true 869 | 870 | debug@4.4.0: 871 | resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} 872 | engines: {node: '>=6.0'} 873 | peerDependencies: 874 | supports-color: '*' 875 | peerDependenciesMeta: 876 | supports-color: 877 | optional: true 878 | 879 | deep-eql@5.0.2: 880 | resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} 881 | engines: {node: '>=6'} 882 | 883 | deep-is@0.1.4: 884 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 885 | 886 | define-data-property@1.1.4: 887 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 888 | engines: {node: '>= 0.4'} 889 | 890 | define-properties@1.2.1: 891 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 892 | engines: {node: '>= 0.4'} 893 | 894 | dequal@2.0.3: 895 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 896 | engines: {node: '>=6'} 897 | 898 | doctrine@2.1.0: 899 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 900 | engines: {node: '>=0.10.0'} 901 | 902 | dom-accessibility-api@0.5.16: 903 | resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} 904 | 905 | dom-accessibility-api@0.6.3: 906 | resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} 907 | 908 | dunder-proto@1.0.1: 909 | resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 910 | engines: {node: '>= 0.4'} 911 | 912 | electron-to-chromium@1.5.157: 913 | resolution: {integrity: sha512-/0ybgsQd1muo8QlnuTpKwtl0oX5YMlUGbm8xyqgDU00motRkKFFbUJySAQBWcY79rVqNLWIWa87BGVGClwAB2w==} 914 | 915 | emoji-regex@9.2.2: 916 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 917 | 918 | enhanced-resolve@5.18.0: 919 | resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==} 920 | engines: {node: '>=10.13.0'} 921 | 922 | es-abstract@1.23.9: 923 | resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==} 924 | engines: {node: '>= 0.4'} 925 | 926 | es-define-property@1.0.1: 927 | resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 928 | engines: {node: '>= 0.4'} 929 | 930 | es-errors@1.3.0: 931 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 932 | engines: {node: '>= 0.4'} 933 | 934 | es-iterator-helpers@1.2.1: 935 | resolution: {integrity: sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==} 936 | engines: {node: '>= 0.4'} 937 | 938 | es-module-lexer@1.6.0: 939 | resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==} 940 | 941 | es-object-atoms@1.1.1: 942 | resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 943 | engines: {node: '>= 0.4'} 944 | 945 | es-set-tostringtag@2.1.0: 946 | resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==} 947 | engines: {node: '>= 0.4'} 948 | 949 | es-shim-unscopables@1.0.2: 950 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 951 | 952 | es-to-primitive@1.3.0: 953 | resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} 954 | engines: {node: '>= 0.4'} 955 | 956 | esbuild@0.24.2: 957 | resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==} 958 | engines: {node: '>=18'} 959 | hasBin: true 960 | 961 | escalade@3.2.0: 962 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 963 | engines: {node: '>=6'} 964 | 965 | escape-string-regexp@4.0.0: 966 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 967 | engines: {node: '>=10'} 968 | 969 | eslint-import-resolver-node@0.3.9: 970 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 971 | 972 | eslint-import-resolver-typescript@3.7.0: 973 | resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==} 974 | engines: {node: ^14.18.0 || >=16.0.0} 975 | peerDependencies: 976 | eslint: '*' 977 | eslint-plugin-import: '*' 978 | eslint-plugin-import-x: '*' 979 | peerDependenciesMeta: 980 | eslint-plugin-import: 981 | optional: true 982 | eslint-plugin-import-x: 983 | optional: true 984 | 985 | eslint-module-utils@2.12.0: 986 | resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} 987 | engines: {node: '>=4'} 988 | peerDependencies: 989 | '@typescript-eslint/parser': '*' 990 | eslint: '*' 991 | eslint-import-resolver-node: '*' 992 | eslint-import-resolver-typescript: '*' 993 | eslint-import-resolver-webpack: '*' 994 | peerDependenciesMeta: 995 | '@typescript-eslint/parser': 996 | optional: true 997 | eslint: 998 | optional: true 999 | eslint-import-resolver-node: 1000 | optional: true 1001 | eslint-import-resolver-typescript: 1002 | optional: true 1003 | eslint-import-resolver-webpack: 1004 | optional: true 1005 | 1006 | eslint-plugin-import@2.31.0: 1007 | resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} 1008 | engines: {node: '>=4'} 1009 | peerDependencies: 1010 | '@typescript-eslint/parser': '*' 1011 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 1012 | peerDependenciesMeta: 1013 | '@typescript-eslint/parser': 1014 | optional: true 1015 | 1016 | eslint-plugin-jsx-a11y@6.10.2: 1017 | resolution: {integrity: sha512-scB3nz4WmG75pV8+3eRUQOHZlNSUhFNq37xnpgRkCCELU3XMvXAxLk1eqWWyE22Ki4Q01Fnsw9BA3cJHDPgn2Q==} 1018 | engines: {node: '>=4.0'} 1019 | peerDependencies: 1020 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9 1021 | 1022 | eslint-plugin-react-hooks@6.0.0-rc.1: 1023 | resolution: {integrity: sha512-7C4c7bdtd/B7Q+HruZxYhGjwZVvJawvQpilEYlRG1Jncuk1ZNqrFy9bO8SJNieyj3iDh8WPQA7BzzPO7sNAyEA==} 1024 | engines: {node: '>=18'} 1025 | peerDependencies: 1026 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 1027 | 1028 | eslint-plugin-react@7.37.4: 1029 | resolution: {integrity: sha512-BGP0jRmfYyvOyvMoRX/uoUeW+GqNj9y16bPQzqAHf3AYII/tDs+jMN0dBVkl88/OZwNGwrVFxE7riHsXVfy/LQ==} 1030 | engines: {node: '>=4'} 1031 | peerDependencies: 1032 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 1033 | 1034 | eslint-scope@8.2.0: 1035 | resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} 1036 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1037 | 1038 | eslint-visitor-keys@3.4.3: 1039 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1040 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1041 | 1042 | eslint-visitor-keys@4.2.0: 1043 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 1044 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1045 | 1046 | eslint@9.19.0: 1047 | resolution: {integrity: sha512-ug92j0LepKlbbEv6hD911THhoRHmbdXt2gX+VDABAW/Ir7D3nqKdv5Pf5vtlyY6HQMTEP2skXY43ueqTCWssEA==} 1048 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1049 | hasBin: true 1050 | peerDependencies: 1051 | jiti: '*' 1052 | peerDependenciesMeta: 1053 | jiti: 1054 | optional: true 1055 | 1056 | espree@10.3.0: 1057 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} 1058 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1059 | 1060 | esquery@1.6.0: 1061 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 1062 | engines: {node: '>=0.10'} 1063 | 1064 | esrecurse@4.3.0: 1065 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1066 | engines: {node: '>=4.0'} 1067 | 1068 | estraverse@5.3.0: 1069 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1070 | engines: {node: '>=4.0'} 1071 | 1072 | estree-walker@3.0.3: 1073 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 1074 | 1075 | esutils@2.0.3: 1076 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1077 | engines: {node: '>=0.10.0'} 1078 | 1079 | expect-type@1.1.0: 1080 | resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} 1081 | engines: {node: '>=12.0.0'} 1082 | 1083 | fast-deep-equal@3.1.3: 1084 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1085 | 1086 | fast-glob@3.3.3: 1087 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 1088 | engines: {node: '>=8.6.0'} 1089 | 1090 | fast-json-stable-stringify@2.1.0: 1091 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1092 | 1093 | fast-levenshtein@2.0.6: 1094 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1095 | 1096 | fastq@1.18.0: 1097 | resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} 1098 | 1099 | file-entry-cache@8.0.0: 1100 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 1101 | engines: {node: '>=16.0.0'} 1102 | 1103 | fill-range@7.1.1: 1104 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 1105 | engines: {node: '>=8'} 1106 | 1107 | find-up@5.0.0: 1108 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1109 | engines: {node: '>=10'} 1110 | 1111 | flat-cache@4.0.1: 1112 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 1113 | engines: {node: '>=16'} 1114 | 1115 | flatted@3.3.2: 1116 | resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} 1117 | 1118 | for-each@0.3.4: 1119 | resolution: {integrity: sha512-kKaIINnFpzW6ffJNDjjyjrk21BkDx38c0xa/klsT8VzLCaMEefv4ZTacrcVR4DmgTeBra++jMDAfS/tS799YDw==} 1120 | engines: {node: '>= 0.4'} 1121 | 1122 | fsevents@2.3.3: 1123 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1124 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1125 | os: [darwin] 1126 | 1127 | function-bind@1.1.2: 1128 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1129 | 1130 | function.prototype.name@1.1.8: 1131 | resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} 1132 | engines: {node: '>= 0.4'} 1133 | 1134 | functions-have-names@1.2.3: 1135 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1136 | 1137 | gensync@1.0.0-beta.2: 1138 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1139 | engines: {node: '>=6.9.0'} 1140 | 1141 | get-intrinsic@1.2.7: 1142 | resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==} 1143 | engines: {node: '>= 0.4'} 1144 | 1145 | get-proto@1.0.1: 1146 | resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 1147 | engines: {node: '>= 0.4'} 1148 | 1149 | get-symbol-description@1.1.0: 1150 | resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} 1151 | engines: {node: '>= 0.4'} 1152 | 1153 | get-tsconfig@4.10.0: 1154 | resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==} 1155 | 1156 | glob-parent@5.1.2: 1157 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1158 | engines: {node: '>= 6'} 1159 | 1160 | glob-parent@6.0.2: 1161 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1162 | engines: {node: '>=10.13.0'} 1163 | 1164 | globals@11.12.0: 1165 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1166 | engines: {node: '>=4'} 1167 | 1168 | globals@14.0.0: 1169 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 1170 | engines: {node: '>=18'} 1171 | 1172 | globalthis@1.0.4: 1173 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 1174 | engines: {node: '>= 0.4'} 1175 | 1176 | globrex@0.1.2: 1177 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==} 1178 | 1179 | gopd@1.2.0: 1180 | resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 1181 | engines: {node: '>= 0.4'} 1182 | 1183 | graceful-fs@4.2.11: 1184 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1185 | 1186 | graphemer@1.4.0: 1187 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1188 | 1189 | happy-dom@16.7.2: 1190 | resolution: {integrity: sha512-zOzw0xyYlDaF/ylwbAsduYZZVRTd5u7IwlFkGbEathIeJMLp3vrN3cHm3RS7PZpD9gr/IO16bHEswcgNyWTsqw==} 1191 | engines: {node: '>=18.0.0'} 1192 | 1193 | has-bigints@1.1.0: 1194 | resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} 1195 | engines: {node: '>= 0.4'} 1196 | 1197 | has-flag@4.0.0: 1198 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1199 | engines: {node: '>=8'} 1200 | 1201 | has-property-descriptors@1.0.2: 1202 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 1203 | 1204 | has-proto@1.2.0: 1205 | resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} 1206 | engines: {node: '>= 0.4'} 1207 | 1208 | has-symbols@1.1.0: 1209 | resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 1210 | engines: {node: '>= 0.4'} 1211 | 1212 | has-tostringtag@1.0.2: 1213 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 1214 | engines: {node: '>= 0.4'} 1215 | 1216 | hasown@2.0.2: 1217 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1218 | engines: {node: '>= 0.4'} 1219 | 1220 | hermes-estree@0.25.1: 1221 | resolution: {integrity: sha512-0wUoCcLp+5Ev5pDW2OriHC2MJCbwLwuRx+gAqMTOkGKJJiBCLjtrvy4PWUGn6MIVefecRpzoOZ/UV6iGdOr+Cw==} 1222 | 1223 | hermes-parser@0.25.1: 1224 | resolution: {integrity: sha512-6pEjquH3rqaI6cYAXYPcz9MS4rY6R4ngRgrgfDshRptUZIc3lw0MCIJIGDj9++mfySOuPTHB4nrSW99BCvOPIA==} 1225 | 1226 | ignore@5.3.2: 1227 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1228 | engines: {node: '>= 4'} 1229 | 1230 | import-fresh@3.3.0: 1231 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1232 | engines: {node: '>=6'} 1233 | 1234 | imurmurhash@0.1.4: 1235 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1236 | engines: {node: '>=0.8.19'} 1237 | 1238 | indent-string@4.0.0: 1239 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 1240 | engines: {node: '>=8'} 1241 | 1242 | internal-slot@1.1.0: 1243 | resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} 1244 | engines: {node: '>= 0.4'} 1245 | 1246 | is-array-buffer@3.0.5: 1247 | resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} 1248 | engines: {node: '>= 0.4'} 1249 | 1250 | is-async-function@2.1.1: 1251 | resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==} 1252 | engines: {node: '>= 0.4'} 1253 | 1254 | is-bigint@1.1.0: 1255 | resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} 1256 | engines: {node: '>= 0.4'} 1257 | 1258 | is-boolean-object@1.2.1: 1259 | resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==} 1260 | engines: {node: '>= 0.4'} 1261 | 1262 | is-bun-module@1.3.0: 1263 | resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} 1264 | 1265 | is-callable@1.2.7: 1266 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1267 | engines: {node: '>= 0.4'} 1268 | 1269 | is-core-module@2.16.1: 1270 | resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 1271 | engines: {node: '>= 0.4'} 1272 | 1273 | is-data-view@1.0.2: 1274 | resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} 1275 | engines: {node: '>= 0.4'} 1276 | 1277 | is-date-object@1.1.0: 1278 | resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} 1279 | engines: {node: '>= 0.4'} 1280 | 1281 | is-extglob@2.1.1: 1282 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1283 | engines: {node: '>=0.10.0'} 1284 | 1285 | is-finalizationregistry@1.1.1: 1286 | resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} 1287 | engines: {node: '>= 0.4'} 1288 | 1289 | is-generator-function@1.1.0: 1290 | resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==} 1291 | engines: {node: '>= 0.4'} 1292 | 1293 | is-glob@4.0.3: 1294 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1295 | engines: {node: '>=0.10.0'} 1296 | 1297 | is-map@2.0.3: 1298 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 1299 | engines: {node: '>= 0.4'} 1300 | 1301 | is-number-object@1.1.1: 1302 | resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} 1303 | engines: {node: '>= 0.4'} 1304 | 1305 | is-number@7.0.0: 1306 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1307 | engines: {node: '>=0.12.0'} 1308 | 1309 | is-regex@1.2.1: 1310 | resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} 1311 | engines: {node: '>= 0.4'} 1312 | 1313 | is-set@2.0.3: 1314 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 1315 | engines: {node: '>= 0.4'} 1316 | 1317 | is-shared-array-buffer@1.0.4: 1318 | resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} 1319 | engines: {node: '>= 0.4'} 1320 | 1321 | is-string@1.1.1: 1322 | resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} 1323 | engines: {node: '>= 0.4'} 1324 | 1325 | is-symbol@1.1.1: 1326 | resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} 1327 | engines: {node: '>= 0.4'} 1328 | 1329 | is-typed-array@1.1.15: 1330 | resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} 1331 | engines: {node: '>= 0.4'} 1332 | 1333 | is-weakmap@2.0.2: 1334 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 1335 | engines: {node: '>= 0.4'} 1336 | 1337 | is-weakref@1.1.0: 1338 | resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==} 1339 | engines: {node: '>= 0.4'} 1340 | 1341 | is-weakset@2.0.4: 1342 | resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} 1343 | engines: {node: '>= 0.4'} 1344 | 1345 | isarray@2.0.5: 1346 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1347 | 1348 | isexe@2.0.0: 1349 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1350 | 1351 | iterator.prototype@1.1.5: 1352 | resolution: {integrity: sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==} 1353 | engines: {node: '>= 0.4'} 1354 | 1355 | js-tokens@4.0.0: 1356 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1357 | 1358 | js-yaml@4.1.0: 1359 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1360 | hasBin: true 1361 | 1362 | jsesc@3.1.0: 1363 | resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 1364 | engines: {node: '>=6'} 1365 | hasBin: true 1366 | 1367 | json-buffer@3.0.1: 1368 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1369 | 1370 | json-schema-traverse@0.4.1: 1371 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1372 | 1373 | json-stable-stringify-without-jsonify@1.0.1: 1374 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1375 | 1376 | json5@1.0.2: 1377 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1378 | hasBin: true 1379 | 1380 | json5@2.2.3: 1381 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1382 | engines: {node: '>=6'} 1383 | hasBin: true 1384 | 1385 | jsx-ast-utils@3.3.5: 1386 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 1387 | engines: {node: '>=4.0'} 1388 | 1389 | keyv@4.5.4: 1390 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1391 | 1392 | language-subtag-registry@0.3.23: 1393 | resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==} 1394 | 1395 | language-tags@1.0.9: 1396 | resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==} 1397 | engines: {node: '>=0.10'} 1398 | 1399 | levn@0.4.1: 1400 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1401 | engines: {node: '>= 0.8.0'} 1402 | 1403 | locate-path@6.0.0: 1404 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1405 | engines: {node: '>=10'} 1406 | 1407 | lodash.merge@4.6.2: 1408 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1409 | 1410 | lodash@4.17.21: 1411 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1412 | 1413 | loose-envify@1.4.0: 1414 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1415 | hasBin: true 1416 | 1417 | loupe@3.1.2: 1418 | resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} 1419 | 1420 | lru-cache@5.1.1: 1421 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 1422 | 1423 | lz-string@1.5.0: 1424 | resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} 1425 | hasBin: true 1426 | 1427 | magic-string@0.30.17: 1428 | resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} 1429 | 1430 | math-intrinsics@1.1.0: 1431 | resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 1432 | engines: {node: '>= 0.4'} 1433 | 1434 | merge2@1.4.1: 1435 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1436 | engines: {node: '>= 8'} 1437 | 1438 | micromatch@4.0.8: 1439 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1440 | engines: {node: '>=8.6'} 1441 | 1442 | min-indent@1.0.1: 1443 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 1444 | engines: {node: '>=4'} 1445 | 1446 | minimatch@3.1.2: 1447 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1448 | 1449 | minimatch@9.0.5: 1450 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1451 | engines: {node: '>=16 || 14 >=14.17'} 1452 | 1453 | minimist@1.2.8: 1454 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1455 | 1456 | ms@2.1.3: 1457 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1458 | 1459 | nanoid@3.3.8: 1460 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 1461 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1462 | hasBin: true 1463 | 1464 | natural-compare@1.4.0: 1465 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1466 | 1467 | node-releases@2.0.19: 1468 | resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} 1469 | 1470 | object-assign@4.1.1: 1471 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1472 | engines: {node: '>=0.10.0'} 1473 | 1474 | object-inspect@1.13.3: 1475 | resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} 1476 | engines: {node: '>= 0.4'} 1477 | 1478 | object-keys@1.1.1: 1479 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1480 | engines: {node: '>= 0.4'} 1481 | 1482 | object.assign@4.1.7: 1483 | resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 1484 | engines: {node: '>= 0.4'} 1485 | 1486 | object.entries@1.1.8: 1487 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 1488 | engines: {node: '>= 0.4'} 1489 | 1490 | object.fromentries@2.0.8: 1491 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1492 | engines: {node: '>= 0.4'} 1493 | 1494 | object.groupby@1.0.3: 1495 | resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} 1496 | engines: {node: '>= 0.4'} 1497 | 1498 | object.values@1.2.1: 1499 | resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} 1500 | engines: {node: '>= 0.4'} 1501 | 1502 | optionator@0.9.4: 1503 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1504 | engines: {node: '>= 0.8.0'} 1505 | 1506 | own-keys@1.0.1: 1507 | resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==} 1508 | engines: {node: '>= 0.4'} 1509 | 1510 | p-limit@3.1.0: 1511 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1512 | engines: {node: '>=10'} 1513 | 1514 | p-locate@5.0.0: 1515 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1516 | engines: {node: '>=10'} 1517 | 1518 | parent-module@1.0.1: 1519 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1520 | engines: {node: '>=6'} 1521 | 1522 | path-exists@4.0.0: 1523 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1524 | engines: {node: '>=8'} 1525 | 1526 | path-key@3.1.1: 1527 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1528 | engines: {node: '>=8'} 1529 | 1530 | path-parse@1.0.7: 1531 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1532 | 1533 | pathe@2.0.2: 1534 | resolution: {integrity: sha512-15Ztpk+nov8DR524R4BF7uEuzESgzUEAV4Ah7CUMNGXdE5ELuvxElxGXndBl32vMSsWa1jpNf22Z+Er3sKwq+w==} 1535 | 1536 | pathval@2.0.0: 1537 | resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} 1538 | engines: {node: '>= 14.16'} 1539 | 1540 | picocolors@1.1.1: 1541 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1542 | 1543 | picomatch@2.3.1: 1544 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1545 | engines: {node: '>=8.6'} 1546 | 1547 | possible-typed-array-names@1.0.0: 1548 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1549 | engines: {node: '>= 0.4'} 1550 | 1551 | postcss@8.5.1: 1552 | resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==} 1553 | engines: {node: ^10 || ^12 || >=14} 1554 | 1555 | prelude-ls@1.2.1: 1556 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1557 | engines: {node: '>= 0.8.0'} 1558 | 1559 | prettier@3.4.2: 1560 | resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} 1561 | engines: {node: '>=14'} 1562 | hasBin: true 1563 | 1564 | pretty-format@27.5.1: 1565 | resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} 1566 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1567 | 1568 | prop-types@15.8.1: 1569 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1570 | 1571 | proxy-compare@3.0.1: 1572 | resolution: {integrity: sha512-V9plBAt3qjMlS1+nC8771KNf6oJ12gExvaxnNzN/9yVRLdTv/lc+oJlnSzrdYDAvBfTStPCoiaCOTmTs0adv7Q==} 1573 | 1574 | punycode@2.3.1: 1575 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1576 | engines: {node: '>=6'} 1577 | 1578 | queue-microtask@1.2.3: 1579 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1580 | 1581 | react-dom@19.0.0: 1582 | resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} 1583 | peerDependencies: 1584 | react: ^19.0.0 1585 | 1586 | react-is@16.13.1: 1587 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1588 | 1589 | react-is@17.0.2: 1590 | resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} 1591 | 1592 | react@19.0.0: 1593 | resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} 1594 | engines: {node: '>=0.10.0'} 1595 | 1596 | redent@3.0.0: 1597 | resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} 1598 | engines: {node: '>=8'} 1599 | 1600 | reflect.getprototypeof@1.0.10: 1601 | resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==} 1602 | engines: {node: '>= 0.4'} 1603 | 1604 | regenerator-runtime@0.14.1: 1605 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1606 | 1607 | regexp.prototype.flags@1.5.4: 1608 | resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==} 1609 | engines: {node: '>= 0.4'} 1610 | 1611 | resolve-from@4.0.0: 1612 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1613 | engines: {node: '>=4'} 1614 | 1615 | resolve-pkg-maps@1.0.0: 1616 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 1617 | 1618 | resolve@1.22.10: 1619 | resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} 1620 | engines: {node: '>= 0.4'} 1621 | hasBin: true 1622 | 1623 | resolve@2.0.0-next.5: 1624 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 1625 | hasBin: true 1626 | 1627 | reusify@1.0.4: 1628 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1629 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1630 | 1631 | rollup@4.32.0: 1632 | resolution: {integrity: sha512-JmrhfQR31Q4AuNBjjAX4s+a/Pu/Q8Q9iwjWBsjRH1q52SPFE2NqRMK6fUZKKnvKO6id+h7JIRf0oYsph53eATg==} 1633 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1634 | hasBin: true 1635 | 1636 | run-parallel@1.2.0: 1637 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1638 | 1639 | safe-array-concat@1.1.3: 1640 | resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} 1641 | engines: {node: '>=0.4'} 1642 | 1643 | safe-push-apply@1.0.0: 1644 | resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==} 1645 | engines: {node: '>= 0.4'} 1646 | 1647 | safe-regex-test@1.1.0: 1648 | resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} 1649 | engines: {node: '>= 0.4'} 1650 | 1651 | scheduler@0.25.0: 1652 | resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} 1653 | 1654 | semver@6.3.1: 1655 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1656 | hasBin: true 1657 | 1658 | semver@7.6.3: 1659 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} 1660 | engines: {node: '>=10'} 1661 | hasBin: true 1662 | 1663 | set-function-length@1.2.2: 1664 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1665 | engines: {node: '>= 0.4'} 1666 | 1667 | set-function-name@2.0.2: 1668 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1669 | engines: {node: '>= 0.4'} 1670 | 1671 | set-proto@1.0.0: 1672 | resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==} 1673 | engines: {node: '>= 0.4'} 1674 | 1675 | shebang-command@2.0.0: 1676 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1677 | engines: {node: '>=8'} 1678 | 1679 | shebang-regex@3.0.0: 1680 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1681 | engines: {node: '>=8'} 1682 | 1683 | side-channel-list@1.0.0: 1684 | resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 1685 | engines: {node: '>= 0.4'} 1686 | 1687 | side-channel-map@1.0.1: 1688 | resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 1689 | engines: {node: '>= 0.4'} 1690 | 1691 | side-channel-weakmap@1.0.2: 1692 | resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 1693 | engines: {node: '>= 0.4'} 1694 | 1695 | side-channel@1.1.0: 1696 | resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 1697 | engines: {node: '>= 0.4'} 1698 | 1699 | siginfo@2.0.0: 1700 | resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 1701 | 1702 | source-map-js@1.2.1: 1703 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1704 | engines: {node: '>=0.10.0'} 1705 | 1706 | stable-hash@0.0.4: 1707 | resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} 1708 | 1709 | stackback@0.0.2: 1710 | resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 1711 | 1712 | std-env@3.8.0: 1713 | resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} 1714 | 1715 | string.prototype.includes@2.0.1: 1716 | resolution: {integrity: sha512-o7+c9bW6zpAdJHTtujeePODAhkuicdAryFsfVKwA+wGw89wJ4GTY484WTucM9hLtDEOpOvI+aHnzqnC5lHp4Rg==} 1717 | engines: {node: '>= 0.4'} 1718 | 1719 | string.prototype.matchall@4.0.12: 1720 | resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==} 1721 | engines: {node: '>= 0.4'} 1722 | 1723 | string.prototype.repeat@1.0.0: 1724 | resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} 1725 | 1726 | string.prototype.trim@1.2.10: 1727 | resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} 1728 | engines: {node: '>= 0.4'} 1729 | 1730 | string.prototype.trimend@1.0.9: 1731 | resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} 1732 | engines: {node: '>= 0.4'} 1733 | 1734 | string.prototype.trimstart@1.0.8: 1735 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1736 | engines: {node: '>= 0.4'} 1737 | 1738 | strip-bom@3.0.0: 1739 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 1740 | engines: {node: '>=4'} 1741 | 1742 | strip-indent@3.0.0: 1743 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 1744 | engines: {node: '>=8'} 1745 | 1746 | strip-json-comments@3.1.1: 1747 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1748 | engines: {node: '>=8'} 1749 | 1750 | supports-color@7.2.0: 1751 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1752 | engines: {node: '>=8'} 1753 | 1754 | supports-preserve-symlinks-flag@1.0.0: 1755 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1756 | engines: {node: '>= 0.4'} 1757 | 1758 | tapable@2.2.1: 1759 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 1760 | engines: {node: '>=6'} 1761 | 1762 | tinybench@2.9.0: 1763 | resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 1764 | 1765 | tinyexec@0.3.2: 1766 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 1767 | 1768 | tinypool@1.0.2: 1769 | resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} 1770 | engines: {node: ^18.0.0 || >=20.0.0} 1771 | 1772 | tinyrainbow@2.0.0: 1773 | resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} 1774 | engines: {node: '>=14.0.0'} 1775 | 1776 | tinyspy@3.0.2: 1777 | resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} 1778 | engines: {node: '>=14.0.0'} 1779 | 1780 | to-regex-range@5.0.1: 1781 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1782 | engines: {node: '>=8.0'} 1783 | 1784 | ts-api-utils@2.0.0: 1785 | resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==} 1786 | engines: {node: '>=18.12'} 1787 | peerDependencies: 1788 | typescript: '>=4.8.4' 1789 | 1790 | ts-expect@1.3.0: 1791 | resolution: {integrity: sha512-e4g0EJtAjk64xgnFPD6kTBUtpnMVzDrMb12N1YZV0VvSlhnVT3SGxiYTLdGy8Q5cYHOIC/FAHmZ10eGrAguicQ==} 1792 | 1793 | tsconfck@3.1.4: 1794 | resolution: {integrity: sha512-kdqWFGVJqe+KGYvlSO9NIaWn9jT1Ny4oKVzAJsKii5eoE9snzTJzL4+MMVOMn+fikWGFmKEylcXL710V/kIPJQ==} 1795 | engines: {node: ^18 || >=20} 1796 | hasBin: true 1797 | peerDependencies: 1798 | typescript: ^5.0.0 1799 | peerDependenciesMeta: 1800 | typescript: 1801 | optional: true 1802 | 1803 | tsconfig-paths@3.15.0: 1804 | resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} 1805 | 1806 | type-check@0.4.0: 1807 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1808 | engines: {node: '>= 0.8.0'} 1809 | 1810 | typed-array-buffer@1.0.3: 1811 | resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} 1812 | engines: {node: '>= 0.4'} 1813 | 1814 | typed-array-byte-length@1.0.3: 1815 | resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} 1816 | engines: {node: '>= 0.4'} 1817 | 1818 | typed-array-byte-offset@1.0.4: 1819 | resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} 1820 | engines: {node: '>= 0.4'} 1821 | 1822 | typed-array-length@1.0.7: 1823 | resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} 1824 | engines: {node: '>= 0.4'} 1825 | 1826 | typescript-eslint@8.21.0: 1827 | resolution: {integrity: sha512-txEKYY4XMKwPXxNkN8+AxAdX6iIJAPiJbHE/FpQccs/sxw8Lf26kqwC3cn0xkHlW8kEbLhkhCsjWuMveaY9Rxw==} 1828 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1829 | peerDependencies: 1830 | eslint: ^8.57.0 || ^9.0.0 1831 | typescript: '>=4.8.4 <5.8.0' 1832 | 1833 | typescript@5.7.3: 1834 | resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==} 1835 | engines: {node: '>=14.17'} 1836 | hasBin: true 1837 | 1838 | unbox-primitive@1.1.0: 1839 | resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} 1840 | engines: {node: '>= 0.4'} 1841 | 1842 | undici-types@6.20.0: 1843 | resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} 1844 | 1845 | update-browserslist-db@1.1.3: 1846 | resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} 1847 | hasBin: true 1848 | peerDependencies: 1849 | browserslist: '>= 4.21.0' 1850 | 1851 | uri-js@4.4.1: 1852 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1853 | 1854 | valtio@2.1.2: 1855 | resolution: {integrity: sha512-fhekN5Rq7dvHULHHBlJeXHrQDl0Jj9GXfNavCm3gkD06crGchaG1nf/J7gSlfZU2wPcRdVS5jBKWHtE2NNz97A==} 1856 | engines: {node: '>=12.20.0'} 1857 | peerDependencies: 1858 | '@types/react': '>=18.0.0' 1859 | react: '>=18.0.0' 1860 | peerDependenciesMeta: 1861 | '@types/react': 1862 | optional: true 1863 | react: 1864 | optional: true 1865 | 1866 | vite-node@3.0.4: 1867 | resolution: {integrity: sha512-7JZKEzcYV2Nx3u6rlvN8qdo3QV7Fxyt6hx+CCKz9fbWxdX5IvUOmTWEAxMrWxaiSf7CKGLJQ5rFu8prb/jBjOA==} 1868 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1869 | hasBin: true 1870 | 1871 | vite-tsconfig-paths@5.1.4: 1872 | resolution: {integrity: sha512-cYj0LRuLV2c2sMqhqhGpaO3LretdtMn/BVX4cPLanIZuwwrkVl+lK84E/miEXkCHWXuq65rhNN4rXsBcOB3S4w==} 1873 | peerDependencies: 1874 | vite: '*' 1875 | peerDependenciesMeta: 1876 | vite: 1877 | optional: true 1878 | 1879 | vite@6.0.11: 1880 | resolution: {integrity: sha512-4VL9mQPKoHy4+FE0NnRE/kbY51TOfaknxAjt3fJbGJxhIpBZiqVzlZDEesWWsuREXHwNdAoOFZ9MkPEVXczHwg==} 1881 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1882 | hasBin: true 1883 | peerDependencies: 1884 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 1885 | jiti: '>=1.21.0' 1886 | less: '*' 1887 | lightningcss: ^1.21.0 1888 | sass: '*' 1889 | sass-embedded: '*' 1890 | stylus: '*' 1891 | sugarss: '*' 1892 | terser: ^5.16.0 1893 | tsx: ^4.8.1 1894 | yaml: ^2.4.2 1895 | peerDependenciesMeta: 1896 | '@types/node': 1897 | optional: true 1898 | jiti: 1899 | optional: true 1900 | less: 1901 | optional: true 1902 | lightningcss: 1903 | optional: true 1904 | sass: 1905 | optional: true 1906 | sass-embedded: 1907 | optional: true 1908 | stylus: 1909 | optional: true 1910 | sugarss: 1911 | optional: true 1912 | terser: 1913 | optional: true 1914 | tsx: 1915 | optional: true 1916 | yaml: 1917 | optional: true 1918 | 1919 | vitest@3.0.4: 1920 | resolution: {integrity: sha512-6XG8oTKy2gnJIFTHP6LD7ExFeNLxiTkK3CfMvT7IfR8IN+BYICCf0lXUQmX7i7JoxUP8QmeP4mTnWXgflu4yjw==} 1921 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1922 | hasBin: true 1923 | peerDependencies: 1924 | '@edge-runtime/vm': '*' 1925 | '@types/debug': ^4.1.12 1926 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 1927 | '@vitest/browser': 3.0.4 1928 | '@vitest/ui': 3.0.4 1929 | happy-dom: '*' 1930 | jsdom: '*' 1931 | peerDependenciesMeta: 1932 | '@edge-runtime/vm': 1933 | optional: true 1934 | '@types/debug': 1935 | optional: true 1936 | '@types/node': 1937 | optional: true 1938 | '@vitest/browser': 1939 | optional: true 1940 | '@vitest/ui': 1941 | optional: true 1942 | happy-dom: 1943 | optional: true 1944 | jsdom: 1945 | optional: true 1946 | 1947 | webidl-conversions@7.0.0: 1948 | resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} 1949 | engines: {node: '>=12'} 1950 | 1951 | whatwg-mimetype@3.0.0: 1952 | resolution: {integrity: sha512-nt+N2dzIutVRxARx1nghPKGv1xHikU7HKdfafKkLNLindmPU/ch3U31NOCGGA/dmPcmb1VlofO0vnKAcsm0o/Q==} 1953 | engines: {node: '>=12'} 1954 | 1955 | which-boxed-primitive@1.1.1: 1956 | resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} 1957 | engines: {node: '>= 0.4'} 1958 | 1959 | which-builtin-type@1.2.1: 1960 | resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} 1961 | engines: {node: '>= 0.4'} 1962 | 1963 | which-collection@1.0.2: 1964 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 1965 | engines: {node: '>= 0.4'} 1966 | 1967 | which-typed-array@1.1.18: 1968 | resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} 1969 | engines: {node: '>= 0.4'} 1970 | 1971 | which@2.0.2: 1972 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1973 | engines: {node: '>= 8'} 1974 | hasBin: true 1975 | 1976 | why-is-node-running@2.3.0: 1977 | resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 1978 | engines: {node: '>=8'} 1979 | hasBin: true 1980 | 1981 | word-wrap@1.2.5: 1982 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1983 | engines: {node: '>=0.10.0'} 1984 | 1985 | yallist@3.1.1: 1986 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 1987 | 1988 | yocto-queue@0.1.0: 1989 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1990 | engines: {node: '>=10'} 1991 | 1992 | zod-validation-error@3.4.1: 1993 | resolution: {integrity: sha512-1KP64yqDPQ3rupxNv7oXhf7KdhHHgaqbKuspVoiN93TT0xrBjql+Svjkdjq/Qh/7GSMmgQs3AfvBT0heE35thw==} 1994 | engines: {node: '>=18.0.0'} 1995 | peerDependencies: 1996 | zod: ^3.24.4 1997 | 1998 | zod@3.25.23: 1999 | resolution: {integrity: sha512-Od2bdMosahjSrSgJtakrwjMDb1zM1A3VIHCPGveZt/3/wlrTWBya2lmEh2OYe4OIu8mPTmmr0gnLHIWQXdtWBg==} 2000 | 2001 | snapshots: 2002 | 2003 | '@adobe/css-tools@4.4.1': {} 2004 | 2005 | '@ampproject/remapping@2.3.0': 2006 | dependencies: 2007 | '@jridgewell/gen-mapping': 0.3.8 2008 | '@jridgewell/trace-mapping': 0.3.25 2009 | 2010 | '@babel/code-frame@7.26.2': 2011 | dependencies: 2012 | '@babel/helper-validator-identifier': 7.25.9 2013 | js-tokens: 4.0.0 2014 | picocolors: 1.1.1 2015 | 2016 | '@babel/code-frame@7.27.1': 2017 | dependencies: 2018 | '@babel/helper-validator-identifier': 7.27.1 2019 | js-tokens: 4.0.0 2020 | picocolors: 1.1.1 2021 | 2022 | '@babel/compat-data@7.27.2': {} 2023 | 2024 | '@babel/core@7.27.1': 2025 | dependencies: 2026 | '@ampproject/remapping': 2.3.0 2027 | '@babel/code-frame': 7.27.1 2028 | '@babel/generator': 7.27.1 2029 | '@babel/helper-compilation-targets': 7.27.2 2030 | '@babel/helper-module-transforms': 7.27.1(@babel/core@7.27.1) 2031 | '@babel/helpers': 7.27.1 2032 | '@babel/parser': 7.27.2 2033 | '@babel/template': 7.27.2 2034 | '@babel/traverse': 7.27.1 2035 | '@babel/types': 7.27.1 2036 | convert-source-map: 2.0.0 2037 | debug: 4.4.0 2038 | gensync: 1.0.0-beta.2 2039 | json5: 2.2.3 2040 | semver: 6.3.1 2041 | transitivePeerDependencies: 2042 | - supports-color 2043 | 2044 | '@babel/generator@7.27.1': 2045 | dependencies: 2046 | '@babel/parser': 7.27.2 2047 | '@babel/types': 7.27.1 2048 | '@jridgewell/gen-mapping': 0.3.8 2049 | '@jridgewell/trace-mapping': 0.3.25 2050 | jsesc: 3.1.0 2051 | 2052 | '@babel/helper-annotate-as-pure@7.27.1': 2053 | dependencies: 2054 | '@babel/types': 7.27.1 2055 | 2056 | '@babel/helper-compilation-targets@7.27.2': 2057 | dependencies: 2058 | '@babel/compat-data': 7.27.2 2059 | '@babel/helper-validator-option': 7.27.1 2060 | browserslist: 4.24.5 2061 | lru-cache: 5.1.1 2062 | semver: 6.3.1 2063 | 2064 | '@babel/helper-create-class-features-plugin@7.27.1(@babel/core@7.27.1)': 2065 | dependencies: 2066 | '@babel/core': 7.27.1 2067 | '@babel/helper-annotate-as-pure': 7.27.1 2068 | '@babel/helper-member-expression-to-functions': 7.27.1 2069 | '@babel/helper-optimise-call-expression': 7.27.1 2070 | '@babel/helper-replace-supers': 7.27.1(@babel/core@7.27.1) 2071 | '@babel/helper-skip-transparent-expression-wrappers': 7.27.1 2072 | '@babel/traverse': 7.27.1 2073 | semver: 6.3.1 2074 | transitivePeerDependencies: 2075 | - supports-color 2076 | 2077 | '@babel/helper-member-expression-to-functions@7.27.1': 2078 | dependencies: 2079 | '@babel/traverse': 7.27.1 2080 | '@babel/types': 7.27.1 2081 | transitivePeerDependencies: 2082 | - supports-color 2083 | 2084 | '@babel/helper-module-imports@7.27.1': 2085 | dependencies: 2086 | '@babel/traverse': 7.27.1 2087 | '@babel/types': 7.27.1 2088 | transitivePeerDependencies: 2089 | - supports-color 2090 | 2091 | '@babel/helper-module-transforms@7.27.1(@babel/core@7.27.1)': 2092 | dependencies: 2093 | '@babel/core': 7.27.1 2094 | '@babel/helper-module-imports': 7.27.1 2095 | '@babel/helper-validator-identifier': 7.27.1 2096 | '@babel/traverse': 7.27.1 2097 | transitivePeerDependencies: 2098 | - supports-color 2099 | 2100 | '@babel/helper-optimise-call-expression@7.27.1': 2101 | dependencies: 2102 | '@babel/types': 7.27.1 2103 | 2104 | '@babel/helper-plugin-utils@7.27.1': {} 2105 | 2106 | '@babel/helper-replace-supers@7.27.1(@babel/core@7.27.1)': 2107 | dependencies: 2108 | '@babel/core': 7.27.1 2109 | '@babel/helper-member-expression-to-functions': 7.27.1 2110 | '@babel/helper-optimise-call-expression': 7.27.1 2111 | '@babel/traverse': 7.27.1 2112 | transitivePeerDependencies: 2113 | - supports-color 2114 | 2115 | '@babel/helper-skip-transparent-expression-wrappers@7.27.1': 2116 | dependencies: 2117 | '@babel/traverse': 7.27.1 2118 | '@babel/types': 7.27.1 2119 | transitivePeerDependencies: 2120 | - supports-color 2121 | 2122 | '@babel/helper-string-parser@7.27.1': {} 2123 | 2124 | '@babel/helper-validator-identifier@7.25.9': {} 2125 | 2126 | '@babel/helper-validator-identifier@7.27.1': {} 2127 | 2128 | '@babel/helper-validator-option@7.27.1': {} 2129 | 2130 | '@babel/helpers@7.27.1': 2131 | dependencies: 2132 | '@babel/template': 7.27.2 2133 | '@babel/types': 7.27.1 2134 | 2135 | '@babel/parser@7.27.2': 2136 | dependencies: 2137 | '@babel/types': 7.27.1 2138 | 2139 | '@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.27.1)': 2140 | dependencies: 2141 | '@babel/core': 7.27.1 2142 | '@babel/helper-create-class-features-plugin': 7.27.1(@babel/core@7.27.1) 2143 | '@babel/helper-plugin-utils': 7.27.1 2144 | transitivePeerDependencies: 2145 | - supports-color 2146 | 2147 | '@babel/runtime@7.26.7': 2148 | dependencies: 2149 | regenerator-runtime: 0.14.1 2150 | 2151 | '@babel/template@7.27.2': 2152 | dependencies: 2153 | '@babel/code-frame': 7.27.1 2154 | '@babel/parser': 7.27.2 2155 | '@babel/types': 7.27.1 2156 | 2157 | '@babel/traverse@7.27.1': 2158 | dependencies: 2159 | '@babel/code-frame': 7.27.1 2160 | '@babel/generator': 7.27.1 2161 | '@babel/parser': 7.27.2 2162 | '@babel/template': 7.27.2 2163 | '@babel/types': 7.27.1 2164 | debug: 4.4.0 2165 | globals: 11.12.0 2166 | transitivePeerDependencies: 2167 | - supports-color 2168 | 2169 | '@babel/types@7.27.1': 2170 | dependencies: 2171 | '@babel/helper-string-parser': 7.27.1 2172 | '@babel/helper-validator-identifier': 7.27.1 2173 | 2174 | '@esbuild/aix-ppc64@0.24.2': 2175 | optional: true 2176 | 2177 | '@esbuild/android-arm64@0.24.2': 2178 | optional: true 2179 | 2180 | '@esbuild/android-arm@0.24.2': 2181 | optional: true 2182 | 2183 | '@esbuild/android-x64@0.24.2': 2184 | optional: true 2185 | 2186 | '@esbuild/darwin-arm64@0.24.2': 2187 | optional: true 2188 | 2189 | '@esbuild/darwin-x64@0.24.2': 2190 | optional: true 2191 | 2192 | '@esbuild/freebsd-arm64@0.24.2': 2193 | optional: true 2194 | 2195 | '@esbuild/freebsd-x64@0.24.2': 2196 | optional: true 2197 | 2198 | '@esbuild/linux-arm64@0.24.2': 2199 | optional: true 2200 | 2201 | '@esbuild/linux-arm@0.24.2': 2202 | optional: true 2203 | 2204 | '@esbuild/linux-ia32@0.24.2': 2205 | optional: true 2206 | 2207 | '@esbuild/linux-loong64@0.24.2': 2208 | optional: true 2209 | 2210 | '@esbuild/linux-mips64el@0.24.2': 2211 | optional: true 2212 | 2213 | '@esbuild/linux-ppc64@0.24.2': 2214 | optional: true 2215 | 2216 | '@esbuild/linux-riscv64@0.24.2': 2217 | optional: true 2218 | 2219 | '@esbuild/linux-s390x@0.24.2': 2220 | optional: true 2221 | 2222 | '@esbuild/linux-x64@0.24.2': 2223 | optional: true 2224 | 2225 | '@esbuild/netbsd-arm64@0.24.2': 2226 | optional: true 2227 | 2228 | '@esbuild/netbsd-x64@0.24.2': 2229 | optional: true 2230 | 2231 | '@esbuild/openbsd-arm64@0.24.2': 2232 | optional: true 2233 | 2234 | '@esbuild/openbsd-x64@0.24.2': 2235 | optional: true 2236 | 2237 | '@esbuild/sunos-x64@0.24.2': 2238 | optional: true 2239 | 2240 | '@esbuild/win32-arm64@0.24.2': 2241 | optional: true 2242 | 2243 | '@esbuild/win32-ia32@0.24.2': 2244 | optional: true 2245 | 2246 | '@esbuild/win32-x64@0.24.2': 2247 | optional: true 2248 | 2249 | '@eslint-community/eslint-utils@4.4.1(eslint@9.19.0)': 2250 | dependencies: 2251 | eslint: 9.19.0 2252 | eslint-visitor-keys: 3.4.3 2253 | 2254 | '@eslint-community/regexpp@4.12.1': {} 2255 | 2256 | '@eslint/config-array@0.19.1': 2257 | dependencies: 2258 | '@eslint/object-schema': 2.1.5 2259 | debug: 4.4.0 2260 | minimatch: 3.1.2 2261 | transitivePeerDependencies: 2262 | - supports-color 2263 | 2264 | '@eslint/core@0.10.0': 2265 | dependencies: 2266 | '@types/json-schema': 7.0.15 2267 | 2268 | '@eslint/eslintrc@3.2.0': 2269 | dependencies: 2270 | ajv: 6.12.6 2271 | debug: 4.4.0 2272 | espree: 10.3.0 2273 | globals: 14.0.0 2274 | ignore: 5.3.2 2275 | import-fresh: 3.3.0 2276 | js-yaml: 4.1.0 2277 | minimatch: 3.1.2 2278 | strip-json-comments: 3.1.1 2279 | transitivePeerDependencies: 2280 | - supports-color 2281 | 2282 | '@eslint/js@9.19.0': {} 2283 | 2284 | '@eslint/object-schema@2.1.5': {} 2285 | 2286 | '@eslint/plugin-kit@0.2.5': 2287 | dependencies: 2288 | '@eslint/core': 0.10.0 2289 | levn: 0.4.1 2290 | 2291 | '@humanfs/core@0.19.1': {} 2292 | 2293 | '@humanfs/node@0.16.6': 2294 | dependencies: 2295 | '@humanfs/core': 0.19.1 2296 | '@humanwhocodes/retry': 0.3.1 2297 | 2298 | '@humanwhocodes/module-importer@1.0.1': {} 2299 | 2300 | '@humanwhocodes/retry@0.3.1': {} 2301 | 2302 | '@humanwhocodes/retry@0.4.1': {} 2303 | 2304 | '@jridgewell/gen-mapping@0.3.8': 2305 | dependencies: 2306 | '@jridgewell/set-array': 1.2.1 2307 | '@jridgewell/sourcemap-codec': 1.5.0 2308 | '@jridgewell/trace-mapping': 0.3.25 2309 | 2310 | '@jridgewell/resolve-uri@3.1.2': {} 2311 | 2312 | '@jridgewell/set-array@1.2.1': {} 2313 | 2314 | '@jridgewell/sourcemap-codec@1.5.0': {} 2315 | 2316 | '@jridgewell/trace-mapping@0.3.25': 2317 | dependencies: 2318 | '@jridgewell/resolve-uri': 3.1.2 2319 | '@jridgewell/sourcemap-codec': 1.5.0 2320 | 2321 | '@nodelib/fs.scandir@2.1.5': 2322 | dependencies: 2323 | '@nodelib/fs.stat': 2.0.5 2324 | run-parallel: 1.2.0 2325 | 2326 | '@nodelib/fs.stat@2.0.5': {} 2327 | 2328 | '@nodelib/fs.walk@1.2.8': 2329 | dependencies: 2330 | '@nodelib/fs.scandir': 2.1.5 2331 | fastq: 1.18.0 2332 | 2333 | '@nolyfill/is-core-module@1.0.39': {} 2334 | 2335 | '@rollup/rollup-android-arm-eabi@4.32.0': 2336 | optional: true 2337 | 2338 | '@rollup/rollup-android-arm64@4.32.0': 2339 | optional: true 2340 | 2341 | '@rollup/rollup-darwin-arm64@4.32.0': 2342 | optional: true 2343 | 2344 | '@rollup/rollup-darwin-x64@4.32.0': 2345 | optional: true 2346 | 2347 | '@rollup/rollup-freebsd-arm64@4.32.0': 2348 | optional: true 2349 | 2350 | '@rollup/rollup-freebsd-x64@4.32.0': 2351 | optional: true 2352 | 2353 | '@rollup/rollup-linux-arm-gnueabihf@4.32.0': 2354 | optional: true 2355 | 2356 | '@rollup/rollup-linux-arm-musleabihf@4.32.0': 2357 | optional: true 2358 | 2359 | '@rollup/rollup-linux-arm64-gnu@4.32.0': 2360 | optional: true 2361 | 2362 | '@rollup/rollup-linux-arm64-musl@4.32.0': 2363 | optional: true 2364 | 2365 | '@rollup/rollup-linux-loongarch64-gnu@4.32.0': 2366 | optional: true 2367 | 2368 | '@rollup/rollup-linux-powerpc64le-gnu@4.32.0': 2369 | optional: true 2370 | 2371 | '@rollup/rollup-linux-riscv64-gnu@4.32.0': 2372 | optional: true 2373 | 2374 | '@rollup/rollup-linux-s390x-gnu@4.32.0': 2375 | optional: true 2376 | 2377 | '@rollup/rollup-linux-x64-gnu@4.32.0': 2378 | optional: true 2379 | 2380 | '@rollup/rollup-linux-x64-musl@4.32.0': 2381 | optional: true 2382 | 2383 | '@rollup/rollup-win32-arm64-msvc@4.32.0': 2384 | optional: true 2385 | 2386 | '@rollup/rollup-win32-ia32-msvc@4.32.0': 2387 | optional: true 2388 | 2389 | '@rollup/rollup-win32-x64-msvc@4.32.0': 2390 | optional: true 2391 | 2392 | '@rtsao/scc@1.1.0': {} 2393 | 2394 | '@testing-library/dom@10.4.0': 2395 | dependencies: 2396 | '@babel/code-frame': 7.26.2 2397 | '@babel/runtime': 7.26.7 2398 | '@types/aria-query': 5.0.4 2399 | aria-query: 5.3.0 2400 | chalk: 4.1.2 2401 | dom-accessibility-api: 0.5.16 2402 | lz-string: 1.5.0 2403 | pretty-format: 27.5.1 2404 | 2405 | '@testing-library/jest-dom@6.6.3': 2406 | dependencies: 2407 | '@adobe/css-tools': 4.4.1 2408 | aria-query: 5.3.2 2409 | chalk: 3.0.0 2410 | css.escape: 1.5.1 2411 | dom-accessibility-api: 0.6.3 2412 | lodash: 4.17.21 2413 | redent: 3.0.0 2414 | 2415 | '@testing-library/react@16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@19.0.3(@types/react@19.0.8))(@types/react@19.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 2416 | dependencies: 2417 | '@babel/runtime': 7.26.7 2418 | '@testing-library/dom': 10.4.0 2419 | react: 19.0.0 2420 | react-dom: 19.0.0(react@19.0.0) 2421 | optionalDependencies: 2422 | '@types/react': 19.0.8 2423 | '@types/react-dom': 19.0.3(@types/react@19.0.8) 2424 | 2425 | '@testing-library/user-event@14.6.1(@testing-library/dom@10.4.0)': 2426 | dependencies: 2427 | '@testing-library/dom': 10.4.0 2428 | 2429 | '@types/aria-query@5.0.4': {} 2430 | 2431 | '@types/estree@1.0.6': {} 2432 | 2433 | '@types/json-schema@7.0.15': {} 2434 | 2435 | '@types/json5@0.0.29': {} 2436 | 2437 | '@types/node@22.10.10': 2438 | dependencies: 2439 | undici-types: 6.20.0 2440 | 2441 | '@types/react-dom@19.0.3(@types/react@19.0.8)': 2442 | dependencies: 2443 | '@types/react': 19.0.8 2444 | 2445 | '@types/react@19.0.8': 2446 | dependencies: 2447 | csstype: 3.1.3 2448 | 2449 | '@typescript-eslint/eslint-plugin@8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3))(eslint@9.19.0)(typescript@5.7.3)': 2450 | dependencies: 2451 | '@eslint-community/regexpp': 4.12.1 2452 | '@typescript-eslint/parser': 8.21.0(eslint@9.19.0)(typescript@5.7.3) 2453 | '@typescript-eslint/scope-manager': 8.21.0 2454 | '@typescript-eslint/type-utils': 8.21.0(eslint@9.19.0)(typescript@5.7.3) 2455 | '@typescript-eslint/utils': 8.21.0(eslint@9.19.0)(typescript@5.7.3) 2456 | '@typescript-eslint/visitor-keys': 8.21.0 2457 | eslint: 9.19.0 2458 | graphemer: 1.4.0 2459 | ignore: 5.3.2 2460 | natural-compare: 1.4.0 2461 | ts-api-utils: 2.0.0(typescript@5.7.3) 2462 | typescript: 5.7.3 2463 | transitivePeerDependencies: 2464 | - supports-color 2465 | 2466 | '@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3)': 2467 | dependencies: 2468 | '@typescript-eslint/scope-manager': 8.21.0 2469 | '@typescript-eslint/types': 8.21.0 2470 | '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3) 2471 | '@typescript-eslint/visitor-keys': 8.21.0 2472 | debug: 4.4.0 2473 | eslint: 9.19.0 2474 | typescript: 5.7.3 2475 | transitivePeerDependencies: 2476 | - supports-color 2477 | 2478 | '@typescript-eslint/scope-manager@8.21.0': 2479 | dependencies: 2480 | '@typescript-eslint/types': 8.21.0 2481 | '@typescript-eslint/visitor-keys': 8.21.0 2482 | 2483 | '@typescript-eslint/type-utils@8.21.0(eslint@9.19.0)(typescript@5.7.3)': 2484 | dependencies: 2485 | '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3) 2486 | '@typescript-eslint/utils': 8.21.0(eslint@9.19.0)(typescript@5.7.3) 2487 | debug: 4.4.0 2488 | eslint: 9.19.0 2489 | ts-api-utils: 2.0.0(typescript@5.7.3) 2490 | typescript: 5.7.3 2491 | transitivePeerDependencies: 2492 | - supports-color 2493 | 2494 | '@typescript-eslint/types@8.21.0': {} 2495 | 2496 | '@typescript-eslint/typescript-estree@8.21.0(typescript@5.7.3)': 2497 | dependencies: 2498 | '@typescript-eslint/types': 8.21.0 2499 | '@typescript-eslint/visitor-keys': 8.21.0 2500 | debug: 4.4.0 2501 | fast-glob: 3.3.3 2502 | is-glob: 4.0.3 2503 | minimatch: 9.0.5 2504 | semver: 7.6.3 2505 | ts-api-utils: 2.0.0(typescript@5.7.3) 2506 | typescript: 5.7.3 2507 | transitivePeerDependencies: 2508 | - supports-color 2509 | 2510 | '@typescript-eslint/utils@8.21.0(eslint@9.19.0)(typescript@5.7.3)': 2511 | dependencies: 2512 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0) 2513 | '@typescript-eslint/scope-manager': 8.21.0 2514 | '@typescript-eslint/types': 8.21.0 2515 | '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3) 2516 | eslint: 9.19.0 2517 | typescript: 5.7.3 2518 | transitivePeerDependencies: 2519 | - supports-color 2520 | 2521 | '@typescript-eslint/visitor-keys@8.21.0': 2522 | dependencies: 2523 | '@typescript-eslint/types': 8.21.0 2524 | eslint-visitor-keys: 4.2.0 2525 | 2526 | '@vitest/expect@3.0.4': 2527 | dependencies: 2528 | '@vitest/spy': 3.0.4 2529 | '@vitest/utils': 3.0.4 2530 | chai: 5.1.2 2531 | tinyrainbow: 2.0.0 2532 | 2533 | '@vitest/mocker@3.0.4(vite@6.0.11(@types/node@22.10.10))': 2534 | dependencies: 2535 | '@vitest/spy': 3.0.4 2536 | estree-walker: 3.0.3 2537 | magic-string: 0.30.17 2538 | optionalDependencies: 2539 | vite: 6.0.11(@types/node@22.10.10) 2540 | 2541 | '@vitest/pretty-format@3.0.4': 2542 | dependencies: 2543 | tinyrainbow: 2.0.0 2544 | 2545 | '@vitest/runner@3.0.4': 2546 | dependencies: 2547 | '@vitest/utils': 3.0.4 2548 | pathe: 2.0.2 2549 | 2550 | '@vitest/snapshot@3.0.4': 2551 | dependencies: 2552 | '@vitest/pretty-format': 3.0.4 2553 | magic-string: 0.30.17 2554 | pathe: 2.0.2 2555 | 2556 | '@vitest/spy@3.0.4': 2557 | dependencies: 2558 | tinyspy: 3.0.2 2559 | 2560 | '@vitest/utils@3.0.4': 2561 | dependencies: 2562 | '@vitest/pretty-format': 3.0.4 2563 | loupe: 3.1.2 2564 | tinyrainbow: 2.0.0 2565 | 2566 | acorn-jsx@5.3.2(acorn@8.14.0): 2567 | dependencies: 2568 | acorn: 8.14.0 2569 | 2570 | acorn@8.14.0: {} 2571 | 2572 | ajv@6.12.6: 2573 | dependencies: 2574 | fast-deep-equal: 3.1.3 2575 | fast-json-stable-stringify: 2.1.0 2576 | json-schema-traverse: 0.4.1 2577 | uri-js: 4.4.1 2578 | 2579 | ansi-regex@5.0.1: {} 2580 | 2581 | ansi-styles@4.3.0: 2582 | dependencies: 2583 | color-convert: 2.0.1 2584 | 2585 | ansi-styles@5.2.0: {} 2586 | 2587 | argparse@2.0.1: {} 2588 | 2589 | aria-query@5.3.0: 2590 | dependencies: 2591 | dequal: 2.0.3 2592 | 2593 | aria-query@5.3.2: {} 2594 | 2595 | array-buffer-byte-length@1.0.2: 2596 | dependencies: 2597 | call-bound: 1.0.3 2598 | is-array-buffer: 3.0.5 2599 | 2600 | array-includes@3.1.8: 2601 | dependencies: 2602 | call-bind: 1.0.8 2603 | define-properties: 1.2.1 2604 | es-abstract: 1.23.9 2605 | es-object-atoms: 1.1.1 2606 | get-intrinsic: 1.2.7 2607 | is-string: 1.1.1 2608 | 2609 | array.prototype.findlast@1.2.5: 2610 | dependencies: 2611 | call-bind: 1.0.8 2612 | define-properties: 1.2.1 2613 | es-abstract: 1.23.9 2614 | es-errors: 1.3.0 2615 | es-object-atoms: 1.1.1 2616 | es-shim-unscopables: 1.0.2 2617 | 2618 | array.prototype.findlastindex@1.2.5: 2619 | dependencies: 2620 | call-bind: 1.0.8 2621 | define-properties: 1.2.1 2622 | es-abstract: 1.23.9 2623 | es-errors: 1.3.0 2624 | es-object-atoms: 1.1.1 2625 | es-shim-unscopables: 1.0.2 2626 | 2627 | array.prototype.flat@1.3.3: 2628 | dependencies: 2629 | call-bind: 1.0.8 2630 | define-properties: 1.2.1 2631 | es-abstract: 1.23.9 2632 | es-shim-unscopables: 1.0.2 2633 | 2634 | array.prototype.flatmap@1.3.3: 2635 | dependencies: 2636 | call-bind: 1.0.8 2637 | define-properties: 1.2.1 2638 | es-abstract: 1.23.9 2639 | es-shim-unscopables: 1.0.2 2640 | 2641 | array.prototype.tosorted@1.1.4: 2642 | dependencies: 2643 | call-bind: 1.0.8 2644 | define-properties: 1.2.1 2645 | es-abstract: 1.23.9 2646 | es-errors: 1.3.0 2647 | es-shim-unscopables: 1.0.2 2648 | 2649 | arraybuffer.prototype.slice@1.0.4: 2650 | dependencies: 2651 | array-buffer-byte-length: 1.0.2 2652 | call-bind: 1.0.8 2653 | define-properties: 1.2.1 2654 | es-abstract: 1.23.9 2655 | es-errors: 1.3.0 2656 | get-intrinsic: 1.2.7 2657 | is-array-buffer: 3.0.5 2658 | 2659 | assertion-error@2.0.1: {} 2660 | 2661 | ast-types-flow@0.0.8: {} 2662 | 2663 | async-function@1.0.0: {} 2664 | 2665 | available-typed-arrays@1.0.7: 2666 | dependencies: 2667 | possible-typed-array-names: 1.0.0 2668 | 2669 | axe-core@4.10.2: {} 2670 | 2671 | axobject-query@4.1.0: {} 2672 | 2673 | balanced-match@1.0.2: {} 2674 | 2675 | brace-expansion@1.1.11: 2676 | dependencies: 2677 | balanced-match: 1.0.2 2678 | concat-map: 0.0.1 2679 | 2680 | brace-expansion@2.0.1: 2681 | dependencies: 2682 | balanced-match: 1.0.2 2683 | 2684 | braces@3.0.3: 2685 | dependencies: 2686 | fill-range: 7.1.1 2687 | 2688 | browserslist@4.24.5: 2689 | dependencies: 2690 | caniuse-lite: 1.0.30001718 2691 | electron-to-chromium: 1.5.157 2692 | node-releases: 2.0.19 2693 | update-browserslist-db: 1.1.3(browserslist@4.24.5) 2694 | 2695 | cac@6.7.14: {} 2696 | 2697 | call-bind-apply-helpers@1.0.1: 2698 | dependencies: 2699 | es-errors: 1.3.0 2700 | function-bind: 1.1.2 2701 | 2702 | call-bind@1.0.8: 2703 | dependencies: 2704 | call-bind-apply-helpers: 1.0.1 2705 | es-define-property: 1.0.1 2706 | get-intrinsic: 1.2.7 2707 | set-function-length: 1.2.2 2708 | 2709 | call-bound@1.0.3: 2710 | dependencies: 2711 | call-bind-apply-helpers: 1.0.1 2712 | get-intrinsic: 1.2.7 2713 | 2714 | callsites@3.1.0: {} 2715 | 2716 | caniuse-lite@1.0.30001718: {} 2717 | 2718 | chai@5.1.2: 2719 | dependencies: 2720 | assertion-error: 2.0.1 2721 | check-error: 2.1.1 2722 | deep-eql: 5.0.2 2723 | loupe: 3.1.2 2724 | pathval: 2.0.0 2725 | 2726 | chalk@3.0.0: 2727 | dependencies: 2728 | ansi-styles: 4.3.0 2729 | supports-color: 7.2.0 2730 | 2731 | chalk@4.1.2: 2732 | dependencies: 2733 | ansi-styles: 4.3.0 2734 | supports-color: 7.2.0 2735 | 2736 | check-error@2.1.1: {} 2737 | 2738 | color-convert@2.0.1: 2739 | dependencies: 2740 | color-name: 1.1.4 2741 | 2742 | color-name@1.1.4: {} 2743 | 2744 | concat-map@0.0.1: {} 2745 | 2746 | convert-source-map@2.0.0: {} 2747 | 2748 | cross-spawn@7.0.6: 2749 | dependencies: 2750 | path-key: 3.1.1 2751 | shebang-command: 2.0.0 2752 | which: 2.0.2 2753 | 2754 | css.escape@1.5.1: {} 2755 | 2756 | csstype@3.1.3: {} 2757 | 2758 | damerau-levenshtein@1.0.8: {} 2759 | 2760 | data-view-buffer@1.0.2: 2761 | dependencies: 2762 | call-bound: 1.0.3 2763 | es-errors: 1.3.0 2764 | is-data-view: 1.0.2 2765 | 2766 | data-view-byte-length@1.0.2: 2767 | dependencies: 2768 | call-bound: 1.0.3 2769 | es-errors: 1.3.0 2770 | is-data-view: 1.0.2 2771 | 2772 | data-view-byte-offset@1.0.1: 2773 | dependencies: 2774 | call-bound: 1.0.3 2775 | es-errors: 1.3.0 2776 | is-data-view: 1.0.2 2777 | 2778 | debug@3.2.7: 2779 | dependencies: 2780 | ms: 2.1.3 2781 | 2782 | debug@4.4.0: 2783 | dependencies: 2784 | ms: 2.1.3 2785 | 2786 | deep-eql@5.0.2: {} 2787 | 2788 | deep-is@0.1.4: {} 2789 | 2790 | define-data-property@1.1.4: 2791 | dependencies: 2792 | es-define-property: 1.0.1 2793 | es-errors: 1.3.0 2794 | gopd: 1.2.0 2795 | 2796 | define-properties@1.2.1: 2797 | dependencies: 2798 | define-data-property: 1.1.4 2799 | has-property-descriptors: 1.0.2 2800 | object-keys: 1.1.1 2801 | 2802 | dequal@2.0.3: {} 2803 | 2804 | doctrine@2.1.0: 2805 | dependencies: 2806 | esutils: 2.0.3 2807 | 2808 | dom-accessibility-api@0.5.16: {} 2809 | 2810 | dom-accessibility-api@0.6.3: {} 2811 | 2812 | dunder-proto@1.0.1: 2813 | dependencies: 2814 | call-bind-apply-helpers: 1.0.1 2815 | es-errors: 1.3.0 2816 | gopd: 1.2.0 2817 | 2818 | electron-to-chromium@1.5.157: {} 2819 | 2820 | emoji-regex@9.2.2: {} 2821 | 2822 | enhanced-resolve@5.18.0: 2823 | dependencies: 2824 | graceful-fs: 4.2.11 2825 | tapable: 2.2.1 2826 | 2827 | es-abstract@1.23.9: 2828 | dependencies: 2829 | array-buffer-byte-length: 1.0.2 2830 | arraybuffer.prototype.slice: 1.0.4 2831 | available-typed-arrays: 1.0.7 2832 | call-bind: 1.0.8 2833 | call-bound: 1.0.3 2834 | data-view-buffer: 1.0.2 2835 | data-view-byte-length: 1.0.2 2836 | data-view-byte-offset: 1.0.1 2837 | es-define-property: 1.0.1 2838 | es-errors: 1.3.0 2839 | es-object-atoms: 1.1.1 2840 | es-set-tostringtag: 2.1.0 2841 | es-to-primitive: 1.3.0 2842 | function.prototype.name: 1.1.8 2843 | get-intrinsic: 1.2.7 2844 | get-proto: 1.0.1 2845 | get-symbol-description: 1.1.0 2846 | globalthis: 1.0.4 2847 | gopd: 1.2.0 2848 | has-property-descriptors: 1.0.2 2849 | has-proto: 1.2.0 2850 | has-symbols: 1.1.0 2851 | hasown: 2.0.2 2852 | internal-slot: 1.1.0 2853 | is-array-buffer: 3.0.5 2854 | is-callable: 1.2.7 2855 | is-data-view: 1.0.2 2856 | is-regex: 1.2.1 2857 | is-shared-array-buffer: 1.0.4 2858 | is-string: 1.1.1 2859 | is-typed-array: 1.1.15 2860 | is-weakref: 1.1.0 2861 | math-intrinsics: 1.1.0 2862 | object-inspect: 1.13.3 2863 | object-keys: 1.1.1 2864 | object.assign: 4.1.7 2865 | own-keys: 1.0.1 2866 | regexp.prototype.flags: 1.5.4 2867 | safe-array-concat: 1.1.3 2868 | safe-push-apply: 1.0.0 2869 | safe-regex-test: 1.1.0 2870 | set-proto: 1.0.0 2871 | string.prototype.trim: 1.2.10 2872 | string.prototype.trimend: 1.0.9 2873 | string.prototype.trimstart: 1.0.8 2874 | typed-array-buffer: 1.0.3 2875 | typed-array-byte-length: 1.0.3 2876 | typed-array-byte-offset: 1.0.4 2877 | typed-array-length: 1.0.7 2878 | unbox-primitive: 1.1.0 2879 | which-typed-array: 1.1.18 2880 | 2881 | es-define-property@1.0.1: {} 2882 | 2883 | es-errors@1.3.0: {} 2884 | 2885 | es-iterator-helpers@1.2.1: 2886 | dependencies: 2887 | call-bind: 1.0.8 2888 | call-bound: 1.0.3 2889 | define-properties: 1.2.1 2890 | es-abstract: 1.23.9 2891 | es-errors: 1.3.0 2892 | es-set-tostringtag: 2.1.0 2893 | function-bind: 1.1.2 2894 | get-intrinsic: 1.2.7 2895 | globalthis: 1.0.4 2896 | gopd: 1.2.0 2897 | has-property-descriptors: 1.0.2 2898 | has-proto: 1.2.0 2899 | has-symbols: 1.1.0 2900 | internal-slot: 1.1.0 2901 | iterator.prototype: 1.1.5 2902 | safe-array-concat: 1.1.3 2903 | 2904 | es-module-lexer@1.6.0: {} 2905 | 2906 | es-object-atoms@1.1.1: 2907 | dependencies: 2908 | es-errors: 1.3.0 2909 | 2910 | es-set-tostringtag@2.1.0: 2911 | dependencies: 2912 | es-errors: 1.3.0 2913 | get-intrinsic: 1.2.7 2914 | has-tostringtag: 1.0.2 2915 | hasown: 2.0.2 2916 | 2917 | es-shim-unscopables@1.0.2: 2918 | dependencies: 2919 | hasown: 2.0.2 2920 | 2921 | es-to-primitive@1.3.0: 2922 | dependencies: 2923 | is-callable: 1.2.7 2924 | is-date-object: 1.1.0 2925 | is-symbol: 1.1.1 2926 | 2927 | esbuild@0.24.2: 2928 | optionalDependencies: 2929 | '@esbuild/aix-ppc64': 0.24.2 2930 | '@esbuild/android-arm': 0.24.2 2931 | '@esbuild/android-arm64': 0.24.2 2932 | '@esbuild/android-x64': 0.24.2 2933 | '@esbuild/darwin-arm64': 0.24.2 2934 | '@esbuild/darwin-x64': 0.24.2 2935 | '@esbuild/freebsd-arm64': 0.24.2 2936 | '@esbuild/freebsd-x64': 0.24.2 2937 | '@esbuild/linux-arm': 0.24.2 2938 | '@esbuild/linux-arm64': 0.24.2 2939 | '@esbuild/linux-ia32': 0.24.2 2940 | '@esbuild/linux-loong64': 0.24.2 2941 | '@esbuild/linux-mips64el': 0.24.2 2942 | '@esbuild/linux-ppc64': 0.24.2 2943 | '@esbuild/linux-riscv64': 0.24.2 2944 | '@esbuild/linux-s390x': 0.24.2 2945 | '@esbuild/linux-x64': 0.24.2 2946 | '@esbuild/netbsd-arm64': 0.24.2 2947 | '@esbuild/netbsd-x64': 0.24.2 2948 | '@esbuild/openbsd-arm64': 0.24.2 2949 | '@esbuild/openbsd-x64': 0.24.2 2950 | '@esbuild/sunos-x64': 0.24.2 2951 | '@esbuild/win32-arm64': 0.24.2 2952 | '@esbuild/win32-ia32': 0.24.2 2953 | '@esbuild/win32-x64': 0.24.2 2954 | 2955 | escalade@3.2.0: {} 2956 | 2957 | escape-string-regexp@4.0.0: {} 2958 | 2959 | eslint-import-resolver-node@0.3.9: 2960 | dependencies: 2961 | debug: 3.2.7 2962 | is-core-module: 2.16.1 2963 | resolve: 1.22.10 2964 | transitivePeerDependencies: 2965 | - supports-color 2966 | 2967 | eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@9.19.0): 2968 | dependencies: 2969 | '@nolyfill/is-core-module': 1.0.39 2970 | debug: 4.4.0 2971 | enhanced-resolve: 5.18.0 2972 | eslint: 9.19.0 2973 | fast-glob: 3.3.3 2974 | get-tsconfig: 4.10.0 2975 | is-bun-module: 1.3.0 2976 | is-glob: 4.0.3 2977 | stable-hash: 0.0.4 2978 | optionalDependencies: 2979 | eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.19.0) 2980 | transitivePeerDependencies: 2981 | - supports-color 2982 | 2983 | eslint-module-utils@2.12.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@9.19.0): 2984 | dependencies: 2985 | debug: 3.2.7 2986 | optionalDependencies: 2987 | '@typescript-eslint/parser': 8.21.0(eslint@9.19.0)(typescript@5.7.3) 2988 | eslint: 9.19.0 2989 | eslint-import-resolver-node: 0.3.9 2990 | eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.19.0) 2991 | transitivePeerDependencies: 2992 | - supports-color 2993 | 2994 | eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@9.19.0): 2995 | dependencies: 2996 | '@rtsao/scc': 1.1.0 2997 | array-includes: 3.1.8 2998 | array.prototype.findlastindex: 1.2.5 2999 | array.prototype.flat: 1.3.3 3000 | array.prototype.flatmap: 1.3.3 3001 | debug: 3.2.7 3002 | doctrine: 2.1.0 3003 | eslint: 9.19.0 3004 | eslint-import-resolver-node: 0.3.9 3005 | eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@9.19.0))(eslint@9.19.0) 3006 | hasown: 2.0.2 3007 | is-core-module: 2.16.1 3008 | is-glob: 4.0.3 3009 | minimatch: 3.1.2 3010 | object.fromentries: 2.0.8 3011 | object.groupby: 1.0.3 3012 | object.values: 1.2.1 3013 | semver: 6.3.1 3014 | string.prototype.trimend: 1.0.9 3015 | tsconfig-paths: 3.15.0 3016 | optionalDependencies: 3017 | '@typescript-eslint/parser': 8.21.0(eslint@9.19.0)(typescript@5.7.3) 3018 | transitivePeerDependencies: 3019 | - eslint-import-resolver-typescript 3020 | - eslint-import-resolver-webpack 3021 | - supports-color 3022 | 3023 | eslint-plugin-jsx-a11y@6.10.2(eslint@9.19.0): 3024 | dependencies: 3025 | aria-query: 5.3.2 3026 | array-includes: 3.1.8 3027 | array.prototype.flatmap: 1.3.3 3028 | ast-types-flow: 0.0.8 3029 | axe-core: 4.10.2 3030 | axobject-query: 4.1.0 3031 | damerau-levenshtein: 1.0.8 3032 | emoji-regex: 9.2.2 3033 | eslint: 9.19.0 3034 | hasown: 2.0.2 3035 | jsx-ast-utils: 3.3.5 3036 | language-tags: 1.0.9 3037 | minimatch: 3.1.2 3038 | object.fromentries: 2.0.8 3039 | safe-regex-test: 1.1.0 3040 | string.prototype.includes: 2.0.1 3041 | 3042 | eslint-plugin-react-hooks@6.0.0-rc.1(eslint@9.19.0): 3043 | dependencies: 3044 | '@babel/core': 7.27.1 3045 | '@babel/parser': 7.27.2 3046 | '@babel/plugin-transform-private-methods': 7.27.1(@babel/core@7.27.1) 3047 | eslint: 9.19.0 3048 | hermes-parser: 0.25.1 3049 | zod: 3.25.23 3050 | zod-validation-error: 3.4.1(zod@3.25.23) 3051 | transitivePeerDependencies: 3052 | - supports-color 3053 | 3054 | eslint-plugin-react@7.37.4(eslint@9.19.0): 3055 | dependencies: 3056 | array-includes: 3.1.8 3057 | array.prototype.findlast: 1.2.5 3058 | array.prototype.flatmap: 1.3.3 3059 | array.prototype.tosorted: 1.1.4 3060 | doctrine: 2.1.0 3061 | es-iterator-helpers: 1.2.1 3062 | eslint: 9.19.0 3063 | estraverse: 5.3.0 3064 | hasown: 2.0.2 3065 | jsx-ast-utils: 3.3.5 3066 | minimatch: 3.1.2 3067 | object.entries: 1.1.8 3068 | object.fromentries: 2.0.8 3069 | object.values: 1.2.1 3070 | prop-types: 15.8.1 3071 | resolve: 2.0.0-next.5 3072 | semver: 6.3.1 3073 | string.prototype.matchall: 4.0.12 3074 | string.prototype.repeat: 1.0.0 3075 | 3076 | eslint-scope@8.2.0: 3077 | dependencies: 3078 | esrecurse: 4.3.0 3079 | estraverse: 5.3.0 3080 | 3081 | eslint-visitor-keys@3.4.3: {} 3082 | 3083 | eslint-visitor-keys@4.2.0: {} 3084 | 3085 | eslint@9.19.0: 3086 | dependencies: 3087 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.19.0) 3088 | '@eslint-community/regexpp': 4.12.1 3089 | '@eslint/config-array': 0.19.1 3090 | '@eslint/core': 0.10.0 3091 | '@eslint/eslintrc': 3.2.0 3092 | '@eslint/js': 9.19.0 3093 | '@eslint/plugin-kit': 0.2.5 3094 | '@humanfs/node': 0.16.6 3095 | '@humanwhocodes/module-importer': 1.0.1 3096 | '@humanwhocodes/retry': 0.4.1 3097 | '@types/estree': 1.0.6 3098 | '@types/json-schema': 7.0.15 3099 | ajv: 6.12.6 3100 | chalk: 4.1.2 3101 | cross-spawn: 7.0.6 3102 | debug: 4.4.0 3103 | escape-string-regexp: 4.0.0 3104 | eslint-scope: 8.2.0 3105 | eslint-visitor-keys: 4.2.0 3106 | espree: 10.3.0 3107 | esquery: 1.6.0 3108 | esutils: 2.0.3 3109 | fast-deep-equal: 3.1.3 3110 | file-entry-cache: 8.0.0 3111 | find-up: 5.0.0 3112 | glob-parent: 6.0.2 3113 | ignore: 5.3.2 3114 | imurmurhash: 0.1.4 3115 | is-glob: 4.0.3 3116 | json-stable-stringify-without-jsonify: 1.0.1 3117 | lodash.merge: 4.6.2 3118 | minimatch: 3.1.2 3119 | natural-compare: 1.4.0 3120 | optionator: 0.9.4 3121 | transitivePeerDependencies: 3122 | - supports-color 3123 | 3124 | espree@10.3.0: 3125 | dependencies: 3126 | acorn: 8.14.0 3127 | acorn-jsx: 5.3.2(acorn@8.14.0) 3128 | eslint-visitor-keys: 4.2.0 3129 | 3130 | esquery@1.6.0: 3131 | dependencies: 3132 | estraverse: 5.3.0 3133 | 3134 | esrecurse@4.3.0: 3135 | dependencies: 3136 | estraverse: 5.3.0 3137 | 3138 | estraverse@5.3.0: {} 3139 | 3140 | estree-walker@3.0.3: 3141 | dependencies: 3142 | '@types/estree': 1.0.6 3143 | 3144 | esutils@2.0.3: {} 3145 | 3146 | expect-type@1.1.0: {} 3147 | 3148 | fast-deep-equal@3.1.3: {} 3149 | 3150 | fast-glob@3.3.3: 3151 | dependencies: 3152 | '@nodelib/fs.stat': 2.0.5 3153 | '@nodelib/fs.walk': 1.2.8 3154 | glob-parent: 5.1.2 3155 | merge2: 1.4.1 3156 | micromatch: 4.0.8 3157 | 3158 | fast-json-stable-stringify@2.1.0: {} 3159 | 3160 | fast-levenshtein@2.0.6: {} 3161 | 3162 | fastq@1.18.0: 3163 | dependencies: 3164 | reusify: 1.0.4 3165 | 3166 | file-entry-cache@8.0.0: 3167 | dependencies: 3168 | flat-cache: 4.0.1 3169 | 3170 | fill-range@7.1.1: 3171 | dependencies: 3172 | to-regex-range: 5.0.1 3173 | 3174 | find-up@5.0.0: 3175 | dependencies: 3176 | locate-path: 6.0.0 3177 | path-exists: 4.0.0 3178 | 3179 | flat-cache@4.0.1: 3180 | dependencies: 3181 | flatted: 3.3.2 3182 | keyv: 4.5.4 3183 | 3184 | flatted@3.3.2: {} 3185 | 3186 | for-each@0.3.4: 3187 | dependencies: 3188 | is-callable: 1.2.7 3189 | 3190 | fsevents@2.3.3: 3191 | optional: true 3192 | 3193 | function-bind@1.1.2: {} 3194 | 3195 | function.prototype.name@1.1.8: 3196 | dependencies: 3197 | call-bind: 1.0.8 3198 | call-bound: 1.0.3 3199 | define-properties: 1.2.1 3200 | functions-have-names: 1.2.3 3201 | hasown: 2.0.2 3202 | is-callable: 1.2.7 3203 | 3204 | functions-have-names@1.2.3: {} 3205 | 3206 | gensync@1.0.0-beta.2: {} 3207 | 3208 | get-intrinsic@1.2.7: 3209 | dependencies: 3210 | call-bind-apply-helpers: 1.0.1 3211 | es-define-property: 1.0.1 3212 | es-errors: 1.3.0 3213 | es-object-atoms: 1.1.1 3214 | function-bind: 1.1.2 3215 | get-proto: 1.0.1 3216 | gopd: 1.2.0 3217 | has-symbols: 1.1.0 3218 | hasown: 2.0.2 3219 | math-intrinsics: 1.1.0 3220 | 3221 | get-proto@1.0.1: 3222 | dependencies: 3223 | dunder-proto: 1.0.1 3224 | es-object-atoms: 1.1.1 3225 | 3226 | get-symbol-description@1.1.0: 3227 | dependencies: 3228 | call-bound: 1.0.3 3229 | es-errors: 1.3.0 3230 | get-intrinsic: 1.2.7 3231 | 3232 | get-tsconfig@4.10.0: 3233 | dependencies: 3234 | resolve-pkg-maps: 1.0.0 3235 | 3236 | glob-parent@5.1.2: 3237 | dependencies: 3238 | is-glob: 4.0.3 3239 | 3240 | glob-parent@6.0.2: 3241 | dependencies: 3242 | is-glob: 4.0.3 3243 | 3244 | globals@11.12.0: {} 3245 | 3246 | globals@14.0.0: {} 3247 | 3248 | globalthis@1.0.4: 3249 | dependencies: 3250 | define-properties: 1.2.1 3251 | gopd: 1.2.0 3252 | 3253 | globrex@0.1.2: {} 3254 | 3255 | gopd@1.2.0: {} 3256 | 3257 | graceful-fs@4.2.11: {} 3258 | 3259 | graphemer@1.4.0: {} 3260 | 3261 | happy-dom@16.7.2: 3262 | dependencies: 3263 | webidl-conversions: 7.0.0 3264 | whatwg-mimetype: 3.0.0 3265 | 3266 | has-bigints@1.1.0: {} 3267 | 3268 | has-flag@4.0.0: {} 3269 | 3270 | has-property-descriptors@1.0.2: 3271 | dependencies: 3272 | es-define-property: 1.0.1 3273 | 3274 | has-proto@1.2.0: 3275 | dependencies: 3276 | dunder-proto: 1.0.1 3277 | 3278 | has-symbols@1.1.0: {} 3279 | 3280 | has-tostringtag@1.0.2: 3281 | dependencies: 3282 | has-symbols: 1.1.0 3283 | 3284 | hasown@2.0.2: 3285 | dependencies: 3286 | function-bind: 1.1.2 3287 | 3288 | hermes-estree@0.25.1: {} 3289 | 3290 | hermes-parser@0.25.1: 3291 | dependencies: 3292 | hermes-estree: 0.25.1 3293 | 3294 | ignore@5.3.2: {} 3295 | 3296 | import-fresh@3.3.0: 3297 | dependencies: 3298 | parent-module: 1.0.1 3299 | resolve-from: 4.0.0 3300 | 3301 | imurmurhash@0.1.4: {} 3302 | 3303 | indent-string@4.0.0: {} 3304 | 3305 | internal-slot@1.1.0: 3306 | dependencies: 3307 | es-errors: 1.3.0 3308 | hasown: 2.0.2 3309 | side-channel: 1.1.0 3310 | 3311 | is-array-buffer@3.0.5: 3312 | dependencies: 3313 | call-bind: 1.0.8 3314 | call-bound: 1.0.3 3315 | get-intrinsic: 1.2.7 3316 | 3317 | is-async-function@2.1.1: 3318 | dependencies: 3319 | async-function: 1.0.0 3320 | call-bound: 1.0.3 3321 | get-proto: 1.0.1 3322 | has-tostringtag: 1.0.2 3323 | safe-regex-test: 1.1.0 3324 | 3325 | is-bigint@1.1.0: 3326 | dependencies: 3327 | has-bigints: 1.1.0 3328 | 3329 | is-boolean-object@1.2.1: 3330 | dependencies: 3331 | call-bound: 1.0.3 3332 | has-tostringtag: 1.0.2 3333 | 3334 | is-bun-module@1.3.0: 3335 | dependencies: 3336 | semver: 7.6.3 3337 | 3338 | is-callable@1.2.7: {} 3339 | 3340 | is-core-module@2.16.1: 3341 | dependencies: 3342 | hasown: 2.0.2 3343 | 3344 | is-data-view@1.0.2: 3345 | dependencies: 3346 | call-bound: 1.0.3 3347 | get-intrinsic: 1.2.7 3348 | is-typed-array: 1.1.15 3349 | 3350 | is-date-object@1.1.0: 3351 | dependencies: 3352 | call-bound: 1.0.3 3353 | has-tostringtag: 1.0.2 3354 | 3355 | is-extglob@2.1.1: {} 3356 | 3357 | is-finalizationregistry@1.1.1: 3358 | dependencies: 3359 | call-bound: 1.0.3 3360 | 3361 | is-generator-function@1.1.0: 3362 | dependencies: 3363 | call-bound: 1.0.3 3364 | get-proto: 1.0.1 3365 | has-tostringtag: 1.0.2 3366 | safe-regex-test: 1.1.0 3367 | 3368 | is-glob@4.0.3: 3369 | dependencies: 3370 | is-extglob: 2.1.1 3371 | 3372 | is-map@2.0.3: {} 3373 | 3374 | is-number-object@1.1.1: 3375 | dependencies: 3376 | call-bound: 1.0.3 3377 | has-tostringtag: 1.0.2 3378 | 3379 | is-number@7.0.0: {} 3380 | 3381 | is-regex@1.2.1: 3382 | dependencies: 3383 | call-bound: 1.0.3 3384 | gopd: 1.2.0 3385 | has-tostringtag: 1.0.2 3386 | hasown: 2.0.2 3387 | 3388 | is-set@2.0.3: {} 3389 | 3390 | is-shared-array-buffer@1.0.4: 3391 | dependencies: 3392 | call-bound: 1.0.3 3393 | 3394 | is-string@1.1.1: 3395 | dependencies: 3396 | call-bound: 1.0.3 3397 | has-tostringtag: 1.0.2 3398 | 3399 | is-symbol@1.1.1: 3400 | dependencies: 3401 | call-bound: 1.0.3 3402 | has-symbols: 1.1.0 3403 | safe-regex-test: 1.1.0 3404 | 3405 | is-typed-array@1.1.15: 3406 | dependencies: 3407 | which-typed-array: 1.1.18 3408 | 3409 | is-weakmap@2.0.2: {} 3410 | 3411 | is-weakref@1.1.0: 3412 | dependencies: 3413 | call-bound: 1.0.3 3414 | 3415 | is-weakset@2.0.4: 3416 | dependencies: 3417 | call-bound: 1.0.3 3418 | get-intrinsic: 1.2.7 3419 | 3420 | isarray@2.0.5: {} 3421 | 3422 | isexe@2.0.0: {} 3423 | 3424 | iterator.prototype@1.1.5: 3425 | dependencies: 3426 | define-data-property: 1.1.4 3427 | es-object-atoms: 1.1.1 3428 | get-intrinsic: 1.2.7 3429 | get-proto: 1.0.1 3430 | has-symbols: 1.1.0 3431 | set-function-name: 2.0.2 3432 | 3433 | js-tokens@4.0.0: {} 3434 | 3435 | js-yaml@4.1.0: 3436 | dependencies: 3437 | argparse: 2.0.1 3438 | 3439 | jsesc@3.1.0: {} 3440 | 3441 | json-buffer@3.0.1: {} 3442 | 3443 | json-schema-traverse@0.4.1: {} 3444 | 3445 | json-stable-stringify-without-jsonify@1.0.1: {} 3446 | 3447 | json5@1.0.2: 3448 | dependencies: 3449 | minimist: 1.2.8 3450 | 3451 | json5@2.2.3: {} 3452 | 3453 | jsx-ast-utils@3.3.5: 3454 | dependencies: 3455 | array-includes: 3.1.8 3456 | array.prototype.flat: 1.3.3 3457 | object.assign: 4.1.7 3458 | object.values: 1.2.1 3459 | 3460 | keyv@4.5.4: 3461 | dependencies: 3462 | json-buffer: 3.0.1 3463 | 3464 | language-subtag-registry@0.3.23: {} 3465 | 3466 | language-tags@1.0.9: 3467 | dependencies: 3468 | language-subtag-registry: 0.3.23 3469 | 3470 | levn@0.4.1: 3471 | dependencies: 3472 | prelude-ls: 1.2.1 3473 | type-check: 0.4.0 3474 | 3475 | locate-path@6.0.0: 3476 | dependencies: 3477 | p-locate: 5.0.0 3478 | 3479 | lodash.merge@4.6.2: {} 3480 | 3481 | lodash@4.17.21: {} 3482 | 3483 | loose-envify@1.4.0: 3484 | dependencies: 3485 | js-tokens: 4.0.0 3486 | 3487 | loupe@3.1.2: {} 3488 | 3489 | lru-cache@5.1.1: 3490 | dependencies: 3491 | yallist: 3.1.1 3492 | 3493 | lz-string@1.5.0: {} 3494 | 3495 | magic-string@0.30.17: 3496 | dependencies: 3497 | '@jridgewell/sourcemap-codec': 1.5.0 3498 | 3499 | math-intrinsics@1.1.0: {} 3500 | 3501 | merge2@1.4.1: {} 3502 | 3503 | micromatch@4.0.8: 3504 | dependencies: 3505 | braces: 3.0.3 3506 | picomatch: 2.3.1 3507 | 3508 | min-indent@1.0.1: {} 3509 | 3510 | minimatch@3.1.2: 3511 | dependencies: 3512 | brace-expansion: 1.1.11 3513 | 3514 | minimatch@9.0.5: 3515 | dependencies: 3516 | brace-expansion: 2.0.1 3517 | 3518 | minimist@1.2.8: {} 3519 | 3520 | ms@2.1.3: {} 3521 | 3522 | nanoid@3.3.8: {} 3523 | 3524 | natural-compare@1.4.0: {} 3525 | 3526 | node-releases@2.0.19: {} 3527 | 3528 | object-assign@4.1.1: {} 3529 | 3530 | object-inspect@1.13.3: {} 3531 | 3532 | object-keys@1.1.1: {} 3533 | 3534 | object.assign@4.1.7: 3535 | dependencies: 3536 | call-bind: 1.0.8 3537 | call-bound: 1.0.3 3538 | define-properties: 1.2.1 3539 | es-object-atoms: 1.1.1 3540 | has-symbols: 1.1.0 3541 | object-keys: 1.1.1 3542 | 3543 | object.entries@1.1.8: 3544 | dependencies: 3545 | call-bind: 1.0.8 3546 | define-properties: 1.2.1 3547 | es-object-atoms: 1.1.1 3548 | 3549 | object.fromentries@2.0.8: 3550 | dependencies: 3551 | call-bind: 1.0.8 3552 | define-properties: 1.2.1 3553 | es-abstract: 1.23.9 3554 | es-object-atoms: 1.1.1 3555 | 3556 | object.groupby@1.0.3: 3557 | dependencies: 3558 | call-bind: 1.0.8 3559 | define-properties: 1.2.1 3560 | es-abstract: 1.23.9 3561 | 3562 | object.values@1.2.1: 3563 | dependencies: 3564 | call-bind: 1.0.8 3565 | call-bound: 1.0.3 3566 | define-properties: 1.2.1 3567 | es-object-atoms: 1.1.1 3568 | 3569 | optionator@0.9.4: 3570 | dependencies: 3571 | deep-is: 0.1.4 3572 | fast-levenshtein: 2.0.6 3573 | levn: 0.4.1 3574 | prelude-ls: 1.2.1 3575 | type-check: 0.4.0 3576 | word-wrap: 1.2.5 3577 | 3578 | own-keys@1.0.1: 3579 | dependencies: 3580 | get-intrinsic: 1.2.7 3581 | object-keys: 1.1.1 3582 | safe-push-apply: 1.0.0 3583 | 3584 | p-limit@3.1.0: 3585 | dependencies: 3586 | yocto-queue: 0.1.0 3587 | 3588 | p-locate@5.0.0: 3589 | dependencies: 3590 | p-limit: 3.1.0 3591 | 3592 | parent-module@1.0.1: 3593 | dependencies: 3594 | callsites: 3.1.0 3595 | 3596 | path-exists@4.0.0: {} 3597 | 3598 | path-key@3.1.1: {} 3599 | 3600 | path-parse@1.0.7: {} 3601 | 3602 | pathe@2.0.2: {} 3603 | 3604 | pathval@2.0.0: {} 3605 | 3606 | picocolors@1.1.1: {} 3607 | 3608 | picomatch@2.3.1: {} 3609 | 3610 | possible-typed-array-names@1.0.0: {} 3611 | 3612 | postcss@8.5.1: 3613 | dependencies: 3614 | nanoid: 3.3.8 3615 | picocolors: 1.1.1 3616 | source-map-js: 1.2.1 3617 | 3618 | prelude-ls@1.2.1: {} 3619 | 3620 | prettier@3.4.2: {} 3621 | 3622 | pretty-format@27.5.1: 3623 | dependencies: 3624 | ansi-regex: 5.0.1 3625 | ansi-styles: 5.2.0 3626 | react-is: 17.0.2 3627 | 3628 | prop-types@15.8.1: 3629 | dependencies: 3630 | loose-envify: 1.4.0 3631 | object-assign: 4.1.1 3632 | react-is: 16.13.1 3633 | 3634 | proxy-compare@3.0.1: {} 3635 | 3636 | punycode@2.3.1: {} 3637 | 3638 | queue-microtask@1.2.3: {} 3639 | 3640 | react-dom@19.0.0(react@19.0.0): 3641 | dependencies: 3642 | react: 19.0.0 3643 | scheduler: 0.25.0 3644 | 3645 | react-is@16.13.1: {} 3646 | 3647 | react-is@17.0.2: {} 3648 | 3649 | react@19.0.0: {} 3650 | 3651 | redent@3.0.0: 3652 | dependencies: 3653 | indent-string: 4.0.0 3654 | strip-indent: 3.0.0 3655 | 3656 | reflect.getprototypeof@1.0.10: 3657 | dependencies: 3658 | call-bind: 1.0.8 3659 | define-properties: 1.2.1 3660 | es-abstract: 1.23.9 3661 | es-errors: 1.3.0 3662 | es-object-atoms: 1.1.1 3663 | get-intrinsic: 1.2.7 3664 | get-proto: 1.0.1 3665 | which-builtin-type: 1.2.1 3666 | 3667 | regenerator-runtime@0.14.1: {} 3668 | 3669 | regexp.prototype.flags@1.5.4: 3670 | dependencies: 3671 | call-bind: 1.0.8 3672 | define-properties: 1.2.1 3673 | es-errors: 1.3.0 3674 | get-proto: 1.0.1 3675 | gopd: 1.2.0 3676 | set-function-name: 2.0.2 3677 | 3678 | resolve-from@4.0.0: {} 3679 | 3680 | resolve-pkg-maps@1.0.0: {} 3681 | 3682 | resolve@1.22.10: 3683 | dependencies: 3684 | is-core-module: 2.16.1 3685 | path-parse: 1.0.7 3686 | supports-preserve-symlinks-flag: 1.0.0 3687 | 3688 | resolve@2.0.0-next.5: 3689 | dependencies: 3690 | is-core-module: 2.16.1 3691 | path-parse: 1.0.7 3692 | supports-preserve-symlinks-flag: 1.0.0 3693 | 3694 | reusify@1.0.4: {} 3695 | 3696 | rollup@4.32.0: 3697 | dependencies: 3698 | '@types/estree': 1.0.6 3699 | optionalDependencies: 3700 | '@rollup/rollup-android-arm-eabi': 4.32.0 3701 | '@rollup/rollup-android-arm64': 4.32.0 3702 | '@rollup/rollup-darwin-arm64': 4.32.0 3703 | '@rollup/rollup-darwin-x64': 4.32.0 3704 | '@rollup/rollup-freebsd-arm64': 4.32.0 3705 | '@rollup/rollup-freebsd-x64': 4.32.0 3706 | '@rollup/rollup-linux-arm-gnueabihf': 4.32.0 3707 | '@rollup/rollup-linux-arm-musleabihf': 4.32.0 3708 | '@rollup/rollup-linux-arm64-gnu': 4.32.0 3709 | '@rollup/rollup-linux-arm64-musl': 4.32.0 3710 | '@rollup/rollup-linux-loongarch64-gnu': 4.32.0 3711 | '@rollup/rollup-linux-powerpc64le-gnu': 4.32.0 3712 | '@rollup/rollup-linux-riscv64-gnu': 4.32.0 3713 | '@rollup/rollup-linux-s390x-gnu': 4.32.0 3714 | '@rollup/rollup-linux-x64-gnu': 4.32.0 3715 | '@rollup/rollup-linux-x64-musl': 4.32.0 3716 | '@rollup/rollup-win32-arm64-msvc': 4.32.0 3717 | '@rollup/rollup-win32-ia32-msvc': 4.32.0 3718 | '@rollup/rollup-win32-x64-msvc': 4.32.0 3719 | fsevents: 2.3.3 3720 | 3721 | run-parallel@1.2.0: 3722 | dependencies: 3723 | queue-microtask: 1.2.3 3724 | 3725 | safe-array-concat@1.1.3: 3726 | dependencies: 3727 | call-bind: 1.0.8 3728 | call-bound: 1.0.3 3729 | get-intrinsic: 1.2.7 3730 | has-symbols: 1.1.0 3731 | isarray: 2.0.5 3732 | 3733 | safe-push-apply@1.0.0: 3734 | dependencies: 3735 | es-errors: 1.3.0 3736 | isarray: 2.0.5 3737 | 3738 | safe-regex-test@1.1.0: 3739 | dependencies: 3740 | call-bound: 1.0.3 3741 | es-errors: 1.3.0 3742 | is-regex: 1.2.1 3743 | 3744 | scheduler@0.25.0: {} 3745 | 3746 | semver@6.3.1: {} 3747 | 3748 | semver@7.6.3: {} 3749 | 3750 | set-function-length@1.2.2: 3751 | dependencies: 3752 | define-data-property: 1.1.4 3753 | es-errors: 1.3.0 3754 | function-bind: 1.1.2 3755 | get-intrinsic: 1.2.7 3756 | gopd: 1.2.0 3757 | has-property-descriptors: 1.0.2 3758 | 3759 | set-function-name@2.0.2: 3760 | dependencies: 3761 | define-data-property: 1.1.4 3762 | es-errors: 1.3.0 3763 | functions-have-names: 1.2.3 3764 | has-property-descriptors: 1.0.2 3765 | 3766 | set-proto@1.0.0: 3767 | dependencies: 3768 | dunder-proto: 1.0.1 3769 | es-errors: 1.3.0 3770 | es-object-atoms: 1.1.1 3771 | 3772 | shebang-command@2.0.0: 3773 | dependencies: 3774 | shebang-regex: 3.0.0 3775 | 3776 | shebang-regex@3.0.0: {} 3777 | 3778 | side-channel-list@1.0.0: 3779 | dependencies: 3780 | es-errors: 1.3.0 3781 | object-inspect: 1.13.3 3782 | 3783 | side-channel-map@1.0.1: 3784 | dependencies: 3785 | call-bound: 1.0.3 3786 | es-errors: 1.3.0 3787 | get-intrinsic: 1.2.7 3788 | object-inspect: 1.13.3 3789 | 3790 | side-channel-weakmap@1.0.2: 3791 | dependencies: 3792 | call-bound: 1.0.3 3793 | es-errors: 1.3.0 3794 | get-intrinsic: 1.2.7 3795 | object-inspect: 1.13.3 3796 | side-channel-map: 1.0.1 3797 | 3798 | side-channel@1.1.0: 3799 | dependencies: 3800 | es-errors: 1.3.0 3801 | object-inspect: 1.13.3 3802 | side-channel-list: 1.0.0 3803 | side-channel-map: 1.0.1 3804 | side-channel-weakmap: 1.0.2 3805 | 3806 | siginfo@2.0.0: {} 3807 | 3808 | source-map-js@1.2.1: {} 3809 | 3810 | stable-hash@0.0.4: {} 3811 | 3812 | stackback@0.0.2: {} 3813 | 3814 | std-env@3.8.0: {} 3815 | 3816 | string.prototype.includes@2.0.1: 3817 | dependencies: 3818 | call-bind: 1.0.8 3819 | define-properties: 1.2.1 3820 | es-abstract: 1.23.9 3821 | 3822 | string.prototype.matchall@4.0.12: 3823 | dependencies: 3824 | call-bind: 1.0.8 3825 | call-bound: 1.0.3 3826 | define-properties: 1.2.1 3827 | es-abstract: 1.23.9 3828 | es-errors: 1.3.0 3829 | es-object-atoms: 1.1.1 3830 | get-intrinsic: 1.2.7 3831 | gopd: 1.2.0 3832 | has-symbols: 1.1.0 3833 | internal-slot: 1.1.0 3834 | regexp.prototype.flags: 1.5.4 3835 | set-function-name: 2.0.2 3836 | side-channel: 1.1.0 3837 | 3838 | string.prototype.repeat@1.0.0: 3839 | dependencies: 3840 | define-properties: 1.2.1 3841 | es-abstract: 1.23.9 3842 | 3843 | string.prototype.trim@1.2.10: 3844 | dependencies: 3845 | call-bind: 1.0.8 3846 | call-bound: 1.0.3 3847 | define-data-property: 1.1.4 3848 | define-properties: 1.2.1 3849 | es-abstract: 1.23.9 3850 | es-object-atoms: 1.1.1 3851 | has-property-descriptors: 1.0.2 3852 | 3853 | string.prototype.trimend@1.0.9: 3854 | dependencies: 3855 | call-bind: 1.0.8 3856 | call-bound: 1.0.3 3857 | define-properties: 1.2.1 3858 | es-object-atoms: 1.1.1 3859 | 3860 | string.prototype.trimstart@1.0.8: 3861 | dependencies: 3862 | call-bind: 1.0.8 3863 | define-properties: 1.2.1 3864 | es-object-atoms: 1.1.1 3865 | 3866 | strip-bom@3.0.0: {} 3867 | 3868 | strip-indent@3.0.0: 3869 | dependencies: 3870 | min-indent: 1.0.1 3871 | 3872 | strip-json-comments@3.1.1: {} 3873 | 3874 | supports-color@7.2.0: 3875 | dependencies: 3876 | has-flag: 4.0.0 3877 | 3878 | supports-preserve-symlinks-flag@1.0.0: {} 3879 | 3880 | tapable@2.2.1: {} 3881 | 3882 | tinybench@2.9.0: {} 3883 | 3884 | tinyexec@0.3.2: {} 3885 | 3886 | tinypool@1.0.2: {} 3887 | 3888 | tinyrainbow@2.0.0: {} 3889 | 3890 | tinyspy@3.0.2: {} 3891 | 3892 | to-regex-range@5.0.1: 3893 | dependencies: 3894 | is-number: 7.0.0 3895 | 3896 | ts-api-utils@2.0.0(typescript@5.7.3): 3897 | dependencies: 3898 | typescript: 5.7.3 3899 | 3900 | ts-expect@1.3.0: {} 3901 | 3902 | tsconfck@3.1.4(typescript@5.7.3): 3903 | optionalDependencies: 3904 | typescript: 5.7.3 3905 | 3906 | tsconfig-paths@3.15.0: 3907 | dependencies: 3908 | '@types/json5': 0.0.29 3909 | json5: 1.0.2 3910 | minimist: 1.2.8 3911 | strip-bom: 3.0.0 3912 | 3913 | type-check@0.4.0: 3914 | dependencies: 3915 | prelude-ls: 1.2.1 3916 | 3917 | typed-array-buffer@1.0.3: 3918 | dependencies: 3919 | call-bound: 1.0.3 3920 | es-errors: 1.3.0 3921 | is-typed-array: 1.1.15 3922 | 3923 | typed-array-byte-length@1.0.3: 3924 | dependencies: 3925 | call-bind: 1.0.8 3926 | for-each: 0.3.4 3927 | gopd: 1.2.0 3928 | has-proto: 1.2.0 3929 | is-typed-array: 1.1.15 3930 | 3931 | typed-array-byte-offset@1.0.4: 3932 | dependencies: 3933 | available-typed-arrays: 1.0.7 3934 | call-bind: 1.0.8 3935 | for-each: 0.3.4 3936 | gopd: 1.2.0 3937 | has-proto: 1.2.0 3938 | is-typed-array: 1.1.15 3939 | reflect.getprototypeof: 1.0.10 3940 | 3941 | typed-array-length@1.0.7: 3942 | dependencies: 3943 | call-bind: 1.0.8 3944 | for-each: 0.3.4 3945 | gopd: 1.2.0 3946 | is-typed-array: 1.1.15 3947 | possible-typed-array-names: 1.0.0 3948 | reflect.getprototypeof: 1.0.10 3949 | 3950 | typescript-eslint@8.21.0(eslint@9.19.0)(typescript@5.7.3): 3951 | dependencies: 3952 | '@typescript-eslint/eslint-plugin': 8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.19.0)(typescript@5.7.3))(eslint@9.19.0)(typescript@5.7.3) 3953 | '@typescript-eslint/parser': 8.21.0(eslint@9.19.0)(typescript@5.7.3) 3954 | '@typescript-eslint/utils': 8.21.0(eslint@9.19.0)(typescript@5.7.3) 3955 | eslint: 9.19.0 3956 | typescript: 5.7.3 3957 | transitivePeerDependencies: 3958 | - supports-color 3959 | 3960 | typescript@5.7.3: {} 3961 | 3962 | unbox-primitive@1.1.0: 3963 | dependencies: 3964 | call-bound: 1.0.3 3965 | has-bigints: 1.1.0 3966 | has-symbols: 1.1.0 3967 | which-boxed-primitive: 1.1.1 3968 | 3969 | undici-types@6.20.0: {} 3970 | 3971 | update-browserslist-db@1.1.3(browserslist@4.24.5): 3972 | dependencies: 3973 | browserslist: 4.24.5 3974 | escalade: 3.2.0 3975 | picocolors: 1.1.1 3976 | 3977 | uri-js@4.4.1: 3978 | dependencies: 3979 | punycode: 2.3.1 3980 | 3981 | valtio@2.1.2(@types/react@19.0.8)(react@19.0.0): 3982 | dependencies: 3983 | proxy-compare: 3.0.1 3984 | optionalDependencies: 3985 | '@types/react': 19.0.8 3986 | react: 19.0.0 3987 | 3988 | vite-node@3.0.4(@types/node@22.10.10): 3989 | dependencies: 3990 | cac: 6.7.14 3991 | debug: 4.4.0 3992 | es-module-lexer: 1.6.0 3993 | pathe: 2.0.2 3994 | vite: 6.0.11(@types/node@22.10.10) 3995 | transitivePeerDependencies: 3996 | - '@types/node' 3997 | - jiti 3998 | - less 3999 | - lightningcss 4000 | - sass 4001 | - sass-embedded 4002 | - stylus 4003 | - sugarss 4004 | - supports-color 4005 | - terser 4006 | - tsx 4007 | - yaml 4008 | 4009 | vite-tsconfig-paths@5.1.4(typescript@5.7.3)(vite@6.0.11(@types/node@22.10.10)): 4010 | dependencies: 4011 | debug: 4.4.0 4012 | globrex: 0.1.2 4013 | tsconfck: 3.1.4(typescript@5.7.3) 4014 | optionalDependencies: 4015 | vite: 6.0.11(@types/node@22.10.10) 4016 | transitivePeerDependencies: 4017 | - supports-color 4018 | - typescript 4019 | 4020 | vite@6.0.11(@types/node@22.10.10): 4021 | dependencies: 4022 | esbuild: 0.24.2 4023 | postcss: 8.5.1 4024 | rollup: 4.32.0 4025 | optionalDependencies: 4026 | '@types/node': 22.10.10 4027 | fsevents: 2.3.3 4028 | 4029 | vitest@3.0.4(@types/node@22.10.10)(happy-dom@16.7.2): 4030 | dependencies: 4031 | '@vitest/expect': 3.0.4 4032 | '@vitest/mocker': 3.0.4(vite@6.0.11(@types/node@22.10.10)) 4033 | '@vitest/pretty-format': 3.0.4 4034 | '@vitest/runner': 3.0.4 4035 | '@vitest/snapshot': 3.0.4 4036 | '@vitest/spy': 3.0.4 4037 | '@vitest/utils': 3.0.4 4038 | chai: 5.1.2 4039 | debug: 4.4.0 4040 | expect-type: 1.1.0 4041 | magic-string: 0.30.17 4042 | pathe: 2.0.2 4043 | std-env: 3.8.0 4044 | tinybench: 2.9.0 4045 | tinyexec: 0.3.2 4046 | tinypool: 1.0.2 4047 | tinyrainbow: 2.0.0 4048 | vite: 6.0.11(@types/node@22.10.10) 4049 | vite-node: 3.0.4(@types/node@22.10.10) 4050 | why-is-node-running: 2.3.0 4051 | optionalDependencies: 4052 | '@types/node': 22.10.10 4053 | happy-dom: 16.7.2 4054 | transitivePeerDependencies: 4055 | - jiti 4056 | - less 4057 | - lightningcss 4058 | - msw 4059 | - sass 4060 | - sass-embedded 4061 | - stylus 4062 | - sugarss 4063 | - supports-color 4064 | - terser 4065 | - tsx 4066 | - yaml 4067 | 4068 | webidl-conversions@7.0.0: {} 4069 | 4070 | whatwg-mimetype@3.0.0: {} 4071 | 4072 | which-boxed-primitive@1.1.1: 4073 | dependencies: 4074 | is-bigint: 1.1.0 4075 | is-boolean-object: 1.2.1 4076 | is-number-object: 1.1.1 4077 | is-string: 1.1.1 4078 | is-symbol: 1.1.1 4079 | 4080 | which-builtin-type@1.2.1: 4081 | dependencies: 4082 | call-bound: 1.0.3 4083 | function.prototype.name: 1.1.8 4084 | has-tostringtag: 1.0.2 4085 | is-async-function: 2.1.1 4086 | is-date-object: 1.1.0 4087 | is-finalizationregistry: 1.1.1 4088 | is-generator-function: 1.1.0 4089 | is-regex: 1.2.1 4090 | is-weakref: 1.1.0 4091 | isarray: 2.0.5 4092 | which-boxed-primitive: 1.1.1 4093 | which-collection: 1.0.2 4094 | which-typed-array: 1.1.18 4095 | 4096 | which-collection@1.0.2: 4097 | dependencies: 4098 | is-map: 2.0.3 4099 | is-set: 2.0.3 4100 | is-weakmap: 2.0.2 4101 | is-weakset: 2.0.4 4102 | 4103 | which-typed-array@1.1.18: 4104 | dependencies: 4105 | available-typed-arrays: 1.0.7 4106 | call-bind: 1.0.8 4107 | call-bound: 1.0.3 4108 | for-each: 0.3.4 4109 | gopd: 1.2.0 4110 | has-tostringtag: 1.0.2 4111 | 4112 | which@2.0.2: 4113 | dependencies: 4114 | isexe: 2.0.0 4115 | 4116 | why-is-node-running@2.3.0: 4117 | dependencies: 4118 | siginfo: 2.0.0 4119 | stackback: 0.0.2 4120 | 4121 | word-wrap@1.2.5: {} 4122 | 4123 | yallist@3.1.1: {} 4124 | 4125 | yocto-queue@0.1.0: {} 4126 | 4127 | zod-validation-error@3.4.1(zod@3.25.23): 4128 | dependencies: 4129 | zod: 3.25.23 4130 | 4131 | zod@3.25.23: {} 4132 | --------------------------------------------------------------------------------