├── backend ├── README.md ├── .python-version ├── .gitignore ├── pyproject.toml ├── utils.py └── server.py ├── frontend ├── .tool-versions ├── tsconfig.json ├── src │ ├── hooks │ │ ├── use-max-height.ts │ │ ├── use-display-mode.ts │ │ ├── use-widget-props.ts │ │ ├── use-openai-global.ts │ │ └── use-widget-state.ts │ ├── main.tsx │ ├── App.css │ ├── App.tsx │ ├── widgets │ │ └── example │ │ │ └── index.tsx │ ├── index.css │ ├── types.ts │ └── assets │ │ └── react.svg ├── .gitignore ├── index.html ├── eslint.config.js ├── tsconfig.node.json ├── vite.config.ts ├── package.json ├── tsconfig.app.json ├── public │ └── vite.svg ├── README.md └── package-lock.json └── .vscode └── settings.json /backend/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /frontend/.tool-versions: -------------------------------------------------------------------------------- 1 | nodejs 24.6.0 2 | -------------------------------------------------------------------------------- /frontend/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": [], 3 | "references": [ 4 | { "path": "./tsconfig.app.json" }, 5 | { "path": "./tsconfig.node.json" } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /backend/.gitignore: -------------------------------------------------------------------------------- 1 | # Python-generated files 2 | __pycache__/ 3 | *.py[oc] 4 | build/ 5 | dist/ 6 | wheels/ 7 | *.egg-info 8 | 9 | # Virtual environments 10 | .venv 11 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.analysis.extraPaths": [ 3 | "./backend/.venv/lib/python3.12/site-packages", 4 | ], 5 | "python.analysis.autoSearchPaths": true 6 | } -------------------------------------------------------------------------------- /frontend/src/hooks/use-max-height.ts: -------------------------------------------------------------------------------- 1 | import { useOpenAiGlobal } from "./use-openai-global"; 2 | 3 | export const useMaxHeight = (): number | null => { 4 | return useOpenAiGlobal("maxHeight"); 5 | }; 6 | -------------------------------------------------------------------------------- /backend/pyproject.toml: -------------------------------------------------------------------------------- 1 | [project] 2 | name = "backend" 3 | version = "0.1.0" 4 | description = "Add your description here" 5 | readme = "README.md" 6 | requires-python = ">=3.12" 7 | dependencies = [ 8 | "fastmcp>=2.12.4", 9 | ] 10 | -------------------------------------------------------------------------------- /frontend/src/hooks/use-display-mode.ts: -------------------------------------------------------------------------------- 1 | import { useOpenAiGlobal } from "./use-openai-global"; 2 | import { type DisplayMode } from "../types"; 3 | 4 | export const useDisplayMode = (): DisplayMode | null => { 5 | return useOpenAiGlobal("displayMode"); 6 | }; 7 | -------------------------------------------------------------------------------- /frontend/src/main.tsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from 'react' 2 | import { createRoot } from 'react-dom/client' 3 | import './index.css' 4 | import App from './App.tsx' 5 | // import { TestWidget } from './widgets/example/index.tsx' 6 | 7 | createRoot(document.getElementById('root')!).render( 8 | 9 | 10 | , 11 | ) 12 | -------------------------------------------------------------------------------- /frontend/.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | frontend 8 | 9 | 10 |
11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /frontend/src/hooks/use-widget-props.ts: -------------------------------------------------------------------------------- 1 | import { useOpenAiGlobal } from "./use-openai-global"; 2 | 3 | export function useWidgetProps>( 4 | defaultState?: T | (() => T) 5 | ): T { 6 | const props = useOpenAiGlobal("toolOutput") as T; 7 | 8 | const fallback = 9 | typeof defaultState === "function" 10 | ? (defaultState as () => T | null)() 11 | : defaultState ?? null; 12 | 13 | return props ?? fallback; 14 | } 15 | -------------------------------------------------------------------------------- /frontend/eslint.config.js: -------------------------------------------------------------------------------- 1 | import js from '@eslint/js' 2 | import globals from 'globals' 3 | import reactHooks from 'eslint-plugin-react-hooks' 4 | import reactRefresh from 'eslint-plugin-react-refresh' 5 | import tseslint from 'typescript-eslint' 6 | import { defineConfig, globalIgnores } from 'eslint/config' 7 | 8 | export default defineConfig([ 9 | globalIgnores(['dist']), 10 | { 11 | files: ['**/*.{ts,tsx}'], 12 | extends: [ 13 | js.configs.recommended, 14 | tseslint.configs.recommended, 15 | reactHooks.configs['recommended-latest'], 16 | reactRefresh.configs.vite, 17 | ], 18 | languageOptions: { 19 | ecmaVersion: 2020, 20 | globals: globals.browser, 21 | }, 22 | }, 23 | ]) 24 | -------------------------------------------------------------------------------- /frontend/tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo", 4 | "target": "ES2023", 5 | "lib": ["ES2023"], 6 | "module": "ESNext", 7 | "types": ["node"], 8 | "skipLibCheck": true, 9 | 10 | /* Bundler mode */ 11 | "moduleResolution": "bundler", 12 | "allowImportingTsExtensions": true, 13 | "verbatimModuleSyntax": true, 14 | "moduleDetection": "force", 15 | "noEmit": true, 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "erasableSyntaxOnly": true, 22 | "noFallthroughCasesInSwitch": true, 23 | "noUncheckedSideEffectImports": true 24 | }, 25 | "include": ["vite.config.ts"] 26 | } 27 | -------------------------------------------------------------------------------- /frontend/vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react' 3 | import fg from 'fast-glob'; 4 | import { resolve } from 'path' 5 | 6 | function discoverEntries() { 7 | const files = fg.sync('src/widgets/**/index.{ts,tsx,js,jsx}', { cwd: __dirname }) 8 | 9 | const inputs: Record = {} 10 | for (const f of files) { 11 | const name = f.split('/')[2] 12 | inputs[name] = resolve(__dirname, f) 13 | } 14 | 15 | return inputs; 16 | } 17 | 18 | // https://vite.dev/config/ 19 | export default defineConfig({ 20 | plugins: [react()], 21 | build: { 22 | outDir: 'dist', 23 | assetsDir: 'assets', 24 | manifest: true, 25 | rollupOptions: { 26 | input: discoverEntries(), 27 | } 28 | } 29 | }) 30 | -------------------------------------------------------------------------------- /frontend/src/App.css: -------------------------------------------------------------------------------- 1 | #root { 2 | max-width: 1280px; 3 | margin: 0 auto; 4 | padding: 2rem; 5 | text-align: center; 6 | } 7 | 8 | .logo { 9 | height: 6em; 10 | padding: 1.5em; 11 | will-change: filter; 12 | transition: filter 300ms; 13 | } 14 | .logo:hover { 15 | filter: drop-shadow(0 0 2em #646cffaa); 16 | } 17 | .logo.react:hover { 18 | filter: drop-shadow(0 0 2em #61dafbaa); 19 | } 20 | 21 | @keyframes logo-spin { 22 | from { 23 | transform: rotate(0deg); 24 | } 25 | to { 26 | transform: rotate(360deg); 27 | } 28 | } 29 | 30 | @media (prefers-reduced-motion: no-preference) { 31 | a:nth-of-type(2) .logo { 32 | animation: logo-spin infinite 20s linear; 33 | } 34 | } 35 | 36 | .card { 37 | padding: 2em; 38 | } 39 | 40 | .read-the-docs { 41 | color: #888; 42 | } 43 | -------------------------------------------------------------------------------- /frontend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "frontend", 3 | "private": true, 4 | "version": "0.0.0", 5 | "type": "module", 6 | "scripts": { 7 | "dev": "vite", 8 | "build": "tsc -b && vite build", 9 | "lint": "eslint .", 10 | "preview": "vite preview" 11 | }, 12 | "dependencies": { 13 | "react": "^19.1.1", 14 | "react-dom": "^19.1.1" 15 | }, 16 | "devDependencies": { 17 | "@eslint/js": "^9.36.0", 18 | "@types/node": "^24.6.0", 19 | "@types/react": "^19.1.16", 20 | "@types/react-dom": "^19.1.9", 21 | "@vitejs/plugin-react": "^5.0.4", 22 | "eslint": "^9.36.0", 23 | "eslint-plugin-react-hooks": "^5.2.0", 24 | "eslint-plugin-react-refresh": "^0.4.22", 25 | "globals": "^16.4.0", 26 | "typescript": "~5.9.3", 27 | "typescript-eslint": "^8.45.0", 28 | "vite": "^7.1.7" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /frontend/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", 4 | "target": "ES2022", 5 | "useDefineForClassFields": true, 6 | "lib": ["ES2022", "DOM", "DOM.Iterable"], 7 | "module": "ESNext", 8 | "types": ["vite/client"], 9 | "skipLibCheck": true, 10 | 11 | /* Bundler mode */ 12 | "moduleResolution": "bundler", 13 | "allowImportingTsExtensions": true, 14 | "verbatimModuleSyntax": true, 15 | "moduleDetection": "force", 16 | "noEmit": true, 17 | "jsx": "react-jsx", 18 | 19 | /* Linting */ 20 | "strict": true, 21 | "noUnusedLocals": true, 22 | "noUnusedParameters": true, 23 | "erasableSyntaxOnly": true, 24 | "noFallthroughCasesInSwitch": true, 25 | "noUncheckedSideEffectImports": true 26 | }, 27 | "include": ["src"] 28 | } 29 | -------------------------------------------------------------------------------- /backend/utils.py: -------------------------------------------------------------------------------- 1 | from pathlib import Path 2 | import json, os 3 | from typing import Dict, Any 4 | 5 | ROOT = Path(__file__).resolve().parents[1] 6 | DIST = ROOT / "frontend" / "dist" 7 | MANIFEST = DIST / ".vite" / "manifest.json" 8 | BASE_URL = os.getenv("COMPONENTS_BASE_URL", "https://openaiappstest-qm9xx0wnd-brandons-projects-a35929ed.vercel.app") 9 | 10 | if not MANIFEST.exists(): 11 | raise FileNotFoundError("No manifest found at {MANIFEST}") 12 | 13 | manifest_dict = json.loads(MANIFEST.read_text('utf-8')) 14 | manifest_map = {} 15 | 16 | for key, value in manifest_dict.items(): 17 | manifest_map[value['name']] = value 18 | 19 | def snippet_for(name: str) -> str: 20 | if name not in manifest_map: 21 | raise KeyError(f"No file found in manifest for {name}") 22 | 23 | entry = manifest_map[name] 24 | 25 | return f""" 26 | 27 | """ 28 | 29 | if __name__ == "__main__": 30 | print(snippet_for('example')) -------------------------------------------------------------------------------- /frontend/src/App.tsx: -------------------------------------------------------------------------------- 1 | import { useState } from 'react' 2 | import reactLogo from './assets/react.svg' 3 | import viteLogo from '/vite.svg' 4 | import './App.css' 5 | 6 | function App() { 7 | const [count, setCount] = useState(0) 8 | 9 | return ( 10 | <> 11 |
12 | 13 | Vite logo 14 | 15 | 16 | React logo 17 | 18 |
19 |

Vite + React

20 |
21 | 24 |

25 | Edit src/App.tsx and save to test HMR 26 |

27 |
28 |

29 | Click on the Vite and React logos to learn more 30 |

31 | 32 | ) 33 | } 34 | 35 | export default App 36 | -------------------------------------------------------------------------------- /frontend/src/hooks/use-openai-global.ts: -------------------------------------------------------------------------------- 1 | import { useSyncExternalStore } from "react"; 2 | import { 3 | SET_GLOBALS_EVENT_TYPE, 4 | SetGlobalsEvent, 5 | type OpenAiGlobals, 6 | } from "../types"; 7 | 8 | export function useOpenAiGlobal( 9 | key: K 10 | ): OpenAiGlobals[K] | null { 11 | return useSyncExternalStore( 12 | (onChange) => { 13 | if (typeof window === "undefined") { 14 | return () => {}; 15 | } 16 | 17 | const handleSetGlobal = (event: SetGlobalsEvent) => { 18 | const value = event.detail.globals[key]; 19 | if (value === undefined) { 20 | return; 21 | } 22 | 23 | onChange(); 24 | }; 25 | 26 | window.addEventListener(SET_GLOBALS_EVENT_TYPE, handleSetGlobal, { 27 | passive: true, 28 | }); 29 | 30 | return () => { 31 | window.removeEventListener(SET_GLOBALS_EVENT_TYPE, handleSetGlobal); 32 | }; 33 | }, 34 | () => window.openai?.[key] ?? null, 35 | () => window.openai?.[key] ?? null 36 | ); 37 | } 38 | -------------------------------------------------------------------------------- /frontend/src/widgets/example/index.tsx: -------------------------------------------------------------------------------- 1 | import { createRoot } from "react-dom/client"; 2 | import { useWidgetProps } from "../../hooks/use-widget-props"; 3 | import { useWidgetState } from "../../hooks/use-widget-state"; 4 | 5 | type ExampleProps = { 6 | name: string; 7 | } 8 | 9 | type WidgetState = { 10 | buttonClicks: number; 11 | } 12 | 13 | export function TestWidget() { 14 | const { name } = useWidgetProps({name: "Default Name"}); 15 | const [widgetState, setWidgetState] = useWidgetState({buttonClicks: 0}); 16 | 17 | console.log(widgetState) 18 | 19 | const incrementButtonClicks = () => { 20 | setWidgetState(currentState => ({ 21 | ...currentState, 22 | buttonClicks: currentState.buttonClicks + 1, 23 | })) 24 | } 25 | 26 | return ( 27 |
28 |

Test Widget

29 |

This is a test widget component. To say Hello {name}

30 | 31 | The user has clicked the button {widgetState.buttonClicks} times 32 | 33 |
34 | ) 35 | } 36 | 37 | createRoot(document.getElementById('example-root')!).render() 38 | -------------------------------------------------------------------------------- /backend/server.py: -------------------------------------------------------------------------------- 1 | from fastmcp import FastMCP 2 | from fastmcp.tools.tool import ToolResult, TextContent 3 | from utils import snippet_for 4 | 5 | mcp = FastMCP("OpenAI Apps SDK Example") 6 | 7 | @mcp.tool( 8 | meta={ 9 | "openai/outputTemplate": "ui://widget/example.html", 10 | "openai/toolInvocation/invoking": "Considering a greeting", 11 | "openai/toolInvocation/invoked": "Greeted", 12 | "openai/widgetAccessible": True, 13 | } 14 | ) 15 | async def greeting_tool(name: str): 16 | """ 17 | A tool to call when the user is asked to be greeted. 18 | This is an example for a developer who is testing. 19 | """ 20 | 21 | return ToolResult( 22 | content=[TextContent(type="text", text=f"Hello there {name}")], 23 | structured_content={"name": name} 24 | ) 25 | 26 | @mcp.resource( 27 | uri="ui://widget/example.html", 28 | mime_type="text/html+skybridge", 29 | meta={ 30 | "openai/widgetDescription": "Renders an interactive UI show a greeting", 31 | "openai/widgetPrefersBorder": True, 32 | } 33 | ) 34 | def greeting_resource() -> str: 35 | return f""" 36 |
37 | {snippet_for('example')} 38 | """ 39 | 40 | if __name__ == "__main__": 41 | mcp.run(transport="http", stateless_http=True) 42 | -------------------------------------------------------------------------------- /frontend/src/index.css: -------------------------------------------------------------------------------- 1 | :root { 2 | font-family: system-ui, Avenir, Helvetica, Arial, sans-serif; 3 | line-height: 1.5; 4 | font-weight: 400; 5 | 6 | color-scheme: light dark; 7 | color: rgba(255, 255, 255, 0.87); 8 | background-color: #242424; 9 | 10 | font-synthesis: none; 11 | text-rendering: optimizeLegibility; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | 16 | a { 17 | font-weight: 500; 18 | color: #646cff; 19 | text-decoration: inherit; 20 | } 21 | a:hover { 22 | color: #535bf2; 23 | } 24 | 25 | body { 26 | margin: 0; 27 | display: flex; 28 | place-items: center; 29 | min-width: 320px; 30 | min-height: 100vh; 31 | } 32 | 33 | h1 { 34 | font-size: 3.2em; 35 | line-height: 1.1; 36 | } 37 | 38 | button { 39 | border-radius: 8px; 40 | border: 1px solid transparent; 41 | padding: 0.6em 1.2em; 42 | font-size: 1em; 43 | font-weight: 500; 44 | font-family: inherit; 45 | background-color: #1a1a1a; 46 | cursor: pointer; 47 | transition: border-color 0.25s; 48 | } 49 | button:hover { 50 | border-color: #646cff; 51 | } 52 | button:focus, 53 | button:focus-visible { 54 | outline: 4px auto -webkit-focus-ring-color; 55 | } 56 | 57 | @media (prefers-color-scheme: light) { 58 | :root { 59 | color: #213547; 60 | background-color: #ffffff; 61 | } 62 | a:hover { 63 | color: #747bff; 64 | } 65 | button { 66 | background-color: #f9f9f9; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /frontend/public/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/src/hooks/use-widget-state.ts: -------------------------------------------------------------------------------- 1 | import { useCallback, useEffect, useState, type SetStateAction } from "react"; 2 | import { useOpenAiGlobal } from "./use-openai-global"; 3 | import type { UnknownObject } from "../types"; 4 | 5 | export function useWidgetState( 6 | defaultState: T | (() => T) 7 | ): readonly [T, (state: SetStateAction) => void]; 8 | export function useWidgetState( 9 | defaultState?: T | (() => T | null) | null 10 | ): readonly [T | null, (state: SetStateAction) => void]; 11 | export function useWidgetState( 12 | defaultState?: T | (() => T | null) | null 13 | ): readonly [T | null, (state: SetStateAction) => void] { 14 | const widgetStateFromWindow = useOpenAiGlobal("widgetState") as T; 15 | 16 | const [widgetState, _setWidgetState] = useState(() => { 17 | if (widgetStateFromWindow != null) { 18 | return widgetStateFromWindow; 19 | } 20 | 21 | return typeof defaultState === "function" 22 | ? defaultState() 23 | : defaultState ?? null; 24 | }); 25 | 26 | useEffect(() => { 27 | if (widgetStateFromWindow) { 28 | _setWidgetState(widgetStateFromWindow); 29 | } 30 | }, [widgetStateFromWindow]); 31 | 32 | const setWidgetState = useCallback( 33 | (state: SetStateAction) => { 34 | _setWidgetState((prevState) => { 35 | const newState = typeof state === "function" ? state(prevState) : state; 36 | 37 | if (newState != null && window.openai?.setWidgetState) { 38 | window.openai.setWidgetState(newState); 39 | } 40 | 41 | return newState; 42 | }); 43 | }, 44 | [window.openai?.setWidgetState] 45 | ); 46 | 47 | return [widgetState, setWidgetState] as const; 48 | } 49 | -------------------------------------------------------------------------------- /frontend/src/types.ts: -------------------------------------------------------------------------------- 1 | export type OpenAiGlobals< 2 | ToolInput = UnknownObject, 3 | ToolOutput = UnknownObject, 4 | ToolResponseMetadata = UnknownObject, 5 | WidgetState = UnknownObject 6 | > = { 7 | // visuals 8 | theme: Theme; 9 | 10 | userAgent: UserAgent; 11 | locale: string; 12 | 13 | // layout 14 | maxHeight: number; 15 | displayMode: DisplayMode; 16 | safeArea: SafeArea; 17 | 18 | // state 19 | toolInput: ToolInput; 20 | toolOutput: ToolOutput | null; 21 | toolResponseMetadata: ToolResponseMetadata | null; 22 | widgetState: WidgetState | null; 23 | setWidgetState: (state: WidgetState) => Promise; 24 | }; 25 | 26 | // currently copied from types.ts in chatgpt/web-sandbox. 27 | // Will eventually use a public package. 28 | type API = { 29 | callTool: CallTool; 30 | sendFollowUpMessage: (args: { prompt: string }) => Promise; 31 | openExternal(payload: { href: string }): void; 32 | 33 | // Layout controls 34 | requestDisplayMode: RequestDisplayMode; 35 | }; 36 | 37 | export type UnknownObject = Record; 38 | 39 | export type Theme = "light" | "dark"; 40 | 41 | export type SafeAreaInsets = { 42 | top: number; 43 | bottom: number; 44 | left: number; 45 | right: number; 46 | }; 47 | 48 | export type SafeArea = { 49 | insets: SafeAreaInsets; 50 | }; 51 | 52 | export type DeviceType = "mobile" | "tablet" | "desktop" | "unknown"; 53 | 54 | export type UserAgent = { 55 | device: { type: DeviceType }; 56 | capabilities: { 57 | hover: boolean; 58 | touch: boolean; 59 | }; 60 | }; 61 | 62 | /** Display mode */ 63 | export type DisplayMode = "pip" | "inline" | "fullscreen"; 64 | export type RequestDisplayMode = (args: { mode: DisplayMode }) => Promise<{ 65 | /** 66 | * The granted display mode. The host may reject the request. 67 | * For mobile, PiP is always coerced to fullscreen. 68 | */ 69 | mode: DisplayMode; 70 | }>; 71 | 72 | export type CallToolResponse = { 73 | result: string; 74 | }; 75 | 76 | /** Calling APIs */ 77 | export type CallTool = ( 78 | name: string, 79 | args: Record 80 | ) => Promise; 81 | 82 | /** Extra events */ 83 | export const SET_GLOBALS_EVENT_TYPE = "openai:set_globals"; 84 | export class SetGlobalsEvent extends CustomEvent<{ 85 | globals: Partial; 86 | }> { 87 | readonly type = SET_GLOBALS_EVENT_TYPE; 88 | } 89 | 90 | /** 91 | * Global oai object injected by the web sandbox for communicating with chatgpt host page. 92 | */ 93 | declare global { 94 | interface Window { 95 | openai: API & OpenAiGlobals; 96 | } 97 | 98 | interface WindowEventMap { 99 | [SET_GLOBALS_EVENT_TYPE]: SetGlobalsEvent; 100 | } 101 | } 102 | -------------------------------------------------------------------------------- /frontend/README.md: -------------------------------------------------------------------------------- 1 | # React + TypeScript + Vite 2 | 3 | This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. 4 | 5 | Currently, two official plugins are available: 6 | 7 | - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh 8 | - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh 9 | 10 | ## React Compiler 11 | 12 | The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation). 13 | 14 | ## Expanding the ESLint configuration 15 | 16 | If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules: 17 | 18 | ```js 19 | export default defineConfig([ 20 | globalIgnores(['dist']), 21 | { 22 | files: ['**/*.{ts,tsx}'], 23 | extends: [ 24 | // Other configs... 25 | 26 | // Remove tseslint.configs.recommended and replace with this 27 | tseslint.configs.recommendedTypeChecked, 28 | // Alternatively, use this for stricter rules 29 | tseslint.configs.strictTypeChecked, 30 | // Optionally, add this for stylistic rules 31 | tseslint.configs.stylisticTypeChecked, 32 | 33 | // Other configs... 34 | ], 35 | languageOptions: { 36 | parserOptions: { 37 | project: ['./tsconfig.node.json', './tsconfig.app.json'], 38 | tsconfigRootDir: import.meta.dirname, 39 | }, 40 | // other options... 41 | }, 42 | }, 43 | ]) 44 | ``` 45 | 46 | You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules: 47 | 48 | ```js 49 | // eslint.config.js 50 | import reactX from 'eslint-plugin-react-x' 51 | import reactDom from 'eslint-plugin-react-dom' 52 | 53 | export default defineConfig([ 54 | globalIgnores(['dist']), 55 | { 56 | files: ['**/*.{ts,tsx}'], 57 | extends: [ 58 | // Other configs... 59 | // Enable lint rules for React 60 | reactX.configs['recommended-typescript'], 61 | // Enable lint rules for React DOM 62 | reactDom.configs.recommended, 63 | ], 64 | languageOptions: { 65 | parserOptions: { 66 | project: ['./tsconfig.node.json', './tsconfig.app.json'], 67 | tsconfigRootDir: import.meta.dirname, 68 | }, 69 | // other options... 70 | }, 71 | }, 72 | ]) 73 | ``` 74 | -------------------------------------------------------------------------------- /frontend/src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "frontend", 3 | "version": "0.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "frontend", 9 | "version": "0.0.0", 10 | "dependencies": { 11 | "react": "^19.1.1", 12 | "react-dom": "^19.1.1" 13 | }, 14 | "devDependencies": { 15 | "@eslint/js": "^9.36.0", 16 | "@types/node": "^24.6.0", 17 | "@types/react": "^19.1.16", 18 | "@types/react-dom": "^19.1.9", 19 | "@vitejs/plugin-react": "^5.0.4", 20 | "eslint": "^9.36.0", 21 | "eslint-plugin-react-hooks": "^5.2.0", 22 | "eslint-plugin-react-refresh": "^0.4.22", 23 | "globals": "^16.4.0", 24 | "typescript": "~5.9.3", 25 | "typescript-eslint": "^8.45.0", 26 | "vite": "^7.1.7" 27 | } 28 | }, 29 | "node_modules/@babel/code-frame": { 30 | "version": "7.27.1", 31 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", 32 | "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", 33 | "dev": true, 34 | "license": "MIT", 35 | "dependencies": { 36 | "@babel/helper-validator-identifier": "^7.27.1", 37 | "js-tokens": "^4.0.0", 38 | "picocolors": "^1.1.1" 39 | }, 40 | "engines": { 41 | "node": ">=6.9.0" 42 | } 43 | }, 44 | "node_modules/@babel/compat-data": { 45 | "version": "7.28.4", 46 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.4.tgz", 47 | "integrity": "sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==", 48 | "dev": true, 49 | "license": "MIT", 50 | "engines": { 51 | "node": ">=6.9.0" 52 | } 53 | }, 54 | "node_modules/@babel/core": { 55 | "version": "7.28.4", 56 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.4.tgz", 57 | "integrity": "sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==", 58 | "dev": true, 59 | "license": "MIT", 60 | "dependencies": { 61 | "@babel/code-frame": "^7.27.1", 62 | "@babel/generator": "^7.28.3", 63 | "@babel/helper-compilation-targets": "^7.27.2", 64 | "@babel/helper-module-transforms": "^7.28.3", 65 | "@babel/helpers": "^7.28.4", 66 | "@babel/parser": "^7.28.4", 67 | "@babel/template": "^7.27.2", 68 | "@babel/traverse": "^7.28.4", 69 | "@babel/types": "^7.28.4", 70 | "@jridgewell/remapping": "^2.3.5", 71 | "convert-source-map": "^2.0.0", 72 | "debug": "^4.1.0", 73 | "gensync": "^1.0.0-beta.2", 74 | "json5": "^2.2.3", 75 | "semver": "^6.3.1" 76 | }, 77 | "engines": { 78 | "node": ">=6.9.0" 79 | }, 80 | "funding": { 81 | "type": "opencollective", 82 | "url": "https://opencollective.com/babel" 83 | } 84 | }, 85 | "node_modules/@babel/generator": { 86 | "version": "7.28.3", 87 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz", 88 | "integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==", 89 | "dev": true, 90 | "license": "MIT", 91 | "dependencies": { 92 | "@babel/parser": "^7.28.3", 93 | "@babel/types": "^7.28.2", 94 | "@jridgewell/gen-mapping": "^0.3.12", 95 | "@jridgewell/trace-mapping": "^0.3.28", 96 | "jsesc": "^3.0.2" 97 | }, 98 | "engines": { 99 | "node": ">=6.9.0" 100 | } 101 | }, 102 | "node_modules/@babel/helper-compilation-targets": { 103 | "version": "7.27.2", 104 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", 105 | "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", 106 | "dev": true, 107 | "license": "MIT", 108 | "dependencies": { 109 | "@babel/compat-data": "^7.27.2", 110 | "@babel/helper-validator-option": "^7.27.1", 111 | "browserslist": "^4.24.0", 112 | "lru-cache": "^5.1.1", 113 | "semver": "^6.3.1" 114 | }, 115 | "engines": { 116 | "node": ">=6.9.0" 117 | } 118 | }, 119 | "node_modules/@babel/helper-globals": { 120 | "version": "7.28.0", 121 | "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", 122 | "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", 123 | "dev": true, 124 | "license": "MIT", 125 | "engines": { 126 | "node": ">=6.9.0" 127 | } 128 | }, 129 | "node_modules/@babel/helper-module-imports": { 130 | "version": "7.27.1", 131 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", 132 | "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", 133 | "dev": true, 134 | "license": "MIT", 135 | "dependencies": { 136 | "@babel/traverse": "^7.27.1", 137 | "@babel/types": "^7.27.1" 138 | }, 139 | "engines": { 140 | "node": ">=6.9.0" 141 | } 142 | }, 143 | "node_modules/@babel/helper-module-transforms": { 144 | "version": "7.28.3", 145 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", 146 | "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", 147 | "dev": true, 148 | "license": "MIT", 149 | "dependencies": { 150 | "@babel/helper-module-imports": "^7.27.1", 151 | "@babel/helper-validator-identifier": "^7.27.1", 152 | "@babel/traverse": "^7.28.3" 153 | }, 154 | "engines": { 155 | "node": ">=6.9.0" 156 | }, 157 | "peerDependencies": { 158 | "@babel/core": "^7.0.0" 159 | } 160 | }, 161 | "node_modules/@babel/helper-plugin-utils": { 162 | "version": "7.27.1", 163 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", 164 | "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", 165 | "dev": true, 166 | "license": "MIT", 167 | "engines": { 168 | "node": ">=6.9.0" 169 | } 170 | }, 171 | "node_modules/@babel/helper-string-parser": { 172 | "version": "7.27.1", 173 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", 174 | "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", 175 | "dev": true, 176 | "license": "MIT", 177 | "engines": { 178 | "node": ">=6.9.0" 179 | } 180 | }, 181 | "node_modules/@babel/helper-validator-identifier": { 182 | "version": "7.27.1", 183 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", 184 | "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", 185 | "dev": true, 186 | "license": "MIT", 187 | "engines": { 188 | "node": ">=6.9.0" 189 | } 190 | }, 191 | "node_modules/@babel/helper-validator-option": { 192 | "version": "7.27.1", 193 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", 194 | "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", 195 | "dev": true, 196 | "license": "MIT", 197 | "engines": { 198 | "node": ">=6.9.0" 199 | } 200 | }, 201 | "node_modules/@babel/helpers": { 202 | "version": "7.28.4", 203 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", 204 | "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", 205 | "dev": true, 206 | "license": "MIT", 207 | "dependencies": { 208 | "@babel/template": "^7.27.2", 209 | "@babel/types": "^7.28.4" 210 | }, 211 | "engines": { 212 | "node": ">=6.9.0" 213 | } 214 | }, 215 | "node_modules/@babel/parser": { 216 | "version": "7.28.4", 217 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.4.tgz", 218 | "integrity": "sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==", 219 | "dev": true, 220 | "license": "MIT", 221 | "dependencies": { 222 | "@babel/types": "^7.28.4" 223 | }, 224 | "bin": { 225 | "parser": "bin/babel-parser.js" 226 | }, 227 | "engines": { 228 | "node": ">=6.0.0" 229 | } 230 | }, 231 | "node_modules/@babel/plugin-transform-react-jsx-self": { 232 | "version": "7.27.1", 233 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", 234 | "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", 235 | "dev": true, 236 | "license": "MIT", 237 | "dependencies": { 238 | "@babel/helper-plugin-utils": "^7.27.1" 239 | }, 240 | "engines": { 241 | "node": ">=6.9.0" 242 | }, 243 | "peerDependencies": { 244 | "@babel/core": "^7.0.0-0" 245 | } 246 | }, 247 | "node_modules/@babel/plugin-transform-react-jsx-source": { 248 | "version": "7.27.1", 249 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", 250 | "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", 251 | "dev": true, 252 | "license": "MIT", 253 | "dependencies": { 254 | "@babel/helper-plugin-utils": "^7.27.1" 255 | }, 256 | "engines": { 257 | "node": ">=6.9.0" 258 | }, 259 | "peerDependencies": { 260 | "@babel/core": "^7.0.0-0" 261 | } 262 | }, 263 | "node_modules/@babel/template": { 264 | "version": "7.27.2", 265 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", 266 | "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", 267 | "dev": true, 268 | "license": "MIT", 269 | "dependencies": { 270 | "@babel/code-frame": "^7.27.1", 271 | "@babel/parser": "^7.27.2", 272 | "@babel/types": "^7.27.1" 273 | }, 274 | "engines": { 275 | "node": ">=6.9.0" 276 | } 277 | }, 278 | "node_modules/@babel/traverse": { 279 | "version": "7.28.4", 280 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.4.tgz", 281 | "integrity": "sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==", 282 | "dev": true, 283 | "license": "MIT", 284 | "dependencies": { 285 | "@babel/code-frame": "^7.27.1", 286 | "@babel/generator": "^7.28.3", 287 | "@babel/helper-globals": "^7.28.0", 288 | "@babel/parser": "^7.28.4", 289 | "@babel/template": "^7.27.2", 290 | "@babel/types": "^7.28.4", 291 | "debug": "^4.3.1" 292 | }, 293 | "engines": { 294 | "node": ">=6.9.0" 295 | } 296 | }, 297 | "node_modules/@babel/types": { 298 | "version": "7.28.4", 299 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.4.tgz", 300 | "integrity": "sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==", 301 | "dev": true, 302 | "license": "MIT", 303 | "dependencies": { 304 | "@babel/helper-string-parser": "^7.27.1", 305 | "@babel/helper-validator-identifier": "^7.27.1" 306 | }, 307 | "engines": { 308 | "node": ">=6.9.0" 309 | } 310 | }, 311 | "node_modules/@esbuild/aix-ppc64": { 312 | "version": "0.25.10", 313 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.10.tgz", 314 | "integrity": "sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==", 315 | "cpu": [ 316 | "ppc64" 317 | ], 318 | "dev": true, 319 | "license": "MIT", 320 | "optional": true, 321 | "os": [ 322 | "aix" 323 | ], 324 | "engines": { 325 | "node": ">=18" 326 | } 327 | }, 328 | "node_modules/@esbuild/android-arm": { 329 | "version": "0.25.10", 330 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.10.tgz", 331 | "integrity": "sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==", 332 | "cpu": [ 333 | "arm" 334 | ], 335 | "dev": true, 336 | "license": "MIT", 337 | "optional": true, 338 | "os": [ 339 | "android" 340 | ], 341 | "engines": { 342 | "node": ">=18" 343 | } 344 | }, 345 | "node_modules/@esbuild/android-arm64": { 346 | "version": "0.25.10", 347 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.10.tgz", 348 | "integrity": "sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==", 349 | "cpu": [ 350 | "arm64" 351 | ], 352 | "dev": true, 353 | "license": "MIT", 354 | "optional": true, 355 | "os": [ 356 | "android" 357 | ], 358 | "engines": { 359 | "node": ">=18" 360 | } 361 | }, 362 | "node_modules/@esbuild/android-x64": { 363 | "version": "0.25.10", 364 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.10.tgz", 365 | "integrity": "sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==", 366 | "cpu": [ 367 | "x64" 368 | ], 369 | "dev": true, 370 | "license": "MIT", 371 | "optional": true, 372 | "os": [ 373 | "android" 374 | ], 375 | "engines": { 376 | "node": ">=18" 377 | } 378 | }, 379 | "node_modules/@esbuild/darwin-arm64": { 380 | "version": "0.25.10", 381 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.10.tgz", 382 | "integrity": "sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==", 383 | "cpu": [ 384 | "arm64" 385 | ], 386 | "dev": true, 387 | "license": "MIT", 388 | "optional": true, 389 | "os": [ 390 | "darwin" 391 | ], 392 | "engines": { 393 | "node": ">=18" 394 | } 395 | }, 396 | "node_modules/@esbuild/darwin-x64": { 397 | "version": "0.25.10", 398 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.10.tgz", 399 | "integrity": "sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==", 400 | "cpu": [ 401 | "x64" 402 | ], 403 | "dev": true, 404 | "license": "MIT", 405 | "optional": true, 406 | "os": [ 407 | "darwin" 408 | ], 409 | "engines": { 410 | "node": ">=18" 411 | } 412 | }, 413 | "node_modules/@esbuild/freebsd-arm64": { 414 | "version": "0.25.10", 415 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.10.tgz", 416 | "integrity": "sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==", 417 | "cpu": [ 418 | "arm64" 419 | ], 420 | "dev": true, 421 | "license": "MIT", 422 | "optional": true, 423 | "os": [ 424 | "freebsd" 425 | ], 426 | "engines": { 427 | "node": ">=18" 428 | } 429 | }, 430 | "node_modules/@esbuild/freebsd-x64": { 431 | "version": "0.25.10", 432 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.10.tgz", 433 | "integrity": "sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==", 434 | "cpu": [ 435 | "x64" 436 | ], 437 | "dev": true, 438 | "license": "MIT", 439 | "optional": true, 440 | "os": [ 441 | "freebsd" 442 | ], 443 | "engines": { 444 | "node": ">=18" 445 | } 446 | }, 447 | "node_modules/@esbuild/linux-arm": { 448 | "version": "0.25.10", 449 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.10.tgz", 450 | "integrity": "sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==", 451 | "cpu": [ 452 | "arm" 453 | ], 454 | "dev": true, 455 | "license": "MIT", 456 | "optional": true, 457 | "os": [ 458 | "linux" 459 | ], 460 | "engines": { 461 | "node": ">=18" 462 | } 463 | }, 464 | "node_modules/@esbuild/linux-arm64": { 465 | "version": "0.25.10", 466 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.10.tgz", 467 | "integrity": "sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==", 468 | "cpu": [ 469 | "arm64" 470 | ], 471 | "dev": true, 472 | "license": "MIT", 473 | "optional": true, 474 | "os": [ 475 | "linux" 476 | ], 477 | "engines": { 478 | "node": ">=18" 479 | } 480 | }, 481 | "node_modules/@esbuild/linux-ia32": { 482 | "version": "0.25.10", 483 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.10.tgz", 484 | "integrity": "sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==", 485 | "cpu": [ 486 | "ia32" 487 | ], 488 | "dev": true, 489 | "license": "MIT", 490 | "optional": true, 491 | "os": [ 492 | "linux" 493 | ], 494 | "engines": { 495 | "node": ">=18" 496 | } 497 | }, 498 | "node_modules/@esbuild/linux-loong64": { 499 | "version": "0.25.10", 500 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.10.tgz", 501 | "integrity": "sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==", 502 | "cpu": [ 503 | "loong64" 504 | ], 505 | "dev": true, 506 | "license": "MIT", 507 | "optional": true, 508 | "os": [ 509 | "linux" 510 | ], 511 | "engines": { 512 | "node": ">=18" 513 | } 514 | }, 515 | "node_modules/@esbuild/linux-mips64el": { 516 | "version": "0.25.10", 517 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.10.tgz", 518 | "integrity": "sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==", 519 | "cpu": [ 520 | "mips64el" 521 | ], 522 | "dev": true, 523 | "license": "MIT", 524 | "optional": true, 525 | "os": [ 526 | "linux" 527 | ], 528 | "engines": { 529 | "node": ">=18" 530 | } 531 | }, 532 | "node_modules/@esbuild/linux-ppc64": { 533 | "version": "0.25.10", 534 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.10.tgz", 535 | "integrity": "sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==", 536 | "cpu": [ 537 | "ppc64" 538 | ], 539 | "dev": true, 540 | "license": "MIT", 541 | "optional": true, 542 | "os": [ 543 | "linux" 544 | ], 545 | "engines": { 546 | "node": ">=18" 547 | } 548 | }, 549 | "node_modules/@esbuild/linux-riscv64": { 550 | "version": "0.25.10", 551 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.10.tgz", 552 | "integrity": "sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==", 553 | "cpu": [ 554 | "riscv64" 555 | ], 556 | "dev": true, 557 | "license": "MIT", 558 | "optional": true, 559 | "os": [ 560 | "linux" 561 | ], 562 | "engines": { 563 | "node": ">=18" 564 | } 565 | }, 566 | "node_modules/@esbuild/linux-s390x": { 567 | "version": "0.25.10", 568 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.10.tgz", 569 | "integrity": "sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==", 570 | "cpu": [ 571 | "s390x" 572 | ], 573 | "dev": true, 574 | "license": "MIT", 575 | "optional": true, 576 | "os": [ 577 | "linux" 578 | ], 579 | "engines": { 580 | "node": ">=18" 581 | } 582 | }, 583 | "node_modules/@esbuild/linux-x64": { 584 | "version": "0.25.10", 585 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.10.tgz", 586 | "integrity": "sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==", 587 | "cpu": [ 588 | "x64" 589 | ], 590 | "dev": true, 591 | "license": "MIT", 592 | "optional": true, 593 | "os": [ 594 | "linux" 595 | ], 596 | "engines": { 597 | "node": ">=18" 598 | } 599 | }, 600 | "node_modules/@esbuild/netbsd-arm64": { 601 | "version": "0.25.10", 602 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.10.tgz", 603 | "integrity": "sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==", 604 | "cpu": [ 605 | "arm64" 606 | ], 607 | "dev": true, 608 | "license": "MIT", 609 | "optional": true, 610 | "os": [ 611 | "netbsd" 612 | ], 613 | "engines": { 614 | "node": ">=18" 615 | } 616 | }, 617 | "node_modules/@esbuild/netbsd-x64": { 618 | "version": "0.25.10", 619 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.10.tgz", 620 | "integrity": "sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==", 621 | "cpu": [ 622 | "x64" 623 | ], 624 | "dev": true, 625 | "license": "MIT", 626 | "optional": true, 627 | "os": [ 628 | "netbsd" 629 | ], 630 | "engines": { 631 | "node": ">=18" 632 | } 633 | }, 634 | "node_modules/@esbuild/openbsd-arm64": { 635 | "version": "0.25.10", 636 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.10.tgz", 637 | "integrity": "sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==", 638 | "cpu": [ 639 | "arm64" 640 | ], 641 | "dev": true, 642 | "license": "MIT", 643 | "optional": true, 644 | "os": [ 645 | "openbsd" 646 | ], 647 | "engines": { 648 | "node": ">=18" 649 | } 650 | }, 651 | "node_modules/@esbuild/openbsd-x64": { 652 | "version": "0.25.10", 653 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.10.tgz", 654 | "integrity": "sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==", 655 | "cpu": [ 656 | "x64" 657 | ], 658 | "dev": true, 659 | "license": "MIT", 660 | "optional": true, 661 | "os": [ 662 | "openbsd" 663 | ], 664 | "engines": { 665 | "node": ">=18" 666 | } 667 | }, 668 | "node_modules/@esbuild/openharmony-arm64": { 669 | "version": "0.25.10", 670 | "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.10.tgz", 671 | "integrity": "sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==", 672 | "cpu": [ 673 | "arm64" 674 | ], 675 | "dev": true, 676 | "license": "MIT", 677 | "optional": true, 678 | "os": [ 679 | "openharmony" 680 | ], 681 | "engines": { 682 | "node": ">=18" 683 | } 684 | }, 685 | "node_modules/@esbuild/sunos-x64": { 686 | "version": "0.25.10", 687 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.10.tgz", 688 | "integrity": "sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==", 689 | "cpu": [ 690 | "x64" 691 | ], 692 | "dev": true, 693 | "license": "MIT", 694 | "optional": true, 695 | "os": [ 696 | "sunos" 697 | ], 698 | "engines": { 699 | "node": ">=18" 700 | } 701 | }, 702 | "node_modules/@esbuild/win32-arm64": { 703 | "version": "0.25.10", 704 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.10.tgz", 705 | "integrity": "sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==", 706 | "cpu": [ 707 | "arm64" 708 | ], 709 | "dev": true, 710 | "license": "MIT", 711 | "optional": true, 712 | "os": [ 713 | "win32" 714 | ], 715 | "engines": { 716 | "node": ">=18" 717 | } 718 | }, 719 | "node_modules/@esbuild/win32-ia32": { 720 | "version": "0.25.10", 721 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.10.tgz", 722 | "integrity": "sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==", 723 | "cpu": [ 724 | "ia32" 725 | ], 726 | "dev": true, 727 | "license": "MIT", 728 | "optional": true, 729 | "os": [ 730 | "win32" 731 | ], 732 | "engines": { 733 | "node": ">=18" 734 | } 735 | }, 736 | "node_modules/@esbuild/win32-x64": { 737 | "version": "0.25.10", 738 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.10.tgz", 739 | "integrity": "sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==", 740 | "cpu": [ 741 | "x64" 742 | ], 743 | "dev": true, 744 | "license": "MIT", 745 | "optional": true, 746 | "os": [ 747 | "win32" 748 | ], 749 | "engines": { 750 | "node": ">=18" 751 | } 752 | }, 753 | "node_modules/@eslint-community/eslint-utils": { 754 | "version": "4.9.0", 755 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.9.0.tgz", 756 | "integrity": "sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==", 757 | "dev": true, 758 | "license": "MIT", 759 | "dependencies": { 760 | "eslint-visitor-keys": "^3.4.3" 761 | }, 762 | "engines": { 763 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 764 | }, 765 | "funding": { 766 | "url": "https://opencollective.com/eslint" 767 | }, 768 | "peerDependencies": { 769 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 770 | } 771 | }, 772 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 773 | "version": "3.4.3", 774 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 775 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 776 | "dev": true, 777 | "license": "Apache-2.0", 778 | "engines": { 779 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 780 | }, 781 | "funding": { 782 | "url": "https://opencollective.com/eslint" 783 | } 784 | }, 785 | "node_modules/@eslint-community/regexpp": { 786 | "version": "4.12.1", 787 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 788 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 789 | "dev": true, 790 | "license": "MIT", 791 | "engines": { 792 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 793 | } 794 | }, 795 | "node_modules/@eslint/config-array": { 796 | "version": "0.21.0", 797 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz", 798 | "integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==", 799 | "dev": true, 800 | "license": "Apache-2.0", 801 | "dependencies": { 802 | "@eslint/object-schema": "^2.1.6", 803 | "debug": "^4.3.1", 804 | "minimatch": "^3.1.2" 805 | }, 806 | "engines": { 807 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 808 | } 809 | }, 810 | "node_modules/@eslint/config-helpers": { 811 | "version": "0.4.0", 812 | "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.4.0.tgz", 813 | "integrity": "sha512-WUFvV4WoIwW8Bv0KeKCIIEgdSiFOsulyN0xrMu+7z43q/hkOLXjvb5u7UC9jDxvRzcrbEmuZBX5yJZz1741jog==", 814 | "dev": true, 815 | "license": "Apache-2.0", 816 | "dependencies": { 817 | "@eslint/core": "^0.16.0" 818 | }, 819 | "engines": { 820 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 821 | } 822 | }, 823 | "node_modules/@eslint/core": { 824 | "version": "0.16.0", 825 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.16.0.tgz", 826 | "integrity": "sha512-nmC8/totwobIiFcGkDza3GIKfAw1+hLiYVrh3I1nIomQ8PEr5cxg34jnkmGawul/ep52wGRAcyeDCNtWKSOj4Q==", 827 | "dev": true, 828 | "license": "Apache-2.0", 829 | "dependencies": { 830 | "@types/json-schema": "^7.0.15" 831 | }, 832 | "engines": { 833 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 834 | } 835 | }, 836 | "node_modules/@eslint/eslintrc": { 837 | "version": "3.3.1", 838 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", 839 | "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", 840 | "dev": true, 841 | "license": "MIT", 842 | "dependencies": { 843 | "ajv": "^6.12.4", 844 | "debug": "^4.3.2", 845 | "espree": "^10.0.1", 846 | "globals": "^14.0.0", 847 | "ignore": "^5.2.0", 848 | "import-fresh": "^3.2.1", 849 | "js-yaml": "^4.1.0", 850 | "minimatch": "^3.1.2", 851 | "strip-json-comments": "^3.1.1" 852 | }, 853 | "engines": { 854 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 855 | }, 856 | "funding": { 857 | "url": "https://opencollective.com/eslint" 858 | } 859 | }, 860 | "node_modules/@eslint/eslintrc/node_modules/globals": { 861 | "version": "14.0.0", 862 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 863 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 864 | "dev": true, 865 | "license": "MIT", 866 | "engines": { 867 | "node": ">=18" 868 | }, 869 | "funding": { 870 | "url": "https://github.com/sponsors/sindresorhus" 871 | } 872 | }, 873 | "node_modules/@eslint/js": { 874 | "version": "9.37.0", 875 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.37.0.tgz", 876 | "integrity": "sha512-jaS+NJ+hximswBG6pjNX0uEJZkrT0zwpVi3BA3vX22aFGjJjmgSTSmPpZCRKmoBL5VY/M6p0xsSJx7rk7sy5gg==", 877 | "dev": true, 878 | "license": "MIT", 879 | "engines": { 880 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 881 | }, 882 | "funding": { 883 | "url": "https://eslint.org/donate" 884 | } 885 | }, 886 | "node_modules/@eslint/object-schema": { 887 | "version": "2.1.6", 888 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", 889 | "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", 890 | "dev": true, 891 | "license": "Apache-2.0", 892 | "engines": { 893 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 894 | } 895 | }, 896 | "node_modules/@eslint/plugin-kit": { 897 | "version": "0.4.0", 898 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.4.0.tgz", 899 | "integrity": "sha512-sB5uyeq+dwCWyPi31B2gQlVlo+j5brPlWx4yZBrEaRo/nhdDE8Xke1gsGgtiBdaBTxuTkceLVuVt/pclrasb0A==", 900 | "dev": true, 901 | "license": "Apache-2.0", 902 | "dependencies": { 903 | "@eslint/core": "^0.16.0", 904 | "levn": "^0.4.1" 905 | }, 906 | "engines": { 907 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 908 | } 909 | }, 910 | "node_modules/@humanfs/core": { 911 | "version": "0.19.1", 912 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 913 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 914 | "dev": true, 915 | "license": "Apache-2.0", 916 | "engines": { 917 | "node": ">=18.18.0" 918 | } 919 | }, 920 | "node_modules/@humanfs/node": { 921 | "version": "0.16.7", 922 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.7.tgz", 923 | "integrity": "sha512-/zUx+yOsIrG4Y43Eh2peDeKCxlRt/gET6aHfaKpuq267qXdYDFViVHfMaLyygZOnl0kGWxFIgsBy8QFuTLUXEQ==", 924 | "dev": true, 925 | "license": "Apache-2.0", 926 | "dependencies": { 927 | "@humanfs/core": "^0.19.1", 928 | "@humanwhocodes/retry": "^0.4.0" 929 | }, 930 | "engines": { 931 | "node": ">=18.18.0" 932 | } 933 | }, 934 | "node_modules/@humanwhocodes/module-importer": { 935 | "version": "1.0.1", 936 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 937 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 938 | "dev": true, 939 | "license": "Apache-2.0", 940 | "engines": { 941 | "node": ">=12.22" 942 | }, 943 | "funding": { 944 | "type": "github", 945 | "url": "https://github.com/sponsors/nzakas" 946 | } 947 | }, 948 | "node_modules/@humanwhocodes/retry": { 949 | "version": "0.4.3", 950 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz", 951 | "integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==", 952 | "dev": true, 953 | "license": "Apache-2.0", 954 | "engines": { 955 | "node": ">=18.18" 956 | }, 957 | "funding": { 958 | "type": "github", 959 | "url": "https://github.com/sponsors/nzakas" 960 | } 961 | }, 962 | "node_modules/@jridgewell/gen-mapping": { 963 | "version": "0.3.13", 964 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", 965 | "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", 966 | "dev": true, 967 | "license": "MIT", 968 | "dependencies": { 969 | "@jridgewell/sourcemap-codec": "^1.5.0", 970 | "@jridgewell/trace-mapping": "^0.3.24" 971 | } 972 | }, 973 | "node_modules/@jridgewell/remapping": { 974 | "version": "2.3.5", 975 | "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", 976 | "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", 977 | "dev": true, 978 | "license": "MIT", 979 | "dependencies": { 980 | "@jridgewell/gen-mapping": "^0.3.5", 981 | "@jridgewell/trace-mapping": "^0.3.24" 982 | } 983 | }, 984 | "node_modules/@jridgewell/resolve-uri": { 985 | "version": "3.1.2", 986 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 987 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 988 | "dev": true, 989 | "license": "MIT", 990 | "engines": { 991 | "node": ">=6.0.0" 992 | } 993 | }, 994 | "node_modules/@jridgewell/sourcemap-codec": { 995 | "version": "1.5.5", 996 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", 997 | "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", 998 | "dev": true, 999 | "license": "MIT" 1000 | }, 1001 | "node_modules/@jridgewell/trace-mapping": { 1002 | "version": "0.3.31", 1003 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", 1004 | "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", 1005 | "dev": true, 1006 | "license": "MIT", 1007 | "dependencies": { 1008 | "@jridgewell/resolve-uri": "^3.1.0", 1009 | "@jridgewell/sourcemap-codec": "^1.4.14" 1010 | } 1011 | }, 1012 | "node_modules/@nodelib/fs.scandir": { 1013 | "version": "2.1.5", 1014 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 1015 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 1016 | "dev": true, 1017 | "license": "MIT", 1018 | "dependencies": { 1019 | "@nodelib/fs.stat": "2.0.5", 1020 | "run-parallel": "^1.1.9" 1021 | }, 1022 | "engines": { 1023 | "node": ">= 8" 1024 | } 1025 | }, 1026 | "node_modules/@nodelib/fs.stat": { 1027 | "version": "2.0.5", 1028 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 1029 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 1030 | "dev": true, 1031 | "license": "MIT", 1032 | "engines": { 1033 | "node": ">= 8" 1034 | } 1035 | }, 1036 | "node_modules/@nodelib/fs.walk": { 1037 | "version": "1.2.8", 1038 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 1039 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 1040 | "dev": true, 1041 | "license": "MIT", 1042 | "dependencies": { 1043 | "@nodelib/fs.scandir": "2.1.5", 1044 | "fastq": "^1.6.0" 1045 | }, 1046 | "engines": { 1047 | "node": ">= 8" 1048 | } 1049 | }, 1050 | "node_modules/@rolldown/pluginutils": { 1051 | "version": "1.0.0-beta.38", 1052 | "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.38.tgz", 1053 | "integrity": "sha512-N/ICGKleNhA5nc9XXQG/kkKHJ7S55u0x0XUJbbkmdCnFuoRkM1Il12q9q0eX19+M7KKUEPw/daUPIRnxhcxAIw==", 1054 | "dev": true, 1055 | "license": "MIT" 1056 | }, 1057 | "node_modules/@rollup/rollup-android-arm-eabi": { 1058 | "version": "4.52.4", 1059 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.52.4.tgz", 1060 | "integrity": "sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==", 1061 | "cpu": [ 1062 | "arm" 1063 | ], 1064 | "dev": true, 1065 | "license": "MIT", 1066 | "optional": true, 1067 | "os": [ 1068 | "android" 1069 | ] 1070 | }, 1071 | "node_modules/@rollup/rollup-android-arm64": { 1072 | "version": "4.52.4", 1073 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.52.4.tgz", 1074 | "integrity": "sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==", 1075 | "cpu": [ 1076 | "arm64" 1077 | ], 1078 | "dev": true, 1079 | "license": "MIT", 1080 | "optional": true, 1081 | "os": [ 1082 | "android" 1083 | ] 1084 | }, 1085 | "node_modules/@rollup/rollup-darwin-arm64": { 1086 | "version": "4.52.4", 1087 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.52.4.tgz", 1088 | "integrity": "sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==", 1089 | "cpu": [ 1090 | "arm64" 1091 | ], 1092 | "dev": true, 1093 | "license": "MIT", 1094 | "optional": true, 1095 | "os": [ 1096 | "darwin" 1097 | ] 1098 | }, 1099 | "node_modules/@rollup/rollup-darwin-x64": { 1100 | "version": "4.52.4", 1101 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.52.4.tgz", 1102 | "integrity": "sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==", 1103 | "cpu": [ 1104 | "x64" 1105 | ], 1106 | "dev": true, 1107 | "license": "MIT", 1108 | "optional": true, 1109 | "os": [ 1110 | "darwin" 1111 | ] 1112 | }, 1113 | "node_modules/@rollup/rollup-freebsd-arm64": { 1114 | "version": "4.52.4", 1115 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.52.4.tgz", 1116 | "integrity": "sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==", 1117 | "cpu": [ 1118 | "arm64" 1119 | ], 1120 | "dev": true, 1121 | "license": "MIT", 1122 | "optional": true, 1123 | "os": [ 1124 | "freebsd" 1125 | ] 1126 | }, 1127 | "node_modules/@rollup/rollup-freebsd-x64": { 1128 | "version": "4.52.4", 1129 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.52.4.tgz", 1130 | "integrity": "sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==", 1131 | "cpu": [ 1132 | "x64" 1133 | ], 1134 | "dev": true, 1135 | "license": "MIT", 1136 | "optional": true, 1137 | "os": [ 1138 | "freebsd" 1139 | ] 1140 | }, 1141 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1142 | "version": "4.52.4", 1143 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.52.4.tgz", 1144 | "integrity": "sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==", 1145 | "cpu": [ 1146 | "arm" 1147 | ], 1148 | "dev": true, 1149 | "license": "MIT", 1150 | "optional": true, 1151 | "os": [ 1152 | "linux" 1153 | ] 1154 | }, 1155 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 1156 | "version": "4.52.4", 1157 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.52.4.tgz", 1158 | "integrity": "sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==", 1159 | "cpu": [ 1160 | "arm" 1161 | ], 1162 | "dev": true, 1163 | "license": "MIT", 1164 | "optional": true, 1165 | "os": [ 1166 | "linux" 1167 | ] 1168 | }, 1169 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 1170 | "version": "4.52.4", 1171 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.52.4.tgz", 1172 | "integrity": "sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==", 1173 | "cpu": [ 1174 | "arm64" 1175 | ], 1176 | "dev": true, 1177 | "license": "MIT", 1178 | "optional": true, 1179 | "os": [ 1180 | "linux" 1181 | ] 1182 | }, 1183 | "node_modules/@rollup/rollup-linux-arm64-musl": { 1184 | "version": "4.52.4", 1185 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.52.4.tgz", 1186 | "integrity": "sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==", 1187 | "cpu": [ 1188 | "arm64" 1189 | ], 1190 | "dev": true, 1191 | "license": "MIT", 1192 | "optional": true, 1193 | "os": [ 1194 | "linux" 1195 | ] 1196 | }, 1197 | "node_modules/@rollup/rollup-linux-loong64-gnu": { 1198 | "version": "4.52.4", 1199 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.52.4.tgz", 1200 | "integrity": "sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==", 1201 | "cpu": [ 1202 | "loong64" 1203 | ], 1204 | "dev": true, 1205 | "license": "MIT", 1206 | "optional": true, 1207 | "os": [ 1208 | "linux" 1209 | ] 1210 | }, 1211 | "node_modules/@rollup/rollup-linux-ppc64-gnu": { 1212 | "version": "4.52.4", 1213 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.52.4.tgz", 1214 | "integrity": "sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==", 1215 | "cpu": [ 1216 | "ppc64" 1217 | ], 1218 | "dev": true, 1219 | "license": "MIT", 1220 | "optional": true, 1221 | "os": [ 1222 | "linux" 1223 | ] 1224 | }, 1225 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1226 | "version": "4.52.4", 1227 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.52.4.tgz", 1228 | "integrity": "sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==", 1229 | "cpu": [ 1230 | "riscv64" 1231 | ], 1232 | "dev": true, 1233 | "license": "MIT", 1234 | "optional": true, 1235 | "os": [ 1236 | "linux" 1237 | ] 1238 | }, 1239 | "node_modules/@rollup/rollup-linux-riscv64-musl": { 1240 | "version": "4.52.4", 1241 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.52.4.tgz", 1242 | "integrity": "sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==", 1243 | "cpu": [ 1244 | "riscv64" 1245 | ], 1246 | "dev": true, 1247 | "license": "MIT", 1248 | "optional": true, 1249 | "os": [ 1250 | "linux" 1251 | ] 1252 | }, 1253 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 1254 | "version": "4.52.4", 1255 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.52.4.tgz", 1256 | "integrity": "sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==", 1257 | "cpu": [ 1258 | "s390x" 1259 | ], 1260 | "dev": true, 1261 | "license": "MIT", 1262 | "optional": true, 1263 | "os": [ 1264 | "linux" 1265 | ] 1266 | }, 1267 | "node_modules/@rollup/rollup-linux-x64-gnu": { 1268 | "version": "4.52.4", 1269 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.52.4.tgz", 1270 | "integrity": "sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==", 1271 | "cpu": [ 1272 | "x64" 1273 | ], 1274 | "dev": true, 1275 | "license": "MIT", 1276 | "optional": true, 1277 | "os": [ 1278 | "linux" 1279 | ] 1280 | }, 1281 | "node_modules/@rollup/rollup-linux-x64-musl": { 1282 | "version": "4.52.4", 1283 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.52.4.tgz", 1284 | "integrity": "sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==", 1285 | "cpu": [ 1286 | "x64" 1287 | ], 1288 | "dev": true, 1289 | "license": "MIT", 1290 | "optional": true, 1291 | "os": [ 1292 | "linux" 1293 | ] 1294 | }, 1295 | "node_modules/@rollup/rollup-openharmony-arm64": { 1296 | "version": "4.52.4", 1297 | "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.52.4.tgz", 1298 | "integrity": "sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==", 1299 | "cpu": [ 1300 | "arm64" 1301 | ], 1302 | "dev": true, 1303 | "license": "MIT", 1304 | "optional": true, 1305 | "os": [ 1306 | "openharmony" 1307 | ] 1308 | }, 1309 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 1310 | "version": "4.52.4", 1311 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.52.4.tgz", 1312 | "integrity": "sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==", 1313 | "cpu": [ 1314 | "arm64" 1315 | ], 1316 | "dev": true, 1317 | "license": "MIT", 1318 | "optional": true, 1319 | "os": [ 1320 | "win32" 1321 | ] 1322 | }, 1323 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 1324 | "version": "4.52.4", 1325 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.52.4.tgz", 1326 | "integrity": "sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==", 1327 | "cpu": [ 1328 | "ia32" 1329 | ], 1330 | "dev": true, 1331 | "license": "MIT", 1332 | "optional": true, 1333 | "os": [ 1334 | "win32" 1335 | ] 1336 | }, 1337 | "node_modules/@rollup/rollup-win32-x64-gnu": { 1338 | "version": "4.52.4", 1339 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.52.4.tgz", 1340 | "integrity": "sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==", 1341 | "cpu": [ 1342 | "x64" 1343 | ], 1344 | "dev": true, 1345 | "license": "MIT", 1346 | "optional": true, 1347 | "os": [ 1348 | "win32" 1349 | ] 1350 | }, 1351 | "node_modules/@rollup/rollup-win32-x64-msvc": { 1352 | "version": "4.52.4", 1353 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.52.4.tgz", 1354 | "integrity": "sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==", 1355 | "cpu": [ 1356 | "x64" 1357 | ], 1358 | "dev": true, 1359 | "license": "MIT", 1360 | "optional": true, 1361 | "os": [ 1362 | "win32" 1363 | ] 1364 | }, 1365 | "node_modules/@types/babel__core": { 1366 | "version": "7.20.5", 1367 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 1368 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 1369 | "dev": true, 1370 | "license": "MIT", 1371 | "dependencies": { 1372 | "@babel/parser": "^7.20.7", 1373 | "@babel/types": "^7.20.7", 1374 | "@types/babel__generator": "*", 1375 | "@types/babel__template": "*", 1376 | "@types/babel__traverse": "*" 1377 | } 1378 | }, 1379 | "node_modules/@types/babel__generator": { 1380 | "version": "7.27.0", 1381 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", 1382 | "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", 1383 | "dev": true, 1384 | "license": "MIT", 1385 | "dependencies": { 1386 | "@babel/types": "^7.0.0" 1387 | } 1388 | }, 1389 | "node_modules/@types/babel__template": { 1390 | "version": "7.4.4", 1391 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 1392 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 1393 | "dev": true, 1394 | "license": "MIT", 1395 | "dependencies": { 1396 | "@babel/parser": "^7.1.0", 1397 | "@babel/types": "^7.0.0" 1398 | } 1399 | }, 1400 | "node_modules/@types/babel__traverse": { 1401 | "version": "7.28.0", 1402 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", 1403 | "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", 1404 | "dev": true, 1405 | "license": "MIT", 1406 | "dependencies": { 1407 | "@babel/types": "^7.28.2" 1408 | } 1409 | }, 1410 | "node_modules/@types/estree": { 1411 | "version": "1.0.8", 1412 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", 1413 | "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", 1414 | "dev": true, 1415 | "license": "MIT" 1416 | }, 1417 | "node_modules/@types/json-schema": { 1418 | "version": "7.0.15", 1419 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 1420 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 1421 | "dev": true, 1422 | "license": "MIT" 1423 | }, 1424 | "node_modules/@types/node": { 1425 | "version": "24.7.2", 1426 | "resolved": "https://registry.npmjs.org/@types/node/-/node-24.7.2.tgz", 1427 | "integrity": "sha512-/NbVmcGTP+lj5oa4yiYxxeBjRivKQ5Ns1eSZeB99ExsEQ6rX5XYU1Zy/gGxY/ilqtD4Etx9mKyrPxZRetiahhA==", 1428 | "dev": true, 1429 | "license": "MIT", 1430 | "dependencies": { 1431 | "undici-types": "~7.14.0" 1432 | } 1433 | }, 1434 | "node_modules/@types/react": { 1435 | "version": "19.2.2", 1436 | "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.2.tgz", 1437 | "integrity": "sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==", 1438 | "dev": true, 1439 | "license": "MIT", 1440 | "dependencies": { 1441 | "csstype": "^3.0.2" 1442 | } 1443 | }, 1444 | "node_modules/@types/react-dom": { 1445 | "version": "19.2.1", 1446 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.1.tgz", 1447 | "integrity": "sha512-/EEvYBdT3BflCWvTMO7YkYBHVE9Ci6XdqZciZANQgKpaiDRGOLIlRo91jbTNRQjgPFWVaRxcYc0luVNFitz57A==", 1448 | "dev": true, 1449 | "license": "MIT", 1450 | "peerDependencies": { 1451 | "@types/react": "^19.2.0" 1452 | } 1453 | }, 1454 | "node_modules/@typescript-eslint/eslint-plugin": { 1455 | "version": "8.46.0", 1456 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.46.0.tgz", 1457 | "integrity": "sha512-hA8gxBq4ukonVXPy0OKhiaUh/68D0E88GSmtC1iAEnGaieuDi38LhS7jdCHRLi6ErJBNDGCzvh5EnzdPwUc0DA==", 1458 | "dev": true, 1459 | "license": "MIT", 1460 | "dependencies": { 1461 | "@eslint-community/regexpp": "^4.10.0", 1462 | "@typescript-eslint/scope-manager": "8.46.0", 1463 | "@typescript-eslint/type-utils": "8.46.0", 1464 | "@typescript-eslint/utils": "8.46.0", 1465 | "@typescript-eslint/visitor-keys": "8.46.0", 1466 | "graphemer": "^1.4.0", 1467 | "ignore": "^7.0.0", 1468 | "natural-compare": "^1.4.0", 1469 | "ts-api-utils": "^2.1.0" 1470 | }, 1471 | "engines": { 1472 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1473 | }, 1474 | "funding": { 1475 | "type": "opencollective", 1476 | "url": "https://opencollective.com/typescript-eslint" 1477 | }, 1478 | "peerDependencies": { 1479 | "@typescript-eslint/parser": "^8.46.0", 1480 | "eslint": "^8.57.0 || ^9.0.0", 1481 | "typescript": ">=4.8.4 <6.0.0" 1482 | } 1483 | }, 1484 | "node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore": { 1485 | "version": "7.0.5", 1486 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.5.tgz", 1487 | "integrity": "sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==", 1488 | "dev": true, 1489 | "license": "MIT", 1490 | "engines": { 1491 | "node": ">= 4" 1492 | } 1493 | }, 1494 | "node_modules/@typescript-eslint/parser": { 1495 | "version": "8.46.0", 1496 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.46.0.tgz", 1497 | "integrity": "sha512-n1H6IcDhmmUEG7TNVSspGmiHHutt7iVKtZwRppD7e04wha5MrkV1h3pti9xQLcCMt6YWsncpoT0HMjkH1FNwWQ==", 1498 | "dev": true, 1499 | "license": "MIT", 1500 | "dependencies": { 1501 | "@typescript-eslint/scope-manager": "8.46.0", 1502 | "@typescript-eslint/types": "8.46.0", 1503 | "@typescript-eslint/typescript-estree": "8.46.0", 1504 | "@typescript-eslint/visitor-keys": "8.46.0", 1505 | "debug": "^4.3.4" 1506 | }, 1507 | "engines": { 1508 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1509 | }, 1510 | "funding": { 1511 | "type": "opencollective", 1512 | "url": "https://opencollective.com/typescript-eslint" 1513 | }, 1514 | "peerDependencies": { 1515 | "eslint": "^8.57.0 || ^9.0.0", 1516 | "typescript": ">=4.8.4 <6.0.0" 1517 | } 1518 | }, 1519 | "node_modules/@typescript-eslint/project-service": { 1520 | "version": "8.46.0", 1521 | "resolved": "https://registry.npmjs.org/@typescript-eslint/project-service/-/project-service-8.46.0.tgz", 1522 | "integrity": "sha512-OEhec0mH+U5Je2NZOeK1AbVCdm0ChyapAyTeXVIYTPXDJ3F07+cu87PPXcGoYqZ7M9YJVvFnfpGg1UmCIqM+QQ==", 1523 | "dev": true, 1524 | "license": "MIT", 1525 | "dependencies": { 1526 | "@typescript-eslint/tsconfig-utils": "^8.46.0", 1527 | "@typescript-eslint/types": "^8.46.0", 1528 | "debug": "^4.3.4" 1529 | }, 1530 | "engines": { 1531 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1532 | }, 1533 | "funding": { 1534 | "type": "opencollective", 1535 | "url": "https://opencollective.com/typescript-eslint" 1536 | }, 1537 | "peerDependencies": { 1538 | "typescript": ">=4.8.4 <6.0.0" 1539 | } 1540 | }, 1541 | "node_modules/@typescript-eslint/scope-manager": { 1542 | "version": "8.46.0", 1543 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.46.0.tgz", 1544 | "integrity": "sha512-lWETPa9XGcBes4jqAMYD9fW0j4n6hrPtTJwWDmtqgFO/4HF4jmdH/Q6wggTw5qIT5TXjKzbt7GsZUBnWoO3dqw==", 1545 | "dev": true, 1546 | "license": "MIT", 1547 | "dependencies": { 1548 | "@typescript-eslint/types": "8.46.0", 1549 | "@typescript-eslint/visitor-keys": "8.46.0" 1550 | }, 1551 | "engines": { 1552 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1553 | }, 1554 | "funding": { 1555 | "type": "opencollective", 1556 | "url": "https://opencollective.com/typescript-eslint" 1557 | } 1558 | }, 1559 | "node_modules/@typescript-eslint/tsconfig-utils": { 1560 | "version": "8.46.0", 1561 | "resolved": "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.46.0.tgz", 1562 | "integrity": "sha512-WrYXKGAHY836/N7zoK/kzi6p8tXFhasHh8ocFL9VZSAkvH956gfeRfcnhs3xzRy8qQ/dq3q44v1jvQieMFg2cw==", 1563 | "dev": true, 1564 | "license": "MIT", 1565 | "engines": { 1566 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1567 | }, 1568 | "funding": { 1569 | "type": "opencollective", 1570 | "url": "https://opencollective.com/typescript-eslint" 1571 | }, 1572 | "peerDependencies": { 1573 | "typescript": ">=4.8.4 <6.0.0" 1574 | } 1575 | }, 1576 | "node_modules/@typescript-eslint/type-utils": { 1577 | "version": "8.46.0", 1578 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.46.0.tgz", 1579 | "integrity": "sha512-hy+lvYV1lZpVs2jRaEYvgCblZxUoJiPyCemwbQZ+NGulWkQRy0HRPYAoef/CNSzaLt+MLvMptZsHXHlkEilaeg==", 1580 | "dev": true, 1581 | "license": "MIT", 1582 | "dependencies": { 1583 | "@typescript-eslint/types": "8.46.0", 1584 | "@typescript-eslint/typescript-estree": "8.46.0", 1585 | "@typescript-eslint/utils": "8.46.0", 1586 | "debug": "^4.3.4", 1587 | "ts-api-utils": "^2.1.0" 1588 | }, 1589 | "engines": { 1590 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1591 | }, 1592 | "funding": { 1593 | "type": "opencollective", 1594 | "url": "https://opencollective.com/typescript-eslint" 1595 | }, 1596 | "peerDependencies": { 1597 | "eslint": "^8.57.0 || ^9.0.0", 1598 | "typescript": ">=4.8.4 <6.0.0" 1599 | } 1600 | }, 1601 | "node_modules/@typescript-eslint/types": { 1602 | "version": "8.46.0", 1603 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.46.0.tgz", 1604 | "integrity": "sha512-bHGGJyVjSE4dJJIO5yyEWt/cHyNwga/zXGJbJJ8TiO01aVREK6gCTu3L+5wrkb1FbDkQ+TKjMNe9R/QQQP9+rA==", 1605 | "dev": true, 1606 | "license": "MIT", 1607 | "engines": { 1608 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1609 | }, 1610 | "funding": { 1611 | "type": "opencollective", 1612 | "url": "https://opencollective.com/typescript-eslint" 1613 | } 1614 | }, 1615 | "node_modules/@typescript-eslint/typescript-estree": { 1616 | "version": "8.46.0", 1617 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.46.0.tgz", 1618 | "integrity": "sha512-ekDCUfVpAKWJbRfm8T1YRrCot1KFxZn21oV76v5Fj4tr7ELyk84OS+ouvYdcDAwZL89WpEkEj2DKQ+qg//+ucg==", 1619 | "dev": true, 1620 | "license": "MIT", 1621 | "dependencies": { 1622 | "@typescript-eslint/project-service": "8.46.0", 1623 | "@typescript-eslint/tsconfig-utils": "8.46.0", 1624 | "@typescript-eslint/types": "8.46.0", 1625 | "@typescript-eslint/visitor-keys": "8.46.0", 1626 | "debug": "^4.3.4", 1627 | "fast-glob": "^3.3.2", 1628 | "is-glob": "^4.0.3", 1629 | "minimatch": "^9.0.4", 1630 | "semver": "^7.6.0", 1631 | "ts-api-utils": "^2.1.0" 1632 | }, 1633 | "engines": { 1634 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1635 | }, 1636 | "funding": { 1637 | "type": "opencollective", 1638 | "url": "https://opencollective.com/typescript-eslint" 1639 | }, 1640 | "peerDependencies": { 1641 | "typescript": ">=4.8.4 <6.0.0" 1642 | } 1643 | }, 1644 | "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { 1645 | "version": "2.0.2", 1646 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", 1647 | "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", 1648 | "dev": true, 1649 | "license": "MIT", 1650 | "dependencies": { 1651 | "balanced-match": "^1.0.0" 1652 | } 1653 | }, 1654 | "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { 1655 | "version": "9.0.5", 1656 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1657 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1658 | "dev": true, 1659 | "license": "ISC", 1660 | "dependencies": { 1661 | "brace-expansion": "^2.0.1" 1662 | }, 1663 | "engines": { 1664 | "node": ">=16 || 14 >=14.17" 1665 | }, 1666 | "funding": { 1667 | "url": "https://github.com/sponsors/isaacs" 1668 | } 1669 | }, 1670 | "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { 1671 | "version": "7.7.3", 1672 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", 1673 | "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", 1674 | "dev": true, 1675 | "license": "ISC", 1676 | "bin": { 1677 | "semver": "bin/semver.js" 1678 | }, 1679 | "engines": { 1680 | "node": ">=10" 1681 | } 1682 | }, 1683 | "node_modules/@typescript-eslint/utils": { 1684 | "version": "8.46.0", 1685 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.46.0.tgz", 1686 | "integrity": "sha512-nD6yGWPj1xiOm4Gk0k6hLSZz2XkNXhuYmyIrOWcHoPuAhjT9i5bAG+xbWPgFeNR8HPHHtpNKdYUXJl/D3x7f5g==", 1687 | "dev": true, 1688 | "license": "MIT", 1689 | "dependencies": { 1690 | "@eslint-community/eslint-utils": "^4.7.0", 1691 | "@typescript-eslint/scope-manager": "8.46.0", 1692 | "@typescript-eslint/types": "8.46.0", 1693 | "@typescript-eslint/typescript-estree": "8.46.0" 1694 | }, 1695 | "engines": { 1696 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1697 | }, 1698 | "funding": { 1699 | "type": "opencollective", 1700 | "url": "https://opencollective.com/typescript-eslint" 1701 | }, 1702 | "peerDependencies": { 1703 | "eslint": "^8.57.0 || ^9.0.0", 1704 | "typescript": ">=4.8.4 <6.0.0" 1705 | } 1706 | }, 1707 | "node_modules/@typescript-eslint/visitor-keys": { 1708 | "version": "8.46.0", 1709 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.46.0.tgz", 1710 | "integrity": "sha512-FrvMpAK+hTbFy7vH5j1+tMYHMSKLE6RzluFJlkFNKD0p9YsUT75JlBSmr5so3QRzvMwU5/bIEdeNrxm8du8l3Q==", 1711 | "dev": true, 1712 | "license": "MIT", 1713 | "dependencies": { 1714 | "@typescript-eslint/types": "8.46.0", 1715 | "eslint-visitor-keys": "^4.2.1" 1716 | }, 1717 | "engines": { 1718 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1719 | }, 1720 | "funding": { 1721 | "type": "opencollective", 1722 | "url": "https://opencollective.com/typescript-eslint" 1723 | } 1724 | }, 1725 | "node_modules/@vitejs/plugin-react": { 1726 | "version": "5.0.4", 1727 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.0.4.tgz", 1728 | "integrity": "sha512-La0KD0vGkVkSk6K+piWDKRUyg8Rl5iAIKRMH0vMJI0Eg47bq1eOxmoObAaQG37WMW9MSyk7Cs8EIWwJC1PtzKA==", 1729 | "dev": true, 1730 | "license": "MIT", 1731 | "dependencies": { 1732 | "@babel/core": "^7.28.4", 1733 | "@babel/plugin-transform-react-jsx-self": "^7.27.1", 1734 | "@babel/plugin-transform-react-jsx-source": "^7.27.1", 1735 | "@rolldown/pluginutils": "1.0.0-beta.38", 1736 | "@types/babel__core": "^7.20.5", 1737 | "react-refresh": "^0.17.0" 1738 | }, 1739 | "engines": { 1740 | "node": "^20.19.0 || >=22.12.0" 1741 | }, 1742 | "peerDependencies": { 1743 | "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" 1744 | } 1745 | }, 1746 | "node_modules/acorn": { 1747 | "version": "8.15.0", 1748 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", 1749 | "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", 1750 | "dev": true, 1751 | "license": "MIT", 1752 | "bin": { 1753 | "acorn": "bin/acorn" 1754 | }, 1755 | "engines": { 1756 | "node": ">=0.4.0" 1757 | } 1758 | }, 1759 | "node_modules/acorn-jsx": { 1760 | "version": "5.3.2", 1761 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1762 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1763 | "dev": true, 1764 | "license": "MIT", 1765 | "peerDependencies": { 1766 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1767 | } 1768 | }, 1769 | "node_modules/ajv": { 1770 | "version": "6.12.6", 1771 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1772 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1773 | "dev": true, 1774 | "license": "MIT", 1775 | "dependencies": { 1776 | "fast-deep-equal": "^3.1.1", 1777 | "fast-json-stable-stringify": "^2.0.0", 1778 | "json-schema-traverse": "^0.4.1", 1779 | "uri-js": "^4.2.2" 1780 | }, 1781 | "funding": { 1782 | "type": "github", 1783 | "url": "https://github.com/sponsors/epoberezkin" 1784 | } 1785 | }, 1786 | "node_modules/ansi-styles": { 1787 | "version": "4.3.0", 1788 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1789 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1790 | "dev": true, 1791 | "license": "MIT", 1792 | "dependencies": { 1793 | "color-convert": "^2.0.1" 1794 | }, 1795 | "engines": { 1796 | "node": ">=8" 1797 | }, 1798 | "funding": { 1799 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1800 | } 1801 | }, 1802 | "node_modules/argparse": { 1803 | "version": "2.0.1", 1804 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1805 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1806 | "dev": true, 1807 | "license": "Python-2.0" 1808 | }, 1809 | "node_modules/balanced-match": { 1810 | "version": "1.0.2", 1811 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1812 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1813 | "dev": true, 1814 | "license": "MIT" 1815 | }, 1816 | "node_modules/baseline-browser-mapping": { 1817 | "version": "2.8.16", 1818 | "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.8.16.tgz", 1819 | "integrity": "sha512-OMu3BGQ4E7P1ErFsIPpbJh0qvDudM/UuJeHgkAvfWe+0HFJCXh+t/l8L6fVLR55RI/UbKrVLnAXZSVwd9ysWYw==", 1820 | "dev": true, 1821 | "license": "Apache-2.0", 1822 | "bin": { 1823 | "baseline-browser-mapping": "dist/cli.js" 1824 | } 1825 | }, 1826 | "node_modules/brace-expansion": { 1827 | "version": "1.1.12", 1828 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", 1829 | "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", 1830 | "dev": true, 1831 | "license": "MIT", 1832 | "dependencies": { 1833 | "balanced-match": "^1.0.0", 1834 | "concat-map": "0.0.1" 1835 | } 1836 | }, 1837 | "node_modules/braces": { 1838 | "version": "3.0.3", 1839 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1840 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1841 | "dev": true, 1842 | "license": "MIT", 1843 | "dependencies": { 1844 | "fill-range": "^7.1.1" 1845 | }, 1846 | "engines": { 1847 | "node": ">=8" 1848 | } 1849 | }, 1850 | "node_modules/browserslist": { 1851 | "version": "4.26.3", 1852 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.26.3.tgz", 1853 | "integrity": "sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==", 1854 | "dev": true, 1855 | "funding": [ 1856 | { 1857 | "type": "opencollective", 1858 | "url": "https://opencollective.com/browserslist" 1859 | }, 1860 | { 1861 | "type": "tidelift", 1862 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1863 | }, 1864 | { 1865 | "type": "github", 1866 | "url": "https://github.com/sponsors/ai" 1867 | } 1868 | ], 1869 | "license": "MIT", 1870 | "dependencies": { 1871 | "baseline-browser-mapping": "^2.8.9", 1872 | "caniuse-lite": "^1.0.30001746", 1873 | "electron-to-chromium": "^1.5.227", 1874 | "node-releases": "^2.0.21", 1875 | "update-browserslist-db": "^1.1.3" 1876 | }, 1877 | "bin": { 1878 | "browserslist": "cli.js" 1879 | }, 1880 | "engines": { 1881 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1882 | } 1883 | }, 1884 | "node_modules/callsites": { 1885 | "version": "3.1.0", 1886 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1887 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1888 | "dev": true, 1889 | "license": "MIT", 1890 | "engines": { 1891 | "node": ">=6" 1892 | } 1893 | }, 1894 | "node_modules/caniuse-lite": { 1895 | "version": "1.0.30001750", 1896 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001750.tgz", 1897 | "integrity": "sha512-cuom0g5sdX6rw00qOoLNSFCJ9/mYIsuSOA+yzpDw8eopiFqcVwQvZHqov0vmEighRxX++cfC0Vg1G+1Iy/mSpQ==", 1898 | "dev": true, 1899 | "funding": [ 1900 | { 1901 | "type": "opencollective", 1902 | "url": "https://opencollective.com/browserslist" 1903 | }, 1904 | { 1905 | "type": "tidelift", 1906 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1907 | }, 1908 | { 1909 | "type": "github", 1910 | "url": "https://github.com/sponsors/ai" 1911 | } 1912 | ], 1913 | "license": "CC-BY-4.0" 1914 | }, 1915 | "node_modules/chalk": { 1916 | "version": "4.1.2", 1917 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1918 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1919 | "dev": true, 1920 | "license": "MIT", 1921 | "dependencies": { 1922 | "ansi-styles": "^4.1.0", 1923 | "supports-color": "^7.1.0" 1924 | }, 1925 | "engines": { 1926 | "node": ">=10" 1927 | }, 1928 | "funding": { 1929 | "url": "https://github.com/chalk/chalk?sponsor=1" 1930 | } 1931 | }, 1932 | "node_modules/color-convert": { 1933 | "version": "2.0.1", 1934 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1935 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1936 | "dev": true, 1937 | "license": "MIT", 1938 | "dependencies": { 1939 | "color-name": "~1.1.4" 1940 | }, 1941 | "engines": { 1942 | "node": ">=7.0.0" 1943 | } 1944 | }, 1945 | "node_modules/color-name": { 1946 | "version": "1.1.4", 1947 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1948 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1949 | "dev": true, 1950 | "license": "MIT" 1951 | }, 1952 | "node_modules/concat-map": { 1953 | "version": "0.0.1", 1954 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1955 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1956 | "dev": true, 1957 | "license": "MIT" 1958 | }, 1959 | "node_modules/convert-source-map": { 1960 | "version": "2.0.0", 1961 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1962 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1963 | "dev": true, 1964 | "license": "MIT" 1965 | }, 1966 | "node_modules/cross-spawn": { 1967 | "version": "7.0.6", 1968 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1969 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1970 | "dev": true, 1971 | "license": "MIT", 1972 | "dependencies": { 1973 | "path-key": "^3.1.0", 1974 | "shebang-command": "^2.0.0", 1975 | "which": "^2.0.1" 1976 | }, 1977 | "engines": { 1978 | "node": ">= 8" 1979 | } 1980 | }, 1981 | "node_modules/csstype": { 1982 | "version": "3.1.3", 1983 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 1984 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 1985 | "dev": true, 1986 | "license": "MIT" 1987 | }, 1988 | "node_modules/debug": { 1989 | "version": "4.4.3", 1990 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", 1991 | "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", 1992 | "dev": true, 1993 | "license": "MIT", 1994 | "dependencies": { 1995 | "ms": "^2.1.3" 1996 | }, 1997 | "engines": { 1998 | "node": ">=6.0" 1999 | }, 2000 | "peerDependenciesMeta": { 2001 | "supports-color": { 2002 | "optional": true 2003 | } 2004 | } 2005 | }, 2006 | "node_modules/deep-is": { 2007 | "version": "0.1.4", 2008 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 2009 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 2010 | "dev": true, 2011 | "license": "MIT" 2012 | }, 2013 | "node_modules/electron-to-chromium": { 2014 | "version": "1.5.234", 2015 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.234.tgz", 2016 | "integrity": "sha512-RXfEp2x+VRYn8jbKfQlRImzoJU01kyDvVPBmG39eU2iuRVhuS6vQNocB8J0/8GrIMLnPzgz4eW6WiRnJkTuNWg==", 2017 | "dev": true, 2018 | "license": "ISC" 2019 | }, 2020 | "node_modules/esbuild": { 2021 | "version": "0.25.10", 2022 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.10.tgz", 2023 | "integrity": "sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==", 2024 | "dev": true, 2025 | "hasInstallScript": true, 2026 | "license": "MIT", 2027 | "bin": { 2028 | "esbuild": "bin/esbuild" 2029 | }, 2030 | "engines": { 2031 | "node": ">=18" 2032 | }, 2033 | "optionalDependencies": { 2034 | "@esbuild/aix-ppc64": "0.25.10", 2035 | "@esbuild/android-arm": "0.25.10", 2036 | "@esbuild/android-arm64": "0.25.10", 2037 | "@esbuild/android-x64": "0.25.10", 2038 | "@esbuild/darwin-arm64": "0.25.10", 2039 | "@esbuild/darwin-x64": "0.25.10", 2040 | "@esbuild/freebsd-arm64": "0.25.10", 2041 | "@esbuild/freebsd-x64": "0.25.10", 2042 | "@esbuild/linux-arm": "0.25.10", 2043 | "@esbuild/linux-arm64": "0.25.10", 2044 | "@esbuild/linux-ia32": "0.25.10", 2045 | "@esbuild/linux-loong64": "0.25.10", 2046 | "@esbuild/linux-mips64el": "0.25.10", 2047 | "@esbuild/linux-ppc64": "0.25.10", 2048 | "@esbuild/linux-riscv64": "0.25.10", 2049 | "@esbuild/linux-s390x": "0.25.10", 2050 | "@esbuild/linux-x64": "0.25.10", 2051 | "@esbuild/netbsd-arm64": "0.25.10", 2052 | "@esbuild/netbsd-x64": "0.25.10", 2053 | "@esbuild/openbsd-arm64": "0.25.10", 2054 | "@esbuild/openbsd-x64": "0.25.10", 2055 | "@esbuild/openharmony-arm64": "0.25.10", 2056 | "@esbuild/sunos-x64": "0.25.10", 2057 | "@esbuild/win32-arm64": "0.25.10", 2058 | "@esbuild/win32-ia32": "0.25.10", 2059 | "@esbuild/win32-x64": "0.25.10" 2060 | } 2061 | }, 2062 | "node_modules/escalade": { 2063 | "version": "3.2.0", 2064 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 2065 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 2066 | "dev": true, 2067 | "license": "MIT", 2068 | "engines": { 2069 | "node": ">=6" 2070 | } 2071 | }, 2072 | "node_modules/escape-string-regexp": { 2073 | "version": "4.0.0", 2074 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 2075 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 2076 | "dev": true, 2077 | "license": "MIT", 2078 | "engines": { 2079 | "node": ">=10" 2080 | }, 2081 | "funding": { 2082 | "url": "https://github.com/sponsors/sindresorhus" 2083 | } 2084 | }, 2085 | "node_modules/eslint": { 2086 | "version": "9.37.0", 2087 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.37.0.tgz", 2088 | "integrity": "sha512-XyLmROnACWqSxiGYArdef1fItQd47weqB7iwtfr9JHwRrqIXZdcFMvvEcL9xHCmL0SNsOvF0c42lWyM1U5dgig==", 2089 | "dev": true, 2090 | "license": "MIT", 2091 | "dependencies": { 2092 | "@eslint-community/eslint-utils": "^4.8.0", 2093 | "@eslint-community/regexpp": "^4.12.1", 2094 | "@eslint/config-array": "^0.21.0", 2095 | "@eslint/config-helpers": "^0.4.0", 2096 | "@eslint/core": "^0.16.0", 2097 | "@eslint/eslintrc": "^3.3.1", 2098 | "@eslint/js": "9.37.0", 2099 | "@eslint/plugin-kit": "^0.4.0", 2100 | "@humanfs/node": "^0.16.6", 2101 | "@humanwhocodes/module-importer": "^1.0.1", 2102 | "@humanwhocodes/retry": "^0.4.2", 2103 | "@types/estree": "^1.0.6", 2104 | "@types/json-schema": "^7.0.15", 2105 | "ajv": "^6.12.4", 2106 | "chalk": "^4.0.0", 2107 | "cross-spawn": "^7.0.6", 2108 | "debug": "^4.3.2", 2109 | "escape-string-regexp": "^4.0.0", 2110 | "eslint-scope": "^8.4.0", 2111 | "eslint-visitor-keys": "^4.2.1", 2112 | "espree": "^10.4.0", 2113 | "esquery": "^1.5.0", 2114 | "esutils": "^2.0.2", 2115 | "fast-deep-equal": "^3.1.3", 2116 | "file-entry-cache": "^8.0.0", 2117 | "find-up": "^5.0.0", 2118 | "glob-parent": "^6.0.2", 2119 | "ignore": "^5.2.0", 2120 | "imurmurhash": "^0.1.4", 2121 | "is-glob": "^4.0.0", 2122 | "json-stable-stringify-without-jsonify": "^1.0.1", 2123 | "lodash.merge": "^4.6.2", 2124 | "minimatch": "^3.1.2", 2125 | "natural-compare": "^1.4.0", 2126 | "optionator": "^0.9.3" 2127 | }, 2128 | "bin": { 2129 | "eslint": "bin/eslint.js" 2130 | }, 2131 | "engines": { 2132 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2133 | }, 2134 | "funding": { 2135 | "url": "https://eslint.org/donate" 2136 | }, 2137 | "peerDependencies": { 2138 | "jiti": "*" 2139 | }, 2140 | "peerDependenciesMeta": { 2141 | "jiti": { 2142 | "optional": true 2143 | } 2144 | } 2145 | }, 2146 | "node_modules/eslint-plugin-react-hooks": { 2147 | "version": "5.2.0", 2148 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", 2149 | "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", 2150 | "dev": true, 2151 | "license": "MIT", 2152 | "engines": { 2153 | "node": ">=10" 2154 | }, 2155 | "peerDependencies": { 2156 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" 2157 | } 2158 | }, 2159 | "node_modules/eslint-plugin-react-refresh": { 2160 | "version": "0.4.23", 2161 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.23.tgz", 2162 | "integrity": "sha512-G4j+rv0NmbIR45kni5xJOrYvCtyD3/7LjpVH8MPPcudXDcNu8gv+4ATTDXTtbRR8rTCM5HxECvCSsRmxKnWDsA==", 2163 | "dev": true, 2164 | "license": "MIT", 2165 | "peerDependencies": { 2166 | "eslint": ">=8.40" 2167 | } 2168 | }, 2169 | "node_modules/eslint-scope": { 2170 | "version": "8.4.0", 2171 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz", 2172 | "integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==", 2173 | "dev": true, 2174 | "license": "BSD-2-Clause", 2175 | "dependencies": { 2176 | "esrecurse": "^4.3.0", 2177 | "estraverse": "^5.2.0" 2178 | }, 2179 | "engines": { 2180 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2181 | }, 2182 | "funding": { 2183 | "url": "https://opencollective.com/eslint" 2184 | } 2185 | }, 2186 | "node_modules/eslint-visitor-keys": { 2187 | "version": "4.2.1", 2188 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz", 2189 | "integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==", 2190 | "dev": true, 2191 | "license": "Apache-2.0", 2192 | "engines": { 2193 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2194 | }, 2195 | "funding": { 2196 | "url": "https://opencollective.com/eslint" 2197 | } 2198 | }, 2199 | "node_modules/espree": { 2200 | "version": "10.4.0", 2201 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz", 2202 | "integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==", 2203 | "dev": true, 2204 | "license": "BSD-2-Clause", 2205 | "dependencies": { 2206 | "acorn": "^8.15.0", 2207 | "acorn-jsx": "^5.3.2", 2208 | "eslint-visitor-keys": "^4.2.1" 2209 | }, 2210 | "engines": { 2211 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2212 | }, 2213 | "funding": { 2214 | "url": "https://opencollective.com/eslint" 2215 | } 2216 | }, 2217 | "node_modules/esquery": { 2218 | "version": "1.6.0", 2219 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 2220 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 2221 | "dev": true, 2222 | "license": "BSD-3-Clause", 2223 | "dependencies": { 2224 | "estraverse": "^5.1.0" 2225 | }, 2226 | "engines": { 2227 | "node": ">=0.10" 2228 | } 2229 | }, 2230 | "node_modules/esrecurse": { 2231 | "version": "4.3.0", 2232 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2233 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2234 | "dev": true, 2235 | "license": "BSD-2-Clause", 2236 | "dependencies": { 2237 | "estraverse": "^5.2.0" 2238 | }, 2239 | "engines": { 2240 | "node": ">=4.0" 2241 | } 2242 | }, 2243 | "node_modules/estraverse": { 2244 | "version": "5.3.0", 2245 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2246 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2247 | "dev": true, 2248 | "license": "BSD-2-Clause", 2249 | "engines": { 2250 | "node": ">=4.0" 2251 | } 2252 | }, 2253 | "node_modules/esutils": { 2254 | "version": "2.0.3", 2255 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2256 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2257 | "dev": true, 2258 | "license": "BSD-2-Clause", 2259 | "engines": { 2260 | "node": ">=0.10.0" 2261 | } 2262 | }, 2263 | "node_modules/fast-deep-equal": { 2264 | "version": "3.1.3", 2265 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2266 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2267 | "dev": true, 2268 | "license": "MIT" 2269 | }, 2270 | "node_modules/fast-glob": { 2271 | "version": "3.3.3", 2272 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", 2273 | "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", 2274 | "dev": true, 2275 | "license": "MIT", 2276 | "dependencies": { 2277 | "@nodelib/fs.stat": "^2.0.2", 2278 | "@nodelib/fs.walk": "^1.2.3", 2279 | "glob-parent": "^5.1.2", 2280 | "merge2": "^1.3.0", 2281 | "micromatch": "^4.0.8" 2282 | }, 2283 | "engines": { 2284 | "node": ">=8.6.0" 2285 | } 2286 | }, 2287 | "node_modules/fast-glob/node_modules/glob-parent": { 2288 | "version": "5.1.2", 2289 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2290 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2291 | "dev": true, 2292 | "license": "ISC", 2293 | "dependencies": { 2294 | "is-glob": "^4.0.1" 2295 | }, 2296 | "engines": { 2297 | "node": ">= 6" 2298 | } 2299 | }, 2300 | "node_modules/fast-json-stable-stringify": { 2301 | "version": "2.1.0", 2302 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2303 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2304 | "dev": true, 2305 | "license": "MIT" 2306 | }, 2307 | "node_modules/fast-levenshtein": { 2308 | "version": "2.0.6", 2309 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 2310 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 2311 | "dev": true, 2312 | "license": "MIT" 2313 | }, 2314 | "node_modules/fastq": { 2315 | "version": "1.19.1", 2316 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", 2317 | "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", 2318 | "dev": true, 2319 | "license": "ISC", 2320 | "dependencies": { 2321 | "reusify": "^1.0.4" 2322 | } 2323 | }, 2324 | "node_modules/file-entry-cache": { 2325 | "version": "8.0.0", 2326 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 2327 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 2328 | "dev": true, 2329 | "license": "MIT", 2330 | "dependencies": { 2331 | "flat-cache": "^4.0.0" 2332 | }, 2333 | "engines": { 2334 | "node": ">=16.0.0" 2335 | } 2336 | }, 2337 | "node_modules/fill-range": { 2338 | "version": "7.1.1", 2339 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 2340 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 2341 | "dev": true, 2342 | "license": "MIT", 2343 | "dependencies": { 2344 | "to-regex-range": "^5.0.1" 2345 | }, 2346 | "engines": { 2347 | "node": ">=8" 2348 | } 2349 | }, 2350 | "node_modules/find-up": { 2351 | "version": "5.0.0", 2352 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 2353 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 2354 | "dev": true, 2355 | "license": "MIT", 2356 | "dependencies": { 2357 | "locate-path": "^6.0.0", 2358 | "path-exists": "^4.0.0" 2359 | }, 2360 | "engines": { 2361 | "node": ">=10" 2362 | }, 2363 | "funding": { 2364 | "url": "https://github.com/sponsors/sindresorhus" 2365 | } 2366 | }, 2367 | "node_modules/flat-cache": { 2368 | "version": "4.0.1", 2369 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 2370 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 2371 | "dev": true, 2372 | "license": "MIT", 2373 | "dependencies": { 2374 | "flatted": "^3.2.9", 2375 | "keyv": "^4.5.4" 2376 | }, 2377 | "engines": { 2378 | "node": ">=16" 2379 | } 2380 | }, 2381 | "node_modules/flatted": { 2382 | "version": "3.3.3", 2383 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 2384 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 2385 | "dev": true, 2386 | "license": "ISC" 2387 | }, 2388 | "node_modules/fsevents": { 2389 | "version": "2.3.3", 2390 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2391 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2392 | "dev": true, 2393 | "hasInstallScript": true, 2394 | "license": "MIT", 2395 | "optional": true, 2396 | "os": [ 2397 | "darwin" 2398 | ], 2399 | "engines": { 2400 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2401 | } 2402 | }, 2403 | "node_modules/gensync": { 2404 | "version": "1.0.0-beta.2", 2405 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 2406 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 2407 | "dev": true, 2408 | "license": "MIT", 2409 | "engines": { 2410 | "node": ">=6.9.0" 2411 | } 2412 | }, 2413 | "node_modules/glob-parent": { 2414 | "version": "6.0.2", 2415 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2416 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2417 | "dev": true, 2418 | "license": "ISC", 2419 | "dependencies": { 2420 | "is-glob": "^4.0.3" 2421 | }, 2422 | "engines": { 2423 | "node": ">=10.13.0" 2424 | } 2425 | }, 2426 | "node_modules/globals": { 2427 | "version": "16.4.0", 2428 | "resolved": "https://registry.npmjs.org/globals/-/globals-16.4.0.tgz", 2429 | "integrity": "sha512-ob/2LcVVaVGCYN+r14cnwnoDPUufjiYgSqRhiFD0Q1iI4Odora5RE8Iv1D24hAz5oMophRGkGz+yuvQmmUMnMw==", 2430 | "dev": true, 2431 | "license": "MIT", 2432 | "engines": { 2433 | "node": ">=18" 2434 | }, 2435 | "funding": { 2436 | "url": "https://github.com/sponsors/sindresorhus" 2437 | } 2438 | }, 2439 | "node_modules/graphemer": { 2440 | "version": "1.4.0", 2441 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2442 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2443 | "dev": true, 2444 | "license": "MIT" 2445 | }, 2446 | "node_modules/has-flag": { 2447 | "version": "4.0.0", 2448 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2449 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2450 | "dev": true, 2451 | "license": "MIT", 2452 | "engines": { 2453 | "node": ">=8" 2454 | } 2455 | }, 2456 | "node_modules/ignore": { 2457 | "version": "5.3.2", 2458 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 2459 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 2460 | "dev": true, 2461 | "license": "MIT", 2462 | "engines": { 2463 | "node": ">= 4" 2464 | } 2465 | }, 2466 | "node_modules/import-fresh": { 2467 | "version": "3.3.1", 2468 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 2469 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 2470 | "dev": true, 2471 | "license": "MIT", 2472 | "dependencies": { 2473 | "parent-module": "^1.0.0", 2474 | "resolve-from": "^4.0.0" 2475 | }, 2476 | "engines": { 2477 | "node": ">=6" 2478 | }, 2479 | "funding": { 2480 | "url": "https://github.com/sponsors/sindresorhus" 2481 | } 2482 | }, 2483 | "node_modules/imurmurhash": { 2484 | "version": "0.1.4", 2485 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2486 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2487 | "dev": true, 2488 | "license": "MIT", 2489 | "engines": { 2490 | "node": ">=0.8.19" 2491 | } 2492 | }, 2493 | "node_modules/is-extglob": { 2494 | "version": "2.1.1", 2495 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2496 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2497 | "dev": true, 2498 | "license": "MIT", 2499 | "engines": { 2500 | "node": ">=0.10.0" 2501 | } 2502 | }, 2503 | "node_modules/is-glob": { 2504 | "version": "4.0.3", 2505 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2506 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2507 | "dev": true, 2508 | "license": "MIT", 2509 | "dependencies": { 2510 | "is-extglob": "^2.1.1" 2511 | }, 2512 | "engines": { 2513 | "node": ">=0.10.0" 2514 | } 2515 | }, 2516 | "node_modules/is-number": { 2517 | "version": "7.0.0", 2518 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2519 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2520 | "dev": true, 2521 | "license": "MIT", 2522 | "engines": { 2523 | "node": ">=0.12.0" 2524 | } 2525 | }, 2526 | "node_modules/isexe": { 2527 | "version": "2.0.0", 2528 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2529 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2530 | "dev": true, 2531 | "license": "ISC" 2532 | }, 2533 | "node_modules/js-tokens": { 2534 | "version": "4.0.0", 2535 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2536 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2537 | "dev": true, 2538 | "license": "MIT" 2539 | }, 2540 | "node_modules/js-yaml": { 2541 | "version": "4.1.0", 2542 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2543 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2544 | "dev": true, 2545 | "license": "MIT", 2546 | "dependencies": { 2547 | "argparse": "^2.0.1" 2548 | }, 2549 | "bin": { 2550 | "js-yaml": "bin/js-yaml.js" 2551 | } 2552 | }, 2553 | "node_modules/jsesc": { 2554 | "version": "3.1.0", 2555 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", 2556 | "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", 2557 | "dev": true, 2558 | "license": "MIT", 2559 | "bin": { 2560 | "jsesc": "bin/jsesc" 2561 | }, 2562 | "engines": { 2563 | "node": ">=6" 2564 | } 2565 | }, 2566 | "node_modules/json-buffer": { 2567 | "version": "3.0.1", 2568 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2569 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2570 | "dev": true, 2571 | "license": "MIT" 2572 | }, 2573 | "node_modules/json-schema-traverse": { 2574 | "version": "0.4.1", 2575 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2576 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2577 | "dev": true, 2578 | "license": "MIT" 2579 | }, 2580 | "node_modules/json-stable-stringify-without-jsonify": { 2581 | "version": "1.0.1", 2582 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2583 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2584 | "dev": true, 2585 | "license": "MIT" 2586 | }, 2587 | "node_modules/json5": { 2588 | "version": "2.2.3", 2589 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2590 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2591 | "dev": true, 2592 | "license": "MIT", 2593 | "bin": { 2594 | "json5": "lib/cli.js" 2595 | }, 2596 | "engines": { 2597 | "node": ">=6" 2598 | } 2599 | }, 2600 | "node_modules/keyv": { 2601 | "version": "4.5.4", 2602 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2603 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2604 | "dev": true, 2605 | "license": "MIT", 2606 | "dependencies": { 2607 | "json-buffer": "3.0.1" 2608 | } 2609 | }, 2610 | "node_modules/levn": { 2611 | "version": "0.4.1", 2612 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2613 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2614 | "dev": true, 2615 | "license": "MIT", 2616 | "dependencies": { 2617 | "prelude-ls": "^1.2.1", 2618 | "type-check": "~0.4.0" 2619 | }, 2620 | "engines": { 2621 | "node": ">= 0.8.0" 2622 | } 2623 | }, 2624 | "node_modules/locate-path": { 2625 | "version": "6.0.0", 2626 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2627 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2628 | "dev": true, 2629 | "license": "MIT", 2630 | "dependencies": { 2631 | "p-locate": "^5.0.0" 2632 | }, 2633 | "engines": { 2634 | "node": ">=10" 2635 | }, 2636 | "funding": { 2637 | "url": "https://github.com/sponsors/sindresorhus" 2638 | } 2639 | }, 2640 | "node_modules/lodash.merge": { 2641 | "version": "4.6.2", 2642 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2643 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2644 | "dev": true, 2645 | "license": "MIT" 2646 | }, 2647 | "node_modules/lru-cache": { 2648 | "version": "5.1.1", 2649 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 2650 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 2651 | "dev": true, 2652 | "license": "ISC", 2653 | "dependencies": { 2654 | "yallist": "^3.0.2" 2655 | } 2656 | }, 2657 | "node_modules/merge2": { 2658 | "version": "1.4.1", 2659 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2660 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2661 | "dev": true, 2662 | "license": "MIT", 2663 | "engines": { 2664 | "node": ">= 8" 2665 | } 2666 | }, 2667 | "node_modules/micromatch": { 2668 | "version": "4.0.8", 2669 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2670 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2671 | "dev": true, 2672 | "license": "MIT", 2673 | "dependencies": { 2674 | "braces": "^3.0.3", 2675 | "picomatch": "^2.3.1" 2676 | }, 2677 | "engines": { 2678 | "node": ">=8.6" 2679 | } 2680 | }, 2681 | "node_modules/minimatch": { 2682 | "version": "3.1.2", 2683 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2684 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2685 | "dev": true, 2686 | "license": "ISC", 2687 | "dependencies": { 2688 | "brace-expansion": "^1.1.7" 2689 | }, 2690 | "engines": { 2691 | "node": "*" 2692 | } 2693 | }, 2694 | "node_modules/ms": { 2695 | "version": "2.1.3", 2696 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2697 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2698 | "dev": true, 2699 | "license": "MIT" 2700 | }, 2701 | "node_modules/nanoid": { 2702 | "version": "3.3.11", 2703 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 2704 | "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 2705 | "dev": true, 2706 | "funding": [ 2707 | { 2708 | "type": "github", 2709 | "url": "https://github.com/sponsors/ai" 2710 | } 2711 | ], 2712 | "license": "MIT", 2713 | "bin": { 2714 | "nanoid": "bin/nanoid.cjs" 2715 | }, 2716 | "engines": { 2717 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2718 | } 2719 | }, 2720 | "node_modules/natural-compare": { 2721 | "version": "1.4.0", 2722 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2723 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2724 | "dev": true, 2725 | "license": "MIT" 2726 | }, 2727 | "node_modules/node-releases": { 2728 | "version": "2.0.23", 2729 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.23.tgz", 2730 | "integrity": "sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==", 2731 | "dev": true, 2732 | "license": "MIT" 2733 | }, 2734 | "node_modules/optionator": { 2735 | "version": "0.9.4", 2736 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2737 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2738 | "dev": true, 2739 | "license": "MIT", 2740 | "dependencies": { 2741 | "deep-is": "^0.1.3", 2742 | "fast-levenshtein": "^2.0.6", 2743 | "levn": "^0.4.1", 2744 | "prelude-ls": "^1.2.1", 2745 | "type-check": "^0.4.0", 2746 | "word-wrap": "^1.2.5" 2747 | }, 2748 | "engines": { 2749 | "node": ">= 0.8.0" 2750 | } 2751 | }, 2752 | "node_modules/p-limit": { 2753 | "version": "3.1.0", 2754 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2755 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2756 | "dev": true, 2757 | "license": "MIT", 2758 | "dependencies": { 2759 | "yocto-queue": "^0.1.0" 2760 | }, 2761 | "engines": { 2762 | "node": ">=10" 2763 | }, 2764 | "funding": { 2765 | "url": "https://github.com/sponsors/sindresorhus" 2766 | } 2767 | }, 2768 | "node_modules/p-locate": { 2769 | "version": "5.0.0", 2770 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2771 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2772 | "dev": true, 2773 | "license": "MIT", 2774 | "dependencies": { 2775 | "p-limit": "^3.0.2" 2776 | }, 2777 | "engines": { 2778 | "node": ">=10" 2779 | }, 2780 | "funding": { 2781 | "url": "https://github.com/sponsors/sindresorhus" 2782 | } 2783 | }, 2784 | "node_modules/parent-module": { 2785 | "version": "1.0.1", 2786 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2787 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2788 | "dev": true, 2789 | "license": "MIT", 2790 | "dependencies": { 2791 | "callsites": "^3.0.0" 2792 | }, 2793 | "engines": { 2794 | "node": ">=6" 2795 | } 2796 | }, 2797 | "node_modules/path-exists": { 2798 | "version": "4.0.0", 2799 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2800 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2801 | "dev": true, 2802 | "license": "MIT", 2803 | "engines": { 2804 | "node": ">=8" 2805 | } 2806 | }, 2807 | "node_modules/path-key": { 2808 | "version": "3.1.1", 2809 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2810 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2811 | "dev": true, 2812 | "license": "MIT", 2813 | "engines": { 2814 | "node": ">=8" 2815 | } 2816 | }, 2817 | "node_modules/picocolors": { 2818 | "version": "1.1.1", 2819 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 2820 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 2821 | "dev": true, 2822 | "license": "ISC" 2823 | }, 2824 | "node_modules/picomatch": { 2825 | "version": "2.3.1", 2826 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2827 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2828 | "dev": true, 2829 | "license": "MIT", 2830 | "engines": { 2831 | "node": ">=8.6" 2832 | }, 2833 | "funding": { 2834 | "url": "https://github.com/sponsors/jonschlinkert" 2835 | } 2836 | }, 2837 | "node_modules/postcss": { 2838 | "version": "8.5.6", 2839 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", 2840 | "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", 2841 | "dev": true, 2842 | "funding": [ 2843 | { 2844 | "type": "opencollective", 2845 | "url": "https://opencollective.com/postcss/" 2846 | }, 2847 | { 2848 | "type": "tidelift", 2849 | "url": "https://tidelift.com/funding/github/npm/postcss" 2850 | }, 2851 | { 2852 | "type": "github", 2853 | "url": "https://github.com/sponsors/ai" 2854 | } 2855 | ], 2856 | "license": "MIT", 2857 | "dependencies": { 2858 | "nanoid": "^3.3.11", 2859 | "picocolors": "^1.1.1", 2860 | "source-map-js": "^1.2.1" 2861 | }, 2862 | "engines": { 2863 | "node": "^10 || ^12 || >=14" 2864 | } 2865 | }, 2866 | "node_modules/prelude-ls": { 2867 | "version": "1.2.1", 2868 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2869 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2870 | "dev": true, 2871 | "license": "MIT", 2872 | "engines": { 2873 | "node": ">= 0.8.0" 2874 | } 2875 | }, 2876 | "node_modules/punycode": { 2877 | "version": "2.3.1", 2878 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2879 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2880 | "dev": true, 2881 | "license": "MIT", 2882 | "engines": { 2883 | "node": ">=6" 2884 | } 2885 | }, 2886 | "node_modules/queue-microtask": { 2887 | "version": "1.2.3", 2888 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2889 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2890 | "dev": true, 2891 | "funding": [ 2892 | { 2893 | "type": "github", 2894 | "url": "https://github.com/sponsors/feross" 2895 | }, 2896 | { 2897 | "type": "patreon", 2898 | "url": "https://www.patreon.com/feross" 2899 | }, 2900 | { 2901 | "type": "consulting", 2902 | "url": "https://feross.org/support" 2903 | } 2904 | ], 2905 | "license": "MIT" 2906 | }, 2907 | "node_modules/react": { 2908 | "version": "19.2.0", 2909 | "resolved": "https://registry.npmjs.org/react/-/react-19.2.0.tgz", 2910 | "integrity": "sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==", 2911 | "license": "MIT", 2912 | "engines": { 2913 | "node": ">=0.10.0" 2914 | } 2915 | }, 2916 | "node_modules/react-dom": { 2917 | "version": "19.2.0", 2918 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.0.tgz", 2919 | "integrity": "sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==", 2920 | "license": "MIT", 2921 | "dependencies": { 2922 | "scheduler": "^0.27.0" 2923 | }, 2924 | "peerDependencies": { 2925 | "react": "^19.2.0" 2926 | } 2927 | }, 2928 | "node_modules/react-refresh": { 2929 | "version": "0.17.0", 2930 | "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", 2931 | "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", 2932 | "dev": true, 2933 | "license": "MIT", 2934 | "engines": { 2935 | "node": ">=0.10.0" 2936 | } 2937 | }, 2938 | "node_modules/resolve-from": { 2939 | "version": "4.0.0", 2940 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2941 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2942 | "dev": true, 2943 | "license": "MIT", 2944 | "engines": { 2945 | "node": ">=4" 2946 | } 2947 | }, 2948 | "node_modules/reusify": { 2949 | "version": "1.1.0", 2950 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", 2951 | "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", 2952 | "dev": true, 2953 | "license": "MIT", 2954 | "engines": { 2955 | "iojs": ">=1.0.0", 2956 | "node": ">=0.10.0" 2957 | } 2958 | }, 2959 | "node_modules/rollup": { 2960 | "version": "4.52.4", 2961 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.52.4.tgz", 2962 | "integrity": "sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==", 2963 | "dev": true, 2964 | "license": "MIT", 2965 | "dependencies": { 2966 | "@types/estree": "1.0.8" 2967 | }, 2968 | "bin": { 2969 | "rollup": "dist/bin/rollup" 2970 | }, 2971 | "engines": { 2972 | "node": ">=18.0.0", 2973 | "npm": ">=8.0.0" 2974 | }, 2975 | "optionalDependencies": { 2976 | "@rollup/rollup-android-arm-eabi": "4.52.4", 2977 | "@rollup/rollup-android-arm64": "4.52.4", 2978 | "@rollup/rollup-darwin-arm64": "4.52.4", 2979 | "@rollup/rollup-darwin-x64": "4.52.4", 2980 | "@rollup/rollup-freebsd-arm64": "4.52.4", 2981 | "@rollup/rollup-freebsd-x64": "4.52.4", 2982 | "@rollup/rollup-linux-arm-gnueabihf": "4.52.4", 2983 | "@rollup/rollup-linux-arm-musleabihf": "4.52.4", 2984 | "@rollup/rollup-linux-arm64-gnu": "4.52.4", 2985 | "@rollup/rollup-linux-arm64-musl": "4.52.4", 2986 | "@rollup/rollup-linux-loong64-gnu": "4.52.4", 2987 | "@rollup/rollup-linux-ppc64-gnu": "4.52.4", 2988 | "@rollup/rollup-linux-riscv64-gnu": "4.52.4", 2989 | "@rollup/rollup-linux-riscv64-musl": "4.52.4", 2990 | "@rollup/rollup-linux-s390x-gnu": "4.52.4", 2991 | "@rollup/rollup-linux-x64-gnu": "4.52.4", 2992 | "@rollup/rollup-linux-x64-musl": "4.52.4", 2993 | "@rollup/rollup-openharmony-arm64": "4.52.4", 2994 | "@rollup/rollup-win32-arm64-msvc": "4.52.4", 2995 | "@rollup/rollup-win32-ia32-msvc": "4.52.4", 2996 | "@rollup/rollup-win32-x64-gnu": "4.52.4", 2997 | "@rollup/rollup-win32-x64-msvc": "4.52.4", 2998 | "fsevents": "~2.3.2" 2999 | } 3000 | }, 3001 | "node_modules/run-parallel": { 3002 | "version": "1.2.0", 3003 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3004 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3005 | "dev": true, 3006 | "funding": [ 3007 | { 3008 | "type": "github", 3009 | "url": "https://github.com/sponsors/feross" 3010 | }, 3011 | { 3012 | "type": "patreon", 3013 | "url": "https://www.patreon.com/feross" 3014 | }, 3015 | { 3016 | "type": "consulting", 3017 | "url": "https://feross.org/support" 3018 | } 3019 | ], 3020 | "license": "MIT", 3021 | "dependencies": { 3022 | "queue-microtask": "^1.2.2" 3023 | } 3024 | }, 3025 | "node_modules/scheduler": { 3026 | "version": "0.27.0", 3027 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz", 3028 | "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==", 3029 | "license": "MIT" 3030 | }, 3031 | "node_modules/semver": { 3032 | "version": "6.3.1", 3033 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3034 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3035 | "dev": true, 3036 | "license": "ISC", 3037 | "bin": { 3038 | "semver": "bin/semver.js" 3039 | } 3040 | }, 3041 | "node_modules/shebang-command": { 3042 | "version": "2.0.0", 3043 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3044 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3045 | "dev": true, 3046 | "license": "MIT", 3047 | "dependencies": { 3048 | "shebang-regex": "^3.0.0" 3049 | }, 3050 | "engines": { 3051 | "node": ">=8" 3052 | } 3053 | }, 3054 | "node_modules/shebang-regex": { 3055 | "version": "3.0.0", 3056 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3057 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3058 | "dev": true, 3059 | "license": "MIT", 3060 | "engines": { 3061 | "node": ">=8" 3062 | } 3063 | }, 3064 | "node_modules/source-map-js": { 3065 | "version": "1.2.1", 3066 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 3067 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 3068 | "dev": true, 3069 | "license": "BSD-3-Clause", 3070 | "engines": { 3071 | "node": ">=0.10.0" 3072 | } 3073 | }, 3074 | "node_modules/strip-json-comments": { 3075 | "version": "3.1.1", 3076 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3077 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3078 | "dev": true, 3079 | "license": "MIT", 3080 | "engines": { 3081 | "node": ">=8" 3082 | }, 3083 | "funding": { 3084 | "url": "https://github.com/sponsors/sindresorhus" 3085 | } 3086 | }, 3087 | "node_modules/supports-color": { 3088 | "version": "7.2.0", 3089 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3090 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3091 | "dev": true, 3092 | "license": "MIT", 3093 | "dependencies": { 3094 | "has-flag": "^4.0.0" 3095 | }, 3096 | "engines": { 3097 | "node": ">=8" 3098 | } 3099 | }, 3100 | "node_modules/tinyglobby": { 3101 | "version": "0.2.15", 3102 | "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", 3103 | "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", 3104 | "dev": true, 3105 | "license": "MIT", 3106 | "dependencies": { 3107 | "fdir": "^6.5.0", 3108 | "picomatch": "^4.0.3" 3109 | }, 3110 | "engines": { 3111 | "node": ">=12.0.0" 3112 | }, 3113 | "funding": { 3114 | "url": "https://github.com/sponsors/SuperchupuDev" 3115 | } 3116 | }, 3117 | "node_modules/tinyglobby/node_modules/fdir": { 3118 | "version": "6.5.0", 3119 | "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", 3120 | "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", 3121 | "dev": true, 3122 | "license": "MIT", 3123 | "engines": { 3124 | "node": ">=12.0.0" 3125 | }, 3126 | "peerDependencies": { 3127 | "picomatch": "^3 || ^4" 3128 | }, 3129 | "peerDependenciesMeta": { 3130 | "picomatch": { 3131 | "optional": true 3132 | } 3133 | } 3134 | }, 3135 | "node_modules/tinyglobby/node_modules/picomatch": { 3136 | "version": "4.0.3", 3137 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", 3138 | "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", 3139 | "dev": true, 3140 | "license": "MIT", 3141 | "engines": { 3142 | "node": ">=12" 3143 | }, 3144 | "funding": { 3145 | "url": "https://github.com/sponsors/jonschlinkert" 3146 | } 3147 | }, 3148 | "node_modules/to-regex-range": { 3149 | "version": "5.0.1", 3150 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 3151 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 3152 | "dev": true, 3153 | "license": "MIT", 3154 | "dependencies": { 3155 | "is-number": "^7.0.0" 3156 | }, 3157 | "engines": { 3158 | "node": ">=8.0" 3159 | } 3160 | }, 3161 | "node_modules/ts-api-utils": { 3162 | "version": "2.1.0", 3163 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", 3164 | "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", 3165 | "dev": true, 3166 | "license": "MIT", 3167 | "engines": { 3168 | "node": ">=18.12" 3169 | }, 3170 | "peerDependencies": { 3171 | "typescript": ">=4.8.4" 3172 | } 3173 | }, 3174 | "node_modules/type-check": { 3175 | "version": "0.4.0", 3176 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3177 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3178 | "dev": true, 3179 | "license": "MIT", 3180 | "dependencies": { 3181 | "prelude-ls": "^1.2.1" 3182 | }, 3183 | "engines": { 3184 | "node": ">= 0.8.0" 3185 | } 3186 | }, 3187 | "node_modules/typescript": { 3188 | "version": "5.9.3", 3189 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", 3190 | "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", 3191 | "dev": true, 3192 | "license": "Apache-2.0", 3193 | "bin": { 3194 | "tsc": "bin/tsc", 3195 | "tsserver": "bin/tsserver" 3196 | }, 3197 | "engines": { 3198 | "node": ">=14.17" 3199 | } 3200 | }, 3201 | "node_modules/typescript-eslint": { 3202 | "version": "8.46.0", 3203 | "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.46.0.tgz", 3204 | "integrity": "sha512-6+ZrB6y2bT2DX3K+Qd9vn7OFOJR+xSLDj+Aw/N3zBwUt27uTw2sw2TE2+UcY1RiyBZkaGbTkVg9SSdPNUG6aUw==", 3205 | "dev": true, 3206 | "license": "MIT", 3207 | "dependencies": { 3208 | "@typescript-eslint/eslint-plugin": "8.46.0", 3209 | "@typescript-eslint/parser": "8.46.0", 3210 | "@typescript-eslint/typescript-estree": "8.46.0", 3211 | "@typescript-eslint/utils": "8.46.0" 3212 | }, 3213 | "engines": { 3214 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 3215 | }, 3216 | "funding": { 3217 | "type": "opencollective", 3218 | "url": "https://opencollective.com/typescript-eslint" 3219 | }, 3220 | "peerDependencies": { 3221 | "eslint": "^8.57.0 || ^9.0.0", 3222 | "typescript": ">=4.8.4 <6.0.0" 3223 | } 3224 | }, 3225 | "node_modules/undici-types": { 3226 | "version": "7.14.0", 3227 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.14.0.tgz", 3228 | "integrity": "sha512-QQiYxHuyZ9gQUIrmPo3IA+hUl4KYk8uSA7cHrcKd/l3p1OTpZcM0Tbp9x7FAtXdAYhlasd60ncPpgu6ihG6TOA==", 3229 | "dev": true, 3230 | "license": "MIT" 3231 | }, 3232 | "node_modules/update-browserslist-db": { 3233 | "version": "1.1.3", 3234 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 3235 | "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 3236 | "dev": true, 3237 | "funding": [ 3238 | { 3239 | "type": "opencollective", 3240 | "url": "https://opencollective.com/browserslist" 3241 | }, 3242 | { 3243 | "type": "tidelift", 3244 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3245 | }, 3246 | { 3247 | "type": "github", 3248 | "url": "https://github.com/sponsors/ai" 3249 | } 3250 | ], 3251 | "license": "MIT", 3252 | "dependencies": { 3253 | "escalade": "^3.2.0", 3254 | "picocolors": "^1.1.1" 3255 | }, 3256 | "bin": { 3257 | "update-browserslist-db": "cli.js" 3258 | }, 3259 | "peerDependencies": { 3260 | "browserslist": ">= 4.21.0" 3261 | } 3262 | }, 3263 | "node_modules/uri-js": { 3264 | "version": "4.4.1", 3265 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3266 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3267 | "dev": true, 3268 | "license": "BSD-2-Clause", 3269 | "dependencies": { 3270 | "punycode": "^2.1.0" 3271 | } 3272 | }, 3273 | "node_modules/vite": { 3274 | "version": "7.1.9", 3275 | "resolved": "https://registry.npmjs.org/vite/-/vite-7.1.9.tgz", 3276 | "integrity": "sha512-4nVGliEpxmhCL8DslSAUdxlB6+SMrhB0a1v5ijlh1xB1nEPuy1mxaHxysVucLHuWryAxLWg6a5ei+U4TLn/rFg==", 3277 | "dev": true, 3278 | "license": "MIT", 3279 | "dependencies": { 3280 | "esbuild": "^0.25.0", 3281 | "fdir": "^6.5.0", 3282 | "picomatch": "^4.0.3", 3283 | "postcss": "^8.5.6", 3284 | "rollup": "^4.43.0", 3285 | "tinyglobby": "^0.2.15" 3286 | }, 3287 | "bin": { 3288 | "vite": "bin/vite.js" 3289 | }, 3290 | "engines": { 3291 | "node": "^20.19.0 || >=22.12.0" 3292 | }, 3293 | "funding": { 3294 | "url": "https://github.com/vitejs/vite?sponsor=1" 3295 | }, 3296 | "optionalDependencies": { 3297 | "fsevents": "~2.3.3" 3298 | }, 3299 | "peerDependencies": { 3300 | "@types/node": "^20.19.0 || >=22.12.0", 3301 | "jiti": ">=1.21.0", 3302 | "less": "^4.0.0", 3303 | "lightningcss": "^1.21.0", 3304 | "sass": "^1.70.0", 3305 | "sass-embedded": "^1.70.0", 3306 | "stylus": ">=0.54.8", 3307 | "sugarss": "^5.0.0", 3308 | "terser": "^5.16.0", 3309 | "tsx": "^4.8.1", 3310 | "yaml": "^2.4.2" 3311 | }, 3312 | "peerDependenciesMeta": { 3313 | "@types/node": { 3314 | "optional": true 3315 | }, 3316 | "jiti": { 3317 | "optional": true 3318 | }, 3319 | "less": { 3320 | "optional": true 3321 | }, 3322 | "lightningcss": { 3323 | "optional": true 3324 | }, 3325 | "sass": { 3326 | "optional": true 3327 | }, 3328 | "sass-embedded": { 3329 | "optional": true 3330 | }, 3331 | "stylus": { 3332 | "optional": true 3333 | }, 3334 | "sugarss": { 3335 | "optional": true 3336 | }, 3337 | "terser": { 3338 | "optional": true 3339 | }, 3340 | "tsx": { 3341 | "optional": true 3342 | }, 3343 | "yaml": { 3344 | "optional": true 3345 | } 3346 | } 3347 | }, 3348 | "node_modules/vite/node_modules/fdir": { 3349 | "version": "6.5.0", 3350 | "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", 3351 | "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", 3352 | "dev": true, 3353 | "license": "MIT", 3354 | "engines": { 3355 | "node": ">=12.0.0" 3356 | }, 3357 | "peerDependencies": { 3358 | "picomatch": "^3 || ^4" 3359 | }, 3360 | "peerDependenciesMeta": { 3361 | "picomatch": { 3362 | "optional": true 3363 | } 3364 | } 3365 | }, 3366 | "node_modules/vite/node_modules/picomatch": { 3367 | "version": "4.0.3", 3368 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", 3369 | "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", 3370 | "dev": true, 3371 | "license": "MIT", 3372 | "engines": { 3373 | "node": ">=12" 3374 | }, 3375 | "funding": { 3376 | "url": "https://github.com/sponsors/jonschlinkert" 3377 | } 3378 | }, 3379 | "node_modules/which": { 3380 | "version": "2.0.2", 3381 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3382 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3383 | "dev": true, 3384 | "license": "ISC", 3385 | "dependencies": { 3386 | "isexe": "^2.0.0" 3387 | }, 3388 | "bin": { 3389 | "node-which": "bin/node-which" 3390 | }, 3391 | "engines": { 3392 | "node": ">= 8" 3393 | } 3394 | }, 3395 | "node_modules/word-wrap": { 3396 | "version": "1.2.5", 3397 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3398 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3399 | "dev": true, 3400 | "license": "MIT", 3401 | "engines": { 3402 | "node": ">=0.10.0" 3403 | } 3404 | }, 3405 | "node_modules/yallist": { 3406 | "version": "3.1.1", 3407 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 3408 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 3409 | "dev": true, 3410 | "license": "ISC" 3411 | }, 3412 | "node_modules/yocto-queue": { 3413 | "version": "0.1.0", 3414 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3415 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3416 | "dev": true, 3417 | "license": "MIT", 3418 | "engines": { 3419 | "node": ">=10" 3420 | }, 3421 | "funding": { 3422 | "url": "https://github.com/sponsors/sindresorhus" 3423 | } 3424 | } 3425 | } 3426 | } 3427 | --------------------------------------------------------------------------------