├── .gitignore
├── LICENSE
├── README.md
├── components.json
├── eslint.config.js
├── index.html
├── package.json
├── pnpm-lock.yaml
├── postcss.config.js
├── public
└── vite.svg
├── src
├── App.tsx
├── assets
│ └── react.svg
├── components
│ ├── count-btn.tsx
│ └── ui
│ │ ├── badge.tsx
│ │ └── button.tsx
├── lib
│ └── utils.ts
├── main.tsx
├── styles
│ └── globals.css
└── vite-env.d.ts
├── tailwind.config.ts
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts
/.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 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) [year] [fullname]
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # React + Vite + TypeScript Template (react-vite-ui)
2 |
3 | [](https://github.com/Dan5py/react-vite-ui/blob/main/LICENSE)
4 |
5 | A React + Vite template powered by shadcn/ui.
6 |
7 | > [!NOTE]
8 | > This template uses Tailwind v3, if you want to use Tailwind v4, check the [tw4 branch](https://github.com/dan5py/react-vite-shadcn-ui/tree/tw4).
9 |
10 | ## 🎉 Features
11 |
12 | - **React** - A JavaScript library for building user interfaces.
13 | - **Vite** - A fast, opinionated frontend build tool.
14 | - **TypeScript** - A typed superset of JavaScript that compiles to plain JavaScript.
15 | - **Tailwind CSS** - A utility-first CSS framework. (`v3`)
16 | - **Tailwind Prettier Plugin** - A Prettier plugin for formatting Tailwind CSS classes.
17 | - **ESLint** - A pluggable linting utility for JavaScript and TypeScript.
18 | - **PostCSS** - A tool for transforming CSS with JavaScript.
19 | - **Autoprefixer** - A PostCSS plugin to parse CSS and add vendor prefixes.
20 | - **shadcn/ui** - Beautifully designed components that you can copy and paste into your apps.
21 |
22 | ## ⚙️ Prerequisites
23 |
24 | Make sure you have the following installed on your development machine:
25 |
26 | - Node.js (version 22 or above)
27 | - pnpm (package manager)
28 |
29 | ## 🚀 Getting Started
30 |
31 | Follow these steps to get started with the react-vite-ui template:
32 |
33 | 1. Clone the repository:
34 |
35 | ```bash
36 | git clone https://github.com/dan5py/react-vite-ui.git
37 | ```
38 |
39 | 2. Navigate to the project directory:
40 |
41 | ```bash
42 | cd react-vite-ui
43 | ```
44 |
45 | 3. Install the dependencies:
46 |
47 | ```bash
48 | pnpm install
49 | ```
50 |
51 | 4. Start the development server:
52 |
53 | ```bash
54 | pnpm dev
55 | ```
56 |
57 | ## 📜 Available Scripts
58 |
59 | - pnpm dev - Starts the development server.
60 | - pnpm build - Builds the production-ready code.
61 | - pnpm lint - Runs ESLint to analyze and lint the code.
62 | - pnpm preview - Starts the Vite development server in preview mode.
63 |
64 | ## 📂 Project Structure
65 |
66 | The project structure follows a standard React application layout:
67 |
68 | ```python
69 | react-vite-ui/
70 | ├── node_modules/ # Project dependencies
71 | ├── public/ # Public assets
72 | ├── src/ # Application source code
73 | │ ├── components/ # React components
74 | │ │ └── ui/ # shadc/ui components
75 | │ ├── styles/ # CSS stylesheets
76 | │ ├── lib/ # Utility functions
77 | │ ├── App.tsx # Application entry point
78 | │ └── index.tsx # Main rendering file
79 | ├── eslint.config.js # ESLint configuration
80 | ├── index.html # HTML entry point
81 | ├── postcss.config.js # PostCSS configuration
82 | ├── tailwind.config.ts # Tailwind CSS configuration
83 | ├── tsconfig.json # TypeScript configuration
84 | └── vite.config.ts # Vite configuration
85 | ```
86 |
87 | ## 📄 License
88 |
89 | This project is licensed under the MIT License. See the [LICENSE](https://choosealicense.com/licenses/mit/) file for details.
90 |
--------------------------------------------------------------------------------
/components.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://ui.shadcn.com/schema.json",
3 | "style": "default",
4 | "rsc": false,
5 | "tsx": true,
6 | "tailwind": {
7 | "config": "tailwind.config.ts",
8 | "css": "src/styles/globals.css",
9 | "baseColor": "zinc",
10 | "cssVariables": true,
11 | "prefix": ""
12 | },
13 | "aliases": {
14 | "components": "@/components",
15 | "utils": "@/lib/utils",
16 | "ui": "@/components/ui",
17 | "lib": "@/lib",
18 | "hooks": "@/hooks"
19 | },
20 | "iconLibrary": "lucide"
21 | }
22 |
--------------------------------------------------------------------------------
/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 |
7 | export default tseslint.config(
8 | { ignores: ["dist"] },
9 | {
10 | extends: [js.configs.recommended, ...tseslint.configs.recommended],
11 | files: ["**/*.{ts,tsx}"],
12 | languageOptions: {
13 | ecmaVersion: 2020,
14 | globals: globals.browser,
15 | },
16 | plugins: {
17 | "react-hooks": reactHooks,
18 | "react-refresh": reactRefresh,
19 | },
20 | rules: {
21 | ...reactHooks.configs.recommended.rules,
22 | "react-refresh/only-export-components": [
23 | "warn",
24 | { allowConstantExport: true },
25 | ],
26 | },
27 | }
28 | );
29 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | Vite + React + TS
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-vite-ui",
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 | "@radix-ui/react-slot": "^1.1.2",
14 | "class-variance-authority": "^0.7.1",
15 | "clsx": "^2.1.1",
16 | "lucide-react": "^0.484.0",
17 | "react": "^19.0.0",
18 | "react-dom": "^19.0.0",
19 | "tailwindcss-animate": "^1.0.7"
20 | },
21 | "devDependencies": {
22 | "@eslint/js": "^9.23.0",
23 | "@types/node": "^22.13.0",
24 | "@types/react": "^19.0.12",
25 | "@types/react-dom": "^19.0.4",
26 | "@vitejs/plugin-react": "^4.3.4",
27 | "autoprefixer": "^10.4.21",
28 | "eslint": "^9.23.0",
29 | "eslint-plugin-react-hooks": "^5.2.0",
30 | "eslint-plugin-react-refresh": "^0.4.19",
31 | "globals": "^16.0.0",
32 | "postcss": "^8.5.3",
33 | "tailwind-merge": "^3.0.2",
34 | "tailwindcss": "^3.4.14",
35 | "typescript": "~5.8.2",
36 | "typescript-eslint": "^8.28.0",
37 | "vite": "^6.2.3"
38 | },
39 | "engines": {
40 | "node": ">=22.0.0"
41 | }
42 | }
43 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | dependencies:
11 | '@radix-ui/react-slot':
12 | specifier: ^1.1.2
13 | version: 1.1.2(@types/react@19.0.12)(react@19.0.0)
14 | class-variance-authority:
15 | specifier: ^0.7.1
16 | version: 0.7.1
17 | clsx:
18 | specifier: ^2.1.1
19 | version: 2.1.1
20 | lucide-react:
21 | specifier: ^0.484.0
22 | version: 0.484.0(react@19.0.0)
23 | react:
24 | specifier: ^19.0.0
25 | version: 19.0.0
26 | react-dom:
27 | specifier: ^19.0.0
28 | version: 19.0.0(react@19.0.0)
29 | tailwindcss-animate:
30 | specifier: ^1.0.7
31 | version: 1.0.7(tailwindcss@3.4.17)
32 | devDependencies:
33 | '@eslint/js':
34 | specifier: ^9.23.0
35 | version: 9.23.0
36 | '@types/node':
37 | specifier: ^22.13.0
38 | version: 22.13.14
39 | '@types/react':
40 | specifier: ^19.0.12
41 | version: 19.0.12
42 | '@types/react-dom':
43 | specifier: ^19.0.4
44 | version: 19.0.4(@types/react@19.0.12)
45 | '@vitejs/plugin-react':
46 | specifier: ^4.3.4
47 | version: 4.3.4(vite@6.2.3(@types/node@22.13.14)(jiti@2.4.2)(lightningcss@1.29.2)(yaml@2.6.0))
48 | autoprefixer:
49 | specifier: ^10.4.21
50 | version: 10.4.21(postcss@8.5.3)
51 | eslint:
52 | specifier: ^9.23.0
53 | version: 9.23.0(jiti@2.4.2)
54 | eslint-plugin-react-hooks:
55 | specifier: ^5.2.0
56 | version: 5.2.0(eslint@9.23.0(jiti@2.4.2))
57 | eslint-plugin-react-refresh:
58 | specifier: ^0.4.19
59 | version: 0.4.19(eslint@9.23.0(jiti@2.4.2))
60 | globals:
61 | specifier: ^16.0.0
62 | version: 16.0.0
63 | postcss:
64 | specifier: ^8.5.3
65 | version: 8.5.3
66 | tailwind-merge:
67 | specifier: ^3.0.2
68 | version: 3.0.2
69 | tailwindcss:
70 | specifier: ^3.4.14
71 | version: 3.4.17
72 | typescript:
73 | specifier: ~5.8.2
74 | version: 5.8.2
75 | typescript-eslint:
76 | specifier: ^8.28.0
77 | version: 8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)
78 | vite:
79 | specifier: ^6.2.3
80 | version: 6.2.3(@types/node@22.13.14)(jiti@2.4.2)(lightningcss@1.29.2)(yaml@2.6.0)
81 |
82 | packages:
83 |
84 | '@alloc/quick-lru@5.2.0':
85 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
86 | engines: {node: '>=10'}
87 |
88 | '@ampproject/remapping@2.3.0':
89 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
90 | engines: {node: '>=6.0.0'}
91 |
92 | '@babel/code-frame@7.26.2':
93 | resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
94 | engines: {node: '>=6.9.0'}
95 |
96 | '@babel/compat-data@7.26.2':
97 | resolution: {integrity: sha512-Z0WgzSEa+aUcdiJuCIqgujCshpMWgUpgOxXotrYPSA53hA3qopNaqcJpyr0hVb1FeWdnqFA35/fUtXgBK8srQg==}
98 | engines: {node: '>=6.9.0'}
99 |
100 | '@babel/core@7.26.0':
101 | resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
102 | engines: {node: '>=6.9.0'}
103 |
104 | '@babel/generator@7.26.2':
105 | resolution: {integrity: sha512-zevQbhbau95nkoxSq3f/DC/SC+EEOUZd3DYqfSkMhY2/wfSeaHV1Ew4vk8e+x8lja31IbyuUa2uQ3JONqKbysw==}
106 | engines: {node: '>=6.9.0'}
107 |
108 | '@babel/helper-compilation-targets@7.25.9':
109 | resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
110 | engines: {node: '>=6.9.0'}
111 |
112 | '@babel/helper-module-imports@7.25.9':
113 | resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
114 | engines: {node: '>=6.9.0'}
115 |
116 | '@babel/helper-module-transforms@7.26.0':
117 | resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
118 | engines: {node: '>=6.9.0'}
119 | peerDependencies:
120 | '@babel/core': ^7.0.0
121 |
122 | '@babel/helper-plugin-utils@7.25.9':
123 | resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
124 | engines: {node: '>=6.9.0'}
125 |
126 | '@babel/helper-string-parser@7.25.9':
127 | resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
128 | engines: {node: '>=6.9.0'}
129 |
130 | '@babel/helper-validator-identifier@7.25.9':
131 | resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
132 | engines: {node: '>=6.9.0'}
133 |
134 | '@babel/helper-validator-option@7.25.9':
135 | resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
136 | engines: {node: '>=6.9.0'}
137 |
138 | '@babel/helpers@7.26.0':
139 | resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
140 | engines: {node: '>=6.9.0'}
141 |
142 | '@babel/parser@7.26.2':
143 | resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
144 | engines: {node: '>=6.0.0'}
145 | hasBin: true
146 |
147 | '@babel/plugin-transform-react-jsx-self@7.25.9':
148 | resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
149 | engines: {node: '>=6.9.0'}
150 | peerDependencies:
151 | '@babel/core': ^7.0.0-0
152 |
153 | '@babel/plugin-transform-react-jsx-source@7.25.9':
154 | resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
155 | engines: {node: '>=6.9.0'}
156 | peerDependencies:
157 | '@babel/core': ^7.0.0-0
158 |
159 | '@babel/template@7.25.9':
160 | resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
161 | engines: {node: '>=6.9.0'}
162 |
163 | '@babel/traverse@7.25.9':
164 | resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
165 | engines: {node: '>=6.9.0'}
166 |
167 | '@babel/types@7.26.0':
168 | resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
169 | engines: {node: '>=6.9.0'}
170 |
171 | '@esbuild/aix-ppc64@0.25.1':
172 | resolution: {integrity: sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==}
173 | engines: {node: '>=18'}
174 | cpu: [ppc64]
175 | os: [aix]
176 |
177 | '@esbuild/android-arm64@0.25.1':
178 | resolution: {integrity: sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==}
179 | engines: {node: '>=18'}
180 | cpu: [arm64]
181 | os: [android]
182 |
183 | '@esbuild/android-arm@0.25.1':
184 | resolution: {integrity: sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==}
185 | engines: {node: '>=18'}
186 | cpu: [arm]
187 | os: [android]
188 |
189 | '@esbuild/android-x64@0.25.1':
190 | resolution: {integrity: sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==}
191 | engines: {node: '>=18'}
192 | cpu: [x64]
193 | os: [android]
194 |
195 | '@esbuild/darwin-arm64@0.25.1':
196 | resolution: {integrity: sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==}
197 | engines: {node: '>=18'}
198 | cpu: [arm64]
199 | os: [darwin]
200 |
201 | '@esbuild/darwin-x64@0.25.1':
202 | resolution: {integrity: sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==}
203 | engines: {node: '>=18'}
204 | cpu: [x64]
205 | os: [darwin]
206 |
207 | '@esbuild/freebsd-arm64@0.25.1':
208 | resolution: {integrity: sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==}
209 | engines: {node: '>=18'}
210 | cpu: [arm64]
211 | os: [freebsd]
212 |
213 | '@esbuild/freebsd-x64@0.25.1':
214 | resolution: {integrity: sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==}
215 | engines: {node: '>=18'}
216 | cpu: [x64]
217 | os: [freebsd]
218 |
219 | '@esbuild/linux-arm64@0.25.1':
220 | resolution: {integrity: sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==}
221 | engines: {node: '>=18'}
222 | cpu: [arm64]
223 | os: [linux]
224 |
225 | '@esbuild/linux-arm@0.25.1':
226 | resolution: {integrity: sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==}
227 | engines: {node: '>=18'}
228 | cpu: [arm]
229 | os: [linux]
230 |
231 | '@esbuild/linux-ia32@0.25.1':
232 | resolution: {integrity: sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==}
233 | engines: {node: '>=18'}
234 | cpu: [ia32]
235 | os: [linux]
236 |
237 | '@esbuild/linux-loong64@0.25.1':
238 | resolution: {integrity: sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==}
239 | engines: {node: '>=18'}
240 | cpu: [loong64]
241 | os: [linux]
242 |
243 | '@esbuild/linux-mips64el@0.25.1':
244 | resolution: {integrity: sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==}
245 | engines: {node: '>=18'}
246 | cpu: [mips64el]
247 | os: [linux]
248 |
249 | '@esbuild/linux-ppc64@0.25.1':
250 | resolution: {integrity: sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==}
251 | engines: {node: '>=18'}
252 | cpu: [ppc64]
253 | os: [linux]
254 |
255 | '@esbuild/linux-riscv64@0.25.1':
256 | resolution: {integrity: sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==}
257 | engines: {node: '>=18'}
258 | cpu: [riscv64]
259 | os: [linux]
260 |
261 | '@esbuild/linux-s390x@0.25.1':
262 | resolution: {integrity: sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==}
263 | engines: {node: '>=18'}
264 | cpu: [s390x]
265 | os: [linux]
266 |
267 | '@esbuild/linux-x64@0.25.1':
268 | resolution: {integrity: sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==}
269 | engines: {node: '>=18'}
270 | cpu: [x64]
271 | os: [linux]
272 |
273 | '@esbuild/netbsd-arm64@0.25.1':
274 | resolution: {integrity: sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==}
275 | engines: {node: '>=18'}
276 | cpu: [arm64]
277 | os: [netbsd]
278 |
279 | '@esbuild/netbsd-x64@0.25.1':
280 | resolution: {integrity: sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==}
281 | engines: {node: '>=18'}
282 | cpu: [x64]
283 | os: [netbsd]
284 |
285 | '@esbuild/openbsd-arm64@0.25.1':
286 | resolution: {integrity: sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==}
287 | engines: {node: '>=18'}
288 | cpu: [arm64]
289 | os: [openbsd]
290 |
291 | '@esbuild/openbsd-x64@0.25.1':
292 | resolution: {integrity: sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==}
293 | engines: {node: '>=18'}
294 | cpu: [x64]
295 | os: [openbsd]
296 |
297 | '@esbuild/sunos-x64@0.25.1':
298 | resolution: {integrity: sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==}
299 | engines: {node: '>=18'}
300 | cpu: [x64]
301 | os: [sunos]
302 |
303 | '@esbuild/win32-arm64@0.25.1':
304 | resolution: {integrity: sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==}
305 | engines: {node: '>=18'}
306 | cpu: [arm64]
307 | os: [win32]
308 |
309 | '@esbuild/win32-ia32@0.25.1':
310 | resolution: {integrity: sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==}
311 | engines: {node: '>=18'}
312 | cpu: [ia32]
313 | os: [win32]
314 |
315 | '@esbuild/win32-x64@0.25.1':
316 | resolution: {integrity: sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==}
317 | engines: {node: '>=18'}
318 | cpu: [x64]
319 | os: [win32]
320 |
321 | '@eslint-community/eslint-utils@4.4.1':
322 | resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
323 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
324 | peerDependencies:
325 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
326 |
327 | '@eslint-community/regexpp@4.12.1':
328 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
329 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
330 |
331 | '@eslint/config-array@0.19.2':
332 | resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
333 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
334 |
335 | '@eslint/config-helpers@0.2.0':
336 | resolution: {integrity: sha512-yJLLmLexii32mGrhW29qvU3QBVTu0GUmEf/J4XsBtVhp4JkIUFN/BjWqTF63yRvGApIDpZm5fa97LtYtINmfeQ==}
337 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
338 |
339 | '@eslint/core@0.12.0':
340 | resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
341 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
342 |
343 | '@eslint/eslintrc@3.3.1':
344 | resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
345 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
346 |
347 | '@eslint/js@9.23.0':
348 | resolution: {integrity: sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==}
349 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
350 |
351 | '@eslint/object-schema@2.1.6':
352 | resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
353 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
354 |
355 | '@eslint/plugin-kit@0.2.7':
356 | resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
357 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
358 |
359 | '@humanfs/core@0.19.1':
360 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
361 | engines: {node: '>=18.18.0'}
362 |
363 | '@humanfs/node@0.16.6':
364 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
365 | engines: {node: '>=18.18.0'}
366 |
367 | '@humanwhocodes/module-importer@1.0.1':
368 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
369 | engines: {node: '>=12.22'}
370 |
371 | '@humanwhocodes/retry@0.3.1':
372 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
373 | engines: {node: '>=18.18'}
374 |
375 | '@humanwhocodes/retry@0.4.2':
376 | resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
377 | engines: {node: '>=18.18'}
378 |
379 | '@isaacs/cliui@8.0.2':
380 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
381 | engines: {node: '>=12'}
382 |
383 | '@jridgewell/gen-mapping@0.3.5':
384 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
385 | engines: {node: '>=6.0.0'}
386 |
387 | '@jridgewell/resolve-uri@3.1.2':
388 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
389 | engines: {node: '>=6.0.0'}
390 |
391 | '@jridgewell/set-array@1.2.1':
392 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
393 | engines: {node: '>=6.0.0'}
394 |
395 | '@jridgewell/sourcemap-codec@1.5.0':
396 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
397 |
398 | '@jridgewell/trace-mapping@0.3.25':
399 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
400 |
401 | '@nodelib/fs.scandir@2.1.5':
402 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
403 | engines: {node: '>= 8'}
404 |
405 | '@nodelib/fs.stat@2.0.5':
406 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
407 | engines: {node: '>= 8'}
408 |
409 | '@nodelib/fs.walk@1.2.8':
410 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
411 | engines: {node: '>= 8'}
412 |
413 | '@pkgjs/parseargs@0.11.0':
414 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
415 | engines: {node: '>=14'}
416 |
417 | '@radix-ui/react-compose-refs@1.1.1':
418 | resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
419 | peerDependencies:
420 | '@types/react': '*'
421 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
422 | peerDependenciesMeta:
423 | '@types/react':
424 | optional: true
425 |
426 | '@radix-ui/react-slot@1.1.2':
427 | resolution: {integrity: sha512-YAKxaiGsSQJ38VzKH86/BPRC4rh+b1Jpa+JneA5LRE7skmLPNAyeG8kPJj/oo4STLvlrs8vkf/iYyc3A5stYCQ==}
428 | peerDependencies:
429 | '@types/react': '*'
430 | react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
431 | peerDependenciesMeta:
432 | '@types/react':
433 | optional: true
434 |
435 | '@rollup/rollup-android-arm-eabi@4.34.6':
436 | resolution: {integrity: sha512-+GcCXtOQoWuC7hhX1P00LqjjIiS/iOouHXhMdiDSnq/1DGTox4SpUvO52Xm+div6+106r+TcvOeo/cxvyEyTgg==}
437 | cpu: [arm]
438 | os: [android]
439 |
440 | '@rollup/rollup-android-arm64@4.34.6':
441 | resolution: {integrity: sha512-E8+2qCIjciYUnCa1AiVF1BkRgqIGW9KzJeesQqVfyRITGQN+dFuoivO0hnro1DjT74wXLRZ7QF8MIbz+luGaJA==}
442 | cpu: [arm64]
443 | os: [android]
444 |
445 | '@rollup/rollup-darwin-arm64@4.34.6':
446 | resolution: {integrity: sha512-z9Ib+OzqN3DZEjX7PDQMHEhtF+t6Mi2z/ueChQPLS/qUMKY7Ybn5A2ggFoKRNRh1q1T03YTQfBTQCJZiepESAg==}
447 | cpu: [arm64]
448 | os: [darwin]
449 |
450 | '@rollup/rollup-darwin-x64@4.34.6':
451 | resolution: {integrity: sha512-PShKVY4u0FDAR7jskyFIYVyHEPCPnIQY8s5OcXkdU8mz3Y7eXDJPdyM/ZWjkYdR2m0izD9HHWA8sGcXn+Qrsyg==}
452 | cpu: [x64]
453 | os: [darwin]
454 |
455 | '@rollup/rollup-freebsd-arm64@4.34.6':
456 | resolution: {integrity: sha512-YSwyOqlDAdKqs0iKuqvRHLN4SrD2TiswfoLfvYXseKbL47ht1grQpq46MSiQAx6rQEN8o8URtpXARCpqabqxGQ==}
457 | cpu: [arm64]
458 | os: [freebsd]
459 |
460 | '@rollup/rollup-freebsd-x64@4.34.6':
461 | resolution: {integrity: sha512-HEP4CgPAY1RxXwwL5sPFv6BBM3tVeLnshF03HMhJYCNc6kvSqBgTMmsEjb72RkZBAWIqiPUyF1JpEBv5XT9wKQ==}
462 | cpu: [x64]
463 | os: [freebsd]
464 |
465 | '@rollup/rollup-linux-arm-gnueabihf@4.34.6':
466 | resolution: {integrity: sha512-88fSzjC5xeH9S2Vg3rPgXJULkHcLYMkh8faix8DX4h4TIAL65ekwuQMA/g2CXq8W+NJC43V6fUpYZNjaX3+IIg==}
467 | cpu: [arm]
468 | os: [linux]
469 |
470 | '@rollup/rollup-linux-arm-musleabihf@4.34.6':
471 | resolution: {integrity: sha512-wM4ztnutBqYFyvNeR7Av+reWI/enK9tDOTKNF+6Kk2Q96k9bwhDDOlnCUNRPvromlVXo04riSliMBs/Z7RteEg==}
472 | cpu: [arm]
473 | os: [linux]
474 |
475 | '@rollup/rollup-linux-arm64-gnu@4.34.6':
476 | resolution: {integrity: sha512-9RyprECbRa9zEjXLtvvshhw4CMrRa3K+0wcp3KME0zmBe1ILmvcVHnypZ/aIDXpRyfhSYSuN4EPdCCj5Du8FIA==}
477 | cpu: [arm64]
478 | os: [linux]
479 |
480 | '@rollup/rollup-linux-arm64-musl@4.34.6':
481 | resolution: {integrity: sha512-qTmklhCTyaJSB05S+iSovfo++EwnIEZxHkzv5dep4qoszUMX5Ca4WM4zAVUMbfdviLgCSQOu5oU8YoGk1s6M9Q==}
482 | cpu: [arm64]
483 | os: [linux]
484 |
485 | '@rollup/rollup-linux-loongarch64-gnu@4.34.6':
486 | resolution: {integrity: sha512-4Qmkaps9yqmpjY5pvpkfOerYgKNUGzQpFxV6rnS7c/JfYbDSU0y6WpbbredB5cCpLFGJEqYX40WUmxMkwhWCjw==}
487 | cpu: [loong64]
488 | os: [linux]
489 |
490 | '@rollup/rollup-linux-powerpc64le-gnu@4.34.6':
491 | resolution: {integrity: sha512-Zsrtux3PuaxuBTX/zHdLaFmcofWGzaWW1scwLU3ZbW/X+hSsFbz9wDIp6XvnT7pzYRl9MezWqEqKy7ssmDEnuQ==}
492 | cpu: [ppc64]
493 | os: [linux]
494 |
495 | '@rollup/rollup-linux-riscv64-gnu@4.34.6':
496 | resolution: {integrity: sha512-aK+Zp+CRM55iPrlyKiU3/zyhgzWBxLVrw2mwiQSYJRobCURb781+XstzvA8Gkjg/hbdQFuDw44aUOxVQFycrAg==}
497 | cpu: [riscv64]
498 | os: [linux]
499 |
500 | '@rollup/rollup-linux-s390x-gnu@4.34.6':
501 | resolution: {integrity: sha512-WoKLVrY9ogmaYPXwTH326+ErlCIgMmsoRSx6bO+l68YgJnlOXhygDYSZe/qbUJCSiCiZAQ+tKm88NcWuUXqOzw==}
502 | cpu: [s390x]
503 | os: [linux]
504 |
505 | '@rollup/rollup-linux-x64-gnu@4.34.6':
506 | resolution: {integrity: sha512-Sht4aFvmA4ToHd2vFzwMFaQCiYm2lDFho5rPcvPBT5pCdC+GwHG6CMch4GQfmWTQ1SwRKS0dhDYb54khSrjDWw==}
507 | cpu: [x64]
508 | os: [linux]
509 |
510 | '@rollup/rollup-linux-x64-musl@4.34.6':
511 | resolution: {integrity: sha512-zmmpOQh8vXc2QITsnCiODCDGXFC8LMi64+/oPpPx5qz3pqv0s6x46ps4xoycfUiVZps5PFn1gksZzo4RGTKT+A==}
512 | cpu: [x64]
513 | os: [linux]
514 |
515 | '@rollup/rollup-win32-arm64-msvc@4.34.6':
516 | resolution: {integrity: sha512-3/q1qUsO/tLqGBaD4uXsB6coVGB3usxw3qyeVb59aArCgedSF66MPdgRStUd7vbZOsko/CgVaY5fo2vkvPLWiA==}
517 | cpu: [arm64]
518 | os: [win32]
519 |
520 | '@rollup/rollup-win32-ia32-msvc@4.34.6':
521 | resolution: {integrity: sha512-oLHxuyywc6efdKVTxvc0135zPrRdtYVjtVD5GUm55I3ODxhU/PwkQFD97z16Xzxa1Fz0AEe4W/2hzRtd+IfpOA==}
522 | cpu: [ia32]
523 | os: [win32]
524 |
525 | '@rollup/rollup-win32-x64-msvc@4.34.6':
526 | resolution: {integrity: sha512-0PVwmgzZ8+TZ9oGBmdZoQVXflbvuwzN/HRclujpl4N/q3i+y0lqLw8n1bXA8ru3sApDjlmONaNAuYr38y1Kr9w==}
527 | cpu: [x64]
528 | os: [win32]
529 |
530 | '@types/babel__core@7.20.5':
531 | resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
532 |
533 | '@types/babel__generator@7.6.8':
534 | resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
535 |
536 | '@types/babel__template@7.4.4':
537 | resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
538 |
539 | '@types/babel__traverse@7.20.6':
540 | resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
541 |
542 | '@types/estree@1.0.6':
543 | resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
544 |
545 | '@types/json-schema@7.0.15':
546 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
547 |
548 | '@types/node@22.13.14':
549 | resolution: {integrity: sha512-Zs/Ollc1SJ8nKUAgc7ivOEdIBM8JAKgrqqUYi2J997JuKO7/tpQC+WCetQ1sypiKCQWHdvdg9wBNpUPEWZae7w==}
550 |
551 | '@types/react-dom@19.0.4':
552 | resolution: {integrity: sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg==}
553 | peerDependencies:
554 | '@types/react': ^19.0.0
555 |
556 | '@types/react@19.0.12':
557 | resolution: {integrity: sha512-V6Ar115dBDrjbtXSrS+/Oruobc+qVbbUxDFC1RSbRqLt5SYvxxyIDrSC85RWml54g+jfNeEMZhEj7wW07ONQhA==}
558 |
559 | '@typescript-eslint/eslint-plugin@8.28.0':
560 | resolution: {integrity: sha512-lvFK3TCGAHsItNdWZ/1FkvpzCxTHUVuFrdnOGLMa0GGCFIbCgQWVk3CzCGdA7kM3qGVc+dfW9tr0Z/sHnGDFyg==}
561 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
562 | peerDependencies:
563 | '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
564 | eslint: ^8.57.0 || ^9.0.0
565 | typescript: '>=4.8.4 <5.9.0'
566 |
567 | '@typescript-eslint/parser@8.28.0':
568 | resolution: {integrity: sha512-LPcw1yHD3ToaDEoljFEfQ9j2xShY367h7FZ1sq5NJT9I3yj4LHer1Xd1yRSOdYy9BpsrxU7R+eoDokChYM53lQ==}
569 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
570 | peerDependencies:
571 | eslint: ^8.57.0 || ^9.0.0
572 | typescript: '>=4.8.4 <5.9.0'
573 |
574 | '@typescript-eslint/scope-manager@8.28.0':
575 | resolution: {integrity: sha512-u2oITX3BJwzWCapoZ/pXw6BCOl8rJP4Ij/3wPoGvY8XwvXflOzd1kLrDUUUAIEdJSFh+ASwdTHqtan9xSg8buw==}
576 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
577 |
578 | '@typescript-eslint/type-utils@8.28.0':
579 | resolution: {integrity: sha512-oRoXu2v0Rsy/VoOGhtWrOKDiIehvI+YNrDk5Oqj40Mwm0Yt01FC/Q7nFqg088d3yAsR1ZcZFVfPCTTFCe/KPwg==}
580 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
581 | peerDependencies:
582 | eslint: ^8.57.0 || ^9.0.0
583 | typescript: '>=4.8.4 <5.9.0'
584 |
585 | '@typescript-eslint/types@8.28.0':
586 | resolution: {integrity: sha512-bn4WS1bkKEjx7HqiwG2JNB3YJdC1q6Ue7GyGlwPHyt0TnVq6TtD/hiOdTZt71sq0s7UzqBFXD8t8o2e63tXgwA==}
587 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
588 |
589 | '@typescript-eslint/typescript-estree@8.28.0':
590 | resolution: {integrity: sha512-H74nHEeBGeklctAVUvmDkxB1mk+PAZ9FiOMPFncdqeRBXxk1lWSYraHw8V12b7aa6Sg9HOBNbGdSHobBPuQSuA==}
591 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
592 | peerDependencies:
593 | typescript: '>=4.8.4 <5.9.0'
594 |
595 | '@typescript-eslint/utils@8.28.0':
596 | resolution: {integrity: sha512-OELa9hbTYciYITqgurT1u/SzpQVtDLmQMFzy/N8pQE+tefOyCWT79jHsav294aTqV1q1u+VzqDGbuujvRYaeSQ==}
597 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
598 | peerDependencies:
599 | eslint: ^8.57.0 || ^9.0.0
600 | typescript: '>=4.8.4 <5.9.0'
601 |
602 | '@typescript-eslint/visitor-keys@8.28.0':
603 | resolution: {integrity: sha512-hbn8SZ8w4u2pRwgQ1GlUrPKE+t2XvcCW5tTRF7j6SMYIuYG37XuzIW44JCZPa36evi0Oy2SnM664BlIaAuQcvg==}
604 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
605 |
606 | '@vitejs/plugin-react@4.3.4':
607 | resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==}
608 | engines: {node: ^14.18.0 || >=16.0.0}
609 | peerDependencies:
610 | vite: ^4.2.0 || ^5.0.0 || ^6.0.0
611 |
612 | acorn-jsx@5.3.2:
613 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
614 | peerDependencies:
615 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
616 |
617 | acorn@8.14.0:
618 | resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
619 | engines: {node: '>=0.4.0'}
620 | hasBin: true
621 |
622 | ajv@6.12.6:
623 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
624 |
625 | ansi-regex@5.0.1:
626 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
627 | engines: {node: '>=8'}
628 |
629 | ansi-regex@6.1.0:
630 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
631 | engines: {node: '>=12'}
632 |
633 | ansi-styles@4.3.0:
634 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
635 | engines: {node: '>=8'}
636 |
637 | ansi-styles@6.2.1:
638 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
639 | engines: {node: '>=12'}
640 |
641 | any-promise@1.3.0:
642 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
643 |
644 | anymatch@3.1.3:
645 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
646 | engines: {node: '>= 8'}
647 |
648 | arg@5.0.2:
649 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
650 |
651 | argparse@2.0.1:
652 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
653 |
654 | autoprefixer@10.4.21:
655 | resolution: {integrity: sha512-O+A6LWV5LDHSJD3LjHYoNi4VLsj/Whi7k6zG12xTYaU4cQ8oxQGckXNX8cRHK5yOZ/ppVHe0ZBXGzSV9jXdVbQ==}
656 | engines: {node: ^10 || ^12 || >=14}
657 | hasBin: true
658 | peerDependencies:
659 | postcss: ^8.1.0
660 |
661 | balanced-match@1.0.2:
662 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
663 |
664 | binary-extensions@2.3.0:
665 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
666 | engines: {node: '>=8'}
667 |
668 | brace-expansion@1.1.11:
669 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
670 |
671 | brace-expansion@2.0.1:
672 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
673 |
674 | braces@3.0.3:
675 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
676 | engines: {node: '>=8'}
677 |
678 | browserslist@4.24.2:
679 | resolution: {integrity: sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==}
680 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
681 | hasBin: true
682 |
683 | browserslist@4.24.4:
684 | resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
685 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
686 | hasBin: true
687 |
688 | callsites@3.1.0:
689 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
690 | engines: {node: '>=6'}
691 |
692 | camelcase-css@2.0.1:
693 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
694 | engines: {node: '>= 6'}
695 |
696 | caniuse-lite@1.0.30001679:
697 | resolution: {integrity: sha512-j2YqID/YwpLnKzCmBOS4tlZdWprXm3ZmQLBH9ZBXFOhoxLA46fwyBvx6toCBWBmnuwUY/qB3kEU6gFx8qgCroA==}
698 |
699 | caniuse-lite@1.0.30001707:
700 | resolution: {integrity: sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==}
701 |
702 | chalk@4.1.2:
703 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
704 | engines: {node: '>=10'}
705 |
706 | chokidar@3.6.0:
707 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
708 | engines: {node: '>= 8.10.0'}
709 |
710 | class-variance-authority@0.7.1:
711 | resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
712 |
713 | clsx@2.1.1:
714 | resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
715 | engines: {node: '>=6'}
716 |
717 | color-convert@2.0.1:
718 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
719 | engines: {node: '>=7.0.0'}
720 |
721 | color-name@1.1.4:
722 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
723 |
724 | commander@4.1.1:
725 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
726 | engines: {node: '>= 6'}
727 |
728 | concat-map@0.0.1:
729 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
730 |
731 | convert-source-map@2.0.0:
732 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
733 |
734 | cross-spawn@7.0.6:
735 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
736 | engines: {node: '>= 8'}
737 |
738 | cssesc@3.0.0:
739 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
740 | engines: {node: '>=4'}
741 | hasBin: true
742 |
743 | csstype@3.1.3:
744 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
745 |
746 | debug@4.3.7:
747 | resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
748 | engines: {node: '>=6.0'}
749 | peerDependencies:
750 | supports-color: '*'
751 | peerDependenciesMeta:
752 | supports-color:
753 | optional: true
754 |
755 | deep-is@0.1.4:
756 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
757 |
758 | detect-libc@2.0.3:
759 | resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
760 | engines: {node: '>=8'}
761 |
762 | didyoumean@1.2.2:
763 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
764 |
765 | dlv@1.1.3:
766 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
767 |
768 | eastasianwidth@0.2.0:
769 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
770 |
771 | electron-to-chromium@1.5.126:
772 | resolution: {integrity: sha512-AtH1uLcTC72LA4vfYcEJJkrMk/MY/X0ub8Hv7QGAePW2JkeUFHEL/QfS4J77R6M87Sss8O0OcqReSaN1bpyA+Q==}
773 |
774 | electron-to-chromium@1.5.55:
775 | resolution: {integrity: sha512-6maZ2ASDOTBtjt9FhqYPRnbvKU5tjG0IN9SztUOWYw2AzNDNpKJYLJmlK0/En4Hs/aiWnB+JZ+gW19PIGszgKg==}
776 |
777 | emoji-regex@8.0.0:
778 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
779 |
780 | emoji-regex@9.2.2:
781 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
782 |
783 | esbuild@0.25.1:
784 | resolution: {integrity: sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==}
785 | engines: {node: '>=18'}
786 | hasBin: true
787 |
788 | escalade@3.2.0:
789 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
790 | engines: {node: '>=6'}
791 |
792 | escape-string-regexp@4.0.0:
793 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
794 | engines: {node: '>=10'}
795 |
796 | eslint-plugin-react-hooks@5.2.0:
797 | resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
798 | engines: {node: '>=10'}
799 | peerDependencies:
800 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
801 |
802 | eslint-plugin-react-refresh@0.4.19:
803 | resolution: {integrity: sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ==}
804 | peerDependencies:
805 | eslint: '>=8.40'
806 |
807 | eslint-scope@8.3.0:
808 | resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
809 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
810 |
811 | eslint-visitor-keys@3.4.3:
812 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
813 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
814 |
815 | eslint-visitor-keys@4.2.0:
816 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
817 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
818 |
819 | eslint@9.23.0:
820 | resolution: {integrity: sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==}
821 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
822 | hasBin: true
823 | peerDependencies:
824 | jiti: '*'
825 | peerDependenciesMeta:
826 | jiti:
827 | optional: true
828 |
829 | espree@10.3.0:
830 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
831 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
832 |
833 | esquery@1.6.0:
834 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
835 | engines: {node: '>=0.10'}
836 |
837 | esrecurse@4.3.0:
838 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
839 | engines: {node: '>=4.0'}
840 |
841 | estraverse@5.3.0:
842 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
843 | engines: {node: '>=4.0'}
844 |
845 | esutils@2.0.3:
846 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
847 | engines: {node: '>=0.10.0'}
848 |
849 | fast-deep-equal@3.1.3:
850 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
851 |
852 | fast-glob@3.3.2:
853 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
854 | engines: {node: '>=8.6.0'}
855 |
856 | fast-json-stable-stringify@2.1.0:
857 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
858 |
859 | fast-levenshtein@2.0.6:
860 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
861 |
862 | fastq@1.17.1:
863 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
864 |
865 | file-entry-cache@8.0.0:
866 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
867 | engines: {node: '>=16.0.0'}
868 |
869 | fill-range@7.1.1:
870 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
871 | engines: {node: '>=8'}
872 |
873 | find-up@5.0.0:
874 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
875 | engines: {node: '>=10'}
876 |
877 | flat-cache@4.0.1:
878 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
879 | engines: {node: '>=16'}
880 |
881 | flatted@3.3.1:
882 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
883 |
884 | foreground-child@3.3.1:
885 | resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
886 | engines: {node: '>=14'}
887 |
888 | fraction.js@4.3.7:
889 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
890 |
891 | fsevents@2.3.3:
892 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
893 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
894 | os: [darwin]
895 |
896 | function-bind@1.1.2:
897 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
898 |
899 | gensync@1.0.0-beta.2:
900 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
901 | engines: {node: '>=6.9.0'}
902 |
903 | glob-parent@5.1.2:
904 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
905 | engines: {node: '>= 6'}
906 |
907 | glob-parent@6.0.2:
908 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
909 | engines: {node: '>=10.13.0'}
910 |
911 | glob@10.4.5:
912 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
913 | hasBin: true
914 |
915 | globals@11.12.0:
916 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
917 | engines: {node: '>=4'}
918 |
919 | globals@14.0.0:
920 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
921 | engines: {node: '>=18'}
922 |
923 | globals@16.0.0:
924 | resolution: {integrity: sha512-iInW14XItCXET01CQFqudPOWP2jYMl7T+QRQT+UNcR/iQncN/F0UNpgd76iFkBPgNQb4+X3LV9tLJYzwh+Gl3A==}
925 | engines: {node: '>=18'}
926 |
927 | graphemer@1.4.0:
928 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
929 |
930 | has-flag@4.0.0:
931 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
932 | engines: {node: '>=8'}
933 |
934 | hasown@2.0.2:
935 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
936 | engines: {node: '>= 0.4'}
937 |
938 | ignore@5.3.2:
939 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
940 | engines: {node: '>= 4'}
941 |
942 | import-fresh@3.3.0:
943 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
944 | engines: {node: '>=6'}
945 |
946 | imurmurhash@0.1.4:
947 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
948 | engines: {node: '>=0.8.19'}
949 |
950 | is-binary-path@2.1.0:
951 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
952 | engines: {node: '>=8'}
953 |
954 | is-core-module@2.16.1:
955 | resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
956 | engines: {node: '>= 0.4'}
957 |
958 | is-extglob@2.1.1:
959 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
960 | engines: {node: '>=0.10.0'}
961 |
962 | is-fullwidth-code-point@3.0.0:
963 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
964 | engines: {node: '>=8'}
965 |
966 | is-glob@4.0.3:
967 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
968 | engines: {node: '>=0.10.0'}
969 |
970 | is-number@7.0.0:
971 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
972 | engines: {node: '>=0.12.0'}
973 |
974 | isexe@2.0.0:
975 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
976 |
977 | jackspeak@3.4.3:
978 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
979 |
980 | jiti@1.21.7:
981 | resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
982 | hasBin: true
983 |
984 | jiti@2.4.2:
985 | resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
986 | hasBin: true
987 |
988 | js-tokens@4.0.0:
989 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
990 |
991 | js-yaml@4.1.0:
992 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
993 | hasBin: true
994 |
995 | jsesc@3.0.2:
996 | resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
997 | engines: {node: '>=6'}
998 | hasBin: true
999 |
1000 | json-buffer@3.0.1:
1001 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1002 |
1003 | json-schema-traverse@0.4.1:
1004 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1005 |
1006 | json-stable-stringify-without-jsonify@1.0.1:
1007 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1008 |
1009 | json5@2.2.3:
1010 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1011 | engines: {node: '>=6'}
1012 | hasBin: true
1013 |
1014 | keyv@4.5.4:
1015 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1016 |
1017 | levn@0.4.1:
1018 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1019 | engines: {node: '>= 0.8.0'}
1020 |
1021 | lightningcss-darwin-arm64@1.29.2:
1022 | resolution: {integrity: sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==}
1023 | engines: {node: '>= 12.0.0'}
1024 | cpu: [arm64]
1025 | os: [darwin]
1026 |
1027 | lightningcss-darwin-x64@1.29.2:
1028 | resolution: {integrity: sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==}
1029 | engines: {node: '>= 12.0.0'}
1030 | cpu: [x64]
1031 | os: [darwin]
1032 |
1033 | lightningcss-freebsd-x64@1.29.2:
1034 | resolution: {integrity: sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==}
1035 | engines: {node: '>= 12.0.0'}
1036 | cpu: [x64]
1037 | os: [freebsd]
1038 |
1039 | lightningcss-linux-arm-gnueabihf@1.29.2:
1040 | resolution: {integrity: sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==}
1041 | engines: {node: '>= 12.0.0'}
1042 | cpu: [arm]
1043 | os: [linux]
1044 |
1045 | lightningcss-linux-arm64-gnu@1.29.2:
1046 | resolution: {integrity: sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==}
1047 | engines: {node: '>= 12.0.0'}
1048 | cpu: [arm64]
1049 | os: [linux]
1050 |
1051 | lightningcss-linux-arm64-musl@1.29.2:
1052 | resolution: {integrity: sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==}
1053 | engines: {node: '>= 12.0.0'}
1054 | cpu: [arm64]
1055 | os: [linux]
1056 |
1057 | lightningcss-linux-x64-gnu@1.29.2:
1058 | resolution: {integrity: sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==}
1059 | engines: {node: '>= 12.0.0'}
1060 | cpu: [x64]
1061 | os: [linux]
1062 |
1063 | lightningcss-linux-x64-musl@1.29.2:
1064 | resolution: {integrity: sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==}
1065 | engines: {node: '>= 12.0.0'}
1066 | cpu: [x64]
1067 | os: [linux]
1068 |
1069 | lightningcss-win32-arm64-msvc@1.29.2:
1070 | resolution: {integrity: sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==}
1071 | engines: {node: '>= 12.0.0'}
1072 | cpu: [arm64]
1073 | os: [win32]
1074 |
1075 | lightningcss-win32-x64-msvc@1.29.2:
1076 | resolution: {integrity: sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==}
1077 | engines: {node: '>= 12.0.0'}
1078 | cpu: [x64]
1079 | os: [win32]
1080 |
1081 | lightningcss@1.29.2:
1082 | resolution: {integrity: sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==}
1083 | engines: {node: '>= 12.0.0'}
1084 |
1085 | lilconfig@3.1.3:
1086 | resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
1087 | engines: {node: '>=14'}
1088 |
1089 | lines-and-columns@1.2.4:
1090 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1091 |
1092 | locate-path@6.0.0:
1093 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1094 | engines: {node: '>=10'}
1095 |
1096 | lodash.merge@4.6.2:
1097 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1098 |
1099 | lru-cache@10.4.3:
1100 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
1101 |
1102 | lru-cache@5.1.1:
1103 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
1104 |
1105 | lucide-react@0.484.0:
1106 | resolution: {integrity: sha512-oZy8coK9kZzvqhSgfbGkPtTgyjpBvs3ukLgDPv14dSOZtBtboryWF5o8i3qen7QbGg7JhiJBz5mK1p8YoMZTLQ==}
1107 | peerDependencies:
1108 | react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
1109 |
1110 | merge2@1.4.1:
1111 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1112 | engines: {node: '>= 8'}
1113 |
1114 | micromatch@4.0.8:
1115 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
1116 | engines: {node: '>=8.6'}
1117 |
1118 | minimatch@3.1.2:
1119 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1120 |
1121 | minimatch@9.0.5:
1122 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1123 | engines: {node: '>=16 || 14 >=14.17'}
1124 |
1125 | minipass@7.1.2:
1126 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
1127 | engines: {node: '>=16 || 14 >=14.17'}
1128 |
1129 | ms@2.1.3:
1130 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1131 |
1132 | mz@2.7.0:
1133 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1134 |
1135 | nanoid@3.3.8:
1136 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
1137 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1138 | hasBin: true
1139 |
1140 | natural-compare@1.4.0:
1141 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1142 |
1143 | node-releases@2.0.18:
1144 | resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
1145 |
1146 | node-releases@2.0.19:
1147 | resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
1148 |
1149 | normalize-path@3.0.0:
1150 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1151 | engines: {node: '>=0.10.0'}
1152 |
1153 | normalize-range@0.1.2:
1154 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
1155 | engines: {node: '>=0.10.0'}
1156 |
1157 | object-assign@4.1.1:
1158 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1159 | engines: {node: '>=0.10.0'}
1160 |
1161 | object-hash@3.0.0:
1162 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1163 | engines: {node: '>= 6'}
1164 |
1165 | optionator@0.9.4:
1166 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1167 | engines: {node: '>= 0.8.0'}
1168 |
1169 | p-limit@3.1.0:
1170 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1171 | engines: {node: '>=10'}
1172 |
1173 | p-locate@5.0.0:
1174 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1175 | engines: {node: '>=10'}
1176 |
1177 | package-json-from-dist@1.0.1:
1178 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
1179 |
1180 | parent-module@1.0.1:
1181 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1182 | engines: {node: '>=6'}
1183 |
1184 | path-exists@4.0.0:
1185 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1186 | engines: {node: '>=8'}
1187 |
1188 | path-key@3.1.1:
1189 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1190 | engines: {node: '>=8'}
1191 |
1192 | path-parse@1.0.7:
1193 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1194 |
1195 | path-scurry@1.11.1:
1196 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
1197 | engines: {node: '>=16 || 14 >=14.18'}
1198 |
1199 | picocolors@1.1.1:
1200 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1201 |
1202 | picomatch@2.3.1:
1203 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1204 | engines: {node: '>=8.6'}
1205 |
1206 | pify@2.3.0:
1207 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
1208 | engines: {node: '>=0.10.0'}
1209 |
1210 | pirates@4.0.7:
1211 | resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
1212 | engines: {node: '>= 6'}
1213 |
1214 | postcss-import@15.1.0:
1215 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
1216 | engines: {node: '>=14.0.0'}
1217 | peerDependencies:
1218 | postcss: ^8.0.0
1219 |
1220 | postcss-js@4.0.1:
1221 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
1222 | engines: {node: ^12 || ^14 || >= 16}
1223 | peerDependencies:
1224 | postcss: ^8.4.21
1225 |
1226 | postcss-load-config@4.0.2:
1227 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
1228 | engines: {node: '>= 14'}
1229 | peerDependencies:
1230 | postcss: '>=8.0.9'
1231 | ts-node: '>=9.0.0'
1232 | peerDependenciesMeta:
1233 | postcss:
1234 | optional: true
1235 | ts-node:
1236 | optional: true
1237 |
1238 | postcss-nested@6.2.0:
1239 | resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
1240 | engines: {node: '>=12.0'}
1241 | peerDependencies:
1242 | postcss: ^8.2.14
1243 |
1244 | postcss-selector-parser@6.1.2:
1245 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
1246 | engines: {node: '>=4'}
1247 |
1248 | postcss-value-parser@4.2.0:
1249 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1250 |
1251 | postcss@8.5.3:
1252 | resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
1253 | engines: {node: ^10 || ^12 || >=14}
1254 |
1255 | prelude-ls@1.2.1:
1256 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1257 | engines: {node: '>= 0.8.0'}
1258 |
1259 | punycode@2.3.1:
1260 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1261 | engines: {node: '>=6'}
1262 |
1263 | queue-microtask@1.2.3:
1264 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1265 |
1266 | react-dom@19.0.0:
1267 | resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
1268 | peerDependencies:
1269 | react: ^19.0.0
1270 |
1271 | react-refresh@0.14.2:
1272 | resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
1273 | engines: {node: '>=0.10.0'}
1274 |
1275 | react@19.0.0:
1276 | resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
1277 | engines: {node: '>=0.10.0'}
1278 |
1279 | read-cache@1.0.0:
1280 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
1281 |
1282 | readdirp@3.6.0:
1283 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
1284 | engines: {node: '>=8.10.0'}
1285 |
1286 | resolve-from@4.0.0:
1287 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1288 | engines: {node: '>=4'}
1289 |
1290 | resolve@1.22.10:
1291 | resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
1292 | engines: {node: '>= 0.4'}
1293 | hasBin: true
1294 |
1295 | reusify@1.0.4:
1296 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
1297 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1298 |
1299 | rollup@4.34.6:
1300 | resolution: {integrity: sha512-wc2cBWqJgkU3Iz5oztRkQbfVkbxoz5EhnCGOrnJvnLnQ7O0WhQUYyv18qQI79O8L7DdHrrlJNeCHd4VGpnaXKQ==}
1301 | engines: {node: '>=18.0.0', npm: '>=8.0.0'}
1302 | hasBin: true
1303 |
1304 | run-parallel@1.2.0:
1305 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1306 |
1307 | scheduler@0.25.0:
1308 | resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
1309 |
1310 | semver@6.3.1:
1311 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
1312 | hasBin: true
1313 |
1314 | semver@7.6.3:
1315 | resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
1316 | engines: {node: '>=10'}
1317 | hasBin: true
1318 |
1319 | shebang-command@2.0.0:
1320 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1321 | engines: {node: '>=8'}
1322 |
1323 | shebang-regex@3.0.0:
1324 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1325 | engines: {node: '>=8'}
1326 |
1327 | signal-exit@4.1.0:
1328 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
1329 | engines: {node: '>=14'}
1330 |
1331 | source-map-js@1.2.1:
1332 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1333 | engines: {node: '>=0.10.0'}
1334 |
1335 | string-width@4.2.3:
1336 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
1337 | engines: {node: '>=8'}
1338 |
1339 | string-width@5.1.2:
1340 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
1341 | engines: {node: '>=12'}
1342 |
1343 | strip-ansi@6.0.1:
1344 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
1345 | engines: {node: '>=8'}
1346 |
1347 | strip-ansi@7.1.0:
1348 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
1349 | engines: {node: '>=12'}
1350 |
1351 | strip-json-comments@3.1.1:
1352 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1353 | engines: {node: '>=8'}
1354 |
1355 | sucrase@3.35.0:
1356 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
1357 | engines: {node: '>=16 || 14 >=14.17'}
1358 | hasBin: true
1359 |
1360 | supports-color@7.2.0:
1361 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1362 | engines: {node: '>=8'}
1363 |
1364 | supports-preserve-symlinks-flag@1.0.0:
1365 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1366 | engines: {node: '>= 0.4'}
1367 |
1368 | tailwind-merge@3.0.2:
1369 | resolution: {integrity: sha512-l7z+OYZ7mu3DTqrL88RiKrKIqO3NcpEO8V/Od04bNpvk0kiIFndGEoqfuzvj4yuhRkHKjRkII2z+KS2HfPcSxw==}
1370 |
1371 | tailwindcss-animate@1.0.7:
1372 | resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
1373 | peerDependencies:
1374 | tailwindcss: '>=3.0.0 || insiders'
1375 |
1376 | tailwindcss@3.4.17:
1377 | resolution: {integrity: sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==}
1378 | engines: {node: '>=14.0.0'}
1379 | hasBin: true
1380 |
1381 | thenify-all@1.6.0:
1382 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
1383 | engines: {node: '>=0.8'}
1384 |
1385 | thenify@3.3.1:
1386 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1387 |
1388 | to-regex-range@5.0.1:
1389 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1390 | engines: {node: '>=8.0'}
1391 |
1392 | ts-api-utils@2.0.1:
1393 | resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==}
1394 | engines: {node: '>=18.12'}
1395 | peerDependencies:
1396 | typescript: '>=4.8.4'
1397 |
1398 | ts-interface-checker@0.1.13:
1399 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1400 |
1401 | type-check@0.4.0:
1402 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1403 | engines: {node: '>= 0.8.0'}
1404 |
1405 | typescript-eslint@8.28.0:
1406 | resolution: {integrity: sha512-jfZtxJoHm59bvoCMYCe2BM0/baMswRhMmYhy+w6VfcyHrjxZ0OJe0tGasydCpIpA+A/WIJhTyZfb3EtwNC/kHQ==}
1407 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
1408 | peerDependencies:
1409 | eslint: ^8.57.0 || ^9.0.0
1410 | typescript: '>=4.8.4 <5.9.0'
1411 |
1412 | typescript@5.8.2:
1413 | resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
1414 | engines: {node: '>=14.17'}
1415 | hasBin: true
1416 |
1417 | undici-types@6.20.0:
1418 | resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
1419 |
1420 | update-browserslist-db@1.1.1:
1421 | resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
1422 | hasBin: true
1423 | peerDependencies:
1424 | browserslist: '>= 4.21.0'
1425 |
1426 | uri-js@4.4.1:
1427 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1428 |
1429 | util-deprecate@1.0.2:
1430 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1431 |
1432 | vite@6.2.3:
1433 | resolution: {integrity: sha512-IzwM54g4y9JA/xAeBPNaDXiBF8Jsgl3VBQ2YQ/wOY6fyW3xMdSoltIV3Bo59DErdqdE6RxUfv8W69DvUorE4Eg==}
1434 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
1435 | hasBin: true
1436 | peerDependencies:
1437 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
1438 | jiti: '>=1.21.0'
1439 | less: '*'
1440 | lightningcss: ^1.21.0
1441 | sass: '*'
1442 | sass-embedded: '*'
1443 | stylus: '*'
1444 | sugarss: '*'
1445 | terser: ^5.16.0
1446 | tsx: ^4.8.1
1447 | yaml: ^2.4.2
1448 | peerDependenciesMeta:
1449 | '@types/node':
1450 | optional: true
1451 | jiti:
1452 | optional: true
1453 | less:
1454 | optional: true
1455 | lightningcss:
1456 | optional: true
1457 | sass:
1458 | optional: true
1459 | sass-embedded:
1460 | optional: true
1461 | stylus:
1462 | optional: true
1463 | sugarss:
1464 | optional: true
1465 | terser:
1466 | optional: true
1467 | tsx:
1468 | optional: true
1469 | yaml:
1470 | optional: true
1471 |
1472 | which@2.0.2:
1473 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1474 | engines: {node: '>= 8'}
1475 | hasBin: true
1476 |
1477 | word-wrap@1.2.5:
1478 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1479 | engines: {node: '>=0.10.0'}
1480 |
1481 | wrap-ansi@7.0.0:
1482 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
1483 | engines: {node: '>=10'}
1484 |
1485 | wrap-ansi@8.1.0:
1486 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
1487 | engines: {node: '>=12'}
1488 |
1489 | yallist@3.1.1:
1490 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
1491 |
1492 | yaml@2.6.0:
1493 | resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==}
1494 | engines: {node: '>= 14'}
1495 | hasBin: true
1496 |
1497 | yocto-queue@0.1.0:
1498 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1499 | engines: {node: '>=10'}
1500 |
1501 | snapshots:
1502 |
1503 | '@alloc/quick-lru@5.2.0': {}
1504 |
1505 | '@ampproject/remapping@2.3.0':
1506 | dependencies:
1507 | '@jridgewell/gen-mapping': 0.3.5
1508 | '@jridgewell/trace-mapping': 0.3.25
1509 |
1510 | '@babel/code-frame@7.26.2':
1511 | dependencies:
1512 | '@babel/helper-validator-identifier': 7.25.9
1513 | js-tokens: 4.0.0
1514 | picocolors: 1.1.1
1515 |
1516 | '@babel/compat-data@7.26.2': {}
1517 |
1518 | '@babel/core@7.26.0':
1519 | dependencies:
1520 | '@ampproject/remapping': 2.3.0
1521 | '@babel/code-frame': 7.26.2
1522 | '@babel/generator': 7.26.2
1523 | '@babel/helper-compilation-targets': 7.25.9
1524 | '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
1525 | '@babel/helpers': 7.26.0
1526 | '@babel/parser': 7.26.2
1527 | '@babel/template': 7.25.9
1528 | '@babel/traverse': 7.25.9
1529 | '@babel/types': 7.26.0
1530 | convert-source-map: 2.0.0
1531 | debug: 4.3.7
1532 | gensync: 1.0.0-beta.2
1533 | json5: 2.2.3
1534 | semver: 6.3.1
1535 | transitivePeerDependencies:
1536 | - supports-color
1537 |
1538 | '@babel/generator@7.26.2':
1539 | dependencies:
1540 | '@babel/parser': 7.26.2
1541 | '@babel/types': 7.26.0
1542 | '@jridgewell/gen-mapping': 0.3.5
1543 | '@jridgewell/trace-mapping': 0.3.25
1544 | jsesc: 3.0.2
1545 |
1546 | '@babel/helper-compilation-targets@7.25.9':
1547 | dependencies:
1548 | '@babel/compat-data': 7.26.2
1549 | '@babel/helper-validator-option': 7.25.9
1550 | browserslist: 4.24.2
1551 | lru-cache: 5.1.1
1552 | semver: 6.3.1
1553 |
1554 | '@babel/helper-module-imports@7.25.9':
1555 | dependencies:
1556 | '@babel/traverse': 7.25.9
1557 | '@babel/types': 7.26.0
1558 | transitivePeerDependencies:
1559 | - supports-color
1560 |
1561 | '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
1562 | dependencies:
1563 | '@babel/core': 7.26.0
1564 | '@babel/helper-module-imports': 7.25.9
1565 | '@babel/helper-validator-identifier': 7.25.9
1566 | '@babel/traverse': 7.25.9
1567 | transitivePeerDependencies:
1568 | - supports-color
1569 |
1570 | '@babel/helper-plugin-utils@7.25.9': {}
1571 |
1572 | '@babel/helper-string-parser@7.25.9': {}
1573 |
1574 | '@babel/helper-validator-identifier@7.25.9': {}
1575 |
1576 | '@babel/helper-validator-option@7.25.9': {}
1577 |
1578 | '@babel/helpers@7.26.0':
1579 | dependencies:
1580 | '@babel/template': 7.25.9
1581 | '@babel/types': 7.26.0
1582 |
1583 | '@babel/parser@7.26.2':
1584 | dependencies:
1585 | '@babel/types': 7.26.0
1586 |
1587 | '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
1588 | dependencies:
1589 | '@babel/core': 7.26.0
1590 | '@babel/helper-plugin-utils': 7.25.9
1591 |
1592 | '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
1593 | dependencies:
1594 | '@babel/core': 7.26.0
1595 | '@babel/helper-plugin-utils': 7.25.9
1596 |
1597 | '@babel/template@7.25.9':
1598 | dependencies:
1599 | '@babel/code-frame': 7.26.2
1600 | '@babel/parser': 7.26.2
1601 | '@babel/types': 7.26.0
1602 |
1603 | '@babel/traverse@7.25.9':
1604 | dependencies:
1605 | '@babel/code-frame': 7.26.2
1606 | '@babel/generator': 7.26.2
1607 | '@babel/parser': 7.26.2
1608 | '@babel/template': 7.25.9
1609 | '@babel/types': 7.26.0
1610 | debug: 4.3.7
1611 | globals: 11.12.0
1612 | transitivePeerDependencies:
1613 | - supports-color
1614 |
1615 | '@babel/types@7.26.0':
1616 | dependencies:
1617 | '@babel/helper-string-parser': 7.25.9
1618 | '@babel/helper-validator-identifier': 7.25.9
1619 |
1620 | '@esbuild/aix-ppc64@0.25.1':
1621 | optional: true
1622 |
1623 | '@esbuild/android-arm64@0.25.1':
1624 | optional: true
1625 |
1626 | '@esbuild/android-arm@0.25.1':
1627 | optional: true
1628 |
1629 | '@esbuild/android-x64@0.25.1':
1630 | optional: true
1631 |
1632 | '@esbuild/darwin-arm64@0.25.1':
1633 | optional: true
1634 |
1635 | '@esbuild/darwin-x64@0.25.1':
1636 | optional: true
1637 |
1638 | '@esbuild/freebsd-arm64@0.25.1':
1639 | optional: true
1640 |
1641 | '@esbuild/freebsd-x64@0.25.1':
1642 | optional: true
1643 |
1644 | '@esbuild/linux-arm64@0.25.1':
1645 | optional: true
1646 |
1647 | '@esbuild/linux-arm@0.25.1':
1648 | optional: true
1649 |
1650 | '@esbuild/linux-ia32@0.25.1':
1651 | optional: true
1652 |
1653 | '@esbuild/linux-loong64@0.25.1':
1654 | optional: true
1655 |
1656 | '@esbuild/linux-mips64el@0.25.1':
1657 | optional: true
1658 |
1659 | '@esbuild/linux-ppc64@0.25.1':
1660 | optional: true
1661 |
1662 | '@esbuild/linux-riscv64@0.25.1':
1663 | optional: true
1664 |
1665 | '@esbuild/linux-s390x@0.25.1':
1666 | optional: true
1667 |
1668 | '@esbuild/linux-x64@0.25.1':
1669 | optional: true
1670 |
1671 | '@esbuild/netbsd-arm64@0.25.1':
1672 | optional: true
1673 |
1674 | '@esbuild/netbsd-x64@0.25.1':
1675 | optional: true
1676 |
1677 | '@esbuild/openbsd-arm64@0.25.1':
1678 | optional: true
1679 |
1680 | '@esbuild/openbsd-x64@0.25.1':
1681 | optional: true
1682 |
1683 | '@esbuild/sunos-x64@0.25.1':
1684 | optional: true
1685 |
1686 | '@esbuild/win32-arm64@0.25.1':
1687 | optional: true
1688 |
1689 | '@esbuild/win32-ia32@0.25.1':
1690 | optional: true
1691 |
1692 | '@esbuild/win32-x64@0.25.1':
1693 | optional: true
1694 |
1695 | '@eslint-community/eslint-utils@4.4.1(eslint@9.23.0(jiti@2.4.2))':
1696 | dependencies:
1697 | eslint: 9.23.0(jiti@2.4.2)
1698 | eslint-visitor-keys: 3.4.3
1699 |
1700 | '@eslint-community/regexpp@4.12.1': {}
1701 |
1702 | '@eslint/config-array@0.19.2':
1703 | dependencies:
1704 | '@eslint/object-schema': 2.1.6
1705 | debug: 4.3.7
1706 | minimatch: 3.1.2
1707 | transitivePeerDependencies:
1708 | - supports-color
1709 |
1710 | '@eslint/config-helpers@0.2.0': {}
1711 |
1712 | '@eslint/core@0.12.0':
1713 | dependencies:
1714 | '@types/json-schema': 7.0.15
1715 |
1716 | '@eslint/eslintrc@3.3.1':
1717 | dependencies:
1718 | ajv: 6.12.6
1719 | debug: 4.3.7
1720 | espree: 10.3.0
1721 | globals: 14.0.0
1722 | ignore: 5.3.2
1723 | import-fresh: 3.3.0
1724 | js-yaml: 4.1.0
1725 | minimatch: 3.1.2
1726 | strip-json-comments: 3.1.1
1727 | transitivePeerDependencies:
1728 | - supports-color
1729 |
1730 | '@eslint/js@9.23.0': {}
1731 |
1732 | '@eslint/object-schema@2.1.6': {}
1733 |
1734 | '@eslint/plugin-kit@0.2.7':
1735 | dependencies:
1736 | '@eslint/core': 0.12.0
1737 | levn: 0.4.1
1738 |
1739 | '@humanfs/core@0.19.1': {}
1740 |
1741 | '@humanfs/node@0.16.6':
1742 | dependencies:
1743 | '@humanfs/core': 0.19.1
1744 | '@humanwhocodes/retry': 0.3.1
1745 |
1746 | '@humanwhocodes/module-importer@1.0.1': {}
1747 |
1748 | '@humanwhocodes/retry@0.3.1': {}
1749 |
1750 | '@humanwhocodes/retry@0.4.2': {}
1751 |
1752 | '@isaacs/cliui@8.0.2':
1753 | dependencies:
1754 | string-width: 5.1.2
1755 | string-width-cjs: string-width@4.2.3
1756 | strip-ansi: 7.1.0
1757 | strip-ansi-cjs: strip-ansi@6.0.1
1758 | wrap-ansi: 8.1.0
1759 | wrap-ansi-cjs: wrap-ansi@7.0.0
1760 |
1761 | '@jridgewell/gen-mapping@0.3.5':
1762 | dependencies:
1763 | '@jridgewell/set-array': 1.2.1
1764 | '@jridgewell/sourcemap-codec': 1.5.0
1765 | '@jridgewell/trace-mapping': 0.3.25
1766 |
1767 | '@jridgewell/resolve-uri@3.1.2': {}
1768 |
1769 | '@jridgewell/set-array@1.2.1': {}
1770 |
1771 | '@jridgewell/sourcemap-codec@1.5.0': {}
1772 |
1773 | '@jridgewell/trace-mapping@0.3.25':
1774 | dependencies:
1775 | '@jridgewell/resolve-uri': 3.1.2
1776 | '@jridgewell/sourcemap-codec': 1.5.0
1777 |
1778 | '@nodelib/fs.scandir@2.1.5':
1779 | dependencies:
1780 | '@nodelib/fs.stat': 2.0.5
1781 | run-parallel: 1.2.0
1782 |
1783 | '@nodelib/fs.stat@2.0.5': {}
1784 |
1785 | '@nodelib/fs.walk@1.2.8':
1786 | dependencies:
1787 | '@nodelib/fs.scandir': 2.1.5
1788 | fastq: 1.17.1
1789 |
1790 | '@pkgjs/parseargs@0.11.0':
1791 | optional: true
1792 |
1793 | '@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.12)(react@19.0.0)':
1794 | dependencies:
1795 | react: 19.0.0
1796 | optionalDependencies:
1797 | '@types/react': 19.0.12
1798 |
1799 | '@radix-ui/react-slot@1.1.2(@types/react@19.0.12)(react@19.0.0)':
1800 | dependencies:
1801 | '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0)
1802 | react: 19.0.0
1803 | optionalDependencies:
1804 | '@types/react': 19.0.12
1805 |
1806 | '@rollup/rollup-android-arm-eabi@4.34.6':
1807 | optional: true
1808 |
1809 | '@rollup/rollup-android-arm64@4.34.6':
1810 | optional: true
1811 |
1812 | '@rollup/rollup-darwin-arm64@4.34.6':
1813 | optional: true
1814 |
1815 | '@rollup/rollup-darwin-x64@4.34.6':
1816 | optional: true
1817 |
1818 | '@rollup/rollup-freebsd-arm64@4.34.6':
1819 | optional: true
1820 |
1821 | '@rollup/rollup-freebsd-x64@4.34.6':
1822 | optional: true
1823 |
1824 | '@rollup/rollup-linux-arm-gnueabihf@4.34.6':
1825 | optional: true
1826 |
1827 | '@rollup/rollup-linux-arm-musleabihf@4.34.6':
1828 | optional: true
1829 |
1830 | '@rollup/rollup-linux-arm64-gnu@4.34.6':
1831 | optional: true
1832 |
1833 | '@rollup/rollup-linux-arm64-musl@4.34.6':
1834 | optional: true
1835 |
1836 | '@rollup/rollup-linux-loongarch64-gnu@4.34.6':
1837 | optional: true
1838 |
1839 | '@rollup/rollup-linux-powerpc64le-gnu@4.34.6':
1840 | optional: true
1841 |
1842 | '@rollup/rollup-linux-riscv64-gnu@4.34.6':
1843 | optional: true
1844 |
1845 | '@rollup/rollup-linux-s390x-gnu@4.34.6':
1846 | optional: true
1847 |
1848 | '@rollup/rollup-linux-x64-gnu@4.34.6':
1849 | optional: true
1850 |
1851 | '@rollup/rollup-linux-x64-musl@4.34.6':
1852 | optional: true
1853 |
1854 | '@rollup/rollup-win32-arm64-msvc@4.34.6':
1855 | optional: true
1856 |
1857 | '@rollup/rollup-win32-ia32-msvc@4.34.6':
1858 | optional: true
1859 |
1860 | '@rollup/rollup-win32-x64-msvc@4.34.6':
1861 | optional: true
1862 |
1863 | '@types/babel__core@7.20.5':
1864 | dependencies:
1865 | '@babel/parser': 7.26.2
1866 | '@babel/types': 7.26.0
1867 | '@types/babel__generator': 7.6.8
1868 | '@types/babel__template': 7.4.4
1869 | '@types/babel__traverse': 7.20.6
1870 |
1871 | '@types/babel__generator@7.6.8':
1872 | dependencies:
1873 | '@babel/types': 7.26.0
1874 |
1875 | '@types/babel__template@7.4.4':
1876 | dependencies:
1877 | '@babel/parser': 7.26.2
1878 | '@babel/types': 7.26.0
1879 |
1880 | '@types/babel__traverse@7.20.6':
1881 | dependencies:
1882 | '@babel/types': 7.26.0
1883 |
1884 | '@types/estree@1.0.6': {}
1885 |
1886 | '@types/json-schema@7.0.15': {}
1887 |
1888 | '@types/node@22.13.14':
1889 | dependencies:
1890 | undici-types: 6.20.0
1891 |
1892 | '@types/react-dom@19.0.4(@types/react@19.0.12)':
1893 | dependencies:
1894 | '@types/react': 19.0.12
1895 |
1896 | '@types/react@19.0.12':
1897 | dependencies:
1898 | csstype: 3.1.3
1899 |
1900 | '@typescript-eslint/eslint-plugin@8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)':
1901 | dependencies:
1902 | '@eslint-community/regexpp': 4.12.1
1903 | '@typescript-eslint/parser': 8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)
1904 | '@typescript-eslint/scope-manager': 8.28.0
1905 | '@typescript-eslint/type-utils': 8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)
1906 | '@typescript-eslint/utils': 8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)
1907 | '@typescript-eslint/visitor-keys': 8.28.0
1908 | eslint: 9.23.0(jiti@2.4.2)
1909 | graphemer: 1.4.0
1910 | ignore: 5.3.2
1911 | natural-compare: 1.4.0
1912 | ts-api-utils: 2.0.1(typescript@5.8.2)
1913 | typescript: 5.8.2
1914 | transitivePeerDependencies:
1915 | - supports-color
1916 |
1917 | '@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)':
1918 | dependencies:
1919 | '@typescript-eslint/scope-manager': 8.28.0
1920 | '@typescript-eslint/types': 8.28.0
1921 | '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2)
1922 | '@typescript-eslint/visitor-keys': 8.28.0
1923 | debug: 4.3.7
1924 | eslint: 9.23.0(jiti@2.4.2)
1925 | typescript: 5.8.2
1926 | transitivePeerDependencies:
1927 | - supports-color
1928 |
1929 | '@typescript-eslint/scope-manager@8.28.0':
1930 | dependencies:
1931 | '@typescript-eslint/types': 8.28.0
1932 | '@typescript-eslint/visitor-keys': 8.28.0
1933 |
1934 | '@typescript-eslint/type-utils@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)':
1935 | dependencies:
1936 | '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2)
1937 | '@typescript-eslint/utils': 8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)
1938 | debug: 4.3.7
1939 | eslint: 9.23.0(jiti@2.4.2)
1940 | ts-api-utils: 2.0.1(typescript@5.8.2)
1941 | typescript: 5.8.2
1942 | transitivePeerDependencies:
1943 | - supports-color
1944 |
1945 | '@typescript-eslint/types@8.28.0': {}
1946 |
1947 | '@typescript-eslint/typescript-estree@8.28.0(typescript@5.8.2)':
1948 | dependencies:
1949 | '@typescript-eslint/types': 8.28.0
1950 | '@typescript-eslint/visitor-keys': 8.28.0
1951 | debug: 4.3.7
1952 | fast-glob: 3.3.2
1953 | is-glob: 4.0.3
1954 | minimatch: 9.0.5
1955 | semver: 7.6.3
1956 | ts-api-utils: 2.0.1(typescript@5.8.2)
1957 | typescript: 5.8.2
1958 | transitivePeerDependencies:
1959 | - supports-color
1960 |
1961 | '@typescript-eslint/utils@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)':
1962 | dependencies:
1963 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2))
1964 | '@typescript-eslint/scope-manager': 8.28.0
1965 | '@typescript-eslint/types': 8.28.0
1966 | '@typescript-eslint/typescript-estree': 8.28.0(typescript@5.8.2)
1967 | eslint: 9.23.0(jiti@2.4.2)
1968 | typescript: 5.8.2
1969 | transitivePeerDependencies:
1970 | - supports-color
1971 |
1972 | '@typescript-eslint/visitor-keys@8.28.0':
1973 | dependencies:
1974 | '@typescript-eslint/types': 8.28.0
1975 | eslint-visitor-keys: 4.2.0
1976 |
1977 | '@vitejs/plugin-react@4.3.4(vite@6.2.3(@types/node@22.13.14)(jiti@2.4.2)(lightningcss@1.29.2)(yaml@2.6.0))':
1978 | dependencies:
1979 | '@babel/core': 7.26.0
1980 | '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
1981 | '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
1982 | '@types/babel__core': 7.20.5
1983 | react-refresh: 0.14.2
1984 | vite: 6.2.3(@types/node@22.13.14)(jiti@2.4.2)(lightningcss@1.29.2)(yaml@2.6.0)
1985 | transitivePeerDependencies:
1986 | - supports-color
1987 |
1988 | acorn-jsx@5.3.2(acorn@8.14.0):
1989 | dependencies:
1990 | acorn: 8.14.0
1991 |
1992 | acorn@8.14.0: {}
1993 |
1994 | ajv@6.12.6:
1995 | dependencies:
1996 | fast-deep-equal: 3.1.3
1997 | fast-json-stable-stringify: 2.1.0
1998 | json-schema-traverse: 0.4.1
1999 | uri-js: 4.4.1
2000 |
2001 | ansi-regex@5.0.1: {}
2002 |
2003 | ansi-regex@6.1.0: {}
2004 |
2005 | ansi-styles@4.3.0:
2006 | dependencies:
2007 | color-convert: 2.0.1
2008 |
2009 | ansi-styles@6.2.1: {}
2010 |
2011 | any-promise@1.3.0: {}
2012 |
2013 | anymatch@3.1.3:
2014 | dependencies:
2015 | normalize-path: 3.0.0
2016 | picomatch: 2.3.1
2017 |
2018 | arg@5.0.2: {}
2019 |
2020 | argparse@2.0.1: {}
2021 |
2022 | autoprefixer@10.4.21(postcss@8.5.3):
2023 | dependencies:
2024 | browserslist: 4.24.4
2025 | caniuse-lite: 1.0.30001707
2026 | fraction.js: 4.3.7
2027 | normalize-range: 0.1.2
2028 | picocolors: 1.1.1
2029 | postcss: 8.5.3
2030 | postcss-value-parser: 4.2.0
2031 |
2032 | balanced-match@1.0.2: {}
2033 |
2034 | binary-extensions@2.3.0: {}
2035 |
2036 | brace-expansion@1.1.11:
2037 | dependencies:
2038 | balanced-match: 1.0.2
2039 | concat-map: 0.0.1
2040 |
2041 | brace-expansion@2.0.1:
2042 | dependencies:
2043 | balanced-match: 1.0.2
2044 |
2045 | braces@3.0.3:
2046 | dependencies:
2047 | fill-range: 7.1.1
2048 |
2049 | browserslist@4.24.2:
2050 | dependencies:
2051 | caniuse-lite: 1.0.30001679
2052 | electron-to-chromium: 1.5.55
2053 | node-releases: 2.0.18
2054 | update-browserslist-db: 1.1.1(browserslist@4.24.2)
2055 |
2056 | browserslist@4.24.4:
2057 | dependencies:
2058 | caniuse-lite: 1.0.30001707
2059 | electron-to-chromium: 1.5.126
2060 | node-releases: 2.0.19
2061 | update-browserslist-db: 1.1.1(browserslist@4.24.4)
2062 |
2063 | callsites@3.1.0: {}
2064 |
2065 | camelcase-css@2.0.1: {}
2066 |
2067 | caniuse-lite@1.0.30001679: {}
2068 |
2069 | caniuse-lite@1.0.30001707: {}
2070 |
2071 | chalk@4.1.2:
2072 | dependencies:
2073 | ansi-styles: 4.3.0
2074 | supports-color: 7.2.0
2075 |
2076 | chokidar@3.6.0:
2077 | dependencies:
2078 | anymatch: 3.1.3
2079 | braces: 3.0.3
2080 | glob-parent: 5.1.2
2081 | is-binary-path: 2.1.0
2082 | is-glob: 4.0.3
2083 | normalize-path: 3.0.0
2084 | readdirp: 3.6.0
2085 | optionalDependencies:
2086 | fsevents: 2.3.3
2087 |
2088 | class-variance-authority@0.7.1:
2089 | dependencies:
2090 | clsx: 2.1.1
2091 |
2092 | clsx@2.1.1: {}
2093 |
2094 | color-convert@2.0.1:
2095 | dependencies:
2096 | color-name: 1.1.4
2097 |
2098 | color-name@1.1.4: {}
2099 |
2100 | commander@4.1.1: {}
2101 |
2102 | concat-map@0.0.1: {}
2103 |
2104 | convert-source-map@2.0.0: {}
2105 |
2106 | cross-spawn@7.0.6:
2107 | dependencies:
2108 | path-key: 3.1.1
2109 | shebang-command: 2.0.0
2110 | which: 2.0.2
2111 |
2112 | cssesc@3.0.0: {}
2113 |
2114 | csstype@3.1.3: {}
2115 |
2116 | debug@4.3.7:
2117 | dependencies:
2118 | ms: 2.1.3
2119 |
2120 | deep-is@0.1.4: {}
2121 |
2122 | detect-libc@2.0.3:
2123 | optional: true
2124 |
2125 | didyoumean@1.2.2: {}
2126 |
2127 | dlv@1.1.3: {}
2128 |
2129 | eastasianwidth@0.2.0: {}
2130 |
2131 | electron-to-chromium@1.5.126: {}
2132 |
2133 | electron-to-chromium@1.5.55: {}
2134 |
2135 | emoji-regex@8.0.0: {}
2136 |
2137 | emoji-regex@9.2.2: {}
2138 |
2139 | esbuild@0.25.1:
2140 | optionalDependencies:
2141 | '@esbuild/aix-ppc64': 0.25.1
2142 | '@esbuild/android-arm': 0.25.1
2143 | '@esbuild/android-arm64': 0.25.1
2144 | '@esbuild/android-x64': 0.25.1
2145 | '@esbuild/darwin-arm64': 0.25.1
2146 | '@esbuild/darwin-x64': 0.25.1
2147 | '@esbuild/freebsd-arm64': 0.25.1
2148 | '@esbuild/freebsd-x64': 0.25.1
2149 | '@esbuild/linux-arm': 0.25.1
2150 | '@esbuild/linux-arm64': 0.25.1
2151 | '@esbuild/linux-ia32': 0.25.1
2152 | '@esbuild/linux-loong64': 0.25.1
2153 | '@esbuild/linux-mips64el': 0.25.1
2154 | '@esbuild/linux-ppc64': 0.25.1
2155 | '@esbuild/linux-riscv64': 0.25.1
2156 | '@esbuild/linux-s390x': 0.25.1
2157 | '@esbuild/linux-x64': 0.25.1
2158 | '@esbuild/netbsd-arm64': 0.25.1
2159 | '@esbuild/netbsd-x64': 0.25.1
2160 | '@esbuild/openbsd-arm64': 0.25.1
2161 | '@esbuild/openbsd-x64': 0.25.1
2162 | '@esbuild/sunos-x64': 0.25.1
2163 | '@esbuild/win32-arm64': 0.25.1
2164 | '@esbuild/win32-ia32': 0.25.1
2165 | '@esbuild/win32-x64': 0.25.1
2166 |
2167 | escalade@3.2.0: {}
2168 |
2169 | escape-string-regexp@4.0.0: {}
2170 |
2171 | eslint-plugin-react-hooks@5.2.0(eslint@9.23.0(jiti@2.4.2)):
2172 | dependencies:
2173 | eslint: 9.23.0(jiti@2.4.2)
2174 |
2175 | eslint-plugin-react-refresh@0.4.19(eslint@9.23.0(jiti@2.4.2)):
2176 | dependencies:
2177 | eslint: 9.23.0(jiti@2.4.2)
2178 |
2179 | eslint-scope@8.3.0:
2180 | dependencies:
2181 | esrecurse: 4.3.0
2182 | estraverse: 5.3.0
2183 |
2184 | eslint-visitor-keys@3.4.3: {}
2185 |
2186 | eslint-visitor-keys@4.2.0: {}
2187 |
2188 | eslint@9.23.0(jiti@2.4.2):
2189 | dependencies:
2190 | '@eslint-community/eslint-utils': 4.4.1(eslint@9.23.0(jiti@2.4.2))
2191 | '@eslint-community/regexpp': 4.12.1
2192 | '@eslint/config-array': 0.19.2
2193 | '@eslint/config-helpers': 0.2.0
2194 | '@eslint/core': 0.12.0
2195 | '@eslint/eslintrc': 3.3.1
2196 | '@eslint/js': 9.23.0
2197 | '@eslint/plugin-kit': 0.2.7
2198 | '@humanfs/node': 0.16.6
2199 | '@humanwhocodes/module-importer': 1.0.1
2200 | '@humanwhocodes/retry': 0.4.2
2201 | '@types/estree': 1.0.6
2202 | '@types/json-schema': 7.0.15
2203 | ajv: 6.12.6
2204 | chalk: 4.1.2
2205 | cross-spawn: 7.0.6
2206 | debug: 4.3.7
2207 | escape-string-regexp: 4.0.0
2208 | eslint-scope: 8.3.0
2209 | eslint-visitor-keys: 4.2.0
2210 | espree: 10.3.0
2211 | esquery: 1.6.0
2212 | esutils: 2.0.3
2213 | fast-deep-equal: 3.1.3
2214 | file-entry-cache: 8.0.0
2215 | find-up: 5.0.0
2216 | glob-parent: 6.0.2
2217 | ignore: 5.3.2
2218 | imurmurhash: 0.1.4
2219 | is-glob: 4.0.3
2220 | json-stable-stringify-without-jsonify: 1.0.1
2221 | lodash.merge: 4.6.2
2222 | minimatch: 3.1.2
2223 | natural-compare: 1.4.0
2224 | optionator: 0.9.4
2225 | optionalDependencies:
2226 | jiti: 2.4.2
2227 | transitivePeerDependencies:
2228 | - supports-color
2229 |
2230 | espree@10.3.0:
2231 | dependencies:
2232 | acorn: 8.14.0
2233 | acorn-jsx: 5.3.2(acorn@8.14.0)
2234 | eslint-visitor-keys: 4.2.0
2235 |
2236 | esquery@1.6.0:
2237 | dependencies:
2238 | estraverse: 5.3.0
2239 |
2240 | esrecurse@4.3.0:
2241 | dependencies:
2242 | estraverse: 5.3.0
2243 |
2244 | estraverse@5.3.0: {}
2245 |
2246 | esutils@2.0.3: {}
2247 |
2248 | fast-deep-equal@3.1.3: {}
2249 |
2250 | fast-glob@3.3.2:
2251 | dependencies:
2252 | '@nodelib/fs.stat': 2.0.5
2253 | '@nodelib/fs.walk': 1.2.8
2254 | glob-parent: 5.1.2
2255 | merge2: 1.4.1
2256 | micromatch: 4.0.8
2257 |
2258 | fast-json-stable-stringify@2.1.0: {}
2259 |
2260 | fast-levenshtein@2.0.6: {}
2261 |
2262 | fastq@1.17.1:
2263 | dependencies:
2264 | reusify: 1.0.4
2265 |
2266 | file-entry-cache@8.0.0:
2267 | dependencies:
2268 | flat-cache: 4.0.1
2269 |
2270 | fill-range@7.1.1:
2271 | dependencies:
2272 | to-regex-range: 5.0.1
2273 |
2274 | find-up@5.0.0:
2275 | dependencies:
2276 | locate-path: 6.0.0
2277 | path-exists: 4.0.0
2278 |
2279 | flat-cache@4.0.1:
2280 | dependencies:
2281 | flatted: 3.3.1
2282 | keyv: 4.5.4
2283 |
2284 | flatted@3.3.1: {}
2285 |
2286 | foreground-child@3.3.1:
2287 | dependencies:
2288 | cross-spawn: 7.0.6
2289 | signal-exit: 4.1.0
2290 |
2291 | fraction.js@4.3.7: {}
2292 |
2293 | fsevents@2.3.3:
2294 | optional: true
2295 |
2296 | function-bind@1.1.2: {}
2297 |
2298 | gensync@1.0.0-beta.2: {}
2299 |
2300 | glob-parent@5.1.2:
2301 | dependencies:
2302 | is-glob: 4.0.3
2303 |
2304 | glob-parent@6.0.2:
2305 | dependencies:
2306 | is-glob: 4.0.3
2307 |
2308 | glob@10.4.5:
2309 | dependencies:
2310 | foreground-child: 3.3.1
2311 | jackspeak: 3.4.3
2312 | minimatch: 9.0.5
2313 | minipass: 7.1.2
2314 | package-json-from-dist: 1.0.1
2315 | path-scurry: 1.11.1
2316 |
2317 | globals@11.12.0: {}
2318 |
2319 | globals@14.0.0: {}
2320 |
2321 | globals@16.0.0: {}
2322 |
2323 | graphemer@1.4.0: {}
2324 |
2325 | has-flag@4.0.0: {}
2326 |
2327 | hasown@2.0.2:
2328 | dependencies:
2329 | function-bind: 1.1.2
2330 |
2331 | ignore@5.3.2: {}
2332 |
2333 | import-fresh@3.3.0:
2334 | dependencies:
2335 | parent-module: 1.0.1
2336 | resolve-from: 4.0.0
2337 |
2338 | imurmurhash@0.1.4: {}
2339 |
2340 | is-binary-path@2.1.0:
2341 | dependencies:
2342 | binary-extensions: 2.3.0
2343 |
2344 | is-core-module@2.16.1:
2345 | dependencies:
2346 | hasown: 2.0.2
2347 |
2348 | is-extglob@2.1.1: {}
2349 |
2350 | is-fullwidth-code-point@3.0.0: {}
2351 |
2352 | is-glob@4.0.3:
2353 | dependencies:
2354 | is-extglob: 2.1.1
2355 |
2356 | is-number@7.0.0: {}
2357 |
2358 | isexe@2.0.0: {}
2359 |
2360 | jackspeak@3.4.3:
2361 | dependencies:
2362 | '@isaacs/cliui': 8.0.2
2363 | optionalDependencies:
2364 | '@pkgjs/parseargs': 0.11.0
2365 |
2366 | jiti@1.21.7: {}
2367 |
2368 | jiti@2.4.2:
2369 | optional: true
2370 |
2371 | js-tokens@4.0.0: {}
2372 |
2373 | js-yaml@4.1.0:
2374 | dependencies:
2375 | argparse: 2.0.1
2376 |
2377 | jsesc@3.0.2: {}
2378 |
2379 | json-buffer@3.0.1: {}
2380 |
2381 | json-schema-traverse@0.4.1: {}
2382 |
2383 | json-stable-stringify-without-jsonify@1.0.1: {}
2384 |
2385 | json5@2.2.3: {}
2386 |
2387 | keyv@4.5.4:
2388 | dependencies:
2389 | json-buffer: 3.0.1
2390 |
2391 | levn@0.4.1:
2392 | dependencies:
2393 | prelude-ls: 1.2.1
2394 | type-check: 0.4.0
2395 |
2396 | lightningcss-darwin-arm64@1.29.2:
2397 | optional: true
2398 |
2399 | lightningcss-darwin-x64@1.29.2:
2400 | optional: true
2401 |
2402 | lightningcss-freebsd-x64@1.29.2:
2403 | optional: true
2404 |
2405 | lightningcss-linux-arm-gnueabihf@1.29.2:
2406 | optional: true
2407 |
2408 | lightningcss-linux-arm64-gnu@1.29.2:
2409 | optional: true
2410 |
2411 | lightningcss-linux-arm64-musl@1.29.2:
2412 | optional: true
2413 |
2414 | lightningcss-linux-x64-gnu@1.29.2:
2415 | optional: true
2416 |
2417 | lightningcss-linux-x64-musl@1.29.2:
2418 | optional: true
2419 |
2420 | lightningcss-win32-arm64-msvc@1.29.2:
2421 | optional: true
2422 |
2423 | lightningcss-win32-x64-msvc@1.29.2:
2424 | optional: true
2425 |
2426 | lightningcss@1.29.2:
2427 | dependencies:
2428 | detect-libc: 2.0.3
2429 | optionalDependencies:
2430 | lightningcss-darwin-arm64: 1.29.2
2431 | lightningcss-darwin-x64: 1.29.2
2432 | lightningcss-freebsd-x64: 1.29.2
2433 | lightningcss-linux-arm-gnueabihf: 1.29.2
2434 | lightningcss-linux-arm64-gnu: 1.29.2
2435 | lightningcss-linux-arm64-musl: 1.29.2
2436 | lightningcss-linux-x64-gnu: 1.29.2
2437 | lightningcss-linux-x64-musl: 1.29.2
2438 | lightningcss-win32-arm64-msvc: 1.29.2
2439 | lightningcss-win32-x64-msvc: 1.29.2
2440 | optional: true
2441 |
2442 | lilconfig@3.1.3: {}
2443 |
2444 | lines-and-columns@1.2.4: {}
2445 |
2446 | locate-path@6.0.0:
2447 | dependencies:
2448 | p-locate: 5.0.0
2449 |
2450 | lodash.merge@4.6.2: {}
2451 |
2452 | lru-cache@10.4.3: {}
2453 |
2454 | lru-cache@5.1.1:
2455 | dependencies:
2456 | yallist: 3.1.1
2457 |
2458 | lucide-react@0.484.0(react@19.0.0):
2459 | dependencies:
2460 | react: 19.0.0
2461 |
2462 | merge2@1.4.1: {}
2463 |
2464 | micromatch@4.0.8:
2465 | dependencies:
2466 | braces: 3.0.3
2467 | picomatch: 2.3.1
2468 |
2469 | minimatch@3.1.2:
2470 | dependencies:
2471 | brace-expansion: 1.1.11
2472 |
2473 | minimatch@9.0.5:
2474 | dependencies:
2475 | brace-expansion: 2.0.1
2476 |
2477 | minipass@7.1.2: {}
2478 |
2479 | ms@2.1.3: {}
2480 |
2481 | mz@2.7.0:
2482 | dependencies:
2483 | any-promise: 1.3.0
2484 | object-assign: 4.1.1
2485 | thenify-all: 1.6.0
2486 |
2487 | nanoid@3.3.8: {}
2488 |
2489 | natural-compare@1.4.0: {}
2490 |
2491 | node-releases@2.0.18: {}
2492 |
2493 | node-releases@2.0.19: {}
2494 |
2495 | normalize-path@3.0.0: {}
2496 |
2497 | normalize-range@0.1.2: {}
2498 |
2499 | object-assign@4.1.1: {}
2500 |
2501 | object-hash@3.0.0: {}
2502 |
2503 | optionator@0.9.4:
2504 | dependencies:
2505 | deep-is: 0.1.4
2506 | fast-levenshtein: 2.0.6
2507 | levn: 0.4.1
2508 | prelude-ls: 1.2.1
2509 | type-check: 0.4.0
2510 | word-wrap: 1.2.5
2511 |
2512 | p-limit@3.1.0:
2513 | dependencies:
2514 | yocto-queue: 0.1.0
2515 |
2516 | p-locate@5.0.0:
2517 | dependencies:
2518 | p-limit: 3.1.0
2519 |
2520 | package-json-from-dist@1.0.1: {}
2521 |
2522 | parent-module@1.0.1:
2523 | dependencies:
2524 | callsites: 3.1.0
2525 |
2526 | path-exists@4.0.0: {}
2527 |
2528 | path-key@3.1.1: {}
2529 |
2530 | path-parse@1.0.7: {}
2531 |
2532 | path-scurry@1.11.1:
2533 | dependencies:
2534 | lru-cache: 10.4.3
2535 | minipass: 7.1.2
2536 |
2537 | picocolors@1.1.1: {}
2538 |
2539 | picomatch@2.3.1: {}
2540 |
2541 | pify@2.3.0: {}
2542 |
2543 | pirates@4.0.7: {}
2544 |
2545 | postcss-import@15.1.0(postcss@8.5.3):
2546 | dependencies:
2547 | postcss: 8.5.3
2548 | postcss-value-parser: 4.2.0
2549 | read-cache: 1.0.0
2550 | resolve: 1.22.10
2551 |
2552 | postcss-js@4.0.1(postcss@8.5.3):
2553 | dependencies:
2554 | camelcase-css: 2.0.1
2555 | postcss: 8.5.3
2556 |
2557 | postcss-load-config@4.0.2(postcss@8.5.3):
2558 | dependencies:
2559 | lilconfig: 3.1.3
2560 | yaml: 2.6.0
2561 | optionalDependencies:
2562 | postcss: 8.5.3
2563 |
2564 | postcss-nested@6.2.0(postcss@8.5.3):
2565 | dependencies:
2566 | postcss: 8.5.3
2567 | postcss-selector-parser: 6.1.2
2568 |
2569 | postcss-selector-parser@6.1.2:
2570 | dependencies:
2571 | cssesc: 3.0.0
2572 | util-deprecate: 1.0.2
2573 |
2574 | postcss-value-parser@4.2.0: {}
2575 |
2576 | postcss@8.5.3:
2577 | dependencies:
2578 | nanoid: 3.3.8
2579 | picocolors: 1.1.1
2580 | source-map-js: 1.2.1
2581 |
2582 | prelude-ls@1.2.1: {}
2583 |
2584 | punycode@2.3.1: {}
2585 |
2586 | queue-microtask@1.2.3: {}
2587 |
2588 | react-dom@19.0.0(react@19.0.0):
2589 | dependencies:
2590 | react: 19.0.0
2591 | scheduler: 0.25.0
2592 |
2593 | react-refresh@0.14.2: {}
2594 |
2595 | react@19.0.0: {}
2596 |
2597 | read-cache@1.0.0:
2598 | dependencies:
2599 | pify: 2.3.0
2600 |
2601 | readdirp@3.6.0:
2602 | dependencies:
2603 | picomatch: 2.3.1
2604 |
2605 | resolve-from@4.0.0: {}
2606 |
2607 | resolve@1.22.10:
2608 | dependencies:
2609 | is-core-module: 2.16.1
2610 | path-parse: 1.0.7
2611 | supports-preserve-symlinks-flag: 1.0.0
2612 |
2613 | reusify@1.0.4: {}
2614 |
2615 | rollup@4.34.6:
2616 | dependencies:
2617 | '@types/estree': 1.0.6
2618 | optionalDependencies:
2619 | '@rollup/rollup-android-arm-eabi': 4.34.6
2620 | '@rollup/rollup-android-arm64': 4.34.6
2621 | '@rollup/rollup-darwin-arm64': 4.34.6
2622 | '@rollup/rollup-darwin-x64': 4.34.6
2623 | '@rollup/rollup-freebsd-arm64': 4.34.6
2624 | '@rollup/rollup-freebsd-x64': 4.34.6
2625 | '@rollup/rollup-linux-arm-gnueabihf': 4.34.6
2626 | '@rollup/rollup-linux-arm-musleabihf': 4.34.6
2627 | '@rollup/rollup-linux-arm64-gnu': 4.34.6
2628 | '@rollup/rollup-linux-arm64-musl': 4.34.6
2629 | '@rollup/rollup-linux-loongarch64-gnu': 4.34.6
2630 | '@rollup/rollup-linux-powerpc64le-gnu': 4.34.6
2631 | '@rollup/rollup-linux-riscv64-gnu': 4.34.6
2632 | '@rollup/rollup-linux-s390x-gnu': 4.34.6
2633 | '@rollup/rollup-linux-x64-gnu': 4.34.6
2634 | '@rollup/rollup-linux-x64-musl': 4.34.6
2635 | '@rollup/rollup-win32-arm64-msvc': 4.34.6
2636 | '@rollup/rollup-win32-ia32-msvc': 4.34.6
2637 | '@rollup/rollup-win32-x64-msvc': 4.34.6
2638 | fsevents: 2.3.3
2639 |
2640 | run-parallel@1.2.0:
2641 | dependencies:
2642 | queue-microtask: 1.2.3
2643 |
2644 | scheduler@0.25.0: {}
2645 |
2646 | semver@6.3.1: {}
2647 |
2648 | semver@7.6.3: {}
2649 |
2650 | shebang-command@2.0.0:
2651 | dependencies:
2652 | shebang-regex: 3.0.0
2653 |
2654 | shebang-regex@3.0.0: {}
2655 |
2656 | signal-exit@4.1.0: {}
2657 |
2658 | source-map-js@1.2.1: {}
2659 |
2660 | string-width@4.2.3:
2661 | dependencies:
2662 | emoji-regex: 8.0.0
2663 | is-fullwidth-code-point: 3.0.0
2664 | strip-ansi: 6.0.1
2665 |
2666 | string-width@5.1.2:
2667 | dependencies:
2668 | eastasianwidth: 0.2.0
2669 | emoji-regex: 9.2.2
2670 | strip-ansi: 7.1.0
2671 |
2672 | strip-ansi@6.0.1:
2673 | dependencies:
2674 | ansi-regex: 5.0.1
2675 |
2676 | strip-ansi@7.1.0:
2677 | dependencies:
2678 | ansi-regex: 6.1.0
2679 |
2680 | strip-json-comments@3.1.1: {}
2681 |
2682 | sucrase@3.35.0:
2683 | dependencies:
2684 | '@jridgewell/gen-mapping': 0.3.5
2685 | commander: 4.1.1
2686 | glob: 10.4.5
2687 | lines-and-columns: 1.2.4
2688 | mz: 2.7.0
2689 | pirates: 4.0.7
2690 | ts-interface-checker: 0.1.13
2691 |
2692 | supports-color@7.2.0:
2693 | dependencies:
2694 | has-flag: 4.0.0
2695 |
2696 | supports-preserve-symlinks-flag@1.0.0: {}
2697 |
2698 | tailwind-merge@3.0.2: {}
2699 |
2700 | tailwindcss-animate@1.0.7(tailwindcss@3.4.17):
2701 | dependencies:
2702 | tailwindcss: 3.4.17
2703 |
2704 | tailwindcss@3.4.17:
2705 | dependencies:
2706 | '@alloc/quick-lru': 5.2.0
2707 | arg: 5.0.2
2708 | chokidar: 3.6.0
2709 | didyoumean: 1.2.2
2710 | dlv: 1.1.3
2711 | fast-glob: 3.3.2
2712 | glob-parent: 6.0.2
2713 | is-glob: 4.0.3
2714 | jiti: 1.21.7
2715 | lilconfig: 3.1.3
2716 | micromatch: 4.0.8
2717 | normalize-path: 3.0.0
2718 | object-hash: 3.0.0
2719 | picocolors: 1.1.1
2720 | postcss: 8.5.3
2721 | postcss-import: 15.1.0(postcss@8.5.3)
2722 | postcss-js: 4.0.1(postcss@8.5.3)
2723 | postcss-load-config: 4.0.2(postcss@8.5.3)
2724 | postcss-nested: 6.2.0(postcss@8.5.3)
2725 | postcss-selector-parser: 6.1.2
2726 | resolve: 1.22.10
2727 | sucrase: 3.35.0
2728 | transitivePeerDependencies:
2729 | - ts-node
2730 |
2731 | thenify-all@1.6.0:
2732 | dependencies:
2733 | thenify: 3.3.1
2734 |
2735 | thenify@3.3.1:
2736 | dependencies:
2737 | any-promise: 1.3.0
2738 |
2739 | to-regex-range@5.0.1:
2740 | dependencies:
2741 | is-number: 7.0.0
2742 |
2743 | ts-api-utils@2.0.1(typescript@5.8.2):
2744 | dependencies:
2745 | typescript: 5.8.2
2746 |
2747 | ts-interface-checker@0.1.13: {}
2748 |
2749 | type-check@0.4.0:
2750 | dependencies:
2751 | prelude-ls: 1.2.1
2752 |
2753 | typescript-eslint@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2):
2754 | dependencies:
2755 | '@typescript-eslint/eslint-plugin': 8.28.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)
2756 | '@typescript-eslint/parser': 8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)
2757 | '@typescript-eslint/utils': 8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2)
2758 | eslint: 9.23.0(jiti@2.4.2)
2759 | typescript: 5.8.2
2760 | transitivePeerDependencies:
2761 | - supports-color
2762 |
2763 | typescript@5.8.2: {}
2764 |
2765 | undici-types@6.20.0: {}
2766 |
2767 | update-browserslist-db@1.1.1(browserslist@4.24.2):
2768 | dependencies:
2769 | browserslist: 4.24.2
2770 | escalade: 3.2.0
2771 | picocolors: 1.1.1
2772 |
2773 | update-browserslist-db@1.1.1(browserslist@4.24.4):
2774 | dependencies:
2775 | browserslist: 4.24.4
2776 | escalade: 3.2.0
2777 | picocolors: 1.1.1
2778 |
2779 | uri-js@4.4.1:
2780 | dependencies:
2781 | punycode: 2.3.1
2782 |
2783 | util-deprecate@1.0.2: {}
2784 |
2785 | vite@6.2.3(@types/node@22.13.14)(jiti@2.4.2)(lightningcss@1.29.2)(yaml@2.6.0):
2786 | dependencies:
2787 | esbuild: 0.25.1
2788 | postcss: 8.5.3
2789 | rollup: 4.34.6
2790 | optionalDependencies:
2791 | '@types/node': 22.13.14
2792 | fsevents: 2.3.3
2793 | jiti: 2.4.2
2794 | lightningcss: 1.29.2
2795 | yaml: 2.6.0
2796 |
2797 | which@2.0.2:
2798 | dependencies:
2799 | isexe: 2.0.0
2800 |
2801 | word-wrap@1.2.5: {}
2802 |
2803 | wrap-ansi@7.0.0:
2804 | dependencies:
2805 | ansi-styles: 4.3.0
2806 | string-width: 4.2.3
2807 | strip-ansi: 6.0.1
2808 |
2809 | wrap-ansi@8.1.0:
2810 | dependencies:
2811 | ansi-styles: 6.2.1
2812 | string-width: 5.1.2
2813 | strip-ansi: 7.1.0
2814 |
2815 | yallist@3.1.1: {}
2816 |
2817 | yaml@2.6.0: {}
2818 |
2819 | yocto-queue@0.1.0: {}
2820 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | export default {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/App.tsx:
--------------------------------------------------------------------------------
1 | import CountBtn from "@/components/count-btn";
2 | import ReactSVG from "@/assets/react.svg";
3 | import { Badge } from "@/components/ui/badge";
4 |
5 | function App() {
6 | return (
7 |
8 |
23 |
24 | );
25 | }
26 |
27 | export default App;
28 |
--------------------------------------------------------------------------------
/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/components/count-btn.tsx:
--------------------------------------------------------------------------------
1 | import { useState } from "react";
2 | import { Button } from "@/components/ui/button";
3 |
4 | interface CountBtnProps {
5 | className?: string;
6 | }
7 |
8 | export default function CountBtn({ className }: CountBtnProps) {
9 | const [count, setCount] = useState(0);
10 |
11 | return (
12 |
18 | );
19 | }
20 |
--------------------------------------------------------------------------------
/src/components/ui/badge.tsx:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { cva, type VariantProps } from "class-variance-authority";
3 |
4 | import { cn } from "@/lib/utils";
5 |
6 | const badgeVariants = cva(
7 | "inline-flex items-center rounded-full border px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
8 | {
9 | variants: {
10 | variant: {
11 | default:
12 | "border-transparent bg-primary text-primary-foreground hover:bg-primary/80",
13 | secondary:
14 | "border-transparent bg-secondary text-secondary-foreground hover:bg-secondary/80",
15 | destructive:
16 | "border-transparent bg-destructive text-destructive-foreground hover:bg-destructive/80",
17 | outline: "text-foreground",
18 | },
19 | },
20 | defaultVariants: {
21 | variant: "default",
22 | },
23 | }
24 | );
25 |
26 | export interface BadgeProps
27 | extends React.HTMLAttributes,
28 | VariantProps {}
29 |
30 | function Badge({ className, variant, ...props }: BadgeProps) {
31 | return (
32 |
33 | );
34 | }
35 |
36 | export { Badge, badgeVariants };
37 |
--------------------------------------------------------------------------------
/src/components/ui/button.tsx:
--------------------------------------------------------------------------------
1 | import * as React from "react";
2 | import { Slot } from "@radix-ui/react-slot";
3 | import { cva, type VariantProps } from "class-variance-authority";
4 |
5 | import { cn } from "@/lib/utils";
6 |
7 | const buttonVariants = cva(
8 | "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
9 | {
10 | variants: {
11 | variant: {
12 | default: "bg-primary text-primary-foreground hover:bg-primary/90",
13 | destructive:
14 | "bg-destructive text-destructive-foreground hover:bg-destructive/90",
15 | outline:
16 | "border border-input bg-background hover:bg-accent hover:text-accent-foreground",
17 | secondary:
18 | "bg-secondary text-secondary-foreground hover:bg-secondary/80",
19 | ghost: "hover:bg-accent hover:text-accent-foreground",
20 | link: "text-primary underline-offset-4 hover:underline",
21 | },
22 | size: {
23 | default: "h-10 px-4 py-2",
24 | sm: "h-9 rounded-md px-3",
25 | lg: "h-11 rounded-md px-8",
26 | icon: "h-10 w-10",
27 | },
28 | },
29 | defaultVariants: {
30 | variant: "default",
31 | size: "default",
32 | },
33 | }
34 | );
35 |
36 | export interface ButtonProps
37 | extends React.ButtonHTMLAttributes,
38 | VariantProps {
39 | asChild?: boolean;
40 | }
41 |
42 | const Button = React.forwardRef(
43 | ({ className, variant, size, asChild = false, ...props }, ref) => {
44 | const Comp = asChild ? Slot : "button";
45 | return (
46 |
51 | );
52 | }
53 | );
54 | Button.displayName = "Button";
55 |
56 | export { Button, buttonVariants };
57 |
--------------------------------------------------------------------------------
/src/lib/utils.ts:
--------------------------------------------------------------------------------
1 | import { clsx, type ClassValue } from "clsx";
2 | import { twMerge } from "tailwind-merge";
3 |
4 | export function cn(...inputs: ClassValue[]) {
5 | return twMerge(clsx(inputs));
6 | }
7 |
--------------------------------------------------------------------------------
/src/main.tsx:
--------------------------------------------------------------------------------
1 | import { StrictMode } from "react";
2 | import { createRoot } from "react-dom/client";
3 | import App from "./App.tsx";
4 | import "@/styles/globals.css";
5 |
6 | createRoot(document.getElementById("root")!).render(
7 |
8 |
9 |
10 | );
11 |
--------------------------------------------------------------------------------
/src/styles/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
5 | @layer base {
6 | :root {
7 | --background: 0 0% 100%;
8 | --foreground: 240 10% 3.9%;
9 |
10 | --muted: 240 4.8% 95.9%;
11 | --muted-foreground: 240 3.8% 46.1%;
12 |
13 | --popover: 0 0% 100%;
14 | --popover-foreground: 240 10% 3.9%;
15 |
16 | --card: 0 0% 100%;
17 | --card-foreground: 240 10% 3.9%;
18 |
19 | --border: 240 5.9% 90%;
20 | --input: 240 5.9% 90%;
21 |
22 | --primary: 240 5.9% 10%;
23 | --primary-foreground: 0 0% 98%;
24 |
25 | --secondary: 240 4.8% 95.9%;
26 | --secondary-foreground: 240 5.9% 10%;
27 |
28 | --accent: 240 4.8% 95.9%;
29 | --accent-foreground: 240 5.9% 10%;
30 |
31 | --destructive: 0 84.2% 60.2%;
32 | --destructive-foreground: 0 0% 98%;
33 |
34 | --ring: 240 10% 3.9%;
35 |
36 | --radius: 0.5rem;
37 |
38 | --chart-1: 12 76% 61%;
39 |
40 | --chart-2: 173 58% 39%;
41 |
42 | --chart-3: 197 37% 24%;
43 |
44 | --chart-4: 43 74% 66%;
45 |
46 | --chart-5: 27 87% 67%;
47 | }
48 |
49 | .dark {
50 | --background: 240 10% 3.9%;
51 | --foreground: 0 0% 98%;
52 |
53 | --muted: 240 3.7% 15.9%;
54 | --muted-foreground: 240 5% 64.9%;
55 |
56 | --popover: 240 10% 3.9%;
57 | --popover-foreground: 0 0% 98%;
58 |
59 | --card: 240 10% 3.9%;
60 | --card-foreground: 0 0% 98%;
61 |
62 | --border: 240 3.7% 15.9%;
63 | --input: 240 3.7% 15.9%;
64 |
65 | --primary: 0 0% 98%;
66 | --primary-foreground: 240 5.9% 10%;
67 |
68 | --secondary: 240 3.7% 15.9%;
69 | --secondary-foreground: 0 0% 98%;
70 |
71 | --accent: 240 3.7% 15.9%;
72 | --accent-foreground: 0 0% 98%;
73 |
74 | --destructive: 0 62.8% 30.6%;
75 | --destructive-foreground: 0 0% 98%;
76 |
77 | --ring: 240 4.9% 83.9%;
78 |
79 | --chart-1: 220 70% 50%;
80 |
81 | --chart-2: 160 60% 45%;
82 |
83 | --chart-3: 30 80% 55%;
84 |
85 | --chart-4: 280 65% 60%;
86 |
87 | --chart-5: 340 75% 55%;
88 | }
89 | }
90 |
91 | @layer base {
92 | * {
93 | @apply border-border;
94 | }
95 | body {
96 | @apply bg-background text-foreground;
97 | }
98 | }
99 |
--------------------------------------------------------------------------------
/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/tailwind.config.ts:
--------------------------------------------------------------------------------
1 | import tailwindAnimate from "tailwindcss-animate";
2 | import type { Config } from "tailwindcss";
3 |
4 | const config: Config = {
5 | darkMode: ["class"],
6 | content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
7 | theme: {
8 | container: {
9 | center: true,
10 | padding: "2rem",
11 | screens: {
12 | "2xl": "1400px",
13 | },
14 | },
15 | extend: {
16 | colors: {
17 | border: "hsl(var(--border))",
18 | input: "hsl(var(--input))",
19 | ring: "hsl(var(--ring))",
20 | background: "hsl(var(--background))",
21 | foreground: "hsl(var(--foreground))",
22 | primary: {
23 | DEFAULT: "hsl(var(--primary))",
24 | foreground: "hsl(var(--primary-foreground))",
25 | },
26 | secondary: {
27 | DEFAULT: "hsl(var(--secondary))",
28 | foreground: "hsl(var(--secondary-foreground))",
29 | },
30 | destructive: {
31 | DEFAULT: "hsl(var(--destructive))",
32 | foreground: "hsl(var(--destructive-foreground))",
33 | },
34 | muted: {
35 | DEFAULT: "hsl(var(--muted))",
36 | foreground: "hsl(var(--muted-foreground))",
37 | },
38 | accent: {
39 | DEFAULT: "hsl(var(--accent))",
40 | foreground: "hsl(var(--accent-foreground))",
41 | },
42 | popover: {
43 | DEFAULT: "hsl(var(--popover))",
44 | foreground: "hsl(var(--popover-foreground))",
45 | },
46 | card: {
47 | DEFAULT: "hsl(var(--card))",
48 | foreground: "hsl(var(--card-foreground))",
49 | },
50 | chart: {
51 | "1": "hsl(var(--chart-1))",
52 | "2": "hsl(var(--chart-2))",
53 | "3": "hsl(var(--chart-3))",
54 | "4": "hsl(var(--chart-4))",
55 | "5": "hsl(var(--chart-5))",
56 | },
57 | },
58 | borderRadius: {
59 | lg: "var(--radius)",
60 | md: "calc(var(--radius) - 2px)",
61 | sm: "calc(var(--radius) - 4px)",
62 | },
63 | keyframes: {
64 | "accordion-down": {
65 | from: {
66 | height: "0",
67 | },
68 | to: {
69 | height: "var(--radix-accordion-content-height)",
70 | },
71 | },
72 | "accordion-up": {
73 | from: {
74 | height: "var(--radix-accordion-content-height)",
75 | },
76 | to: {
77 | height: "0",
78 | },
79 | },
80 | },
81 | animation: {
82 | "accordion-down": "accordion-down 0.2s ease-out",
83 | "accordion-up": "accordion-up 0.2s ease-out",
84 | },
85 | },
86 | },
87 | plugins: [tailwindAnimate],
88 | };
89 |
90 | export default config;
91 |
--------------------------------------------------------------------------------
/tsconfig.app.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "composite": true,
4 | "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
5 | "target": "ES2020",
6 | "useDefineForClassFields": true,
7 | "lib": ["ES2020", "DOM", "DOM.Iterable"],
8 | "module": "ESNext",
9 | "skipLibCheck": true,
10 |
11 | /* Bundler mode */
12 | "moduleResolution": "bundler",
13 | "allowImportingTsExtensions": true,
14 | "isolatedModules": true,
15 | "moduleDetection": "force",
16 | "noEmit": true,
17 | "jsx": "react-jsx",
18 |
19 | /* Linting */
20 | "strict": true,
21 | "noUnusedLocals": true,
22 | "noUnusedParameters": true,
23 | "noFallthroughCasesInSwitch": true,
24 |
25 | /* Paths */
26 | "baseUrl": ".",
27 | "paths": {
28 | "@/*": ["./src/*"]
29 | }
30 | },
31 | "include": ["src"]
32 | }
33 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "composite": true,
4 | /* Paths (for shadcn/ui since paths in tsconfig.app.json are not working) */
5 | "baseUrl": ".",
6 | "paths": {
7 | "@/*": ["./src/*"]
8 | }
9 | },
10 | "files": [],
11 | "references": [
12 | { "path": "./tsconfig.app.json" },
13 | { "path": "./tsconfig.node.json" }
14 | ]
15 | }
16 |
--------------------------------------------------------------------------------
/tsconfig.node.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
4 | "target": "ES2022",
5 | "lib": ["ES2023"],
6 | "module": "ESNext",
7 | "skipLibCheck": true,
8 |
9 | /* Bundler mode */
10 | "moduleResolution": "bundler",
11 | "allowImportingTsExtensions": true,
12 | "isolatedModules": true,
13 | "moduleDetection": "force",
14 | "noEmit": true,
15 |
16 | /* Linting */
17 | "strict": true,
18 | "noUnusedLocals": true,
19 | "noUnusedParameters": true,
20 | "noFallthroughCasesInSwitch": true,
21 | "noUncheckedSideEffectImports": true
22 | },
23 | "include": ["vite.config.ts"]
24 | }
25 |
--------------------------------------------------------------------------------
/vite.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from "vite";
2 | import react from "@vitejs/plugin-react";
3 | import { resolve } from "path";
4 |
5 | // https://vitejs.dev/config/
6 | export default defineConfig({
7 | plugins: [react()],
8 | resolve: {
9 | alias: {
10 | "@": resolve(__dirname, "./src"),
11 | },
12 | },
13 | });
14 |
--------------------------------------------------------------------------------