├── README.md
├── eslint.config.js
├── index.html
├── package.json
├── pnpm-lock.yaml
├── postcss.config.js
├── public
└── vite.svg
├── src
├── App.css
├── App.jsx
├── assets
│ ├── logo.webp
│ └── react.svg
├── components
│ ├── DesktopMenu.jsx
│ └── MobMenu.jsx
├── index.css
├── main.jsx
└── utils.js
├── tailwind.config.js
└── vite.config.js
/README.md:
--------------------------------------------------------------------------------
1 | # Responsive Multimenu Nav
2 | ## Description
3 | Responsive Multimenu navigation bar using react js, tailwind css and framer motion
4 |
5 |
6 |
7 | 
8 |
9 | ## Features
10 | - Easily customizable navigation bar.
11 | - Supports dropdown menus.
12 | - Responsive design for mobile and desktop views.
13 | - [Live Preview](https://multimenu-nav-react-tailwind.vercel.app/)
14 |
15 | ## Installation
16 | 1. Clone the repository:
17 | ```bash
18 | git clone https://github.com/Sridhar-C-25/Multimenu-nav-react-tailwind.git
19 | ```
20 | 2. Navigate to the project directory:
21 | ```bash
22 | cd Multimenu-nav-react-tailwind
23 | ```
24 | 3. Install the dependencies using `pnpm`:
25 | ```bash
26 | pnpm install
27 | ```
28 |
29 | ## Usage
30 | 1. Start the application:
31 | ```bash
32 | pnpm start
33 | ```
34 | 2. Open your browser and navigate to `http://localhost:5173`.
35 |
--------------------------------------------------------------------------------
/eslint.config.js:
--------------------------------------------------------------------------------
1 | import js from "@eslint/js";
2 | import globals from "globals";
3 | import react from "eslint-plugin-react";
4 | import reactHooks from "eslint-plugin-react-hooks";
5 | import reactRefresh from "eslint-plugin-react-refresh";
6 |
7 | export default [
8 | { ignores: ["dist"] },
9 | {
10 | files: ["**/*.{js,jsx}"],
11 | languageOptions: {
12 | ecmaVersion: 2020,
13 | globals: globals.browser,
14 | parserOptions: {
15 | ecmaVersion: "latest",
16 | ecmaFeatures: { jsx: true },
17 | sourceType: "module",
18 | },
19 | },
20 | settings: { react: { version: "18.3" } },
21 | plugins: {
22 | react,
23 | "react-hooks": reactHooks,
24 | "react-refresh": reactRefresh,
25 | },
26 | rules: {
27 | ...js.configs.recommended.rules,
28 | ...react.configs.recommended.rules,
29 | ...react.configs["jsx-runtime"].rules,
30 | ...reactHooks.configs.recommended.rules,
31 | "react/jsx-no-target-blank": "off",
32 | "react/prop-types": "off",
33 | "react-refresh/only-export-components": [
34 | "warn",
35 | { allowConstantExport: true },
36 | ],
37 | },
38 | },
39 | ];
40 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | Vite + React
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-ani-nav",
3 | "private": true,
4 | "version": "0.0.0",
5 | "type": "module",
6 | "scripts": {
7 | "dev": "vite",
8 | "build": "vite build",
9 | "lint": "eslint .",
10 | "preview": "vite preview"
11 | },
12 | "dependencies": {
13 | "framer-motion": "^11.5.6",
14 | "lucide-react": "^0.445.0",
15 | "react": "^18.3.1",
16 | "react-dom": "^18.3.1"
17 | },
18 | "devDependencies": {
19 | "@eslint/js": "^9.9.0",
20 | "@types/react": "^18.3.3",
21 | "@types/react-dom": "^18.3.0",
22 | "@vitejs/plugin-react": "^4.3.1",
23 | "autoprefixer": "^10.4.20",
24 | "eslint": "^9.9.0",
25 | "eslint-plugin-react": "^7.35.0",
26 | "eslint-plugin-react-hooks": "^5.1.0-rc.0",
27 | "eslint-plugin-react-refresh": "^0.4.9",
28 | "globals": "^15.9.0",
29 | "postcss": "^8.4.47",
30 | "tailwindcss": "^3.4.12",
31 | "vite": "^5.4.1"
32 | }
33 | }
34 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: '9.0'
2 |
3 | settings:
4 | autoInstallPeers: true
5 | excludeLinksFromLockfile: false
6 |
7 | importers:
8 |
9 | .:
10 | dependencies:
11 | framer-motion:
12 | specifier: ^11.5.6
13 | version: 11.5.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
14 | lucide-react:
15 | specifier: ^0.445.0
16 | version: 0.445.0(react@18.3.1)
17 | react:
18 | specifier: ^18.3.1
19 | version: 18.3.1
20 | react-dom:
21 | specifier: ^18.3.1
22 | version: 18.3.1(react@18.3.1)
23 | devDependencies:
24 | '@eslint/js':
25 | specifier: ^9.9.0
26 | version: 9.11.0
27 | '@types/react':
28 | specifier: ^18.3.3
29 | version: 18.3.8
30 | '@types/react-dom':
31 | specifier: ^18.3.0
32 | version: 18.3.0
33 | '@vitejs/plugin-react':
34 | specifier: ^4.3.1
35 | version: 4.3.1(vite@5.4.7)
36 | autoprefixer:
37 | specifier: ^10.4.20
38 | version: 10.4.20(postcss@8.4.47)
39 | eslint:
40 | specifier: ^9.9.0
41 | version: 9.11.0(jiti@1.21.6)
42 | eslint-plugin-react:
43 | specifier: ^7.35.0
44 | version: 7.36.1(eslint@9.11.0(jiti@1.21.6))
45 | eslint-plugin-react-hooks:
46 | specifier: ^5.1.0-rc.0
47 | version: 5.1.0-rc-fb9a90fa48-20240614(eslint@9.11.0(jiti@1.21.6))
48 | eslint-plugin-react-refresh:
49 | specifier: ^0.4.9
50 | version: 0.4.12(eslint@9.11.0(jiti@1.21.6))
51 | globals:
52 | specifier: ^15.9.0
53 | version: 15.9.0
54 | postcss:
55 | specifier: ^8.4.47
56 | version: 8.4.47
57 | tailwindcss:
58 | specifier: ^3.4.12
59 | version: 3.4.12
60 | vite:
61 | specifier: ^5.4.1
62 | version: 5.4.7
63 |
64 | packages:
65 |
66 | '@alloc/quick-lru@5.2.0':
67 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
68 | engines: {node: '>=10'}
69 |
70 | '@ampproject/remapping@2.3.0':
71 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
72 | engines: {node: '>=6.0.0'}
73 |
74 | '@babel/code-frame@7.24.7':
75 | resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
76 | engines: {node: '>=6.9.0'}
77 |
78 | '@babel/compat-data@7.25.4':
79 | resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
80 | engines: {node: '>=6.9.0'}
81 |
82 | '@babel/core@7.25.2':
83 | resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
84 | engines: {node: '>=6.9.0'}
85 |
86 | '@babel/generator@7.25.6':
87 | resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==}
88 | engines: {node: '>=6.9.0'}
89 |
90 | '@babel/helper-compilation-targets@7.25.2':
91 | resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
92 | engines: {node: '>=6.9.0'}
93 |
94 | '@babel/helper-module-imports@7.24.7':
95 | resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
96 | engines: {node: '>=6.9.0'}
97 |
98 | '@babel/helper-module-transforms@7.25.2':
99 | resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
100 | engines: {node: '>=6.9.0'}
101 | peerDependencies:
102 | '@babel/core': ^7.0.0
103 |
104 | '@babel/helper-plugin-utils@7.24.8':
105 | resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
106 | engines: {node: '>=6.9.0'}
107 |
108 | '@babel/helper-simple-access@7.24.7':
109 | resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
110 | engines: {node: '>=6.9.0'}
111 |
112 | '@babel/helper-string-parser@7.24.8':
113 | resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
114 | engines: {node: '>=6.9.0'}
115 |
116 | '@babel/helper-validator-identifier@7.24.7':
117 | resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
118 | engines: {node: '>=6.9.0'}
119 |
120 | '@babel/helper-validator-option@7.24.8':
121 | resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
122 | engines: {node: '>=6.9.0'}
123 |
124 | '@babel/helpers@7.25.6':
125 | resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==}
126 | engines: {node: '>=6.9.0'}
127 |
128 | '@babel/highlight@7.24.7':
129 | resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
130 | engines: {node: '>=6.9.0'}
131 |
132 | '@babel/parser@7.25.6':
133 | resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==}
134 | engines: {node: '>=6.0.0'}
135 | hasBin: true
136 |
137 | '@babel/plugin-transform-react-jsx-self@7.24.7':
138 | resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==}
139 | engines: {node: '>=6.9.0'}
140 | peerDependencies:
141 | '@babel/core': ^7.0.0-0
142 |
143 | '@babel/plugin-transform-react-jsx-source@7.24.7':
144 | resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==}
145 | engines: {node: '>=6.9.0'}
146 | peerDependencies:
147 | '@babel/core': ^7.0.0-0
148 |
149 | '@babel/template@7.25.0':
150 | resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
151 | engines: {node: '>=6.9.0'}
152 |
153 | '@babel/traverse@7.25.6':
154 | resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==}
155 | engines: {node: '>=6.9.0'}
156 |
157 | '@babel/types@7.25.6':
158 | resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
159 | engines: {node: '>=6.9.0'}
160 |
161 | '@esbuild/aix-ppc64@0.21.5':
162 | resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
163 | engines: {node: '>=12'}
164 | cpu: [ppc64]
165 | os: [aix]
166 |
167 | '@esbuild/android-arm64@0.21.5':
168 | resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
169 | engines: {node: '>=12'}
170 | cpu: [arm64]
171 | os: [android]
172 |
173 | '@esbuild/android-arm@0.21.5':
174 | resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
175 | engines: {node: '>=12'}
176 | cpu: [arm]
177 | os: [android]
178 |
179 | '@esbuild/android-x64@0.21.5':
180 | resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
181 | engines: {node: '>=12'}
182 | cpu: [x64]
183 | os: [android]
184 |
185 | '@esbuild/darwin-arm64@0.21.5':
186 | resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
187 | engines: {node: '>=12'}
188 | cpu: [arm64]
189 | os: [darwin]
190 |
191 | '@esbuild/darwin-x64@0.21.5':
192 | resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
193 | engines: {node: '>=12'}
194 | cpu: [x64]
195 | os: [darwin]
196 |
197 | '@esbuild/freebsd-arm64@0.21.5':
198 | resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
199 | engines: {node: '>=12'}
200 | cpu: [arm64]
201 | os: [freebsd]
202 |
203 | '@esbuild/freebsd-x64@0.21.5':
204 | resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
205 | engines: {node: '>=12'}
206 | cpu: [x64]
207 | os: [freebsd]
208 |
209 | '@esbuild/linux-arm64@0.21.5':
210 | resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
211 | engines: {node: '>=12'}
212 | cpu: [arm64]
213 | os: [linux]
214 |
215 | '@esbuild/linux-arm@0.21.5':
216 | resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
217 | engines: {node: '>=12'}
218 | cpu: [arm]
219 | os: [linux]
220 |
221 | '@esbuild/linux-ia32@0.21.5':
222 | resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
223 | engines: {node: '>=12'}
224 | cpu: [ia32]
225 | os: [linux]
226 |
227 | '@esbuild/linux-loong64@0.21.5':
228 | resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
229 | engines: {node: '>=12'}
230 | cpu: [loong64]
231 | os: [linux]
232 |
233 | '@esbuild/linux-mips64el@0.21.5':
234 | resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
235 | engines: {node: '>=12'}
236 | cpu: [mips64el]
237 | os: [linux]
238 |
239 | '@esbuild/linux-ppc64@0.21.5':
240 | resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
241 | engines: {node: '>=12'}
242 | cpu: [ppc64]
243 | os: [linux]
244 |
245 | '@esbuild/linux-riscv64@0.21.5':
246 | resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
247 | engines: {node: '>=12'}
248 | cpu: [riscv64]
249 | os: [linux]
250 |
251 | '@esbuild/linux-s390x@0.21.5':
252 | resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
253 | engines: {node: '>=12'}
254 | cpu: [s390x]
255 | os: [linux]
256 |
257 | '@esbuild/linux-x64@0.21.5':
258 | resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
259 | engines: {node: '>=12'}
260 | cpu: [x64]
261 | os: [linux]
262 |
263 | '@esbuild/netbsd-x64@0.21.5':
264 | resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
265 | engines: {node: '>=12'}
266 | cpu: [x64]
267 | os: [netbsd]
268 |
269 | '@esbuild/openbsd-x64@0.21.5':
270 | resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
271 | engines: {node: '>=12'}
272 | cpu: [x64]
273 | os: [openbsd]
274 |
275 | '@esbuild/sunos-x64@0.21.5':
276 | resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
277 | engines: {node: '>=12'}
278 | cpu: [x64]
279 | os: [sunos]
280 |
281 | '@esbuild/win32-arm64@0.21.5':
282 | resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
283 | engines: {node: '>=12'}
284 | cpu: [arm64]
285 | os: [win32]
286 |
287 | '@esbuild/win32-ia32@0.21.5':
288 | resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
289 | engines: {node: '>=12'}
290 | cpu: [ia32]
291 | os: [win32]
292 |
293 | '@esbuild/win32-x64@0.21.5':
294 | resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
295 | engines: {node: '>=12'}
296 | cpu: [x64]
297 | os: [win32]
298 |
299 | '@eslint-community/eslint-utils@4.4.0':
300 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
301 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
302 | peerDependencies:
303 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
304 |
305 | '@eslint-community/regexpp@4.11.1':
306 | resolution: {integrity: sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==}
307 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
308 |
309 | '@eslint/config-array@0.18.0':
310 | resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==}
311 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
312 |
313 | '@eslint/eslintrc@3.1.0':
314 | resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==}
315 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
316 |
317 | '@eslint/js@9.11.0':
318 | resolution: {integrity: sha512-LPkkenkDqyzTFauZLLAPhIb48fj6drrfMvRGSL9tS3AcZBSVTllemLSNyCvHNNL2t797S/6DJNSIwRwXgMO/eQ==}
319 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
320 |
321 | '@eslint/object-schema@2.1.4':
322 | resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==}
323 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
324 |
325 | '@eslint/plugin-kit@0.2.0':
326 | resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==}
327 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
328 |
329 | '@humanwhocodes/module-importer@1.0.1':
330 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
331 | engines: {node: '>=12.22'}
332 |
333 | '@humanwhocodes/retry@0.3.0':
334 | resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==}
335 | engines: {node: '>=18.18'}
336 |
337 | '@isaacs/cliui@8.0.2':
338 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
339 | engines: {node: '>=12'}
340 |
341 | '@jridgewell/gen-mapping@0.3.5':
342 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
343 | engines: {node: '>=6.0.0'}
344 |
345 | '@jridgewell/resolve-uri@3.1.2':
346 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
347 | engines: {node: '>=6.0.0'}
348 |
349 | '@jridgewell/set-array@1.2.1':
350 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
351 | engines: {node: '>=6.0.0'}
352 |
353 | '@jridgewell/sourcemap-codec@1.5.0':
354 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
355 |
356 | '@jridgewell/trace-mapping@0.3.25':
357 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
358 |
359 | '@nodelib/fs.scandir@2.1.5':
360 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
361 | engines: {node: '>= 8'}
362 |
363 | '@nodelib/fs.stat@2.0.5':
364 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
365 | engines: {node: '>= 8'}
366 |
367 | '@nodelib/fs.walk@1.2.8':
368 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
369 | engines: {node: '>= 8'}
370 |
371 | '@pkgjs/parseargs@0.11.0':
372 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
373 | engines: {node: '>=14'}
374 |
375 | '@rollup/rollup-android-arm-eabi@4.22.4':
376 | resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==}
377 | cpu: [arm]
378 | os: [android]
379 |
380 | '@rollup/rollup-android-arm64@4.22.4':
381 | resolution: {integrity: sha512-VXoK5UMrgECLYaMuGuVTOx5kcuap1Jm8g/M83RnCHBKOqvPPmROFJGQaZhGccnsFtfXQ3XYa4/jMCJvZnbJBdA==}
382 | cpu: [arm64]
383 | os: [android]
384 |
385 | '@rollup/rollup-darwin-arm64@4.22.4':
386 | resolution: {integrity: sha512-xMM9ORBqu81jyMKCDP+SZDhnX2QEVQzTcC6G18KlTQEzWK8r/oNZtKuZaCcHhnsa6fEeOBionoyl5JsAbE/36Q==}
387 | cpu: [arm64]
388 | os: [darwin]
389 |
390 | '@rollup/rollup-darwin-x64@4.22.4':
391 | resolution: {integrity: sha512-aJJyYKQwbHuhTUrjWjxEvGnNNBCnmpHDvrb8JFDbeSH3m2XdHcxDd3jthAzvmoI8w/kSjd2y0udT+4okADsZIw==}
392 | cpu: [x64]
393 | os: [darwin]
394 |
395 | '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
396 | resolution: {integrity: sha512-j63YtCIRAzbO+gC2L9dWXRh5BFetsv0j0va0Wi9epXDgU/XUi5dJKo4USTttVyK7fGw2nPWK0PbAvyliz50SCQ==}
397 | cpu: [arm]
398 | os: [linux]
399 |
400 | '@rollup/rollup-linux-arm-musleabihf@4.22.4':
401 | resolution: {integrity: sha512-dJnWUgwWBX1YBRsuKKMOlXCzh2Wu1mlHzv20TpqEsfdZLb3WoJW2kIEsGwLkroYf24IrPAvOT/ZQ2OYMV6vlrg==}
402 | cpu: [arm]
403 | os: [linux]
404 |
405 | '@rollup/rollup-linux-arm64-gnu@4.22.4':
406 | resolution: {integrity: sha512-AdPRoNi3NKVLolCN/Sp4F4N1d98c4SBnHMKoLuiG6RXgoZ4sllseuGioszumnPGmPM2O7qaAX/IJdeDU8f26Aw==}
407 | cpu: [arm64]
408 | os: [linux]
409 |
410 | '@rollup/rollup-linux-arm64-musl@4.22.4':
411 | resolution: {integrity: sha512-Gl0AxBtDg8uoAn5CCqQDMqAx22Wx22pjDOjBdmG0VIWX3qUBHzYmOKh8KXHL4UpogfJ14G4wk16EQogF+v8hmA==}
412 | cpu: [arm64]
413 | os: [linux]
414 |
415 | '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
416 | resolution: {integrity: sha512-3aVCK9xfWW1oGQpTsYJJPF6bfpWfhbRnhdlyhak2ZiyFLDaayz0EP5j9V1RVLAAxlmWKTDfS9wyRyY3hvhPoOg==}
417 | cpu: [ppc64]
418 | os: [linux]
419 |
420 | '@rollup/rollup-linux-riscv64-gnu@4.22.4':
421 | resolution: {integrity: sha512-ePYIir6VYnhgv2C5Xe9u+ico4t8sZWXschR6fMgoPUK31yQu7hTEJb7bCqivHECwIClJfKgE7zYsh1qTP3WHUA==}
422 | cpu: [riscv64]
423 | os: [linux]
424 |
425 | '@rollup/rollup-linux-s390x-gnu@4.22.4':
426 | resolution: {integrity: sha512-GqFJ9wLlbB9daxhVlrTe61vJtEY99/xB3C8e4ULVsVfflcpmR6c8UZXjtkMA6FhNONhj2eA5Tk9uAVw5orEs4Q==}
427 | cpu: [s390x]
428 | os: [linux]
429 |
430 | '@rollup/rollup-linux-x64-gnu@4.22.4':
431 | resolution: {integrity: sha512-87v0ol2sH9GE3cLQLNEy0K/R0pz1nvg76o8M5nhMR0+Q+BBGLnb35P0fVz4CQxHYXaAOhE8HhlkaZfsdUOlHwg==}
432 | cpu: [x64]
433 | os: [linux]
434 |
435 | '@rollup/rollup-linux-x64-musl@4.22.4':
436 | resolution: {integrity: sha512-UV6FZMUgePDZrFjrNGIWzDo/vABebuXBhJEqrHxrGiU6HikPy0Z3LfdtciIttEUQfuDdCn8fqh7wiFJjCNwO+g==}
437 | cpu: [x64]
438 | os: [linux]
439 |
440 | '@rollup/rollup-win32-arm64-msvc@4.22.4':
441 | resolution: {integrity: sha512-BjI+NVVEGAXjGWYHz/vv0pBqfGoUH0IGZ0cICTn7kB9PyjrATSkX+8WkguNjWoj2qSr1im/+tTGRaY+4/PdcQw==}
442 | cpu: [arm64]
443 | os: [win32]
444 |
445 | '@rollup/rollup-win32-ia32-msvc@4.22.4':
446 | resolution: {integrity: sha512-SiWG/1TuUdPvYmzmYnmd3IEifzR61Tragkbx9D3+R8mzQqDBz8v+BvZNDlkiTtI9T15KYZhP0ehn3Dld4n9J5g==}
447 | cpu: [ia32]
448 | os: [win32]
449 |
450 | '@rollup/rollup-win32-x64-msvc@4.22.4':
451 | resolution: {integrity: sha512-j8pPKp53/lq9lMXN57S8cFz0MynJk8OWNuUnXct/9KCpKU7DgU3bYMJhwWmcqC0UU29p8Lr0/7KEVcaM6bf47Q==}
452 | cpu: [x64]
453 | os: [win32]
454 |
455 | '@types/babel__core@7.20.5':
456 | resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
457 |
458 | '@types/babel__generator@7.6.8':
459 | resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
460 |
461 | '@types/babel__template@7.4.4':
462 | resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
463 |
464 | '@types/babel__traverse@7.20.6':
465 | resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==}
466 |
467 | '@types/estree@1.0.5':
468 | resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
469 |
470 | '@types/prop-types@15.7.13':
471 | resolution: {integrity: sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==}
472 |
473 | '@types/react-dom@18.3.0':
474 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
475 |
476 | '@types/react@18.3.8':
477 | resolution: {integrity: sha512-syBUrW3/XpnW4WJ41Pft+I+aPoDVbrBVQGEnbD7NijDGlVC+8gV/XKRY+7vMDlfPpbwYt0l1vd/Sj8bJGMbs9Q==}
478 |
479 | '@vitejs/plugin-react@4.3.1':
480 | resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==}
481 | engines: {node: ^14.18.0 || >=16.0.0}
482 | peerDependencies:
483 | vite: ^4.2.0 || ^5.0.0
484 |
485 | acorn-jsx@5.3.2:
486 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
487 | peerDependencies:
488 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
489 |
490 | acorn@8.12.1:
491 | resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
492 | engines: {node: '>=0.4.0'}
493 | hasBin: true
494 |
495 | ajv@6.12.6:
496 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
497 |
498 | ansi-regex@5.0.1:
499 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
500 | engines: {node: '>=8'}
501 |
502 | ansi-regex@6.1.0:
503 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
504 | engines: {node: '>=12'}
505 |
506 | ansi-styles@3.2.1:
507 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
508 | engines: {node: '>=4'}
509 |
510 | ansi-styles@4.3.0:
511 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
512 | engines: {node: '>=8'}
513 |
514 | ansi-styles@6.2.1:
515 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
516 | engines: {node: '>=12'}
517 |
518 | any-promise@1.3.0:
519 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
520 |
521 | anymatch@3.1.3:
522 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
523 | engines: {node: '>= 8'}
524 |
525 | arg@5.0.2:
526 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
527 |
528 | argparse@2.0.1:
529 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
530 |
531 | array-buffer-byte-length@1.0.1:
532 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
533 | engines: {node: '>= 0.4'}
534 |
535 | array-includes@3.1.8:
536 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
537 | engines: {node: '>= 0.4'}
538 |
539 | array.prototype.findlast@1.2.5:
540 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==}
541 | engines: {node: '>= 0.4'}
542 |
543 | array.prototype.flat@1.3.2:
544 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
545 | engines: {node: '>= 0.4'}
546 |
547 | array.prototype.flatmap@1.3.2:
548 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
549 | engines: {node: '>= 0.4'}
550 |
551 | array.prototype.tosorted@1.1.4:
552 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==}
553 | engines: {node: '>= 0.4'}
554 |
555 | arraybuffer.prototype.slice@1.0.3:
556 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
557 | engines: {node: '>= 0.4'}
558 |
559 | autoprefixer@10.4.20:
560 | resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
561 | engines: {node: ^10 || ^12 || >=14}
562 | hasBin: true
563 | peerDependencies:
564 | postcss: ^8.1.0
565 |
566 | available-typed-arrays@1.0.7:
567 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
568 | engines: {node: '>= 0.4'}
569 |
570 | balanced-match@1.0.2:
571 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
572 |
573 | binary-extensions@2.3.0:
574 | resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
575 | engines: {node: '>=8'}
576 |
577 | brace-expansion@1.1.11:
578 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
579 |
580 | brace-expansion@2.0.1:
581 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
582 |
583 | braces@3.0.3:
584 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
585 | engines: {node: '>=8'}
586 |
587 | browserslist@4.23.3:
588 | resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
589 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
590 | hasBin: true
591 |
592 | call-bind@1.0.7:
593 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
594 | engines: {node: '>= 0.4'}
595 |
596 | callsites@3.1.0:
597 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
598 | engines: {node: '>=6'}
599 |
600 | camelcase-css@2.0.1:
601 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
602 | engines: {node: '>= 6'}
603 |
604 | caniuse-lite@1.0.30001662:
605 | resolution: {integrity: sha512-sgMUVwLmGseH8ZIrm1d51UbrhqMCH3jvS7gF/M6byuHOnKyLOBL7W8yz5V02OHwgLGA36o/AFhWzzh4uc5aqTA==}
606 |
607 | chalk@2.4.2:
608 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
609 | engines: {node: '>=4'}
610 |
611 | chalk@4.1.2:
612 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
613 | engines: {node: '>=10'}
614 |
615 | chokidar@3.6.0:
616 | resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
617 | engines: {node: '>= 8.10.0'}
618 |
619 | color-convert@1.9.3:
620 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
621 |
622 | color-convert@2.0.1:
623 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
624 | engines: {node: '>=7.0.0'}
625 |
626 | color-name@1.1.3:
627 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
628 |
629 | color-name@1.1.4:
630 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
631 |
632 | commander@4.1.1:
633 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
634 | engines: {node: '>= 6'}
635 |
636 | concat-map@0.0.1:
637 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
638 |
639 | convert-source-map@2.0.0:
640 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
641 |
642 | cross-spawn@7.0.3:
643 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
644 | engines: {node: '>= 8'}
645 |
646 | cssesc@3.0.0:
647 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
648 | engines: {node: '>=4'}
649 | hasBin: true
650 |
651 | csstype@3.1.3:
652 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
653 |
654 | data-view-buffer@1.0.1:
655 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
656 | engines: {node: '>= 0.4'}
657 |
658 | data-view-byte-length@1.0.1:
659 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
660 | engines: {node: '>= 0.4'}
661 |
662 | data-view-byte-offset@1.0.0:
663 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
664 | engines: {node: '>= 0.4'}
665 |
666 | debug@4.3.7:
667 | resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
668 | engines: {node: '>=6.0'}
669 | peerDependencies:
670 | supports-color: '*'
671 | peerDependenciesMeta:
672 | supports-color:
673 | optional: true
674 |
675 | deep-is@0.1.4:
676 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
677 |
678 | define-data-property@1.1.4:
679 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
680 | engines: {node: '>= 0.4'}
681 |
682 | define-properties@1.2.1:
683 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
684 | engines: {node: '>= 0.4'}
685 |
686 | didyoumean@1.2.2:
687 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
688 |
689 | dlv@1.1.3:
690 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
691 |
692 | doctrine@2.1.0:
693 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
694 | engines: {node: '>=0.10.0'}
695 |
696 | eastasianwidth@0.2.0:
697 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
698 |
699 | electron-to-chromium@1.5.27:
700 | resolution: {integrity: sha512-o37j1vZqCoEgBuWWXLHQgTN/KDKe7zwpiY5CPeq2RvUqOyJw9xnrULzZAEVQ5p4h+zjMk7hgtOoPdnLxr7m/jw==}
701 |
702 | emoji-regex@8.0.0:
703 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
704 |
705 | emoji-regex@9.2.2:
706 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
707 |
708 | es-abstract@1.23.3:
709 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
710 | engines: {node: '>= 0.4'}
711 |
712 | es-define-property@1.0.0:
713 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
714 | engines: {node: '>= 0.4'}
715 |
716 | es-errors@1.3.0:
717 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
718 | engines: {node: '>= 0.4'}
719 |
720 | es-iterator-helpers@1.0.19:
721 | resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==}
722 | engines: {node: '>= 0.4'}
723 |
724 | es-object-atoms@1.0.0:
725 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
726 | engines: {node: '>= 0.4'}
727 |
728 | es-set-tostringtag@2.0.3:
729 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
730 | engines: {node: '>= 0.4'}
731 |
732 | es-shim-unscopables@1.0.2:
733 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
734 |
735 | es-to-primitive@1.2.1:
736 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
737 | engines: {node: '>= 0.4'}
738 |
739 | esbuild@0.21.5:
740 | resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
741 | engines: {node: '>=12'}
742 | hasBin: true
743 |
744 | escalade@3.2.0:
745 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
746 | engines: {node: '>=6'}
747 |
748 | escape-string-regexp@1.0.5:
749 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
750 | engines: {node: '>=0.8.0'}
751 |
752 | escape-string-regexp@4.0.0:
753 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
754 | engines: {node: '>=10'}
755 |
756 | eslint-plugin-react-hooks@5.1.0-rc-fb9a90fa48-20240614:
757 | resolution: {integrity: sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w==}
758 | engines: {node: '>=10'}
759 | peerDependencies:
760 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
761 |
762 | eslint-plugin-react-refresh@0.4.12:
763 | resolution: {integrity: sha512-9neVjoGv20FwYtCP6CB1dzR1vr57ZDNOXst21wd2xJ/cTlM2xLq0GWVlSNTdMn/4BtP6cHYBMCSp1wFBJ9jBsg==}
764 | peerDependencies:
765 | eslint: '>=7'
766 |
767 | eslint-plugin-react@7.36.1:
768 | resolution: {integrity: sha512-/qwbqNXZoq+VP30s1d4Nc1C5GTxjJQjk4Jzs4Wq2qzxFM7dSmuG2UkIjg2USMLh3A/aVcUNrK7v0J5U1XEGGwA==}
769 | engines: {node: '>=4'}
770 | peerDependencies:
771 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7
772 |
773 | eslint-scope@8.0.2:
774 | resolution: {integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==}
775 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
776 |
777 | eslint-visitor-keys@3.4.3:
778 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
779 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
780 |
781 | eslint-visitor-keys@4.0.0:
782 | resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==}
783 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
784 |
785 | eslint@9.11.0:
786 | resolution: {integrity: sha512-yVS6XODx+tMFMDFcG4+Hlh+qG7RM6cCJXtQhCKLSsr3XkLvWggHjCqjfh0XsPPnt1c56oaT6PMgW9XWQQjdHXA==}
787 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
788 | hasBin: true
789 | peerDependencies:
790 | jiti: '*'
791 | peerDependenciesMeta:
792 | jiti:
793 | optional: true
794 |
795 | espree@10.1.0:
796 | resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==}
797 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
798 |
799 | esquery@1.6.0:
800 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
801 | engines: {node: '>=0.10'}
802 |
803 | esrecurse@4.3.0:
804 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
805 | engines: {node: '>=4.0'}
806 |
807 | estraverse@5.3.0:
808 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
809 | engines: {node: '>=4.0'}
810 |
811 | esutils@2.0.3:
812 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
813 | engines: {node: '>=0.10.0'}
814 |
815 | fast-deep-equal@3.1.3:
816 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
817 |
818 | fast-glob@3.3.2:
819 | resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
820 | engines: {node: '>=8.6.0'}
821 |
822 | fast-json-stable-stringify@2.1.0:
823 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
824 |
825 | fast-levenshtein@2.0.6:
826 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
827 |
828 | fastq@1.17.1:
829 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
830 |
831 | file-entry-cache@8.0.0:
832 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
833 | engines: {node: '>=16.0.0'}
834 |
835 | fill-range@7.1.1:
836 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
837 | engines: {node: '>=8'}
838 |
839 | find-up@5.0.0:
840 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
841 | engines: {node: '>=10'}
842 |
843 | flat-cache@4.0.1:
844 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
845 | engines: {node: '>=16'}
846 |
847 | flatted@3.3.1:
848 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
849 |
850 | for-each@0.3.3:
851 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
852 |
853 | foreground-child@3.3.0:
854 | resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
855 | engines: {node: '>=14'}
856 |
857 | fraction.js@4.3.7:
858 | resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
859 |
860 | framer-motion@11.5.6:
861 | resolution: {integrity: sha512-JMwUpAxv/DWgul9vPgX0ElKn0G66sUc6O9tOXsYwn3zxwvhxFljSXC0XT2QCzuTYBshwC8nyDAa1SYcV0Ldbhw==}
862 | peerDependencies:
863 | '@emotion/is-prop-valid': '*'
864 | react: ^18.0.0
865 | react-dom: ^18.0.0
866 | peerDependenciesMeta:
867 | '@emotion/is-prop-valid':
868 | optional: true
869 | react:
870 | optional: true
871 | react-dom:
872 | optional: true
873 |
874 | fsevents@2.3.3:
875 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
876 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
877 | os: [darwin]
878 |
879 | function-bind@1.1.2:
880 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
881 |
882 | function.prototype.name@1.1.6:
883 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
884 | engines: {node: '>= 0.4'}
885 |
886 | functions-have-names@1.2.3:
887 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
888 |
889 | gensync@1.0.0-beta.2:
890 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
891 | engines: {node: '>=6.9.0'}
892 |
893 | get-intrinsic@1.2.4:
894 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
895 | engines: {node: '>= 0.4'}
896 |
897 | get-symbol-description@1.0.2:
898 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
899 | engines: {node: '>= 0.4'}
900 |
901 | glob-parent@5.1.2:
902 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
903 | engines: {node: '>= 6'}
904 |
905 | glob-parent@6.0.2:
906 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
907 | engines: {node: '>=10.13.0'}
908 |
909 | glob@10.4.5:
910 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
911 | hasBin: true
912 |
913 | globals@11.12.0:
914 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
915 | engines: {node: '>=4'}
916 |
917 | globals@14.0.0:
918 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
919 | engines: {node: '>=18'}
920 |
921 | globals@15.9.0:
922 | resolution: {integrity: sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==}
923 | engines: {node: '>=18'}
924 |
925 | globalthis@1.0.4:
926 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
927 | engines: {node: '>= 0.4'}
928 |
929 | gopd@1.0.1:
930 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
931 |
932 | has-bigints@1.0.2:
933 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
934 |
935 | has-flag@3.0.0:
936 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
937 | engines: {node: '>=4'}
938 |
939 | has-flag@4.0.0:
940 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
941 | engines: {node: '>=8'}
942 |
943 | has-property-descriptors@1.0.2:
944 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
945 |
946 | has-proto@1.0.3:
947 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
948 | engines: {node: '>= 0.4'}
949 |
950 | has-symbols@1.0.3:
951 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
952 | engines: {node: '>= 0.4'}
953 |
954 | has-tostringtag@1.0.2:
955 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
956 | engines: {node: '>= 0.4'}
957 |
958 | hasown@2.0.2:
959 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
960 | engines: {node: '>= 0.4'}
961 |
962 | ignore@5.3.2:
963 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
964 | engines: {node: '>= 4'}
965 |
966 | import-fresh@3.3.0:
967 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
968 | engines: {node: '>=6'}
969 |
970 | imurmurhash@0.1.4:
971 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
972 | engines: {node: '>=0.8.19'}
973 |
974 | internal-slot@1.0.7:
975 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
976 | engines: {node: '>= 0.4'}
977 |
978 | is-array-buffer@3.0.4:
979 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
980 | engines: {node: '>= 0.4'}
981 |
982 | is-async-function@2.0.0:
983 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==}
984 | engines: {node: '>= 0.4'}
985 |
986 | is-bigint@1.0.4:
987 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
988 |
989 | is-binary-path@2.1.0:
990 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
991 | engines: {node: '>=8'}
992 |
993 | is-boolean-object@1.1.2:
994 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
995 | engines: {node: '>= 0.4'}
996 |
997 | is-callable@1.2.7:
998 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
999 | engines: {node: '>= 0.4'}
1000 |
1001 | is-core-module@2.15.1:
1002 | resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
1003 | engines: {node: '>= 0.4'}
1004 |
1005 | is-data-view@1.0.1:
1006 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
1007 | engines: {node: '>= 0.4'}
1008 |
1009 | is-date-object@1.0.5:
1010 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
1011 | engines: {node: '>= 0.4'}
1012 |
1013 | is-extglob@2.1.1:
1014 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1015 | engines: {node: '>=0.10.0'}
1016 |
1017 | is-finalizationregistry@1.0.2:
1018 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
1019 |
1020 | is-fullwidth-code-point@3.0.0:
1021 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
1022 | engines: {node: '>=8'}
1023 |
1024 | is-generator-function@1.0.10:
1025 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==}
1026 | engines: {node: '>= 0.4'}
1027 |
1028 | is-glob@4.0.3:
1029 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1030 | engines: {node: '>=0.10.0'}
1031 |
1032 | is-map@2.0.3:
1033 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
1034 | engines: {node: '>= 0.4'}
1035 |
1036 | is-negative-zero@2.0.3:
1037 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
1038 | engines: {node: '>= 0.4'}
1039 |
1040 | is-number-object@1.0.7:
1041 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
1042 | engines: {node: '>= 0.4'}
1043 |
1044 | is-number@7.0.0:
1045 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1046 | engines: {node: '>=0.12.0'}
1047 |
1048 | is-path-inside@3.0.3:
1049 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1050 | engines: {node: '>=8'}
1051 |
1052 | is-regex@1.1.4:
1053 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
1054 | engines: {node: '>= 0.4'}
1055 |
1056 | is-set@2.0.3:
1057 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
1058 | engines: {node: '>= 0.4'}
1059 |
1060 | is-shared-array-buffer@1.0.3:
1061 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
1062 | engines: {node: '>= 0.4'}
1063 |
1064 | is-string@1.0.7:
1065 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
1066 | engines: {node: '>= 0.4'}
1067 |
1068 | is-symbol@1.0.4:
1069 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
1070 | engines: {node: '>= 0.4'}
1071 |
1072 | is-typed-array@1.1.13:
1073 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
1074 | engines: {node: '>= 0.4'}
1075 |
1076 | is-weakmap@2.0.2:
1077 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
1078 | engines: {node: '>= 0.4'}
1079 |
1080 | is-weakref@1.0.2:
1081 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
1082 |
1083 | is-weakset@2.0.3:
1084 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==}
1085 | engines: {node: '>= 0.4'}
1086 |
1087 | isarray@2.0.5:
1088 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
1089 |
1090 | isexe@2.0.0:
1091 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1092 |
1093 | iterator.prototype@1.1.2:
1094 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
1095 |
1096 | jackspeak@3.4.3:
1097 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
1098 |
1099 | jiti@1.21.6:
1100 | resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
1101 | hasBin: true
1102 |
1103 | js-tokens@4.0.0:
1104 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1105 |
1106 | js-yaml@4.1.0:
1107 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1108 | hasBin: true
1109 |
1110 | jsesc@2.5.2:
1111 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
1112 | engines: {node: '>=4'}
1113 | hasBin: true
1114 |
1115 | json-buffer@3.0.1:
1116 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
1117 |
1118 | json-schema-traverse@0.4.1:
1119 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1120 |
1121 | json-stable-stringify-without-jsonify@1.0.1:
1122 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1123 |
1124 | json5@2.2.3:
1125 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1126 | engines: {node: '>=6'}
1127 | hasBin: true
1128 |
1129 | jsx-ast-utils@3.3.5:
1130 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
1131 | engines: {node: '>=4.0'}
1132 |
1133 | keyv@4.5.4:
1134 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
1135 |
1136 | levn@0.4.1:
1137 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1138 | engines: {node: '>= 0.8.0'}
1139 |
1140 | lilconfig@2.1.0:
1141 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
1142 | engines: {node: '>=10'}
1143 |
1144 | lilconfig@3.1.2:
1145 | resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
1146 | engines: {node: '>=14'}
1147 |
1148 | lines-and-columns@1.2.4:
1149 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1150 |
1151 | locate-path@6.0.0:
1152 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1153 | engines: {node: '>=10'}
1154 |
1155 | lodash.merge@4.6.2:
1156 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1157 |
1158 | loose-envify@1.4.0:
1159 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1160 | hasBin: true
1161 |
1162 | lru-cache@10.4.3:
1163 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
1164 |
1165 | lru-cache@5.1.1:
1166 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
1167 |
1168 | lucide-react@0.445.0:
1169 | resolution: {integrity: sha512-YrLf3aAHvmd4dZ8ot+mMdNFrFpJD7YRwQ2pUcBhgqbmxtrMP4xDzIorcj+8y+6kpuXBF4JB0NOCTUWIYetJjgA==}
1170 | peerDependencies:
1171 | react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
1172 |
1173 | merge2@1.4.1:
1174 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1175 | engines: {node: '>= 8'}
1176 |
1177 | micromatch@4.0.8:
1178 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
1179 | engines: {node: '>=8.6'}
1180 |
1181 | minimatch@3.1.2:
1182 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
1183 |
1184 | minimatch@9.0.5:
1185 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
1186 | engines: {node: '>=16 || 14 >=14.17'}
1187 |
1188 | minipass@7.1.2:
1189 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
1190 | engines: {node: '>=16 || 14 >=14.17'}
1191 |
1192 | ms@2.1.3:
1193 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1194 |
1195 | mz@2.7.0:
1196 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1197 |
1198 | nanoid@3.3.7:
1199 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
1200 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1201 | hasBin: true
1202 |
1203 | natural-compare@1.4.0:
1204 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
1205 |
1206 | node-releases@2.0.18:
1207 | resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
1208 |
1209 | normalize-path@3.0.0:
1210 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1211 | engines: {node: '>=0.10.0'}
1212 |
1213 | normalize-range@0.1.2:
1214 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
1215 | engines: {node: '>=0.10.0'}
1216 |
1217 | object-assign@4.1.1:
1218 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1219 | engines: {node: '>=0.10.0'}
1220 |
1221 | object-hash@3.0.0:
1222 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1223 | engines: {node: '>= 6'}
1224 |
1225 | object-inspect@1.13.2:
1226 | resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==}
1227 | engines: {node: '>= 0.4'}
1228 |
1229 | object-keys@1.1.1:
1230 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
1231 | engines: {node: '>= 0.4'}
1232 |
1233 | object.assign@4.1.5:
1234 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
1235 | engines: {node: '>= 0.4'}
1236 |
1237 | object.entries@1.1.8:
1238 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==}
1239 | engines: {node: '>= 0.4'}
1240 |
1241 | object.fromentries@2.0.8:
1242 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
1243 | engines: {node: '>= 0.4'}
1244 |
1245 | object.values@1.2.0:
1246 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
1247 | engines: {node: '>= 0.4'}
1248 |
1249 | optionator@0.9.4:
1250 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
1251 | engines: {node: '>= 0.8.0'}
1252 |
1253 | p-limit@3.1.0:
1254 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
1255 | engines: {node: '>=10'}
1256 |
1257 | p-locate@5.0.0:
1258 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
1259 | engines: {node: '>=10'}
1260 |
1261 | package-json-from-dist@1.0.0:
1262 | resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
1263 |
1264 | parent-module@1.0.1:
1265 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1266 | engines: {node: '>=6'}
1267 |
1268 | path-exists@4.0.0:
1269 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
1270 | engines: {node: '>=8'}
1271 |
1272 | path-key@3.1.1:
1273 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
1274 | engines: {node: '>=8'}
1275 |
1276 | path-parse@1.0.7:
1277 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1278 |
1279 | path-scurry@1.11.1:
1280 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
1281 | engines: {node: '>=16 || 14 >=14.18'}
1282 |
1283 | picocolors@1.1.0:
1284 | resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
1285 |
1286 | picomatch@2.3.1:
1287 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1288 | engines: {node: '>=8.6'}
1289 |
1290 | pify@2.3.0:
1291 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
1292 | engines: {node: '>=0.10.0'}
1293 |
1294 | pirates@4.0.6:
1295 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
1296 | engines: {node: '>= 6'}
1297 |
1298 | possible-typed-array-names@1.0.0:
1299 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
1300 | engines: {node: '>= 0.4'}
1301 |
1302 | postcss-import@15.1.0:
1303 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
1304 | engines: {node: '>=14.0.0'}
1305 | peerDependencies:
1306 | postcss: ^8.0.0
1307 |
1308 | postcss-js@4.0.1:
1309 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
1310 | engines: {node: ^12 || ^14 || >= 16}
1311 | peerDependencies:
1312 | postcss: ^8.4.21
1313 |
1314 | postcss-load-config@4.0.2:
1315 | resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
1316 | engines: {node: '>= 14'}
1317 | peerDependencies:
1318 | postcss: '>=8.0.9'
1319 | ts-node: '>=9.0.0'
1320 | peerDependenciesMeta:
1321 | postcss:
1322 | optional: true
1323 | ts-node:
1324 | optional: true
1325 |
1326 | postcss-nested@6.2.0:
1327 | resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
1328 | engines: {node: '>=12.0'}
1329 | peerDependencies:
1330 | postcss: ^8.2.14
1331 |
1332 | postcss-selector-parser@6.1.2:
1333 | resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
1334 | engines: {node: '>=4'}
1335 |
1336 | postcss-value-parser@4.2.0:
1337 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1338 |
1339 | postcss@8.4.47:
1340 | resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
1341 | engines: {node: ^10 || ^12 || >=14}
1342 |
1343 | prelude-ls@1.2.1:
1344 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
1345 | engines: {node: '>= 0.8.0'}
1346 |
1347 | prop-types@15.8.1:
1348 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
1349 |
1350 | punycode@2.3.1:
1351 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
1352 | engines: {node: '>=6'}
1353 |
1354 | queue-microtask@1.2.3:
1355 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1356 |
1357 | react-dom@18.3.1:
1358 | resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
1359 | peerDependencies:
1360 | react: ^18.3.1
1361 |
1362 | react-is@16.13.1:
1363 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
1364 |
1365 | react-refresh@0.14.2:
1366 | resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
1367 | engines: {node: '>=0.10.0'}
1368 |
1369 | react@18.3.1:
1370 | resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
1371 | engines: {node: '>=0.10.0'}
1372 |
1373 | read-cache@1.0.0:
1374 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
1375 |
1376 | readdirp@3.6.0:
1377 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
1378 | engines: {node: '>=8.10.0'}
1379 |
1380 | reflect.getprototypeof@1.0.6:
1381 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
1382 | engines: {node: '>= 0.4'}
1383 |
1384 | regexp.prototype.flags@1.5.2:
1385 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
1386 | engines: {node: '>= 0.4'}
1387 |
1388 | resolve-from@4.0.0:
1389 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1390 | engines: {node: '>=4'}
1391 |
1392 | resolve@1.22.8:
1393 | resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
1394 | hasBin: true
1395 |
1396 | resolve@2.0.0-next.5:
1397 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
1398 | hasBin: true
1399 |
1400 | reusify@1.0.4:
1401 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
1402 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1403 |
1404 | rollup@4.22.4:
1405 | resolution: {integrity: sha512-vD8HJ5raRcWOyymsR6Z3o6+RzfEPCnVLMFJ6vRslO1jt4LO6dUo5Qnpg7y4RkZFM2DMe3WUirkI5c16onjrc6A==}
1406 | engines: {node: '>=18.0.0', npm: '>=8.0.0'}
1407 | hasBin: true
1408 |
1409 | run-parallel@1.2.0:
1410 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1411 |
1412 | safe-array-concat@1.1.2:
1413 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
1414 | engines: {node: '>=0.4'}
1415 |
1416 | safe-regex-test@1.0.3:
1417 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
1418 | engines: {node: '>= 0.4'}
1419 |
1420 | scheduler@0.23.2:
1421 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
1422 |
1423 | semver@6.3.1:
1424 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
1425 | hasBin: true
1426 |
1427 | set-function-length@1.2.2:
1428 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
1429 | engines: {node: '>= 0.4'}
1430 |
1431 | set-function-name@2.0.2:
1432 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
1433 | engines: {node: '>= 0.4'}
1434 |
1435 | shebang-command@2.0.0:
1436 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1437 | engines: {node: '>=8'}
1438 |
1439 | shebang-regex@3.0.0:
1440 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1441 | engines: {node: '>=8'}
1442 |
1443 | side-channel@1.0.6:
1444 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
1445 | engines: {node: '>= 0.4'}
1446 |
1447 | signal-exit@4.1.0:
1448 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
1449 | engines: {node: '>=14'}
1450 |
1451 | source-map-js@1.2.1:
1452 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1453 | engines: {node: '>=0.10.0'}
1454 |
1455 | string-width@4.2.3:
1456 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
1457 | engines: {node: '>=8'}
1458 |
1459 | string-width@5.1.2:
1460 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
1461 | engines: {node: '>=12'}
1462 |
1463 | string.prototype.matchall@4.0.11:
1464 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
1465 | engines: {node: '>= 0.4'}
1466 |
1467 | string.prototype.repeat@1.0.0:
1468 | resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==}
1469 |
1470 | string.prototype.trim@1.2.9:
1471 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
1472 | engines: {node: '>= 0.4'}
1473 |
1474 | string.prototype.trimend@1.0.8:
1475 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
1476 |
1477 | string.prototype.trimstart@1.0.8:
1478 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
1479 | engines: {node: '>= 0.4'}
1480 |
1481 | strip-ansi@6.0.1:
1482 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
1483 | engines: {node: '>=8'}
1484 |
1485 | strip-ansi@7.1.0:
1486 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
1487 | engines: {node: '>=12'}
1488 |
1489 | strip-json-comments@3.1.1:
1490 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
1491 | engines: {node: '>=8'}
1492 |
1493 | sucrase@3.35.0:
1494 | resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
1495 | engines: {node: '>=16 || 14 >=14.17'}
1496 | hasBin: true
1497 |
1498 | supports-color@5.5.0:
1499 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
1500 | engines: {node: '>=4'}
1501 |
1502 | supports-color@7.2.0:
1503 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1504 | engines: {node: '>=8'}
1505 |
1506 | supports-preserve-symlinks-flag@1.0.0:
1507 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1508 | engines: {node: '>= 0.4'}
1509 |
1510 | tailwindcss@3.4.12:
1511 | resolution: {integrity: sha512-Htf/gHj2+soPb9UayUNci/Ja3d8pTmu9ONTfh4QY8r3MATTZOzmv6UYWF7ZwikEIC8okpfqmGqrmDehua8mF8w==}
1512 | engines: {node: '>=14.0.0'}
1513 | hasBin: true
1514 |
1515 | text-table@0.2.0:
1516 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
1517 |
1518 | thenify-all@1.6.0:
1519 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
1520 | engines: {node: '>=0.8'}
1521 |
1522 | thenify@3.3.1:
1523 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1524 |
1525 | to-fast-properties@2.0.0:
1526 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
1527 | engines: {node: '>=4'}
1528 |
1529 | to-regex-range@5.0.1:
1530 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1531 | engines: {node: '>=8.0'}
1532 |
1533 | ts-interface-checker@0.1.13:
1534 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1535 |
1536 | tslib@2.7.0:
1537 | resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
1538 |
1539 | type-check@0.4.0:
1540 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
1541 | engines: {node: '>= 0.8.0'}
1542 |
1543 | typed-array-buffer@1.0.2:
1544 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
1545 | engines: {node: '>= 0.4'}
1546 |
1547 | typed-array-byte-length@1.0.1:
1548 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
1549 | engines: {node: '>= 0.4'}
1550 |
1551 | typed-array-byte-offset@1.0.2:
1552 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
1553 | engines: {node: '>= 0.4'}
1554 |
1555 | typed-array-length@1.0.6:
1556 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
1557 | engines: {node: '>= 0.4'}
1558 |
1559 | unbox-primitive@1.0.2:
1560 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
1561 |
1562 | update-browserslist-db@1.1.0:
1563 | resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
1564 | hasBin: true
1565 | peerDependencies:
1566 | browserslist: '>= 4.21.0'
1567 |
1568 | uri-js@4.4.1:
1569 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1570 |
1571 | util-deprecate@1.0.2:
1572 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1573 |
1574 | vite@5.4.7:
1575 | resolution: {integrity: sha512-5l2zxqMEPVENgvzTuBpHer2awaetimj2BGkhBPdnwKbPNOlHsODU+oiazEZzLK7KhAnOrO+XGYJYn4ZlUhDtDQ==}
1576 | engines: {node: ^18.0.0 || >=20.0.0}
1577 | hasBin: true
1578 | peerDependencies:
1579 | '@types/node': ^18.0.0 || >=20.0.0
1580 | less: '*'
1581 | lightningcss: ^1.21.0
1582 | sass: '*'
1583 | sass-embedded: '*'
1584 | stylus: '*'
1585 | sugarss: '*'
1586 | terser: ^5.4.0
1587 | peerDependenciesMeta:
1588 | '@types/node':
1589 | optional: true
1590 | less:
1591 | optional: true
1592 | lightningcss:
1593 | optional: true
1594 | sass:
1595 | optional: true
1596 | sass-embedded:
1597 | optional: true
1598 | stylus:
1599 | optional: true
1600 | sugarss:
1601 | optional: true
1602 | terser:
1603 | optional: true
1604 |
1605 | which-boxed-primitive@1.0.2:
1606 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
1607 |
1608 | which-builtin-type@1.1.4:
1609 | resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==}
1610 | engines: {node: '>= 0.4'}
1611 |
1612 | which-collection@1.0.2:
1613 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
1614 | engines: {node: '>= 0.4'}
1615 |
1616 | which-typed-array@1.1.15:
1617 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
1618 | engines: {node: '>= 0.4'}
1619 |
1620 | which@2.0.2:
1621 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1622 | engines: {node: '>= 8'}
1623 | hasBin: true
1624 |
1625 | word-wrap@1.2.5:
1626 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
1627 | engines: {node: '>=0.10.0'}
1628 |
1629 | wrap-ansi@7.0.0:
1630 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
1631 | engines: {node: '>=10'}
1632 |
1633 | wrap-ansi@8.1.0:
1634 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
1635 | engines: {node: '>=12'}
1636 |
1637 | yallist@3.1.1:
1638 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
1639 |
1640 | yaml@2.5.1:
1641 | resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
1642 | engines: {node: '>= 14'}
1643 | hasBin: true
1644 |
1645 | yocto-queue@0.1.0:
1646 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
1647 | engines: {node: '>=10'}
1648 |
1649 | snapshots:
1650 |
1651 | '@alloc/quick-lru@5.2.0': {}
1652 |
1653 | '@ampproject/remapping@2.3.0':
1654 | dependencies:
1655 | '@jridgewell/gen-mapping': 0.3.5
1656 | '@jridgewell/trace-mapping': 0.3.25
1657 |
1658 | '@babel/code-frame@7.24.7':
1659 | dependencies:
1660 | '@babel/highlight': 7.24.7
1661 | picocolors: 1.1.0
1662 |
1663 | '@babel/compat-data@7.25.4': {}
1664 |
1665 | '@babel/core@7.25.2':
1666 | dependencies:
1667 | '@ampproject/remapping': 2.3.0
1668 | '@babel/code-frame': 7.24.7
1669 | '@babel/generator': 7.25.6
1670 | '@babel/helper-compilation-targets': 7.25.2
1671 | '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
1672 | '@babel/helpers': 7.25.6
1673 | '@babel/parser': 7.25.6
1674 | '@babel/template': 7.25.0
1675 | '@babel/traverse': 7.25.6
1676 | '@babel/types': 7.25.6
1677 | convert-source-map: 2.0.0
1678 | debug: 4.3.7
1679 | gensync: 1.0.0-beta.2
1680 | json5: 2.2.3
1681 | semver: 6.3.1
1682 | transitivePeerDependencies:
1683 | - supports-color
1684 |
1685 | '@babel/generator@7.25.6':
1686 | dependencies:
1687 | '@babel/types': 7.25.6
1688 | '@jridgewell/gen-mapping': 0.3.5
1689 | '@jridgewell/trace-mapping': 0.3.25
1690 | jsesc: 2.5.2
1691 |
1692 | '@babel/helper-compilation-targets@7.25.2':
1693 | dependencies:
1694 | '@babel/compat-data': 7.25.4
1695 | '@babel/helper-validator-option': 7.24.8
1696 | browserslist: 4.23.3
1697 | lru-cache: 5.1.1
1698 | semver: 6.3.1
1699 |
1700 | '@babel/helper-module-imports@7.24.7':
1701 | dependencies:
1702 | '@babel/traverse': 7.25.6
1703 | '@babel/types': 7.25.6
1704 | transitivePeerDependencies:
1705 | - supports-color
1706 |
1707 | '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
1708 | dependencies:
1709 | '@babel/core': 7.25.2
1710 | '@babel/helper-module-imports': 7.24.7
1711 | '@babel/helper-simple-access': 7.24.7
1712 | '@babel/helper-validator-identifier': 7.24.7
1713 | '@babel/traverse': 7.25.6
1714 | transitivePeerDependencies:
1715 | - supports-color
1716 |
1717 | '@babel/helper-plugin-utils@7.24.8': {}
1718 |
1719 | '@babel/helper-simple-access@7.24.7':
1720 | dependencies:
1721 | '@babel/traverse': 7.25.6
1722 | '@babel/types': 7.25.6
1723 | transitivePeerDependencies:
1724 | - supports-color
1725 |
1726 | '@babel/helper-string-parser@7.24.8': {}
1727 |
1728 | '@babel/helper-validator-identifier@7.24.7': {}
1729 |
1730 | '@babel/helper-validator-option@7.24.8': {}
1731 |
1732 | '@babel/helpers@7.25.6':
1733 | dependencies:
1734 | '@babel/template': 7.25.0
1735 | '@babel/types': 7.25.6
1736 |
1737 | '@babel/highlight@7.24.7':
1738 | dependencies:
1739 | '@babel/helper-validator-identifier': 7.24.7
1740 | chalk: 2.4.2
1741 | js-tokens: 4.0.0
1742 | picocolors: 1.1.0
1743 |
1744 | '@babel/parser@7.25.6':
1745 | dependencies:
1746 | '@babel/types': 7.25.6
1747 |
1748 | '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.2)':
1749 | dependencies:
1750 | '@babel/core': 7.25.2
1751 | '@babel/helper-plugin-utils': 7.24.8
1752 |
1753 | '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.2)':
1754 | dependencies:
1755 | '@babel/core': 7.25.2
1756 | '@babel/helper-plugin-utils': 7.24.8
1757 |
1758 | '@babel/template@7.25.0':
1759 | dependencies:
1760 | '@babel/code-frame': 7.24.7
1761 | '@babel/parser': 7.25.6
1762 | '@babel/types': 7.25.6
1763 |
1764 | '@babel/traverse@7.25.6':
1765 | dependencies:
1766 | '@babel/code-frame': 7.24.7
1767 | '@babel/generator': 7.25.6
1768 | '@babel/parser': 7.25.6
1769 | '@babel/template': 7.25.0
1770 | '@babel/types': 7.25.6
1771 | debug: 4.3.7
1772 | globals: 11.12.0
1773 | transitivePeerDependencies:
1774 | - supports-color
1775 |
1776 | '@babel/types@7.25.6':
1777 | dependencies:
1778 | '@babel/helper-string-parser': 7.24.8
1779 | '@babel/helper-validator-identifier': 7.24.7
1780 | to-fast-properties: 2.0.0
1781 |
1782 | '@esbuild/aix-ppc64@0.21.5':
1783 | optional: true
1784 |
1785 | '@esbuild/android-arm64@0.21.5':
1786 | optional: true
1787 |
1788 | '@esbuild/android-arm@0.21.5':
1789 | optional: true
1790 |
1791 | '@esbuild/android-x64@0.21.5':
1792 | optional: true
1793 |
1794 | '@esbuild/darwin-arm64@0.21.5':
1795 | optional: true
1796 |
1797 | '@esbuild/darwin-x64@0.21.5':
1798 | optional: true
1799 |
1800 | '@esbuild/freebsd-arm64@0.21.5':
1801 | optional: true
1802 |
1803 | '@esbuild/freebsd-x64@0.21.5':
1804 | optional: true
1805 |
1806 | '@esbuild/linux-arm64@0.21.5':
1807 | optional: true
1808 |
1809 | '@esbuild/linux-arm@0.21.5':
1810 | optional: true
1811 |
1812 | '@esbuild/linux-ia32@0.21.5':
1813 | optional: true
1814 |
1815 | '@esbuild/linux-loong64@0.21.5':
1816 | optional: true
1817 |
1818 | '@esbuild/linux-mips64el@0.21.5':
1819 | optional: true
1820 |
1821 | '@esbuild/linux-ppc64@0.21.5':
1822 | optional: true
1823 |
1824 | '@esbuild/linux-riscv64@0.21.5':
1825 | optional: true
1826 |
1827 | '@esbuild/linux-s390x@0.21.5':
1828 | optional: true
1829 |
1830 | '@esbuild/linux-x64@0.21.5':
1831 | optional: true
1832 |
1833 | '@esbuild/netbsd-x64@0.21.5':
1834 | optional: true
1835 |
1836 | '@esbuild/openbsd-x64@0.21.5':
1837 | optional: true
1838 |
1839 | '@esbuild/sunos-x64@0.21.5':
1840 | optional: true
1841 |
1842 | '@esbuild/win32-arm64@0.21.5':
1843 | optional: true
1844 |
1845 | '@esbuild/win32-ia32@0.21.5':
1846 | optional: true
1847 |
1848 | '@esbuild/win32-x64@0.21.5':
1849 | optional: true
1850 |
1851 | '@eslint-community/eslint-utils@4.4.0(eslint@9.11.0(jiti@1.21.6))':
1852 | dependencies:
1853 | eslint: 9.11.0(jiti@1.21.6)
1854 | eslint-visitor-keys: 3.4.3
1855 |
1856 | '@eslint-community/regexpp@4.11.1': {}
1857 |
1858 | '@eslint/config-array@0.18.0':
1859 | dependencies:
1860 | '@eslint/object-schema': 2.1.4
1861 | debug: 4.3.7
1862 | minimatch: 3.1.2
1863 | transitivePeerDependencies:
1864 | - supports-color
1865 |
1866 | '@eslint/eslintrc@3.1.0':
1867 | dependencies:
1868 | ajv: 6.12.6
1869 | debug: 4.3.7
1870 | espree: 10.1.0
1871 | globals: 14.0.0
1872 | ignore: 5.3.2
1873 | import-fresh: 3.3.0
1874 | js-yaml: 4.1.0
1875 | minimatch: 3.1.2
1876 | strip-json-comments: 3.1.1
1877 | transitivePeerDependencies:
1878 | - supports-color
1879 |
1880 | '@eslint/js@9.11.0': {}
1881 |
1882 | '@eslint/object-schema@2.1.4': {}
1883 |
1884 | '@eslint/plugin-kit@0.2.0':
1885 | dependencies:
1886 | levn: 0.4.1
1887 |
1888 | '@humanwhocodes/module-importer@1.0.1': {}
1889 |
1890 | '@humanwhocodes/retry@0.3.0': {}
1891 |
1892 | '@isaacs/cliui@8.0.2':
1893 | dependencies:
1894 | string-width: 5.1.2
1895 | string-width-cjs: string-width@4.2.3
1896 | strip-ansi: 7.1.0
1897 | strip-ansi-cjs: strip-ansi@6.0.1
1898 | wrap-ansi: 8.1.0
1899 | wrap-ansi-cjs: wrap-ansi@7.0.0
1900 |
1901 | '@jridgewell/gen-mapping@0.3.5':
1902 | dependencies:
1903 | '@jridgewell/set-array': 1.2.1
1904 | '@jridgewell/sourcemap-codec': 1.5.0
1905 | '@jridgewell/trace-mapping': 0.3.25
1906 |
1907 | '@jridgewell/resolve-uri@3.1.2': {}
1908 |
1909 | '@jridgewell/set-array@1.2.1': {}
1910 |
1911 | '@jridgewell/sourcemap-codec@1.5.0': {}
1912 |
1913 | '@jridgewell/trace-mapping@0.3.25':
1914 | dependencies:
1915 | '@jridgewell/resolve-uri': 3.1.2
1916 | '@jridgewell/sourcemap-codec': 1.5.0
1917 |
1918 | '@nodelib/fs.scandir@2.1.5':
1919 | dependencies:
1920 | '@nodelib/fs.stat': 2.0.5
1921 | run-parallel: 1.2.0
1922 |
1923 | '@nodelib/fs.stat@2.0.5': {}
1924 |
1925 | '@nodelib/fs.walk@1.2.8':
1926 | dependencies:
1927 | '@nodelib/fs.scandir': 2.1.5
1928 | fastq: 1.17.1
1929 |
1930 | '@pkgjs/parseargs@0.11.0':
1931 | optional: true
1932 |
1933 | '@rollup/rollup-android-arm-eabi@4.22.4':
1934 | optional: true
1935 |
1936 | '@rollup/rollup-android-arm64@4.22.4':
1937 | optional: true
1938 |
1939 | '@rollup/rollup-darwin-arm64@4.22.4':
1940 | optional: true
1941 |
1942 | '@rollup/rollup-darwin-x64@4.22.4':
1943 | optional: true
1944 |
1945 | '@rollup/rollup-linux-arm-gnueabihf@4.22.4':
1946 | optional: true
1947 |
1948 | '@rollup/rollup-linux-arm-musleabihf@4.22.4':
1949 | optional: true
1950 |
1951 | '@rollup/rollup-linux-arm64-gnu@4.22.4':
1952 | optional: true
1953 |
1954 | '@rollup/rollup-linux-arm64-musl@4.22.4':
1955 | optional: true
1956 |
1957 | '@rollup/rollup-linux-powerpc64le-gnu@4.22.4':
1958 | optional: true
1959 |
1960 | '@rollup/rollup-linux-riscv64-gnu@4.22.4':
1961 | optional: true
1962 |
1963 | '@rollup/rollup-linux-s390x-gnu@4.22.4':
1964 | optional: true
1965 |
1966 | '@rollup/rollup-linux-x64-gnu@4.22.4':
1967 | optional: true
1968 |
1969 | '@rollup/rollup-linux-x64-musl@4.22.4':
1970 | optional: true
1971 |
1972 | '@rollup/rollup-win32-arm64-msvc@4.22.4':
1973 | optional: true
1974 |
1975 | '@rollup/rollup-win32-ia32-msvc@4.22.4':
1976 | optional: true
1977 |
1978 | '@rollup/rollup-win32-x64-msvc@4.22.4':
1979 | optional: true
1980 |
1981 | '@types/babel__core@7.20.5':
1982 | dependencies:
1983 | '@babel/parser': 7.25.6
1984 | '@babel/types': 7.25.6
1985 | '@types/babel__generator': 7.6.8
1986 | '@types/babel__template': 7.4.4
1987 | '@types/babel__traverse': 7.20.6
1988 |
1989 | '@types/babel__generator@7.6.8':
1990 | dependencies:
1991 | '@babel/types': 7.25.6
1992 |
1993 | '@types/babel__template@7.4.4':
1994 | dependencies:
1995 | '@babel/parser': 7.25.6
1996 | '@babel/types': 7.25.6
1997 |
1998 | '@types/babel__traverse@7.20.6':
1999 | dependencies:
2000 | '@babel/types': 7.25.6
2001 |
2002 | '@types/estree@1.0.5': {}
2003 |
2004 | '@types/prop-types@15.7.13': {}
2005 |
2006 | '@types/react-dom@18.3.0':
2007 | dependencies:
2008 | '@types/react': 18.3.8
2009 |
2010 | '@types/react@18.3.8':
2011 | dependencies:
2012 | '@types/prop-types': 15.7.13
2013 | csstype: 3.1.3
2014 |
2015 | '@vitejs/plugin-react@4.3.1(vite@5.4.7)':
2016 | dependencies:
2017 | '@babel/core': 7.25.2
2018 | '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2)
2019 | '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2)
2020 | '@types/babel__core': 7.20.5
2021 | react-refresh: 0.14.2
2022 | vite: 5.4.7
2023 | transitivePeerDependencies:
2024 | - supports-color
2025 |
2026 | acorn-jsx@5.3.2(acorn@8.12.1):
2027 | dependencies:
2028 | acorn: 8.12.1
2029 |
2030 | acorn@8.12.1: {}
2031 |
2032 | ajv@6.12.6:
2033 | dependencies:
2034 | fast-deep-equal: 3.1.3
2035 | fast-json-stable-stringify: 2.1.0
2036 | json-schema-traverse: 0.4.1
2037 | uri-js: 4.4.1
2038 |
2039 | ansi-regex@5.0.1: {}
2040 |
2041 | ansi-regex@6.1.0: {}
2042 |
2043 | ansi-styles@3.2.1:
2044 | dependencies:
2045 | color-convert: 1.9.3
2046 |
2047 | ansi-styles@4.3.0:
2048 | dependencies:
2049 | color-convert: 2.0.1
2050 |
2051 | ansi-styles@6.2.1: {}
2052 |
2053 | any-promise@1.3.0: {}
2054 |
2055 | anymatch@3.1.3:
2056 | dependencies:
2057 | normalize-path: 3.0.0
2058 | picomatch: 2.3.1
2059 |
2060 | arg@5.0.2: {}
2061 |
2062 | argparse@2.0.1: {}
2063 |
2064 | array-buffer-byte-length@1.0.1:
2065 | dependencies:
2066 | call-bind: 1.0.7
2067 | is-array-buffer: 3.0.4
2068 |
2069 | array-includes@3.1.8:
2070 | dependencies:
2071 | call-bind: 1.0.7
2072 | define-properties: 1.2.1
2073 | es-abstract: 1.23.3
2074 | es-object-atoms: 1.0.0
2075 | get-intrinsic: 1.2.4
2076 | is-string: 1.0.7
2077 |
2078 | array.prototype.findlast@1.2.5:
2079 | dependencies:
2080 | call-bind: 1.0.7
2081 | define-properties: 1.2.1
2082 | es-abstract: 1.23.3
2083 | es-errors: 1.3.0
2084 | es-object-atoms: 1.0.0
2085 | es-shim-unscopables: 1.0.2
2086 |
2087 | array.prototype.flat@1.3.2:
2088 | dependencies:
2089 | call-bind: 1.0.7
2090 | define-properties: 1.2.1
2091 | es-abstract: 1.23.3
2092 | es-shim-unscopables: 1.0.2
2093 |
2094 | array.prototype.flatmap@1.3.2:
2095 | dependencies:
2096 | call-bind: 1.0.7
2097 | define-properties: 1.2.1
2098 | es-abstract: 1.23.3
2099 | es-shim-unscopables: 1.0.2
2100 |
2101 | array.prototype.tosorted@1.1.4:
2102 | dependencies:
2103 | call-bind: 1.0.7
2104 | define-properties: 1.2.1
2105 | es-abstract: 1.23.3
2106 | es-errors: 1.3.0
2107 | es-shim-unscopables: 1.0.2
2108 |
2109 | arraybuffer.prototype.slice@1.0.3:
2110 | dependencies:
2111 | array-buffer-byte-length: 1.0.1
2112 | call-bind: 1.0.7
2113 | define-properties: 1.2.1
2114 | es-abstract: 1.23.3
2115 | es-errors: 1.3.0
2116 | get-intrinsic: 1.2.4
2117 | is-array-buffer: 3.0.4
2118 | is-shared-array-buffer: 1.0.3
2119 |
2120 | autoprefixer@10.4.20(postcss@8.4.47):
2121 | dependencies:
2122 | browserslist: 4.23.3
2123 | caniuse-lite: 1.0.30001662
2124 | fraction.js: 4.3.7
2125 | normalize-range: 0.1.2
2126 | picocolors: 1.1.0
2127 | postcss: 8.4.47
2128 | postcss-value-parser: 4.2.0
2129 |
2130 | available-typed-arrays@1.0.7:
2131 | dependencies:
2132 | possible-typed-array-names: 1.0.0
2133 |
2134 | balanced-match@1.0.2: {}
2135 |
2136 | binary-extensions@2.3.0: {}
2137 |
2138 | brace-expansion@1.1.11:
2139 | dependencies:
2140 | balanced-match: 1.0.2
2141 | concat-map: 0.0.1
2142 |
2143 | brace-expansion@2.0.1:
2144 | dependencies:
2145 | balanced-match: 1.0.2
2146 |
2147 | braces@3.0.3:
2148 | dependencies:
2149 | fill-range: 7.1.1
2150 |
2151 | browserslist@4.23.3:
2152 | dependencies:
2153 | caniuse-lite: 1.0.30001662
2154 | electron-to-chromium: 1.5.27
2155 | node-releases: 2.0.18
2156 | update-browserslist-db: 1.1.0(browserslist@4.23.3)
2157 |
2158 | call-bind@1.0.7:
2159 | dependencies:
2160 | es-define-property: 1.0.0
2161 | es-errors: 1.3.0
2162 | function-bind: 1.1.2
2163 | get-intrinsic: 1.2.4
2164 | set-function-length: 1.2.2
2165 |
2166 | callsites@3.1.0: {}
2167 |
2168 | camelcase-css@2.0.1: {}
2169 |
2170 | caniuse-lite@1.0.30001662: {}
2171 |
2172 | chalk@2.4.2:
2173 | dependencies:
2174 | ansi-styles: 3.2.1
2175 | escape-string-regexp: 1.0.5
2176 | supports-color: 5.5.0
2177 |
2178 | chalk@4.1.2:
2179 | dependencies:
2180 | ansi-styles: 4.3.0
2181 | supports-color: 7.2.0
2182 |
2183 | chokidar@3.6.0:
2184 | dependencies:
2185 | anymatch: 3.1.3
2186 | braces: 3.0.3
2187 | glob-parent: 5.1.2
2188 | is-binary-path: 2.1.0
2189 | is-glob: 4.0.3
2190 | normalize-path: 3.0.0
2191 | readdirp: 3.6.0
2192 | optionalDependencies:
2193 | fsevents: 2.3.3
2194 |
2195 | color-convert@1.9.3:
2196 | dependencies:
2197 | color-name: 1.1.3
2198 |
2199 | color-convert@2.0.1:
2200 | dependencies:
2201 | color-name: 1.1.4
2202 |
2203 | color-name@1.1.3: {}
2204 |
2205 | color-name@1.1.4: {}
2206 |
2207 | commander@4.1.1: {}
2208 |
2209 | concat-map@0.0.1: {}
2210 |
2211 | convert-source-map@2.0.0: {}
2212 |
2213 | cross-spawn@7.0.3:
2214 | dependencies:
2215 | path-key: 3.1.1
2216 | shebang-command: 2.0.0
2217 | which: 2.0.2
2218 |
2219 | cssesc@3.0.0: {}
2220 |
2221 | csstype@3.1.3: {}
2222 |
2223 | data-view-buffer@1.0.1:
2224 | dependencies:
2225 | call-bind: 1.0.7
2226 | es-errors: 1.3.0
2227 | is-data-view: 1.0.1
2228 |
2229 | data-view-byte-length@1.0.1:
2230 | dependencies:
2231 | call-bind: 1.0.7
2232 | es-errors: 1.3.0
2233 | is-data-view: 1.0.1
2234 |
2235 | data-view-byte-offset@1.0.0:
2236 | dependencies:
2237 | call-bind: 1.0.7
2238 | es-errors: 1.3.0
2239 | is-data-view: 1.0.1
2240 |
2241 | debug@4.3.7:
2242 | dependencies:
2243 | ms: 2.1.3
2244 |
2245 | deep-is@0.1.4: {}
2246 |
2247 | define-data-property@1.1.4:
2248 | dependencies:
2249 | es-define-property: 1.0.0
2250 | es-errors: 1.3.0
2251 | gopd: 1.0.1
2252 |
2253 | define-properties@1.2.1:
2254 | dependencies:
2255 | define-data-property: 1.1.4
2256 | has-property-descriptors: 1.0.2
2257 | object-keys: 1.1.1
2258 |
2259 | didyoumean@1.2.2: {}
2260 |
2261 | dlv@1.1.3: {}
2262 |
2263 | doctrine@2.1.0:
2264 | dependencies:
2265 | esutils: 2.0.3
2266 |
2267 | eastasianwidth@0.2.0: {}
2268 |
2269 | electron-to-chromium@1.5.27: {}
2270 |
2271 | emoji-regex@8.0.0: {}
2272 |
2273 | emoji-regex@9.2.2: {}
2274 |
2275 | es-abstract@1.23.3:
2276 | dependencies:
2277 | array-buffer-byte-length: 1.0.1
2278 | arraybuffer.prototype.slice: 1.0.3
2279 | available-typed-arrays: 1.0.7
2280 | call-bind: 1.0.7
2281 | data-view-buffer: 1.0.1
2282 | data-view-byte-length: 1.0.1
2283 | data-view-byte-offset: 1.0.0
2284 | es-define-property: 1.0.0
2285 | es-errors: 1.3.0
2286 | es-object-atoms: 1.0.0
2287 | es-set-tostringtag: 2.0.3
2288 | es-to-primitive: 1.2.1
2289 | function.prototype.name: 1.1.6
2290 | get-intrinsic: 1.2.4
2291 | get-symbol-description: 1.0.2
2292 | globalthis: 1.0.4
2293 | gopd: 1.0.1
2294 | has-property-descriptors: 1.0.2
2295 | has-proto: 1.0.3
2296 | has-symbols: 1.0.3
2297 | hasown: 2.0.2
2298 | internal-slot: 1.0.7
2299 | is-array-buffer: 3.0.4
2300 | is-callable: 1.2.7
2301 | is-data-view: 1.0.1
2302 | is-negative-zero: 2.0.3
2303 | is-regex: 1.1.4
2304 | is-shared-array-buffer: 1.0.3
2305 | is-string: 1.0.7
2306 | is-typed-array: 1.1.13
2307 | is-weakref: 1.0.2
2308 | object-inspect: 1.13.2
2309 | object-keys: 1.1.1
2310 | object.assign: 4.1.5
2311 | regexp.prototype.flags: 1.5.2
2312 | safe-array-concat: 1.1.2
2313 | safe-regex-test: 1.0.3
2314 | string.prototype.trim: 1.2.9
2315 | string.prototype.trimend: 1.0.8
2316 | string.prototype.trimstart: 1.0.8
2317 | typed-array-buffer: 1.0.2
2318 | typed-array-byte-length: 1.0.1
2319 | typed-array-byte-offset: 1.0.2
2320 | typed-array-length: 1.0.6
2321 | unbox-primitive: 1.0.2
2322 | which-typed-array: 1.1.15
2323 |
2324 | es-define-property@1.0.0:
2325 | dependencies:
2326 | get-intrinsic: 1.2.4
2327 |
2328 | es-errors@1.3.0: {}
2329 |
2330 | es-iterator-helpers@1.0.19:
2331 | dependencies:
2332 | call-bind: 1.0.7
2333 | define-properties: 1.2.1
2334 | es-abstract: 1.23.3
2335 | es-errors: 1.3.0
2336 | es-set-tostringtag: 2.0.3
2337 | function-bind: 1.1.2
2338 | get-intrinsic: 1.2.4
2339 | globalthis: 1.0.4
2340 | has-property-descriptors: 1.0.2
2341 | has-proto: 1.0.3
2342 | has-symbols: 1.0.3
2343 | internal-slot: 1.0.7
2344 | iterator.prototype: 1.1.2
2345 | safe-array-concat: 1.1.2
2346 |
2347 | es-object-atoms@1.0.0:
2348 | dependencies:
2349 | es-errors: 1.3.0
2350 |
2351 | es-set-tostringtag@2.0.3:
2352 | dependencies:
2353 | get-intrinsic: 1.2.4
2354 | has-tostringtag: 1.0.2
2355 | hasown: 2.0.2
2356 |
2357 | es-shim-unscopables@1.0.2:
2358 | dependencies:
2359 | hasown: 2.0.2
2360 |
2361 | es-to-primitive@1.2.1:
2362 | dependencies:
2363 | is-callable: 1.2.7
2364 | is-date-object: 1.0.5
2365 | is-symbol: 1.0.4
2366 |
2367 | esbuild@0.21.5:
2368 | optionalDependencies:
2369 | '@esbuild/aix-ppc64': 0.21.5
2370 | '@esbuild/android-arm': 0.21.5
2371 | '@esbuild/android-arm64': 0.21.5
2372 | '@esbuild/android-x64': 0.21.5
2373 | '@esbuild/darwin-arm64': 0.21.5
2374 | '@esbuild/darwin-x64': 0.21.5
2375 | '@esbuild/freebsd-arm64': 0.21.5
2376 | '@esbuild/freebsd-x64': 0.21.5
2377 | '@esbuild/linux-arm': 0.21.5
2378 | '@esbuild/linux-arm64': 0.21.5
2379 | '@esbuild/linux-ia32': 0.21.5
2380 | '@esbuild/linux-loong64': 0.21.5
2381 | '@esbuild/linux-mips64el': 0.21.5
2382 | '@esbuild/linux-ppc64': 0.21.5
2383 | '@esbuild/linux-riscv64': 0.21.5
2384 | '@esbuild/linux-s390x': 0.21.5
2385 | '@esbuild/linux-x64': 0.21.5
2386 | '@esbuild/netbsd-x64': 0.21.5
2387 | '@esbuild/openbsd-x64': 0.21.5
2388 | '@esbuild/sunos-x64': 0.21.5
2389 | '@esbuild/win32-arm64': 0.21.5
2390 | '@esbuild/win32-ia32': 0.21.5
2391 | '@esbuild/win32-x64': 0.21.5
2392 |
2393 | escalade@3.2.0: {}
2394 |
2395 | escape-string-regexp@1.0.5: {}
2396 |
2397 | escape-string-regexp@4.0.0: {}
2398 |
2399 | eslint-plugin-react-hooks@5.1.0-rc-fb9a90fa48-20240614(eslint@9.11.0(jiti@1.21.6)):
2400 | dependencies:
2401 | eslint: 9.11.0(jiti@1.21.6)
2402 |
2403 | eslint-plugin-react-refresh@0.4.12(eslint@9.11.0(jiti@1.21.6)):
2404 | dependencies:
2405 | eslint: 9.11.0(jiti@1.21.6)
2406 |
2407 | eslint-plugin-react@7.36.1(eslint@9.11.0(jiti@1.21.6)):
2408 | dependencies:
2409 | array-includes: 3.1.8
2410 | array.prototype.findlast: 1.2.5
2411 | array.prototype.flatmap: 1.3.2
2412 | array.prototype.tosorted: 1.1.4
2413 | doctrine: 2.1.0
2414 | es-iterator-helpers: 1.0.19
2415 | eslint: 9.11.0(jiti@1.21.6)
2416 | estraverse: 5.3.0
2417 | hasown: 2.0.2
2418 | jsx-ast-utils: 3.3.5
2419 | minimatch: 3.1.2
2420 | object.entries: 1.1.8
2421 | object.fromentries: 2.0.8
2422 | object.values: 1.2.0
2423 | prop-types: 15.8.1
2424 | resolve: 2.0.0-next.5
2425 | semver: 6.3.1
2426 | string.prototype.matchall: 4.0.11
2427 | string.prototype.repeat: 1.0.0
2428 |
2429 | eslint-scope@8.0.2:
2430 | dependencies:
2431 | esrecurse: 4.3.0
2432 | estraverse: 5.3.0
2433 |
2434 | eslint-visitor-keys@3.4.3: {}
2435 |
2436 | eslint-visitor-keys@4.0.0: {}
2437 |
2438 | eslint@9.11.0(jiti@1.21.6):
2439 | dependencies:
2440 | '@eslint-community/eslint-utils': 4.4.0(eslint@9.11.0(jiti@1.21.6))
2441 | '@eslint-community/regexpp': 4.11.1
2442 | '@eslint/config-array': 0.18.0
2443 | '@eslint/eslintrc': 3.1.0
2444 | '@eslint/js': 9.11.0
2445 | '@eslint/plugin-kit': 0.2.0
2446 | '@humanwhocodes/module-importer': 1.0.1
2447 | '@humanwhocodes/retry': 0.3.0
2448 | '@nodelib/fs.walk': 1.2.8
2449 | ajv: 6.12.6
2450 | chalk: 4.1.2
2451 | cross-spawn: 7.0.3
2452 | debug: 4.3.7
2453 | escape-string-regexp: 4.0.0
2454 | eslint-scope: 8.0.2
2455 | eslint-visitor-keys: 4.0.0
2456 | espree: 10.1.0
2457 | esquery: 1.6.0
2458 | esutils: 2.0.3
2459 | fast-deep-equal: 3.1.3
2460 | file-entry-cache: 8.0.0
2461 | find-up: 5.0.0
2462 | glob-parent: 6.0.2
2463 | ignore: 5.3.2
2464 | imurmurhash: 0.1.4
2465 | is-glob: 4.0.3
2466 | is-path-inside: 3.0.3
2467 | json-stable-stringify-without-jsonify: 1.0.1
2468 | lodash.merge: 4.6.2
2469 | minimatch: 3.1.2
2470 | natural-compare: 1.4.0
2471 | optionator: 0.9.4
2472 | strip-ansi: 6.0.1
2473 | text-table: 0.2.0
2474 | optionalDependencies:
2475 | jiti: 1.21.6
2476 | transitivePeerDependencies:
2477 | - supports-color
2478 |
2479 | espree@10.1.0:
2480 | dependencies:
2481 | acorn: 8.12.1
2482 | acorn-jsx: 5.3.2(acorn@8.12.1)
2483 | eslint-visitor-keys: 4.0.0
2484 |
2485 | esquery@1.6.0:
2486 | dependencies:
2487 | estraverse: 5.3.0
2488 |
2489 | esrecurse@4.3.0:
2490 | dependencies:
2491 | estraverse: 5.3.0
2492 |
2493 | estraverse@5.3.0: {}
2494 |
2495 | esutils@2.0.3: {}
2496 |
2497 | fast-deep-equal@3.1.3: {}
2498 |
2499 | fast-glob@3.3.2:
2500 | dependencies:
2501 | '@nodelib/fs.stat': 2.0.5
2502 | '@nodelib/fs.walk': 1.2.8
2503 | glob-parent: 5.1.2
2504 | merge2: 1.4.1
2505 | micromatch: 4.0.8
2506 |
2507 | fast-json-stable-stringify@2.1.0: {}
2508 |
2509 | fast-levenshtein@2.0.6: {}
2510 |
2511 | fastq@1.17.1:
2512 | dependencies:
2513 | reusify: 1.0.4
2514 |
2515 | file-entry-cache@8.0.0:
2516 | dependencies:
2517 | flat-cache: 4.0.1
2518 |
2519 | fill-range@7.1.1:
2520 | dependencies:
2521 | to-regex-range: 5.0.1
2522 |
2523 | find-up@5.0.0:
2524 | dependencies:
2525 | locate-path: 6.0.0
2526 | path-exists: 4.0.0
2527 |
2528 | flat-cache@4.0.1:
2529 | dependencies:
2530 | flatted: 3.3.1
2531 | keyv: 4.5.4
2532 |
2533 | flatted@3.3.1: {}
2534 |
2535 | for-each@0.3.3:
2536 | dependencies:
2537 | is-callable: 1.2.7
2538 |
2539 | foreground-child@3.3.0:
2540 | dependencies:
2541 | cross-spawn: 7.0.3
2542 | signal-exit: 4.1.0
2543 |
2544 | fraction.js@4.3.7: {}
2545 |
2546 | framer-motion@11.5.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
2547 | dependencies:
2548 | tslib: 2.7.0
2549 | optionalDependencies:
2550 | react: 18.3.1
2551 | react-dom: 18.3.1(react@18.3.1)
2552 |
2553 | fsevents@2.3.3:
2554 | optional: true
2555 |
2556 | function-bind@1.1.2: {}
2557 |
2558 | function.prototype.name@1.1.6:
2559 | dependencies:
2560 | call-bind: 1.0.7
2561 | define-properties: 1.2.1
2562 | es-abstract: 1.23.3
2563 | functions-have-names: 1.2.3
2564 |
2565 | functions-have-names@1.2.3: {}
2566 |
2567 | gensync@1.0.0-beta.2: {}
2568 |
2569 | get-intrinsic@1.2.4:
2570 | dependencies:
2571 | es-errors: 1.3.0
2572 | function-bind: 1.1.2
2573 | has-proto: 1.0.3
2574 | has-symbols: 1.0.3
2575 | hasown: 2.0.2
2576 |
2577 | get-symbol-description@1.0.2:
2578 | dependencies:
2579 | call-bind: 1.0.7
2580 | es-errors: 1.3.0
2581 | get-intrinsic: 1.2.4
2582 |
2583 | glob-parent@5.1.2:
2584 | dependencies:
2585 | is-glob: 4.0.3
2586 |
2587 | glob-parent@6.0.2:
2588 | dependencies:
2589 | is-glob: 4.0.3
2590 |
2591 | glob@10.4.5:
2592 | dependencies:
2593 | foreground-child: 3.3.0
2594 | jackspeak: 3.4.3
2595 | minimatch: 9.0.5
2596 | minipass: 7.1.2
2597 | package-json-from-dist: 1.0.0
2598 | path-scurry: 1.11.1
2599 |
2600 | globals@11.12.0: {}
2601 |
2602 | globals@14.0.0: {}
2603 |
2604 | globals@15.9.0: {}
2605 |
2606 | globalthis@1.0.4:
2607 | dependencies:
2608 | define-properties: 1.2.1
2609 | gopd: 1.0.1
2610 |
2611 | gopd@1.0.1:
2612 | dependencies:
2613 | get-intrinsic: 1.2.4
2614 |
2615 | has-bigints@1.0.2: {}
2616 |
2617 | has-flag@3.0.0: {}
2618 |
2619 | has-flag@4.0.0: {}
2620 |
2621 | has-property-descriptors@1.0.2:
2622 | dependencies:
2623 | es-define-property: 1.0.0
2624 |
2625 | has-proto@1.0.3: {}
2626 |
2627 | has-symbols@1.0.3: {}
2628 |
2629 | has-tostringtag@1.0.2:
2630 | dependencies:
2631 | has-symbols: 1.0.3
2632 |
2633 | hasown@2.0.2:
2634 | dependencies:
2635 | function-bind: 1.1.2
2636 |
2637 | ignore@5.3.2: {}
2638 |
2639 | import-fresh@3.3.0:
2640 | dependencies:
2641 | parent-module: 1.0.1
2642 | resolve-from: 4.0.0
2643 |
2644 | imurmurhash@0.1.4: {}
2645 |
2646 | internal-slot@1.0.7:
2647 | dependencies:
2648 | es-errors: 1.3.0
2649 | hasown: 2.0.2
2650 | side-channel: 1.0.6
2651 |
2652 | is-array-buffer@3.0.4:
2653 | dependencies:
2654 | call-bind: 1.0.7
2655 | get-intrinsic: 1.2.4
2656 |
2657 | is-async-function@2.0.0:
2658 | dependencies:
2659 | has-tostringtag: 1.0.2
2660 |
2661 | is-bigint@1.0.4:
2662 | dependencies:
2663 | has-bigints: 1.0.2
2664 |
2665 | is-binary-path@2.1.0:
2666 | dependencies:
2667 | binary-extensions: 2.3.0
2668 |
2669 | is-boolean-object@1.1.2:
2670 | dependencies:
2671 | call-bind: 1.0.7
2672 | has-tostringtag: 1.0.2
2673 |
2674 | is-callable@1.2.7: {}
2675 |
2676 | is-core-module@2.15.1:
2677 | dependencies:
2678 | hasown: 2.0.2
2679 |
2680 | is-data-view@1.0.1:
2681 | dependencies:
2682 | is-typed-array: 1.1.13
2683 |
2684 | is-date-object@1.0.5:
2685 | dependencies:
2686 | has-tostringtag: 1.0.2
2687 |
2688 | is-extglob@2.1.1: {}
2689 |
2690 | is-finalizationregistry@1.0.2:
2691 | dependencies:
2692 | call-bind: 1.0.7
2693 |
2694 | is-fullwidth-code-point@3.0.0: {}
2695 |
2696 | is-generator-function@1.0.10:
2697 | dependencies:
2698 | has-tostringtag: 1.0.2
2699 |
2700 | is-glob@4.0.3:
2701 | dependencies:
2702 | is-extglob: 2.1.1
2703 |
2704 | is-map@2.0.3: {}
2705 |
2706 | is-negative-zero@2.0.3: {}
2707 |
2708 | is-number-object@1.0.7:
2709 | dependencies:
2710 | has-tostringtag: 1.0.2
2711 |
2712 | is-number@7.0.0: {}
2713 |
2714 | is-path-inside@3.0.3: {}
2715 |
2716 | is-regex@1.1.4:
2717 | dependencies:
2718 | call-bind: 1.0.7
2719 | has-tostringtag: 1.0.2
2720 |
2721 | is-set@2.0.3: {}
2722 |
2723 | is-shared-array-buffer@1.0.3:
2724 | dependencies:
2725 | call-bind: 1.0.7
2726 |
2727 | is-string@1.0.7:
2728 | dependencies:
2729 | has-tostringtag: 1.0.2
2730 |
2731 | is-symbol@1.0.4:
2732 | dependencies:
2733 | has-symbols: 1.0.3
2734 |
2735 | is-typed-array@1.1.13:
2736 | dependencies:
2737 | which-typed-array: 1.1.15
2738 |
2739 | is-weakmap@2.0.2: {}
2740 |
2741 | is-weakref@1.0.2:
2742 | dependencies:
2743 | call-bind: 1.0.7
2744 |
2745 | is-weakset@2.0.3:
2746 | dependencies:
2747 | call-bind: 1.0.7
2748 | get-intrinsic: 1.2.4
2749 |
2750 | isarray@2.0.5: {}
2751 |
2752 | isexe@2.0.0: {}
2753 |
2754 | iterator.prototype@1.1.2:
2755 | dependencies:
2756 | define-properties: 1.2.1
2757 | get-intrinsic: 1.2.4
2758 | has-symbols: 1.0.3
2759 | reflect.getprototypeof: 1.0.6
2760 | set-function-name: 2.0.2
2761 |
2762 | jackspeak@3.4.3:
2763 | dependencies:
2764 | '@isaacs/cliui': 8.0.2
2765 | optionalDependencies:
2766 | '@pkgjs/parseargs': 0.11.0
2767 |
2768 | jiti@1.21.6: {}
2769 |
2770 | js-tokens@4.0.0: {}
2771 |
2772 | js-yaml@4.1.0:
2773 | dependencies:
2774 | argparse: 2.0.1
2775 |
2776 | jsesc@2.5.2: {}
2777 |
2778 | json-buffer@3.0.1: {}
2779 |
2780 | json-schema-traverse@0.4.1: {}
2781 |
2782 | json-stable-stringify-without-jsonify@1.0.1: {}
2783 |
2784 | json5@2.2.3: {}
2785 |
2786 | jsx-ast-utils@3.3.5:
2787 | dependencies:
2788 | array-includes: 3.1.8
2789 | array.prototype.flat: 1.3.2
2790 | object.assign: 4.1.5
2791 | object.values: 1.2.0
2792 |
2793 | keyv@4.5.4:
2794 | dependencies:
2795 | json-buffer: 3.0.1
2796 |
2797 | levn@0.4.1:
2798 | dependencies:
2799 | prelude-ls: 1.2.1
2800 | type-check: 0.4.0
2801 |
2802 | lilconfig@2.1.0: {}
2803 |
2804 | lilconfig@3.1.2: {}
2805 |
2806 | lines-and-columns@1.2.4: {}
2807 |
2808 | locate-path@6.0.0:
2809 | dependencies:
2810 | p-locate: 5.0.0
2811 |
2812 | lodash.merge@4.6.2: {}
2813 |
2814 | loose-envify@1.4.0:
2815 | dependencies:
2816 | js-tokens: 4.0.0
2817 |
2818 | lru-cache@10.4.3: {}
2819 |
2820 | lru-cache@5.1.1:
2821 | dependencies:
2822 | yallist: 3.1.1
2823 |
2824 | lucide-react@0.445.0(react@18.3.1):
2825 | dependencies:
2826 | react: 18.3.1
2827 |
2828 | merge2@1.4.1: {}
2829 |
2830 | micromatch@4.0.8:
2831 | dependencies:
2832 | braces: 3.0.3
2833 | picomatch: 2.3.1
2834 |
2835 | minimatch@3.1.2:
2836 | dependencies:
2837 | brace-expansion: 1.1.11
2838 |
2839 | minimatch@9.0.5:
2840 | dependencies:
2841 | brace-expansion: 2.0.1
2842 |
2843 | minipass@7.1.2: {}
2844 |
2845 | ms@2.1.3: {}
2846 |
2847 | mz@2.7.0:
2848 | dependencies:
2849 | any-promise: 1.3.0
2850 | object-assign: 4.1.1
2851 | thenify-all: 1.6.0
2852 |
2853 | nanoid@3.3.7: {}
2854 |
2855 | natural-compare@1.4.0: {}
2856 |
2857 | node-releases@2.0.18: {}
2858 |
2859 | normalize-path@3.0.0: {}
2860 |
2861 | normalize-range@0.1.2: {}
2862 |
2863 | object-assign@4.1.1: {}
2864 |
2865 | object-hash@3.0.0: {}
2866 |
2867 | object-inspect@1.13.2: {}
2868 |
2869 | object-keys@1.1.1: {}
2870 |
2871 | object.assign@4.1.5:
2872 | dependencies:
2873 | call-bind: 1.0.7
2874 | define-properties: 1.2.1
2875 | has-symbols: 1.0.3
2876 | object-keys: 1.1.1
2877 |
2878 | object.entries@1.1.8:
2879 | dependencies:
2880 | call-bind: 1.0.7
2881 | define-properties: 1.2.1
2882 | es-object-atoms: 1.0.0
2883 |
2884 | object.fromentries@2.0.8:
2885 | dependencies:
2886 | call-bind: 1.0.7
2887 | define-properties: 1.2.1
2888 | es-abstract: 1.23.3
2889 | es-object-atoms: 1.0.0
2890 |
2891 | object.values@1.2.0:
2892 | dependencies:
2893 | call-bind: 1.0.7
2894 | define-properties: 1.2.1
2895 | es-object-atoms: 1.0.0
2896 |
2897 | optionator@0.9.4:
2898 | dependencies:
2899 | deep-is: 0.1.4
2900 | fast-levenshtein: 2.0.6
2901 | levn: 0.4.1
2902 | prelude-ls: 1.2.1
2903 | type-check: 0.4.0
2904 | word-wrap: 1.2.5
2905 |
2906 | p-limit@3.1.0:
2907 | dependencies:
2908 | yocto-queue: 0.1.0
2909 |
2910 | p-locate@5.0.0:
2911 | dependencies:
2912 | p-limit: 3.1.0
2913 |
2914 | package-json-from-dist@1.0.0: {}
2915 |
2916 | parent-module@1.0.1:
2917 | dependencies:
2918 | callsites: 3.1.0
2919 |
2920 | path-exists@4.0.0: {}
2921 |
2922 | path-key@3.1.1: {}
2923 |
2924 | path-parse@1.0.7: {}
2925 |
2926 | path-scurry@1.11.1:
2927 | dependencies:
2928 | lru-cache: 10.4.3
2929 | minipass: 7.1.2
2930 |
2931 | picocolors@1.1.0: {}
2932 |
2933 | picomatch@2.3.1: {}
2934 |
2935 | pify@2.3.0: {}
2936 |
2937 | pirates@4.0.6: {}
2938 |
2939 | possible-typed-array-names@1.0.0: {}
2940 |
2941 | postcss-import@15.1.0(postcss@8.4.47):
2942 | dependencies:
2943 | postcss: 8.4.47
2944 | postcss-value-parser: 4.2.0
2945 | read-cache: 1.0.0
2946 | resolve: 1.22.8
2947 |
2948 | postcss-js@4.0.1(postcss@8.4.47):
2949 | dependencies:
2950 | camelcase-css: 2.0.1
2951 | postcss: 8.4.47
2952 |
2953 | postcss-load-config@4.0.2(postcss@8.4.47):
2954 | dependencies:
2955 | lilconfig: 3.1.2
2956 | yaml: 2.5.1
2957 | optionalDependencies:
2958 | postcss: 8.4.47
2959 |
2960 | postcss-nested@6.2.0(postcss@8.4.47):
2961 | dependencies:
2962 | postcss: 8.4.47
2963 | postcss-selector-parser: 6.1.2
2964 |
2965 | postcss-selector-parser@6.1.2:
2966 | dependencies:
2967 | cssesc: 3.0.0
2968 | util-deprecate: 1.0.2
2969 |
2970 | postcss-value-parser@4.2.0: {}
2971 |
2972 | postcss@8.4.47:
2973 | dependencies:
2974 | nanoid: 3.3.7
2975 | picocolors: 1.1.0
2976 | source-map-js: 1.2.1
2977 |
2978 | prelude-ls@1.2.1: {}
2979 |
2980 | prop-types@15.8.1:
2981 | dependencies:
2982 | loose-envify: 1.4.0
2983 | object-assign: 4.1.1
2984 | react-is: 16.13.1
2985 |
2986 | punycode@2.3.1: {}
2987 |
2988 | queue-microtask@1.2.3: {}
2989 |
2990 | react-dom@18.3.1(react@18.3.1):
2991 | dependencies:
2992 | loose-envify: 1.4.0
2993 | react: 18.3.1
2994 | scheduler: 0.23.2
2995 |
2996 | react-is@16.13.1: {}
2997 |
2998 | react-refresh@0.14.2: {}
2999 |
3000 | react@18.3.1:
3001 | dependencies:
3002 | loose-envify: 1.4.0
3003 |
3004 | read-cache@1.0.0:
3005 | dependencies:
3006 | pify: 2.3.0
3007 |
3008 | readdirp@3.6.0:
3009 | dependencies:
3010 | picomatch: 2.3.1
3011 |
3012 | reflect.getprototypeof@1.0.6:
3013 | dependencies:
3014 | call-bind: 1.0.7
3015 | define-properties: 1.2.1
3016 | es-abstract: 1.23.3
3017 | es-errors: 1.3.0
3018 | get-intrinsic: 1.2.4
3019 | globalthis: 1.0.4
3020 | which-builtin-type: 1.1.4
3021 |
3022 | regexp.prototype.flags@1.5.2:
3023 | dependencies:
3024 | call-bind: 1.0.7
3025 | define-properties: 1.2.1
3026 | es-errors: 1.3.0
3027 | set-function-name: 2.0.2
3028 |
3029 | resolve-from@4.0.0: {}
3030 |
3031 | resolve@1.22.8:
3032 | dependencies:
3033 | is-core-module: 2.15.1
3034 | path-parse: 1.0.7
3035 | supports-preserve-symlinks-flag: 1.0.0
3036 |
3037 | resolve@2.0.0-next.5:
3038 | dependencies:
3039 | is-core-module: 2.15.1
3040 | path-parse: 1.0.7
3041 | supports-preserve-symlinks-flag: 1.0.0
3042 |
3043 | reusify@1.0.4: {}
3044 |
3045 | rollup@4.22.4:
3046 | dependencies:
3047 | '@types/estree': 1.0.5
3048 | optionalDependencies:
3049 | '@rollup/rollup-android-arm-eabi': 4.22.4
3050 | '@rollup/rollup-android-arm64': 4.22.4
3051 | '@rollup/rollup-darwin-arm64': 4.22.4
3052 | '@rollup/rollup-darwin-x64': 4.22.4
3053 | '@rollup/rollup-linux-arm-gnueabihf': 4.22.4
3054 | '@rollup/rollup-linux-arm-musleabihf': 4.22.4
3055 | '@rollup/rollup-linux-arm64-gnu': 4.22.4
3056 | '@rollup/rollup-linux-arm64-musl': 4.22.4
3057 | '@rollup/rollup-linux-powerpc64le-gnu': 4.22.4
3058 | '@rollup/rollup-linux-riscv64-gnu': 4.22.4
3059 | '@rollup/rollup-linux-s390x-gnu': 4.22.4
3060 | '@rollup/rollup-linux-x64-gnu': 4.22.4
3061 | '@rollup/rollup-linux-x64-musl': 4.22.4
3062 | '@rollup/rollup-win32-arm64-msvc': 4.22.4
3063 | '@rollup/rollup-win32-ia32-msvc': 4.22.4
3064 | '@rollup/rollup-win32-x64-msvc': 4.22.4
3065 | fsevents: 2.3.3
3066 |
3067 | run-parallel@1.2.0:
3068 | dependencies:
3069 | queue-microtask: 1.2.3
3070 |
3071 | safe-array-concat@1.1.2:
3072 | dependencies:
3073 | call-bind: 1.0.7
3074 | get-intrinsic: 1.2.4
3075 | has-symbols: 1.0.3
3076 | isarray: 2.0.5
3077 |
3078 | safe-regex-test@1.0.3:
3079 | dependencies:
3080 | call-bind: 1.0.7
3081 | es-errors: 1.3.0
3082 | is-regex: 1.1.4
3083 |
3084 | scheduler@0.23.2:
3085 | dependencies:
3086 | loose-envify: 1.4.0
3087 |
3088 | semver@6.3.1: {}
3089 |
3090 | set-function-length@1.2.2:
3091 | dependencies:
3092 | define-data-property: 1.1.4
3093 | es-errors: 1.3.0
3094 | function-bind: 1.1.2
3095 | get-intrinsic: 1.2.4
3096 | gopd: 1.0.1
3097 | has-property-descriptors: 1.0.2
3098 |
3099 | set-function-name@2.0.2:
3100 | dependencies:
3101 | define-data-property: 1.1.4
3102 | es-errors: 1.3.0
3103 | functions-have-names: 1.2.3
3104 | has-property-descriptors: 1.0.2
3105 |
3106 | shebang-command@2.0.0:
3107 | dependencies:
3108 | shebang-regex: 3.0.0
3109 |
3110 | shebang-regex@3.0.0: {}
3111 |
3112 | side-channel@1.0.6:
3113 | dependencies:
3114 | call-bind: 1.0.7
3115 | es-errors: 1.3.0
3116 | get-intrinsic: 1.2.4
3117 | object-inspect: 1.13.2
3118 |
3119 | signal-exit@4.1.0: {}
3120 |
3121 | source-map-js@1.2.1: {}
3122 |
3123 | string-width@4.2.3:
3124 | dependencies:
3125 | emoji-regex: 8.0.0
3126 | is-fullwidth-code-point: 3.0.0
3127 | strip-ansi: 6.0.1
3128 |
3129 | string-width@5.1.2:
3130 | dependencies:
3131 | eastasianwidth: 0.2.0
3132 | emoji-regex: 9.2.2
3133 | strip-ansi: 7.1.0
3134 |
3135 | string.prototype.matchall@4.0.11:
3136 | dependencies:
3137 | call-bind: 1.0.7
3138 | define-properties: 1.2.1
3139 | es-abstract: 1.23.3
3140 | es-errors: 1.3.0
3141 | es-object-atoms: 1.0.0
3142 | get-intrinsic: 1.2.4
3143 | gopd: 1.0.1
3144 | has-symbols: 1.0.3
3145 | internal-slot: 1.0.7
3146 | regexp.prototype.flags: 1.5.2
3147 | set-function-name: 2.0.2
3148 | side-channel: 1.0.6
3149 |
3150 | string.prototype.repeat@1.0.0:
3151 | dependencies:
3152 | define-properties: 1.2.1
3153 | es-abstract: 1.23.3
3154 |
3155 | string.prototype.trim@1.2.9:
3156 | dependencies:
3157 | call-bind: 1.0.7
3158 | define-properties: 1.2.1
3159 | es-abstract: 1.23.3
3160 | es-object-atoms: 1.0.0
3161 |
3162 | string.prototype.trimend@1.0.8:
3163 | dependencies:
3164 | call-bind: 1.0.7
3165 | define-properties: 1.2.1
3166 | es-object-atoms: 1.0.0
3167 |
3168 | string.prototype.trimstart@1.0.8:
3169 | dependencies:
3170 | call-bind: 1.0.7
3171 | define-properties: 1.2.1
3172 | es-object-atoms: 1.0.0
3173 |
3174 | strip-ansi@6.0.1:
3175 | dependencies:
3176 | ansi-regex: 5.0.1
3177 |
3178 | strip-ansi@7.1.0:
3179 | dependencies:
3180 | ansi-regex: 6.1.0
3181 |
3182 | strip-json-comments@3.1.1: {}
3183 |
3184 | sucrase@3.35.0:
3185 | dependencies:
3186 | '@jridgewell/gen-mapping': 0.3.5
3187 | commander: 4.1.1
3188 | glob: 10.4.5
3189 | lines-and-columns: 1.2.4
3190 | mz: 2.7.0
3191 | pirates: 4.0.6
3192 | ts-interface-checker: 0.1.13
3193 |
3194 | supports-color@5.5.0:
3195 | dependencies:
3196 | has-flag: 3.0.0
3197 |
3198 | supports-color@7.2.0:
3199 | dependencies:
3200 | has-flag: 4.0.0
3201 |
3202 | supports-preserve-symlinks-flag@1.0.0: {}
3203 |
3204 | tailwindcss@3.4.12:
3205 | dependencies:
3206 | '@alloc/quick-lru': 5.2.0
3207 | arg: 5.0.2
3208 | chokidar: 3.6.0
3209 | didyoumean: 1.2.2
3210 | dlv: 1.1.3
3211 | fast-glob: 3.3.2
3212 | glob-parent: 6.0.2
3213 | is-glob: 4.0.3
3214 | jiti: 1.21.6
3215 | lilconfig: 2.1.0
3216 | micromatch: 4.0.8
3217 | normalize-path: 3.0.0
3218 | object-hash: 3.0.0
3219 | picocolors: 1.1.0
3220 | postcss: 8.4.47
3221 | postcss-import: 15.1.0(postcss@8.4.47)
3222 | postcss-js: 4.0.1(postcss@8.4.47)
3223 | postcss-load-config: 4.0.2(postcss@8.4.47)
3224 | postcss-nested: 6.2.0(postcss@8.4.47)
3225 | postcss-selector-parser: 6.1.2
3226 | resolve: 1.22.8
3227 | sucrase: 3.35.0
3228 | transitivePeerDependencies:
3229 | - ts-node
3230 |
3231 | text-table@0.2.0: {}
3232 |
3233 | thenify-all@1.6.0:
3234 | dependencies:
3235 | thenify: 3.3.1
3236 |
3237 | thenify@3.3.1:
3238 | dependencies:
3239 | any-promise: 1.3.0
3240 |
3241 | to-fast-properties@2.0.0: {}
3242 |
3243 | to-regex-range@5.0.1:
3244 | dependencies:
3245 | is-number: 7.0.0
3246 |
3247 | ts-interface-checker@0.1.13: {}
3248 |
3249 | tslib@2.7.0: {}
3250 |
3251 | type-check@0.4.0:
3252 | dependencies:
3253 | prelude-ls: 1.2.1
3254 |
3255 | typed-array-buffer@1.0.2:
3256 | dependencies:
3257 | call-bind: 1.0.7
3258 | es-errors: 1.3.0
3259 | is-typed-array: 1.1.13
3260 |
3261 | typed-array-byte-length@1.0.1:
3262 | dependencies:
3263 | call-bind: 1.0.7
3264 | for-each: 0.3.3
3265 | gopd: 1.0.1
3266 | has-proto: 1.0.3
3267 | is-typed-array: 1.1.13
3268 |
3269 | typed-array-byte-offset@1.0.2:
3270 | dependencies:
3271 | available-typed-arrays: 1.0.7
3272 | call-bind: 1.0.7
3273 | for-each: 0.3.3
3274 | gopd: 1.0.1
3275 | has-proto: 1.0.3
3276 | is-typed-array: 1.1.13
3277 |
3278 | typed-array-length@1.0.6:
3279 | dependencies:
3280 | call-bind: 1.0.7
3281 | for-each: 0.3.3
3282 | gopd: 1.0.1
3283 | has-proto: 1.0.3
3284 | is-typed-array: 1.1.13
3285 | possible-typed-array-names: 1.0.0
3286 |
3287 | unbox-primitive@1.0.2:
3288 | dependencies:
3289 | call-bind: 1.0.7
3290 | has-bigints: 1.0.2
3291 | has-symbols: 1.0.3
3292 | which-boxed-primitive: 1.0.2
3293 |
3294 | update-browserslist-db@1.1.0(browserslist@4.23.3):
3295 | dependencies:
3296 | browserslist: 4.23.3
3297 | escalade: 3.2.0
3298 | picocolors: 1.1.0
3299 |
3300 | uri-js@4.4.1:
3301 | dependencies:
3302 | punycode: 2.3.1
3303 |
3304 | util-deprecate@1.0.2: {}
3305 |
3306 | vite@5.4.7:
3307 | dependencies:
3308 | esbuild: 0.21.5
3309 | postcss: 8.4.47
3310 | rollup: 4.22.4
3311 | optionalDependencies:
3312 | fsevents: 2.3.3
3313 |
3314 | which-boxed-primitive@1.0.2:
3315 | dependencies:
3316 | is-bigint: 1.0.4
3317 | is-boolean-object: 1.1.2
3318 | is-number-object: 1.0.7
3319 | is-string: 1.0.7
3320 | is-symbol: 1.0.4
3321 |
3322 | which-builtin-type@1.1.4:
3323 | dependencies:
3324 | function.prototype.name: 1.1.6
3325 | has-tostringtag: 1.0.2
3326 | is-async-function: 2.0.0
3327 | is-date-object: 1.0.5
3328 | is-finalizationregistry: 1.0.2
3329 | is-generator-function: 1.0.10
3330 | is-regex: 1.1.4
3331 | is-weakref: 1.0.2
3332 | isarray: 2.0.5
3333 | which-boxed-primitive: 1.0.2
3334 | which-collection: 1.0.2
3335 | which-typed-array: 1.1.15
3336 |
3337 | which-collection@1.0.2:
3338 | dependencies:
3339 | is-map: 2.0.3
3340 | is-set: 2.0.3
3341 | is-weakmap: 2.0.2
3342 | is-weakset: 2.0.3
3343 |
3344 | which-typed-array@1.1.15:
3345 | dependencies:
3346 | available-typed-arrays: 1.0.7
3347 | call-bind: 1.0.7
3348 | for-each: 0.3.3
3349 | gopd: 1.0.1
3350 | has-tostringtag: 1.0.2
3351 |
3352 | which@2.0.2:
3353 | dependencies:
3354 | isexe: 2.0.0
3355 |
3356 | word-wrap@1.2.5: {}
3357 |
3358 | wrap-ansi@7.0.0:
3359 | dependencies:
3360 | ansi-styles: 4.3.0
3361 | string-width: 4.2.3
3362 | strip-ansi: 6.0.1
3363 |
3364 | wrap-ansi@8.1.0:
3365 | dependencies:
3366 | ansi-styles: 6.2.1
3367 | string-width: 5.1.2
3368 | strip-ansi: 7.1.0
3369 |
3370 | yallist@3.1.1: {}
3371 |
3372 | yaml@2.5.1: {}
3373 |
3374 | yocto-queue@0.1.0: {}
3375 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | export default {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/App.css:
--------------------------------------------------------------------------------
1 | #root {
2 | max-width: 1280px;
3 | margin: 0 auto;
4 | padding: 2rem;
5 | text-align: center;
6 | }
7 |
8 | .logo {
9 | height: 6em;
10 | padding: 1.5em;
11 | will-change: filter;
12 | transition: filter 300ms;
13 | }
14 | .logo:hover {
15 | filter: drop-shadow(0 0 2em #646cffaa);
16 | }
17 | .logo.react:hover {
18 | filter: drop-shadow(0 0 2em #61dafbaa);
19 | }
20 |
21 | @keyframes logo-spin {
22 | from {
23 | transform: rotate(0deg);
24 | }
25 | to {
26 | transform: rotate(360deg);
27 | }
28 | }
29 |
30 | @media (prefers-reduced-motion: no-preference) {
31 | a:nth-of-type(2) .logo {
32 | animation: logo-spin infinite 20s linear;
33 | }
34 | }
35 |
36 | .card {
37 | padding: 2em;
38 | }
39 |
40 | .read-the-docs {
41 | color: #888;
42 | }
43 |
--------------------------------------------------------------------------------
/src/App.jsx:
--------------------------------------------------------------------------------
1 | import { Menus } from "./utils";
2 | import Logo from "./assets/logo.webp";
3 | import DesktopMenu from "./components/DesktopMenu";
4 | import MobMenu from "./components/MobMenu";
5 |
6 | export default function App() {
7 | return (
8 |
9 |
10 |
33 |
34 |
35 | );
36 | }
37 |
--------------------------------------------------------------------------------
/src/assets/logo.webp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Sridhar-C-25/Multimenu-nav-react-tailwind/2eec9e479037658169364760ad65968437bc3b84/src/assets/logo.webp
--------------------------------------------------------------------------------
/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/components/DesktopMenu.jsx:
--------------------------------------------------------------------------------
1 | import { useState } from "react";
2 | import { ChevronDown } from "lucide-react";
3 | import { motion } from "framer-motion";
4 |
5 | export default function DesktopMenu({ menu }) {
6 | const [isHover, toggleHover] = useState(false);
7 | const toggleHoverMenu = () => {
8 | toggleHover(!isHover);
9 | };
10 |
11 | const subMenuAnimate = {
12 | enter: {
13 | opacity: 1,
14 | rotateX: 0,
15 | transition: {
16 | duration: 0.5,
17 | },
18 | display: "block",
19 | },
20 | exit: {
21 | opacity: 0,
22 | rotateX: -15,
23 | transition: {
24 | duration: 0.5,
25 | },
26 | transitionEnd: {
27 | display: "none",
28 | },
29 | },
30 | };
31 |
32 | const hasSubMenu = menu?.subMenu?.length;
33 |
34 | return (
35 | {
38 | toggleHoverMenu();
39 | }}
40 | onHoverEnd={toggleHoverMenu}
41 | key={menu.name}
42 | >
43 |
44 | {menu.name}
45 | {hasSubMenu && (
46 |
47 | )}
48 |
49 | {hasSubMenu && (
50 |
56 |
65 | {hasSubMenu &&
66 | menu.subMenu.map((submenu, i) => (
67 |
68 | {menu.gridCols > 1 && menu?.subMenuHeading?.[i] && (
69 |
70 | {menu?.subMenuHeading?.[i]}
71 |
72 | )}
73 |
74 |
75 | {submenu.icon && }
76 |
77 |
78 |
{submenu.name}
79 |
{submenu.desc}
80 |
81 |
82 |
83 | ))}
84 |
85 |
86 | )}
87 |
88 | );
89 | }
90 |
--------------------------------------------------------------------------------
/src/components/MobMenu.jsx:
--------------------------------------------------------------------------------
1 | import { useState } from "react";
2 | import { motion } from "framer-motion";
3 | import { Menu, X, ChevronDown } from "lucide-react";
4 |
5 | export default function MobMenu({ Menus }) {
6 | const [isOpen, setIsOpen] = useState(false);
7 | const [clicked, setClicked] = useState(null);
8 | const toggleDrawer = () => {
9 | setIsOpen(!isOpen);
10 | setClicked(null);
11 | };
12 |
13 | const subMenuDrawer = {
14 | enter: {
15 | height: "auto",
16 | overflow: "hidden",
17 | },
18 | exit: {
19 | height: 0,
20 | overflow: "hidden",
21 | },
22 | };
23 |
24 | return (
25 |
26 |
29 |
30 |
35 |
36 | {Menus.map(({ name, subMenu }, i) => {
37 | const isClicked = clicked === i;
38 | const hasSubMenu = subMenu?.length;
39 | return (
40 | -
41 | setClicked(isClicked ? null : i)}
44 | >
45 | {name}
46 | {hasSubMenu && (
47 |
50 | )}
51 |
52 | {hasSubMenu && (
53 |
59 | {subMenu.map(({ name, icon: Icon }) => (
60 |
-
64 |
65 | {name}
66 |
67 | ))}
68 |
69 | )}
70 |
71 | );
72 | })}
73 |
74 |
75 |
76 | );
77 | }
78 |
--------------------------------------------------------------------------------
/src/index.css:
--------------------------------------------------------------------------------
1 | @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
2 |
3 | @tailwind base;
4 | @tailwind components;
5 | @tailwind utilities;
6 |
7 | body {
8 | @apply bg-[#111] text-gray-300 font-inter;
9 | }
10 |
11 | @layer components {
12 | .sub-menu {
13 | @apply absolute top-[4.2rem] p-[15px] rounded-[6px] origin-[50%_-170px] backdrop-blur bg-white/[0.04];
14 | }
15 | }
16 |
17 | @layer utilities {
18 | .flex-center {
19 | @apply flex items-center;
20 | }
21 | .flex-center-between {
22 | @apply flex items-center justify-between;
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/src/main.jsx:
--------------------------------------------------------------------------------
1 | import { StrictMode } from 'react'
2 | import { createRoot } from 'react-dom/client'
3 | import App from './App.jsx'
4 | import './index.css'
5 |
6 | createRoot(document.getElementById('root')).render(
7 |
8 |
9 | ,
10 | )
11 |
--------------------------------------------------------------------------------
/src/utils.js:
--------------------------------------------------------------------------------
1 | import { Bolt } from "lucide-react";
2 | import { ShoppingBag } from "lucide-react";
3 | import { BellDot } from "lucide-react";
4 | import { BookOpenText } from "lucide-react";
5 | import { BriefcaseBusiness } from "lucide-react";
6 | import { CircleHelp } from "lucide-react";
7 | import { TriangleAlert } from "lucide-react";
8 | import { Users } from "lucide-react";
9 | import { Lock } from "lucide-react";
10 | import { Dessert } from "lucide-react";
11 | import { ShieldPlus } from "lucide-react";
12 | import { MessageCircle } from "lucide-react";
13 | import { Images } from "lucide-react";
14 | import { Figma } from "lucide-react";
15 | import { Play } from "lucide-react";
16 | import { MapPin } from "lucide-react";
17 | import { Database } from "lucide-react";
18 | import { PanelsTopLeft } from "lucide-react";
19 | import { PanelTop } from "lucide-react";
20 |
21 | export const Menus = [
22 | {
23 | name: "Features",
24 | subMenuHeading: ["Design", "Scale"],
25 | subMenu: [
26 | {
27 | name: "Design",
28 | desc: "Responsive design",
29 | icon: PanelsTopLeft,
30 | },
31 | {
32 | name: "Management",
33 | desc: "Site control",
34 | icon: Bolt,
35 | },
36 | {
37 | name: "Navigation",
38 | desc: "Link pages",
39 | icon: PanelTop,
40 | },
41 | {
42 | name: "CMS",
43 | desc: "Management content",
44 | icon: Database,
45 | },
46 | ],
47 | gridCols: 2,
48 | },
49 | {
50 | name: "Resources",
51 | subMenuHeading: ["Get started", "Programs", "Recent"],
52 | subMenu: [
53 | {
54 | name: "Markplace",
55 | desc: "Browse templates",
56 | icon: ShoppingBag,
57 | },
58 | {
59 | name: "Meetups",
60 | desc: "Upcoming events",
61 | icon: MapPin,
62 | },
63 | {
64 | name: "Updates",
65 | desc: "Changelog",
66 | icon: BellDot,
67 | },
68 | {
69 | name: "Academy",
70 | desc: "Watch lessions",
71 | icon: Play,
72 | },
73 | {
74 | name: "Blog",
75 | desc: "Posts",
76 | icon: BookOpenText,
77 | },
78 | {
79 | name: "Figma",
80 | desc: "Plugin",
81 | icon: Figma,
82 | },
83 | {
84 | name: "Experts",
85 | desc: "Jobs",
86 | icon: BriefcaseBusiness,
87 | },
88 | {
89 | name: "Gallery",
90 | desc: "Images",
91 | icon: Images,
92 | },
93 | ],
94 | gridCols: 3,
95 | },
96 | {
97 | name: "Support",
98 | subMenu: [
99 | {
100 | name: "Help",
101 | desc: "Center",
102 | icon: CircleHelp,
103 | },
104 | {
105 | name: "Community",
106 | desc: "Project help",
107 | icon: MessageCircle,
108 | },
109 | {
110 | name: "Emergency",
111 | desc: "Urgent issues",
112 | icon: TriangleAlert,
113 | },
114 | ],
115 | gridCols: 1,
116 | },
117 | {
118 | name: "Enterprise",
119 | subMenuHeading: ["Overview", "Features"],
120 | subMenu: [
121 | {
122 | name: "Enterprise",
123 | desc: "Overview",
124 | icon: ShieldPlus,
125 | },
126 | {
127 | name: "Collaboration",
128 | desc: "Design together",
129 | icon: Users,
130 | },
131 | {
132 | name: "Customers",
133 | desc: "Stories",
134 | icon: Dessert,
135 | },
136 | {
137 | name: "Security",
138 | desc: "Your site secured",
139 | icon: Lock,
140 | },
141 | ],
142 | gridCols: 2,
143 | },
144 | {
145 | name: "Pricing",
146 | },
147 | {
148 | name: "Contact",
149 | },
150 | ];
151 |
--------------------------------------------------------------------------------
/tailwind.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('tailwindcss').Config} */
2 | export default {
3 | content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
4 | theme: {
5 | extend: {
6 | fontFamily: {
7 | inter: ["Inter", "sans-serif"],
8 | },
9 | },
10 | screens: {
11 | // => @media (max-width: 1279px) { ... }
12 | lg: { min: "925px" },
13 | },
14 | },
15 | plugins: [],
16 | };
17 |
--------------------------------------------------------------------------------
/vite.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite'
2 | import react from '@vitejs/plugin-react'
3 |
4 | // https://vitejs.dev/config/
5 | export default defineConfig({
6 | plugins: [react()],
7 | })
8 |
--------------------------------------------------------------------------------