├── .gitignore ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ └── react.svg ├── components │ ├── Footer.jsx │ ├── Header.jsx │ └── Layout.jsx ├── index.css ├── main.jsx ├── pages │ ├── About.jsx │ ├── Contact.jsx │ └── Home.jsx └── routes │ └── index.jsx └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # React + Vite 2 | 3 | This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules. 4 | 5 | Currently, two official plugins are available: 6 | 7 | - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh 8 | - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh 9 | 10 | ## Expanding the ESLint configuration 11 | 12 | If you are developing a production application, we recommend using TypeScript and enable type-aware lint rules. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project. 13 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import js from '@eslint/js' 2 | import globals from 'globals' 3 | import reactHooks from 'eslint-plugin-react-hooks' 4 | import reactRefresh from 'eslint-plugin-react-refresh' 5 | 6 | export default [ 7 | { ignores: ['dist'] }, 8 | { 9 | files: ['**/*.{js,jsx}'], 10 | languageOptions: { 11 | ecmaVersion: 2020, 12 | globals: globals.browser, 13 | parserOptions: { 14 | ecmaVersion: 'latest', 15 | ecmaFeatures: { jsx: true }, 16 | sourceType: 'module', 17 | }, 18 | }, 19 | plugins: { 20 | 'react-hooks': reactHooks, 21 | 'react-refresh': reactRefresh, 22 | }, 23 | rules: { 24 | ...js.configs.recommended.rules, 25 | ...reactHooks.configs.recommended.rules, 26 | 'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }], 27 | 'react-refresh/only-export-components': [ 28 | 'warn', 29 | { allowConstantExport: true }, 30 | ], 31 | }, 32 | }, 33 | ] 34 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite + React 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "shuvo-rent-a-car", 3 | "version": "0.0.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "shuvo-rent-a-car", 9 | "version": "0.0.0", 10 | "dependencies": { 11 | "@tailwindcss/vite": "^4.0.15", 12 | "framer-motion": "^12.5.0", 13 | "react": "^19.0.0", 14 | "react-dom": "^19.0.0", 15 | "react-icons": "^5.5.0", 16 | "react-router-dom": "^7.4.0", 17 | "tailwindcss": "^4.0.15" 18 | }, 19 | "devDependencies": { 20 | "@eslint/js": "^9.21.0", 21 | "@types/react": "^19.0.10", 22 | "@types/react-dom": "^19.0.4", 23 | "@vitejs/plugin-react": "^4.3.4", 24 | "eslint": "^9.21.0", 25 | "eslint-plugin-react-hooks": "^5.1.0", 26 | "eslint-plugin-react-refresh": "^0.4.19", 27 | "globals": "^15.15.0", 28 | "vite": "^6.2.0" 29 | } 30 | }, 31 | "node_modules/@ampproject/remapping": { 32 | "version": "2.3.0", 33 | "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", 34 | "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", 35 | "dev": true, 36 | "license": "Apache-2.0", 37 | "dependencies": { 38 | "@jridgewell/gen-mapping": "^0.3.5", 39 | "@jridgewell/trace-mapping": "^0.3.24" 40 | }, 41 | "engines": { 42 | "node": ">=6.0.0" 43 | } 44 | }, 45 | "node_modules/@babel/code-frame": { 46 | "version": "7.26.2", 47 | "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", 48 | "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", 49 | "dev": true, 50 | "license": "MIT", 51 | "dependencies": { 52 | "@babel/helper-validator-identifier": "^7.25.9", 53 | "js-tokens": "^4.0.0", 54 | "picocolors": "^1.0.0" 55 | }, 56 | "engines": { 57 | "node": ">=6.9.0" 58 | } 59 | }, 60 | "node_modules/@babel/compat-data": { 61 | "version": "7.26.8", 62 | "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", 63 | "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", 64 | "dev": true, 65 | "license": "MIT", 66 | "engines": { 67 | "node": ">=6.9.0" 68 | } 69 | }, 70 | "node_modules/@babel/core": { 71 | "version": "7.26.10", 72 | "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz", 73 | "integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==", 74 | "dev": true, 75 | "license": "MIT", 76 | "dependencies": { 77 | "@ampproject/remapping": "^2.2.0", 78 | "@babel/code-frame": "^7.26.2", 79 | "@babel/generator": "^7.26.10", 80 | "@babel/helper-compilation-targets": "^7.26.5", 81 | "@babel/helper-module-transforms": "^7.26.0", 82 | "@babel/helpers": "^7.26.10", 83 | "@babel/parser": "^7.26.10", 84 | "@babel/template": "^7.26.9", 85 | "@babel/traverse": "^7.26.10", 86 | "@babel/types": "^7.26.10", 87 | "convert-source-map": "^2.0.0", 88 | "debug": "^4.1.0", 89 | "gensync": "^1.0.0-beta.2", 90 | "json5": "^2.2.3", 91 | "semver": "^6.3.1" 92 | }, 93 | "engines": { 94 | "node": ">=6.9.0" 95 | }, 96 | "funding": { 97 | "type": "opencollective", 98 | "url": "https://opencollective.com/babel" 99 | } 100 | }, 101 | "node_modules/@babel/generator": { 102 | "version": "7.26.10", 103 | "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.10.tgz", 104 | "integrity": "sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==", 105 | "dev": true, 106 | "license": "MIT", 107 | "dependencies": { 108 | "@babel/parser": "^7.26.10", 109 | "@babel/types": "^7.26.10", 110 | "@jridgewell/gen-mapping": "^0.3.5", 111 | "@jridgewell/trace-mapping": "^0.3.25", 112 | "jsesc": "^3.0.2" 113 | }, 114 | "engines": { 115 | "node": ">=6.9.0" 116 | } 117 | }, 118 | "node_modules/@babel/helper-compilation-targets": { 119 | "version": "7.26.5", 120 | "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", 121 | "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", 122 | "dev": true, 123 | "license": "MIT", 124 | "dependencies": { 125 | "@babel/compat-data": "^7.26.5", 126 | "@babel/helper-validator-option": "^7.25.9", 127 | "browserslist": "^4.24.0", 128 | "lru-cache": "^5.1.1", 129 | "semver": "^6.3.1" 130 | }, 131 | "engines": { 132 | "node": ">=6.9.0" 133 | } 134 | }, 135 | "node_modules/@babel/helper-module-imports": { 136 | "version": "7.25.9", 137 | "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", 138 | "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", 139 | "dev": true, 140 | "license": "MIT", 141 | "dependencies": { 142 | "@babel/traverse": "^7.25.9", 143 | "@babel/types": "^7.25.9" 144 | }, 145 | "engines": { 146 | "node": ">=6.9.0" 147 | } 148 | }, 149 | "node_modules/@babel/helper-module-transforms": { 150 | "version": "7.26.0", 151 | "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", 152 | "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", 153 | "dev": true, 154 | "license": "MIT", 155 | "dependencies": { 156 | "@babel/helper-module-imports": "^7.25.9", 157 | "@babel/helper-validator-identifier": "^7.25.9", 158 | "@babel/traverse": "^7.25.9" 159 | }, 160 | "engines": { 161 | "node": ">=6.9.0" 162 | }, 163 | "peerDependencies": { 164 | "@babel/core": "^7.0.0" 165 | } 166 | }, 167 | "node_modules/@babel/helper-plugin-utils": { 168 | "version": "7.26.5", 169 | "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", 170 | "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", 171 | "dev": true, 172 | "license": "MIT", 173 | "engines": { 174 | "node": ">=6.9.0" 175 | } 176 | }, 177 | "node_modules/@babel/helper-string-parser": { 178 | "version": "7.25.9", 179 | "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", 180 | "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", 181 | "dev": true, 182 | "license": "MIT", 183 | "engines": { 184 | "node": ">=6.9.0" 185 | } 186 | }, 187 | "node_modules/@babel/helper-validator-identifier": { 188 | "version": "7.25.9", 189 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", 190 | "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", 191 | "dev": true, 192 | "license": "MIT", 193 | "engines": { 194 | "node": ">=6.9.0" 195 | } 196 | }, 197 | "node_modules/@babel/helper-validator-option": { 198 | "version": "7.25.9", 199 | "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", 200 | "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", 201 | "dev": true, 202 | "license": "MIT", 203 | "engines": { 204 | "node": ">=6.9.0" 205 | } 206 | }, 207 | "node_modules/@babel/helpers": { 208 | "version": "7.26.10", 209 | "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.26.10.tgz", 210 | "integrity": "sha512-UPYc3SauzZ3JGgj87GgZ89JVdC5dj0AoetR5Bw6wj4niittNyFh6+eOGonYvJ1ao6B8lEa3Q3klS7ADZ53bc5g==", 211 | "dev": true, 212 | "license": "MIT", 213 | "dependencies": { 214 | "@babel/template": "^7.26.9", 215 | "@babel/types": "^7.26.10" 216 | }, 217 | "engines": { 218 | "node": ">=6.9.0" 219 | } 220 | }, 221 | "node_modules/@babel/parser": { 222 | "version": "7.26.10", 223 | "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.10.tgz", 224 | "integrity": "sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==", 225 | "dev": true, 226 | "license": "MIT", 227 | "dependencies": { 228 | "@babel/types": "^7.26.10" 229 | }, 230 | "bin": { 231 | "parser": "bin/babel-parser.js" 232 | }, 233 | "engines": { 234 | "node": ">=6.0.0" 235 | } 236 | }, 237 | "node_modules/@babel/plugin-transform-react-jsx-self": { 238 | "version": "7.25.9", 239 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.25.9.tgz", 240 | "integrity": "sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==", 241 | "dev": true, 242 | "license": "MIT", 243 | "dependencies": { 244 | "@babel/helper-plugin-utils": "^7.25.9" 245 | }, 246 | "engines": { 247 | "node": ">=6.9.0" 248 | }, 249 | "peerDependencies": { 250 | "@babel/core": "^7.0.0-0" 251 | } 252 | }, 253 | "node_modules/@babel/plugin-transform-react-jsx-source": { 254 | "version": "7.25.9", 255 | "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.25.9.tgz", 256 | "integrity": "sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==", 257 | "dev": true, 258 | "license": "MIT", 259 | "dependencies": { 260 | "@babel/helper-plugin-utils": "^7.25.9" 261 | }, 262 | "engines": { 263 | "node": ">=6.9.0" 264 | }, 265 | "peerDependencies": { 266 | "@babel/core": "^7.0.0-0" 267 | } 268 | }, 269 | "node_modules/@babel/template": { 270 | "version": "7.26.9", 271 | "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz", 272 | "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", 273 | "dev": true, 274 | "license": "MIT", 275 | "dependencies": { 276 | "@babel/code-frame": "^7.26.2", 277 | "@babel/parser": "^7.26.9", 278 | "@babel/types": "^7.26.9" 279 | }, 280 | "engines": { 281 | "node": ">=6.9.0" 282 | } 283 | }, 284 | "node_modules/@babel/traverse": { 285 | "version": "7.26.10", 286 | "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.10.tgz", 287 | "integrity": "sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==", 288 | "dev": true, 289 | "license": "MIT", 290 | "dependencies": { 291 | "@babel/code-frame": "^7.26.2", 292 | "@babel/generator": "^7.26.10", 293 | "@babel/parser": "^7.26.10", 294 | "@babel/template": "^7.26.9", 295 | "@babel/types": "^7.26.10", 296 | "debug": "^4.3.1", 297 | "globals": "^11.1.0" 298 | }, 299 | "engines": { 300 | "node": ">=6.9.0" 301 | } 302 | }, 303 | "node_modules/@babel/traverse/node_modules/globals": { 304 | "version": "11.12.0", 305 | "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", 306 | "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", 307 | "dev": true, 308 | "license": "MIT", 309 | "engines": { 310 | "node": ">=4" 311 | } 312 | }, 313 | "node_modules/@babel/types": { 314 | "version": "7.26.10", 315 | "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz", 316 | "integrity": "sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==", 317 | "dev": true, 318 | "license": "MIT", 319 | "dependencies": { 320 | "@babel/helper-string-parser": "^7.25.9", 321 | "@babel/helper-validator-identifier": "^7.25.9" 322 | }, 323 | "engines": { 324 | "node": ">=6.9.0" 325 | } 326 | }, 327 | "node_modules/@esbuild/aix-ppc64": { 328 | "version": "0.25.1", 329 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.1.tgz", 330 | "integrity": "sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==", 331 | "cpu": [ 332 | "ppc64" 333 | ], 334 | "license": "MIT", 335 | "optional": true, 336 | "os": [ 337 | "aix" 338 | ], 339 | "engines": { 340 | "node": ">=18" 341 | } 342 | }, 343 | "node_modules/@esbuild/android-arm": { 344 | "version": "0.25.1", 345 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.1.tgz", 346 | "integrity": "sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==", 347 | "cpu": [ 348 | "arm" 349 | ], 350 | "license": "MIT", 351 | "optional": true, 352 | "os": [ 353 | "android" 354 | ], 355 | "engines": { 356 | "node": ">=18" 357 | } 358 | }, 359 | "node_modules/@esbuild/android-arm64": { 360 | "version": "0.25.1", 361 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.1.tgz", 362 | "integrity": "sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==", 363 | "cpu": [ 364 | "arm64" 365 | ], 366 | "license": "MIT", 367 | "optional": true, 368 | "os": [ 369 | "android" 370 | ], 371 | "engines": { 372 | "node": ">=18" 373 | } 374 | }, 375 | "node_modules/@esbuild/android-x64": { 376 | "version": "0.25.1", 377 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.1.tgz", 378 | "integrity": "sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==", 379 | "cpu": [ 380 | "x64" 381 | ], 382 | "license": "MIT", 383 | "optional": true, 384 | "os": [ 385 | "android" 386 | ], 387 | "engines": { 388 | "node": ">=18" 389 | } 390 | }, 391 | "node_modules/@esbuild/darwin-arm64": { 392 | "version": "0.25.1", 393 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.1.tgz", 394 | "integrity": "sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==", 395 | "cpu": [ 396 | "arm64" 397 | ], 398 | "license": "MIT", 399 | "optional": true, 400 | "os": [ 401 | "darwin" 402 | ], 403 | "engines": { 404 | "node": ">=18" 405 | } 406 | }, 407 | "node_modules/@esbuild/darwin-x64": { 408 | "version": "0.25.1", 409 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.1.tgz", 410 | "integrity": "sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==", 411 | "cpu": [ 412 | "x64" 413 | ], 414 | "license": "MIT", 415 | "optional": true, 416 | "os": [ 417 | "darwin" 418 | ], 419 | "engines": { 420 | "node": ">=18" 421 | } 422 | }, 423 | "node_modules/@esbuild/freebsd-arm64": { 424 | "version": "0.25.1", 425 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.1.tgz", 426 | "integrity": "sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==", 427 | "cpu": [ 428 | "arm64" 429 | ], 430 | "license": "MIT", 431 | "optional": true, 432 | "os": [ 433 | "freebsd" 434 | ], 435 | "engines": { 436 | "node": ">=18" 437 | } 438 | }, 439 | "node_modules/@esbuild/freebsd-x64": { 440 | "version": "0.25.1", 441 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.1.tgz", 442 | "integrity": "sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==", 443 | "cpu": [ 444 | "x64" 445 | ], 446 | "license": "MIT", 447 | "optional": true, 448 | "os": [ 449 | "freebsd" 450 | ], 451 | "engines": { 452 | "node": ">=18" 453 | } 454 | }, 455 | "node_modules/@esbuild/linux-arm": { 456 | "version": "0.25.1", 457 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.1.tgz", 458 | "integrity": "sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==", 459 | "cpu": [ 460 | "arm" 461 | ], 462 | "license": "MIT", 463 | "optional": true, 464 | "os": [ 465 | "linux" 466 | ], 467 | "engines": { 468 | "node": ">=18" 469 | } 470 | }, 471 | "node_modules/@esbuild/linux-arm64": { 472 | "version": "0.25.1", 473 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.1.tgz", 474 | "integrity": "sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==", 475 | "cpu": [ 476 | "arm64" 477 | ], 478 | "license": "MIT", 479 | "optional": true, 480 | "os": [ 481 | "linux" 482 | ], 483 | "engines": { 484 | "node": ">=18" 485 | } 486 | }, 487 | "node_modules/@esbuild/linux-ia32": { 488 | "version": "0.25.1", 489 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.1.tgz", 490 | "integrity": "sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==", 491 | "cpu": [ 492 | "ia32" 493 | ], 494 | "license": "MIT", 495 | "optional": true, 496 | "os": [ 497 | "linux" 498 | ], 499 | "engines": { 500 | "node": ">=18" 501 | } 502 | }, 503 | "node_modules/@esbuild/linux-loong64": { 504 | "version": "0.25.1", 505 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.1.tgz", 506 | "integrity": "sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==", 507 | "cpu": [ 508 | "loong64" 509 | ], 510 | "license": "MIT", 511 | "optional": true, 512 | "os": [ 513 | "linux" 514 | ], 515 | "engines": { 516 | "node": ">=18" 517 | } 518 | }, 519 | "node_modules/@esbuild/linux-mips64el": { 520 | "version": "0.25.1", 521 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.1.tgz", 522 | "integrity": "sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==", 523 | "cpu": [ 524 | "mips64el" 525 | ], 526 | "license": "MIT", 527 | "optional": true, 528 | "os": [ 529 | "linux" 530 | ], 531 | "engines": { 532 | "node": ">=18" 533 | } 534 | }, 535 | "node_modules/@esbuild/linux-ppc64": { 536 | "version": "0.25.1", 537 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.1.tgz", 538 | "integrity": "sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==", 539 | "cpu": [ 540 | "ppc64" 541 | ], 542 | "license": "MIT", 543 | "optional": true, 544 | "os": [ 545 | "linux" 546 | ], 547 | "engines": { 548 | "node": ">=18" 549 | } 550 | }, 551 | "node_modules/@esbuild/linux-riscv64": { 552 | "version": "0.25.1", 553 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.1.tgz", 554 | "integrity": "sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==", 555 | "cpu": [ 556 | "riscv64" 557 | ], 558 | "license": "MIT", 559 | "optional": true, 560 | "os": [ 561 | "linux" 562 | ], 563 | "engines": { 564 | "node": ">=18" 565 | } 566 | }, 567 | "node_modules/@esbuild/linux-s390x": { 568 | "version": "0.25.1", 569 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.1.tgz", 570 | "integrity": "sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==", 571 | "cpu": [ 572 | "s390x" 573 | ], 574 | "license": "MIT", 575 | "optional": true, 576 | "os": [ 577 | "linux" 578 | ], 579 | "engines": { 580 | "node": ">=18" 581 | } 582 | }, 583 | "node_modules/@esbuild/linux-x64": { 584 | "version": "0.25.1", 585 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.1.tgz", 586 | "integrity": "sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==", 587 | "cpu": [ 588 | "x64" 589 | ], 590 | "license": "MIT", 591 | "optional": true, 592 | "os": [ 593 | "linux" 594 | ], 595 | "engines": { 596 | "node": ">=18" 597 | } 598 | }, 599 | "node_modules/@esbuild/netbsd-arm64": { 600 | "version": "0.25.1", 601 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.1.tgz", 602 | "integrity": "sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==", 603 | "cpu": [ 604 | "arm64" 605 | ], 606 | "license": "MIT", 607 | "optional": true, 608 | "os": [ 609 | "netbsd" 610 | ], 611 | "engines": { 612 | "node": ">=18" 613 | } 614 | }, 615 | "node_modules/@esbuild/netbsd-x64": { 616 | "version": "0.25.1", 617 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.1.tgz", 618 | "integrity": "sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==", 619 | "cpu": [ 620 | "x64" 621 | ], 622 | "license": "MIT", 623 | "optional": true, 624 | "os": [ 625 | "netbsd" 626 | ], 627 | "engines": { 628 | "node": ">=18" 629 | } 630 | }, 631 | "node_modules/@esbuild/openbsd-arm64": { 632 | "version": "0.25.1", 633 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.1.tgz", 634 | "integrity": "sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==", 635 | "cpu": [ 636 | "arm64" 637 | ], 638 | "license": "MIT", 639 | "optional": true, 640 | "os": [ 641 | "openbsd" 642 | ], 643 | "engines": { 644 | "node": ">=18" 645 | } 646 | }, 647 | "node_modules/@esbuild/openbsd-x64": { 648 | "version": "0.25.1", 649 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.1.tgz", 650 | "integrity": "sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==", 651 | "cpu": [ 652 | "x64" 653 | ], 654 | "license": "MIT", 655 | "optional": true, 656 | "os": [ 657 | "openbsd" 658 | ], 659 | "engines": { 660 | "node": ">=18" 661 | } 662 | }, 663 | "node_modules/@esbuild/sunos-x64": { 664 | "version": "0.25.1", 665 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.1.tgz", 666 | "integrity": "sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==", 667 | "cpu": [ 668 | "x64" 669 | ], 670 | "license": "MIT", 671 | "optional": true, 672 | "os": [ 673 | "sunos" 674 | ], 675 | "engines": { 676 | "node": ">=18" 677 | } 678 | }, 679 | "node_modules/@esbuild/win32-arm64": { 680 | "version": "0.25.1", 681 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.1.tgz", 682 | "integrity": "sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==", 683 | "cpu": [ 684 | "arm64" 685 | ], 686 | "license": "MIT", 687 | "optional": true, 688 | "os": [ 689 | "win32" 690 | ], 691 | "engines": { 692 | "node": ">=18" 693 | } 694 | }, 695 | "node_modules/@esbuild/win32-ia32": { 696 | "version": "0.25.1", 697 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.1.tgz", 698 | "integrity": "sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==", 699 | "cpu": [ 700 | "ia32" 701 | ], 702 | "license": "MIT", 703 | "optional": true, 704 | "os": [ 705 | "win32" 706 | ], 707 | "engines": { 708 | "node": ">=18" 709 | } 710 | }, 711 | "node_modules/@esbuild/win32-x64": { 712 | "version": "0.25.1", 713 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.1.tgz", 714 | "integrity": "sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==", 715 | "cpu": [ 716 | "x64" 717 | ], 718 | "license": "MIT", 719 | "optional": true, 720 | "os": [ 721 | "win32" 722 | ], 723 | "engines": { 724 | "node": ">=18" 725 | } 726 | }, 727 | "node_modules/@eslint-community/eslint-utils": { 728 | "version": "4.5.1", 729 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.5.1.tgz", 730 | "integrity": "sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==", 731 | "dev": true, 732 | "license": "MIT", 733 | "dependencies": { 734 | "eslint-visitor-keys": "^3.4.3" 735 | }, 736 | "engines": { 737 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 738 | }, 739 | "funding": { 740 | "url": "https://opencollective.com/eslint" 741 | }, 742 | "peerDependencies": { 743 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 744 | } 745 | }, 746 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { 747 | "version": "3.4.3", 748 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 749 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 750 | "dev": true, 751 | "license": "Apache-2.0", 752 | "engines": { 753 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 754 | }, 755 | "funding": { 756 | "url": "https://opencollective.com/eslint" 757 | } 758 | }, 759 | "node_modules/@eslint-community/regexpp": { 760 | "version": "4.12.1", 761 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 762 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 763 | "dev": true, 764 | "license": "MIT", 765 | "engines": { 766 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 767 | } 768 | }, 769 | "node_modules/@eslint/config-array": { 770 | "version": "0.19.2", 771 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.2.tgz", 772 | "integrity": "sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==", 773 | "dev": true, 774 | "license": "Apache-2.0", 775 | "dependencies": { 776 | "@eslint/object-schema": "^2.1.6", 777 | "debug": "^4.3.1", 778 | "minimatch": "^3.1.2" 779 | }, 780 | "engines": { 781 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 782 | } 783 | }, 784 | "node_modules/@eslint/config-helpers": { 785 | "version": "0.2.0", 786 | "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.0.tgz", 787 | "integrity": "sha512-yJLLmLexii32mGrhW29qvU3QBVTu0GUmEf/J4XsBtVhp4JkIUFN/BjWqTF63yRvGApIDpZm5fa97LtYtINmfeQ==", 788 | "dev": true, 789 | "license": "Apache-2.0", 790 | "engines": { 791 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 792 | } 793 | }, 794 | "node_modules/@eslint/core": { 795 | "version": "0.12.0", 796 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.12.0.tgz", 797 | "integrity": "sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==", 798 | "dev": true, 799 | "license": "Apache-2.0", 800 | "dependencies": { 801 | "@types/json-schema": "^7.0.15" 802 | }, 803 | "engines": { 804 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 805 | } 806 | }, 807 | "node_modules/@eslint/eslintrc": { 808 | "version": "3.3.1", 809 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", 810 | "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", 811 | "dev": true, 812 | "license": "MIT", 813 | "dependencies": { 814 | "ajv": "^6.12.4", 815 | "debug": "^4.3.2", 816 | "espree": "^10.0.1", 817 | "globals": "^14.0.0", 818 | "ignore": "^5.2.0", 819 | "import-fresh": "^3.2.1", 820 | "js-yaml": "^4.1.0", 821 | "minimatch": "^3.1.2", 822 | "strip-json-comments": "^3.1.1" 823 | }, 824 | "engines": { 825 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 826 | }, 827 | "funding": { 828 | "url": "https://opencollective.com/eslint" 829 | } 830 | }, 831 | "node_modules/@eslint/eslintrc/node_modules/globals": { 832 | "version": "14.0.0", 833 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 834 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 835 | "dev": true, 836 | "license": "MIT", 837 | "engines": { 838 | "node": ">=18" 839 | }, 840 | "funding": { 841 | "url": "https://github.com/sponsors/sindresorhus" 842 | } 843 | }, 844 | "node_modules/@eslint/js": { 845 | "version": "9.23.0", 846 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.23.0.tgz", 847 | "integrity": "sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==", 848 | "dev": true, 849 | "license": "MIT", 850 | "engines": { 851 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 852 | } 853 | }, 854 | "node_modules/@eslint/object-schema": { 855 | "version": "2.1.6", 856 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", 857 | "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", 858 | "dev": true, 859 | "license": "Apache-2.0", 860 | "engines": { 861 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 862 | } 863 | }, 864 | "node_modules/@eslint/plugin-kit": { 865 | "version": "0.2.7", 866 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.7.tgz", 867 | "integrity": "sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==", 868 | "dev": true, 869 | "license": "Apache-2.0", 870 | "dependencies": { 871 | "@eslint/core": "^0.12.0", 872 | "levn": "^0.4.1" 873 | }, 874 | "engines": { 875 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 876 | } 877 | }, 878 | "node_modules/@humanfs/core": { 879 | "version": "0.19.1", 880 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 881 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 882 | "dev": true, 883 | "license": "Apache-2.0", 884 | "engines": { 885 | "node": ">=18.18.0" 886 | } 887 | }, 888 | "node_modules/@humanfs/node": { 889 | "version": "0.16.6", 890 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 891 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 892 | "dev": true, 893 | "license": "Apache-2.0", 894 | "dependencies": { 895 | "@humanfs/core": "^0.19.1", 896 | "@humanwhocodes/retry": "^0.3.0" 897 | }, 898 | "engines": { 899 | "node": ">=18.18.0" 900 | } 901 | }, 902 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 903 | "version": "0.3.1", 904 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 905 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 906 | "dev": true, 907 | "license": "Apache-2.0", 908 | "engines": { 909 | "node": ">=18.18" 910 | }, 911 | "funding": { 912 | "type": "github", 913 | "url": "https://github.com/sponsors/nzakas" 914 | } 915 | }, 916 | "node_modules/@humanwhocodes/module-importer": { 917 | "version": "1.0.1", 918 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 919 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 920 | "dev": true, 921 | "license": "Apache-2.0", 922 | "engines": { 923 | "node": ">=12.22" 924 | }, 925 | "funding": { 926 | "type": "github", 927 | "url": "https://github.com/sponsors/nzakas" 928 | } 929 | }, 930 | "node_modules/@humanwhocodes/retry": { 931 | "version": "0.4.2", 932 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", 933 | "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", 934 | "dev": true, 935 | "license": "Apache-2.0", 936 | "engines": { 937 | "node": ">=18.18" 938 | }, 939 | "funding": { 940 | "type": "github", 941 | "url": "https://github.com/sponsors/nzakas" 942 | } 943 | }, 944 | "node_modules/@jridgewell/gen-mapping": { 945 | "version": "0.3.8", 946 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", 947 | "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", 948 | "dev": true, 949 | "license": "MIT", 950 | "dependencies": { 951 | "@jridgewell/set-array": "^1.2.1", 952 | "@jridgewell/sourcemap-codec": "^1.4.10", 953 | "@jridgewell/trace-mapping": "^0.3.24" 954 | }, 955 | "engines": { 956 | "node": ">=6.0.0" 957 | } 958 | }, 959 | "node_modules/@jridgewell/resolve-uri": { 960 | "version": "3.1.2", 961 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", 962 | "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", 963 | "dev": true, 964 | "license": "MIT", 965 | "engines": { 966 | "node": ">=6.0.0" 967 | } 968 | }, 969 | "node_modules/@jridgewell/set-array": { 970 | "version": "1.2.1", 971 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", 972 | "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", 973 | "dev": true, 974 | "license": "MIT", 975 | "engines": { 976 | "node": ">=6.0.0" 977 | } 978 | }, 979 | "node_modules/@jridgewell/sourcemap-codec": { 980 | "version": "1.5.0", 981 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", 982 | "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", 983 | "dev": true, 984 | "license": "MIT" 985 | }, 986 | "node_modules/@jridgewell/trace-mapping": { 987 | "version": "0.3.25", 988 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", 989 | "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", 990 | "dev": true, 991 | "license": "MIT", 992 | "dependencies": { 993 | "@jridgewell/resolve-uri": "^3.1.0", 994 | "@jridgewell/sourcemap-codec": "^1.4.14" 995 | } 996 | }, 997 | "node_modules/@rollup/rollup-android-arm-eabi": { 998 | "version": "4.36.0", 999 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.36.0.tgz", 1000 | "integrity": "sha512-jgrXjjcEwN6XpZXL0HUeOVGfjXhPyxAbbhD0BlXUB+abTOpbPiN5Wb3kOT7yb+uEtATNYF5x5gIfwutmuBA26w==", 1001 | "cpu": [ 1002 | "arm" 1003 | ], 1004 | "license": "MIT", 1005 | "optional": true, 1006 | "os": [ 1007 | "android" 1008 | ] 1009 | }, 1010 | "node_modules/@rollup/rollup-android-arm64": { 1011 | "version": "4.36.0", 1012 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.36.0.tgz", 1013 | "integrity": "sha512-NyfuLvdPdNUfUNeYKUwPwKsE5SXa2J6bCt2LdB/N+AxShnkpiczi3tcLJrm5mA+eqpy0HmaIY9F6XCa32N5yzg==", 1014 | "cpu": [ 1015 | "arm64" 1016 | ], 1017 | "license": "MIT", 1018 | "optional": true, 1019 | "os": [ 1020 | "android" 1021 | ] 1022 | }, 1023 | "node_modules/@rollup/rollup-darwin-arm64": { 1024 | "version": "4.36.0", 1025 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.36.0.tgz", 1026 | "integrity": "sha512-JQ1Jk5G4bGrD4pWJQzWsD8I1n1mgPXq33+/vP4sk8j/z/C2siRuxZtaUA7yMTf71TCZTZl/4e1bfzwUmFb3+rw==", 1027 | "cpu": [ 1028 | "arm64" 1029 | ], 1030 | "license": "MIT", 1031 | "optional": true, 1032 | "os": [ 1033 | "darwin" 1034 | ] 1035 | }, 1036 | "node_modules/@rollup/rollup-darwin-x64": { 1037 | "version": "4.36.0", 1038 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.36.0.tgz", 1039 | "integrity": "sha512-6c6wMZa1lrtiRsbDziCmjE53YbTkxMYhhnWnSW8R/yqsM7a6mSJ3uAVT0t8Y/DGt7gxUWYuFM4bwWk9XCJrFKA==", 1040 | "cpu": [ 1041 | "x64" 1042 | ], 1043 | "license": "MIT", 1044 | "optional": true, 1045 | "os": [ 1046 | "darwin" 1047 | ] 1048 | }, 1049 | "node_modules/@rollup/rollup-freebsd-arm64": { 1050 | "version": "4.36.0", 1051 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.36.0.tgz", 1052 | "integrity": "sha512-KXVsijKeJXOl8QzXTsA+sHVDsFOmMCdBRgFmBb+mfEb/7geR7+C8ypAml4fquUt14ZyVXaw2o1FWhqAfOvA4sg==", 1053 | "cpu": [ 1054 | "arm64" 1055 | ], 1056 | "license": "MIT", 1057 | "optional": true, 1058 | "os": [ 1059 | "freebsd" 1060 | ] 1061 | }, 1062 | "node_modules/@rollup/rollup-freebsd-x64": { 1063 | "version": "4.36.0", 1064 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.36.0.tgz", 1065 | "integrity": "sha512-dVeWq1ebbvByI+ndz4IJcD4a09RJgRYmLccwlQ8bPd4olz3Y213uf1iwvc7ZaxNn2ab7bjc08PrtBgMu6nb4pQ==", 1066 | "cpu": [ 1067 | "x64" 1068 | ], 1069 | "license": "MIT", 1070 | "optional": true, 1071 | "os": [ 1072 | "freebsd" 1073 | ] 1074 | }, 1075 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 1076 | "version": "4.36.0", 1077 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.36.0.tgz", 1078 | "integrity": "sha512-bvXVU42mOVcF4le6XSjscdXjqx8okv4n5vmwgzcmtvFdifQ5U4dXFYaCB87namDRKlUL9ybVtLQ9ztnawaSzvg==", 1079 | "cpu": [ 1080 | "arm" 1081 | ], 1082 | "license": "MIT", 1083 | "optional": true, 1084 | "os": [ 1085 | "linux" 1086 | ] 1087 | }, 1088 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 1089 | "version": "4.36.0", 1090 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.36.0.tgz", 1091 | "integrity": "sha512-JFIQrDJYrxOnyDQGYkqnNBtjDwTgbasdbUiQvcU8JmGDfValfH1lNpng+4FWlhaVIR4KPkeddYjsVVbmJYvDcg==", 1092 | "cpu": [ 1093 | "arm" 1094 | ], 1095 | "license": "MIT", 1096 | "optional": true, 1097 | "os": [ 1098 | "linux" 1099 | ] 1100 | }, 1101 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 1102 | "version": "4.36.0", 1103 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.36.0.tgz", 1104 | "integrity": "sha512-KqjYVh3oM1bj//5X7k79PSCZ6CvaVzb7Qs7VMWS+SlWB5M8p3FqufLP9VNp4CazJ0CsPDLwVD9r3vX7Ci4J56A==", 1105 | "cpu": [ 1106 | "arm64" 1107 | ], 1108 | "license": "MIT", 1109 | "optional": true, 1110 | "os": [ 1111 | "linux" 1112 | ] 1113 | }, 1114 | "node_modules/@rollup/rollup-linux-arm64-musl": { 1115 | "version": "4.36.0", 1116 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.36.0.tgz", 1117 | "integrity": "sha512-QiGnhScND+mAAtfHqeT+cB1S9yFnNQ/EwCg5yE3MzoaZZnIV0RV9O5alJAoJKX/sBONVKeZdMfO8QSaWEygMhw==", 1118 | "cpu": [ 1119 | "arm64" 1120 | ], 1121 | "license": "MIT", 1122 | "optional": true, 1123 | "os": [ 1124 | "linux" 1125 | ] 1126 | }, 1127 | "node_modules/@rollup/rollup-linux-loongarch64-gnu": { 1128 | "version": "4.36.0", 1129 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.36.0.tgz", 1130 | "integrity": "sha512-1ZPyEDWF8phd4FQtTzMh8FQwqzvIjLsl6/84gzUxnMNFBtExBtpL51H67mV9xipuxl1AEAerRBgBwFNpkw8+Lg==", 1131 | "cpu": [ 1132 | "loong64" 1133 | ], 1134 | "license": "MIT", 1135 | "optional": true, 1136 | "os": [ 1137 | "linux" 1138 | ] 1139 | }, 1140 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 1141 | "version": "4.36.0", 1142 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.36.0.tgz", 1143 | "integrity": "sha512-VMPMEIUpPFKpPI9GZMhJrtu8rxnp6mJR3ZzQPykq4xc2GmdHj3Q4cA+7avMyegXy4n1v+Qynr9fR88BmyO74tg==", 1144 | "cpu": [ 1145 | "ppc64" 1146 | ], 1147 | "license": "MIT", 1148 | "optional": true, 1149 | "os": [ 1150 | "linux" 1151 | ] 1152 | }, 1153 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 1154 | "version": "4.36.0", 1155 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.36.0.tgz", 1156 | "integrity": "sha512-ttE6ayb/kHwNRJGYLpuAvB7SMtOeQnVXEIpMtAvx3kepFQeowVED0n1K9nAdraHUPJ5hydEMxBpIR7o4nrm8uA==", 1157 | "cpu": [ 1158 | "riscv64" 1159 | ], 1160 | "license": "MIT", 1161 | "optional": true, 1162 | "os": [ 1163 | "linux" 1164 | ] 1165 | }, 1166 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 1167 | "version": "4.36.0", 1168 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.36.0.tgz", 1169 | "integrity": "sha512-4a5gf2jpS0AIe7uBjxDeUMNcFmaRTbNv7NxI5xOCs4lhzsVyGR/0qBXduPnoWf6dGC365saTiwag8hP1imTgag==", 1170 | "cpu": [ 1171 | "s390x" 1172 | ], 1173 | "license": "MIT", 1174 | "optional": true, 1175 | "os": [ 1176 | "linux" 1177 | ] 1178 | }, 1179 | "node_modules/@rollup/rollup-linux-x64-gnu": { 1180 | "version": "4.36.0", 1181 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.36.0.tgz", 1182 | "integrity": "sha512-5KtoW8UWmwFKQ96aQL3LlRXX16IMwyzMq/jSSVIIyAANiE1doaQsx/KRyhAvpHlPjPiSU/AYX/8m+lQ9VToxFQ==", 1183 | "cpu": [ 1184 | "x64" 1185 | ], 1186 | "license": "MIT", 1187 | "optional": true, 1188 | "os": [ 1189 | "linux" 1190 | ] 1191 | }, 1192 | "node_modules/@rollup/rollup-linux-x64-musl": { 1193 | "version": "4.36.0", 1194 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.36.0.tgz", 1195 | "integrity": "sha512-sycrYZPrv2ag4OCvaN5js+f01eoZ2U+RmT5as8vhxiFz+kxwlHrsxOwKPSA8WyS+Wc6Epid9QeI/IkQ9NkgYyQ==", 1196 | "cpu": [ 1197 | "x64" 1198 | ], 1199 | "license": "MIT", 1200 | "optional": true, 1201 | "os": [ 1202 | "linux" 1203 | ] 1204 | }, 1205 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 1206 | "version": "4.36.0", 1207 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.36.0.tgz", 1208 | "integrity": "sha512-qbqt4N7tokFwwSVlWDsjfoHgviS3n/vZ8LK0h1uLG9TYIRuUTJC88E1xb3LM2iqZ/WTqNQjYrtmtGmrmmawB6A==", 1209 | "cpu": [ 1210 | "arm64" 1211 | ], 1212 | "license": "MIT", 1213 | "optional": true, 1214 | "os": [ 1215 | "win32" 1216 | ] 1217 | }, 1218 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 1219 | "version": "4.36.0", 1220 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.36.0.tgz", 1221 | "integrity": "sha512-t+RY0JuRamIocMuQcfwYSOkmdX9dtkr1PbhKW42AMvaDQa+jOdpUYysroTF/nuPpAaQMWp7ye+ndlmmthieJrQ==", 1222 | "cpu": [ 1223 | "ia32" 1224 | ], 1225 | "license": "MIT", 1226 | "optional": true, 1227 | "os": [ 1228 | "win32" 1229 | ] 1230 | }, 1231 | "node_modules/@rollup/rollup-win32-x64-msvc": { 1232 | "version": "4.36.0", 1233 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.36.0.tgz", 1234 | "integrity": "sha512-aRXd7tRZkWLqGbChgcMMDEHjOKudo1kChb1Jt1IfR8cY/KIpgNviLeJy5FUb9IpSuQj8dU2fAYNMPW/hLKOSTw==", 1235 | "cpu": [ 1236 | "x64" 1237 | ], 1238 | "license": "MIT", 1239 | "optional": true, 1240 | "os": [ 1241 | "win32" 1242 | ] 1243 | }, 1244 | "node_modules/@tailwindcss/node": { 1245 | "version": "4.0.15", 1246 | "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.0.15.tgz", 1247 | "integrity": "sha512-IODaJjNmiasfZX3IoS+4Em3iu0fD2HS0/tgrnkYfW4hyUor01Smnr5eY3jc4rRgaTDrJlDmBTHbFO0ETTDaxWA==", 1248 | "license": "MIT", 1249 | "dependencies": { 1250 | "enhanced-resolve": "^5.18.1", 1251 | "jiti": "^2.4.2", 1252 | "tailwindcss": "4.0.15" 1253 | } 1254 | }, 1255 | "node_modules/@tailwindcss/oxide": { 1256 | "version": "4.0.15", 1257 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.0.15.tgz", 1258 | "integrity": "sha512-e0uHrKfPu7JJGMfjwVNyt5M0u+OP8kUmhACwIRlM+JNBuReDVQ63yAD1NWe5DwJtdaHjugNBil76j+ks3zlk6g==", 1259 | "license": "MIT", 1260 | "engines": { 1261 | "node": ">= 10" 1262 | }, 1263 | "optionalDependencies": { 1264 | "@tailwindcss/oxide-android-arm64": "4.0.15", 1265 | "@tailwindcss/oxide-darwin-arm64": "4.0.15", 1266 | "@tailwindcss/oxide-darwin-x64": "4.0.15", 1267 | "@tailwindcss/oxide-freebsd-x64": "4.0.15", 1268 | "@tailwindcss/oxide-linux-arm-gnueabihf": "4.0.15", 1269 | "@tailwindcss/oxide-linux-arm64-gnu": "4.0.15", 1270 | "@tailwindcss/oxide-linux-arm64-musl": "4.0.15", 1271 | "@tailwindcss/oxide-linux-x64-gnu": "4.0.15", 1272 | "@tailwindcss/oxide-linux-x64-musl": "4.0.15", 1273 | "@tailwindcss/oxide-win32-arm64-msvc": "4.0.15", 1274 | "@tailwindcss/oxide-win32-x64-msvc": "4.0.15" 1275 | } 1276 | }, 1277 | "node_modules/@tailwindcss/oxide-android-arm64": { 1278 | "version": "4.0.15", 1279 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.0.15.tgz", 1280 | "integrity": "sha512-EBuyfSKkom7N+CB3A+7c0m4+qzKuiN0WCvzPvj5ZoRu4NlQadg/mthc1tl5k9b5ffRGsbDvP4k21azU4VwVk3Q==", 1281 | "cpu": [ 1282 | "arm64" 1283 | ], 1284 | "license": "MIT", 1285 | "optional": true, 1286 | "os": [ 1287 | "android" 1288 | ], 1289 | "engines": { 1290 | "node": ">= 10" 1291 | } 1292 | }, 1293 | "node_modules/@tailwindcss/oxide-darwin-arm64": { 1294 | "version": "4.0.15", 1295 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.0.15.tgz", 1296 | "integrity": "sha512-ObVAnEpLepMhV9VoO0JSit66jiN5C4YCqW3TflsE9boo2Z7FIjV80RFbgeL2opBhtxbaNEDa6D0/hq/EP03kgQ==", 1297 | "cpu": [ 1298 | "arm64" 1299 | ], 1300 | "license": "MIT", 1301 | "optional": true, 1302 | "os": [ 1303 | "darwin" 1304 | ], 1305 | "engines": { 1306 | "node": ">= 10" 1307 | } 1308 | }, 1309 | "node_modules/@tailwindcss/oxide-darwin-x64": { 1310 | "version": "4.0.15", 1311 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.0.15.tgz", 1312 | "integrity": "sha512-IElwoFhUinOr9MyKmGTPNi1Rwdh68JReFgYWibPWTGuevkHkLWKEflZc2jtI5lWZ5U9JjUnUfnY43I4fEXrc4g==", 1313 | "cpu": [ 1314 | "x64" 1315 | ], 1316 | "license": "MIT", 1317 | "optional": true, 1318 | "os": [ 1319 | "darwin" 1320 | ], 1321 | "engines": { 1322 | "node": ">= 10" 1323 | } 1324 | }, 1325 | "node_modules/@tailwindcss/oxide-freebsd-x64": { 1326 | "version": "4.0.15", 1327 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.0.15.tgz", 1328 | "integrity": "sha512-6BLLqyx7SIYRBOnTZ8wgfXANLJV5TQd3PevRJZp0vn42eO58A2LykRKdvL1qyPfdpmEVtF+uVOEZ4QTMqDRAWA==", 1329 | "cpu": [ 1330 | "x64" 1331 | ], 1332 | "license": "MIT", 1333 | "optional": true, 1334 | "os": [ 1335 | "freebsd" 1336 | ], 1337 | "engines": { 1338 | "node": ">= 10" 1339 | } 1340 | }, 1341 | "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": { 1342 | "version": "4.0.15", 1343 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.0.15.tgz", 1344 | "integrity": "sha512-Zy63EVqO9241Pfg6G0IlRIWyY5vNcWrL5dd2WAKVJZRQVeolXEf1KfjkyeAAlErDj72cnyXObEZjMoPEKHpdNw==", 1345 | "cpu": [ 1346 | "arm" 1347 | ], 1348 | "license": "MIT", 1349 | "optional": true, 1350 | "os": [ 1351 | "linux" 1352 | ], 1353 | "engines": { 1354 | "node": ">= 10" 1355 | } 1356 | }, 1357 | "node_modules/@tailwindcss/oxide-linux-arm64-gnu": { 1358 | "version": "4.0.15", 1359 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.0.15.tgz", 1360 | "integrity": "sha512-2NemGQeaTbtIp1Z2wyerbVEJZTkAWhMDOhhR5z/zJ75yMNf8yLnE+sAlyf6yGDNr+1RqvWrRhhCFt7i0CIxe4Q==", 1361 | "cpu": [ 1362 | "arm64" 1363 | ], 1364 | "license": "MIT", 1365 | "optional": true, 1366 | "os": [ 1367 | "linux" 1368 | ], 1369 | "engines": { 1370 | "node": ">= 10" 1371 | } 1372 | }, 1373 | "node_modules/@tailwindcss/oxide-linux-arm64-musl": { 1374 | "version": "4.0.15", 1375 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.0.15.tgz", 1376 | "integrity": "sha512-342GVnhH/6PkVgKtEzvNVuQ4D+Q7B7qplvuH20Cfz9qEtydG6IQczTZ5IT4JPlh931MG1NUCVxg+CIorr1WJyw==", 1377 | "cpu": [ 1378 | "arm64" 1379 | ], 1380 | "license": "MIT", 1381 | "optional": true, 1382 | "os": [ 1383 | "linux" 1384 | ], 1385 | "engines": { 1386 | "node": ">= 10" 1387 | } 1388 | }, 1389 | "node_modules/@tailwindcss/oxide-linux-x64-gnu": { 1390 | "version": "4.0.15", 1391 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.0.15.tgz", 1392 | "integrity": "sha512-g76GxlKH124RuGqacCEFc2nbzRl7bBrlC8qDQMiUABkiifDRHOIUjgKbLNG4RuR9hQAD/MKsqZ7A8L08zsoBrw==", 1393 | "cpu": [ 1394 | "x64" 1395 | ], 1396 | "license": "MIT", 1397 | "optional": true, 1398 | "os": [ 1399 | "linux" 1400 | ], 1401 | "engines": { 1402 | "node": ">= 10" 1403 | } 1404 | }, 1405 | "node_modules/@tailwindcss/oxide-linux-x64-musl": { 1406 | "version": "4.0.15", 1407 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.0.15.tgz", 1408 | "integrity": "sha512-Gg/Y1XrKEvKpq6WeNt2h8rMIKOBj/W3mNa5NMvkQgMC7iO0+UNLrYmt6zgZufht66HozNpn+tJMbbkZ5a3LczA==", 1409 | "cpu": [ 1410 | "x64" 1411 | ], 1412 | "license": "MIT", 1413 | "optional": true, 1414 | "os": [ 1415 | "linux" 1416 | ], 1417 | "engines": { 1418 | "node": ">= 10" 1419 | } 1420 | }, 1421 | "node_modules/@tailwindcss/oxide-win32-arm64-msvc": { 1422 | "version": "4.0.15", 1423 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.0.15.tgz", 1424 | "integrity": "sha512-7QtSSJwYZ7ZK1phVgcNZpuf7c7gaCj8Wb0xjliligT5qCGCp79OV2n3SJummVZdw4fbTNKUOYMO7m1GinppZyA==", 1425 | "cpu": [ 1426 | "arm64" 1427 | ], 1428 | "license": "MIT", 1429 | "optional": true, 1430 | "os": [ 1431 | "win32" 1432 | ], 1433 | "engines": { 1434 | "node": ">= 10" 1435 | } 1436 | }, 1437 | "node_modules/@tailwindcss/oxide-win32-x64-msvc": { 1438 | "version": "4.0.15", 1439 | "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.0.15.tgz", 1440 | "integrity": "sha512-JQ5H+5MLhOjpgNp6KomouE0ZuKmk3hO5h7/ClMNAQ8gZI2zkli3IH8ZqLbd2DVfXDbdxN2xvooIEeIlkIoSCqw==", 1441 | "cpu": [ 1442 | "x64" 1443 | ], 1444 | "license": "MIT", 1445 | "optional": true, 1446 | "os": [ 1447 | "win32" 1448 | ], 1449 | "engines": { 1450 | "node": ">= 10" 1451 | } 1452 | }, 1453 | "node_modules/@tailwindcss/vite": { 1454 | "version": "4.0.15", 1455 | "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.0.15.tgz", 1456 | "integrity": "sha512-JRexava80NijI8cTcLXNM3nQL5A0ptTHI8oJLLe8z1MpNB6p5J4WCdJJP8RoyHu8/eB1JzEdbpH86eGfbuaezQ==", 1457 | "license": "MIT", 1458 | "dependencies": { 1459 | "@tailwindcss/node": "4.0.15", 1460 | "@tailwindcss/oxide": "4.0.15", 1461 | "lightningcss": "1.29.2", 1462 | "tailwindcss": "4.0.15" 1463 | }, 1464 | "peerDependencies": { 1465 | "vite": "^5.2.0 || ^6" 1466 | } 1467 | }, 1468 | "node_modules/@types/babel__core": { 1469 | "version": "7.20.5", 1470 | "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", 1471 | "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", 1472 | "dev": true, 1473 | "license": "MIT", 1474 | "dependencies": { 1475 | "@babel/parser": "^7.20.7", 1476 | "@babel/types": "^7.20.7", 1477 | "@types/babel__generator": "*", 1478 | "@types/babel__template": "*", 1479 | "@types/babel__traverse": "*" 1480 | } 1481 | }, 1482 | "node_modules/@types/babel__generator": { 1483 | "version": "7.6.8", 1484 | "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", 1485 | "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", 1486 | "dev": true, 1487 | "license": "MIT", 1488 | "dependencies": { 1489 | "@babel/types": "^7.0.0" 1490 | } 1491 | }, 1492 | "node_modules/@types/babel__template": { 1493 | "version": "7.4.4", 1494 | "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", 1495 | "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", 1496 | "dev": true, 1497 | "license": "MIT", 1498 | "dependencies": { 1499 | "@babel/parser": "^7.1.0", 1500 | "@babel/types": "^7.0.0" 1501 | } 1502 | }, 1503 | "node_modules/@types/babel__traverse": { 1504 | "version": "7.20.6", 1505 | "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", 1506 | "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", 1507 | "dev": true, 1508 | "license": "MIT", 1509 | "dependencies": { 1510 | "@babel/types": "^7.20.7" 1511 | } 1512 | }, 1513 | "node_modules/@types/cookie": { 1514 | "version": "0.6.0", 1515 | "resolved": "https://registry.npmjs.org/@types/cookie/-/cookie-0.6.0.tgz", 1516 | "integrity": "sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==", 1517 | "license": "MIT" 1518 | }, 1519 | "node_modules/@types/estree": { 1520 | "version": "1.0.6", 1521 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 1522 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 1523 | "license": "MIT" 1524 | }, 1525 | "node_modules/@types/json-schema": { 1526 | "version": "7.0.15", 1527 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 1528 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 1529 | "dev": true, 1530 | "license": "MIT" 1531 | }, 1532 | "node_modules/@types/react": { 1533 | "version": "19.0.12", 1534 | "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.12.tgz", 1535 | "integrity": "sha512-V6Ar115dBDrjbtXSrS+/Oruobc+qVbbUxDFC1RSbRqLt5SYvxxyIDrSC85RWml54g+jfNeEMZhEj7wW07ONQhA==", 1536 | "dev": true, 1537 | "license": "MIT", 1538 | "dependencies": { 1539 | "csstype": "^3.0.2" 1540 | } 1541 | }, 1542 | "node_modules/@types/react-dom": { 1543 | "version": "19.0.4", 1544 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.0.4.tgz", 1545 | "integrity": "sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg==", 1546 | "dev": true, 1547 | "license": "MIT", 1548 | "peerDependencies": { 1549 | "@types/react": "^19.0.0" 1550 | } 1551 | }, 1552 | "node_modules/@vitejs/plugin-react": { 1553 | "version": "4.3.4", 1554 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.3.4.tgz", 1555 | "integrity": "sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==", 1556 | "dev": true, 1557 | "license": "MIT", 1558 | "dependencies": { 1559 | "@babel/core": "^7.26.0", 1560 | "@babel/plugin-transform-react-jsx-self": "^7.25.9", 1561 | "@babel/plugin-transform-react-jsx-source": "^7.25.9", 1562 | "@types/babel__core": "^7.20.5", 1563 | "react-refresh": "^0.14.2" 1564 | }, 1565 | "engines": { 1566 | "node": "^14.18.0 || >=16.0.0" 1567 | }, 1568 | "peerDependencies": { 1569 | "vite": "^4.2.0 || ^5.0.0 || ^6.0.0" 1570 | } 1571 | }, 1572 | "node_modules/acorn": { 1573 | "version": "8.14.1", 1574 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", 1575 | "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", 1576 | "dev": true, 1577 | "license": "MIT", 1578 | "bin": { 1579 | "acorn": "bin/acorn" 1580 | }, 1581 | "engines": { 1582 | "node": ">=0.4.0" 1583 | } 1584 | }, 1585 | "node_modules/acorn-jsx": { 1586 | "version": "5.3.2", 1587 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1588 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1589 | "dev": true, 1590 | "license": "MIT", 1591 | "peerDependencies": { 1592 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1593 | } 1594 | }, 1595 | "node_modules/ajv": { 1596 | "version": "6.12.6", 1597 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1598 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1599 | "dev": true, 1600 | "license": "MIT", 1601 | "dependencies": { 1602 | "fast-deep-equal": "^3.1.1", 1603 | "fast-json-stable-stringify": "^2.0.0", 1604 | "json-schema-traverse": "^0.4.1", 1605 | "uri-js": "^4.2.2" 1606 | }, 1607 | "funding": { 1608 | "type": "github", 1609 | "url": "https://github.com/sponsors/epoberezkin" 1610 | } 1611 | }, 1612 | "node_modules/ansi-styles": { 1613 | "version": "4.3.0", 1614 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1615 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1616 | "dev": true, 1617 | "license": "MIT", 1618 | "dependencies": { 1619 | "color-convert": "^2.0.1" 1620 | }, 1621 | "engines": { 1622 | "node": ">=8" 1623 | }, 1624 | "funding": { 1625 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1626 | } 1627 | }, 1628 | "node_modules/argparse": { 1629 | "version": "2.0.1", 1630 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1631 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1632 | "dev": true, 1633 | "license": "Python-2.0" 1634 | }, 1635 | "node_modules/balanced-match": { 1636 | "version": "1.0.2", 1637 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1638 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1639 | "dev": true, 1640 | "license": "MIT" 1641 | }, 1642 | "node_modules/brace-expansion": { 1643 | "version": "1.1.11", 1644 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1645 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1646 | "dev": true, 1647 | "license": "MIT", 1648 | "dependencies": { 1649 | "balanced-match": "^1.0.0", 1650 | "concat-map": "0.0.1" 1651 | } 1652 | }, 1653 | "node_modules/browserslist": { 1654 | "version": "4.24.4", 1655 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", 1656 | "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", 1657 | "dev": true, 1658 | "funding": [ 1659 | { 1660 | "type": "opencollective", 1661 | "url": "https://opencollective.com/browserslist" 1662 | }, 1663 | { 1664 | "type": "tidelift", 1665 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1666 | }, 1667 | { 1668 | "type": "github", 1669 | "url": "https://github.com/sponsors/ai" 1670 | } 1671 | ], 1672 | "license": "MIT", 1673 | "dependencies": { 1674 | "caniuse-lite": "^1.0.30001688", 1675 | "electron-to-chromium": "^1.5.73", 1676 | "node-releases": "^2.0.19", 1677 | "update-browserslist-db": "^1.1.1" 1678 | }, 1679 | "bin": { 1680 | "browserslist": "cli.js" 1681 | }, 1682 | "engines": { 1683 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1684 | } 1685 | }, 1686 | "node_modules/callsites": { 1687 | "version": "3.1.0", 1688 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1689 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1690 | "dev": true, 1691 | "license": "MIT", 1692 | "engines": { 1693 | "node": ">=6" 1694 | } 1695 | }, 1696 | "node_modules/caniuse-lite": { 1697 | "version": "1.0.30001706", 1698 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001706.tgz", 1699 | "integrity": "sha512-3ZczoTApMAZwPKYWmwVbQMFpXBDds3/0VciVoUwPUbldlYyVLmRVuRs/PcUZtHpbLRpzzDvrvnFuREsGt6lUug==", 1700 | "dev": true, 1701 | "funding": [ 1702 | { 1703 | "type": "opencollective", 1704 | "url": "https://opencollective.com/browserslist" 1705 | }, 1706 | { 1707 | "type": "tidelift", 1708 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1709 | }, 1710 | { 1711 | "type": "github", 1712 | "url": "https://github.com/sponsors/ai" 1713 | } 1714 | ], 1715 | "license": "CC-BY-4.0" 1716 | }, 1717 | "node_modules/chalk": { 1718 | "version": "4.1.2", 1719 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1720 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1721 | "dev": true, 1722 | "license": "MIT", 1723 | "dependencies": { 1724 | "ansi-styles": "^4.1.0", 1725 | "supports-color": "^7.1.0" 1726 | }, 1727 | "engines": { 1728 | "node": ">=10" 1729 | }, 1730 | "funding": { 1731 | "url": "https://github.com/chalk/chalk?sponsor=1" 1732 | } 1733 | }, 1734 | "node_modules/color-convert": { 1735 | "version": "2.0.1", 1736 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1737 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1738 | "dev": true, 1739 | "license": "MIT", 1740 | "dependencies": { 1741 | "color-name": "~1.1.4" 1742 | }, 1743 | "engines": { 1744 | "node": ">=7.0.0" 1745 | } 1746 | }, 1747 | "node_modules/color-name": { 1748 | "version": "1.1.4", 1749 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1750 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1751 | "dev": true, 1752 | "license": "MIT" 1753 | }, 1754 | "node_modules/concat-map": { 1755 | "version": "0.0.1", 1756 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1757 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1758 | "dev": true, 1759 | "license": "MIT" 1760 | }, 1761 | "node_modules/convert-source-map": { 1762 | "version": "2.0.0", 1763 | "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", 1764 | "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", 1765 | "dev": true, 1766 | "license": "MIT" 1767 | }, 1768 | "node_modules/cookie": { 1769 | "version": "1.0.2", 1770 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.0.2.tgz", 1771 | "integrity": "sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==", 1772 | "license": "MIT", 1773 | "engines": { 1774 | "node": ">=18" 1775 | } 1776 | }, 1777 | "node_modules/cross-spawn": { 1778 | "version": "7.0.6", 1779 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1780 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1781 | "dev": true, 1782 | "license": "MIT", 1783 | "dependencies": { 1784 | "path-key": "^3.1.0", 1785 | "shebang-command": "^2.0.0", 1786 | "which": "^2.0.1" 1787 | }, 1788 | "engines": { 1789 | "node": ">= 8" 1790 | } 1791 | }, 1792 | "node_modules/csstype": { 1793 | "version": "3.1.3", 1794 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 1795 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", 1796 | "dev": true, 1797 | "license": "MIT" 1798 | }, 1799 | "node_modules/debug": { 1800 | "version": "4.4.0", 1801 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", 1802 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", 1803 | "dev": true, 1804 | "license": "MIT", 1805 | "dependencies": { 1806 | "ms": "^2.1.3" 1807 | }, 1808 | "engines": { 1809 | "node": ">=6.0" 1810 | }, 1811 | "peerDependenciesMeta": { 1812 | "supports-color": { 1813 | "optional": true 1814 | } 1815 | } 1816 | }, 1817 | "node_modules/deep-is": { 1818 | "version": "0.1.4", 1819 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1820 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1821 | "dev": true, 1822 | "license": "MIT" 1823 | }, 1824 | "node_modules/detect-libc": { 1825 | "version": "2.0.3", 1826 | "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", 1827 | "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", 1828 | "license": "Apache-2.0", 1829 | "engines": { 1830 | "node": ">=8" 1831 | } 1832 | }, 1833 | "node_modules/electron-to-chromium": { 1834 | "version": "1.5.123", 1835 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.123.tgz", 1836 | "integrity": "sha512-refir3NlutEZqlKaBLK0tzlVLe5P2wDKS7UQt/3SpibizgsRAPOsqQC3ffw1nlv3ze5gjRQZYHoPymgVZkplFA==", 1837 | "dev": true, 1838 | "license": "ISC" 1839 | }, 1840 | "node_modules/enhanced-resolve": { 1841 | "version": "5.18.1", 1842 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.1.tgz", 1843 | "integrity": "sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==", 1844 | "license": "MIT", 1845 | "dependencies": { 1846 | "graceful-fs": "^4.2.4", 1847 | "tapable": "^2.2.0" 1848 | }, 1849 | "engines": { 1850 | "node": ">=10.13.0" 1851 | } 1852 | }, 1853 | "node_modules/esbuild": { 1854 | "version": "0.25.1", 1855 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.1.tgz", 1856 | "integrity": "sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==", 1857 | "hasInstallScript": true, 1858 | "license": "MIT", 1859 | "bin": { 1860 | "esbuild": "bin/esbuild" 1861 | }, 1862 | "engines": { 1863 | "node": ">=18" 1864 | }, 1865 | "optionalDependencies": { 1866 | "@esbuild/aix-ppc64": "0.25.1", 1867 | "@esbuild/android-arm": "0.25.1", 1868 | "@esbuild/android-arm64": "0.25.1", 1869 | "@esbuild/android-x64": "0.25.1", 1870 | "@esbuild/darwin-arm64": "0.25.1", 1871 | "@esbuild/darwin-x64": "0.25.1", 1872 | "@esbuild/freebsd-arm64": "0.25.1", 1873 | "@esbuild/freebsd-x64": "0.25.1", 1874 | "@esbuild/linux-arm": "0.25.1", 1875 | "@esbuild/linux-arm64": "0.25.1", 1876 | "@esbuild/linux-ia32": "0.25.1", 1877 | "@esbuild/linux-loong64": "0.25.1", 1878 | "@esbuild/linux-mips64el": "0.25.1", 1879 | "@esbuild/linux-ppc64": "0.25.1", 1880 | "@esbuild/linux-riscv64": "0.25.1", 1881 | "@esbuild/linux-s390x": "0.25.1", 1882 | "@esbuild/linux-x64": "0.25.1", 1883 | "@esbuild/netbsd-arm64": "0.25.1", 1884 | "@esbuild/netbsd-x64": "0.25.1", 1885 | "@esbuild/openbsd-arm64": "0.25.1", 1886 | "@esbuild/openbsd-x64": "0.25.1", 1887 | "@esbuild/sunos-x64": "0.25.1", 1888 | "@esbuild/win32-arm64": "0.25.1", 1889 | "@esbuild/win32-ia32": "0.25.1", 1890 | "@esbuild/win32-x64": "0.25.1" 1891 | } 1892 | }, 1893 | "node_modules/escalade": { 1894 | "version": "3.2.0", 1895 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", 1896 | "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", 1897 | "dev": true, 1898 | "license": "MIT", 1899 | "engines": { 1900 | "node": ">=6" 1901 | } 1902 | }, 1903 | "node_modules/escape-string-regexp": { 1904 | "version": "4.0.0", 1905 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1906 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1907 | "dev": true, 1908 | "license": "MIT", 1909 | "engines": { 1910 | "node": ">=10" 1911 | }, 1912 | "funding": { 1913 | "url": "https://github.com/sponsors/sindresorhus" 1914 | } 1915 | }, 1916 | "node_modules/eslint": { 1917 | "version": "9.23.0", 1918 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.23.0.tgz", 1919 | "integrity": "sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==", 1920 | "dev": true, 1921 | "license": "MIT", 1922 | "dependencies": { 1923 | "@eslint-community/eslint-utils": "^4.2.0", 1924 | "@eslint-community/regexpp": "^4.12.1", 1925 | "@eslint/config-array": "^0.19.2", 1926 | "@eslint/config-helpers": "^0.2.0", 1927 | "@eslint/core": "^0.12.0", 1928 | "@eslint/eslintrc": "^3.3.1", 1929 | "@eslint/js": "9.23.0", 1930 | "@eslint/plugin-kit": "^0.2.7", 1931 | "@humanfs/node": "^0.16.6", 1932 | "@humanwhocodes/module-importer": "^1.0.1", 1933 | "@humanwhocodes/retry": "^0.4.2", 1934 | "@types/estree": "^1.0.6", 1935 | "@types/json-schema": "^7.0.15", 1936 | "ajv": "^6.12.4", 1937 | "chalk": "^4.0.0", 1938 | "cross-spawn": "^7.0.6", 1939 | "debug": "^4.3.2", 1940 | "escape-string-regexp": "^4.0.0", 1941 | "eslint-scope": "^8.3.0", 1942 | "eslint-visitor-keys": "^4.2.0", 1943 | "espree": "^10.3.0", 1944 | "esquery": "^1.5.0", 1945 | "esutils": "^2.0.2", 1946 | "fast-deep-equal": "^3.1.3", 1947 | "file-entry-cache": "^8.0.0", 1948 | "find-up": "^5.0.0", 1949 | "glob-parent": "^6.0.2", 1950 | "ignore": "^5.2.0", 1951 | "imurmurhash": "^0.1.4", 1952 | "is-glob": "^4.0.0", 1953 | "json-stable-stringify-without-jsonify": "^1.0.1", 1954 | "lodash.merge": "^4.6.2", 1955 | "minimatch": "^3.1.2", 1956 | "natural-compare": "^1.4.0", 1957 | "optionator": "^0.9.3" 1958 | }, 1959 | "bin": { 1960 | "eslint": "bin/eslint.js" 1961 | }, 1962 | "engines": { 1963 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1964 | }, 1965 | "funding": { 1966 | "url": "https://eslint.org/donate" 1967 | }, 1968 | "peerDependencies": { 1969 | "jiti": "*" 1970 | }, 1971 | "peerDependenciesMeta": { 1972 | "jiti": { 1973 | "optional": true 1974 | } 1975 | } 1976 | }, 1977 | "node_modules/eslint-plugin-react-hooks": { 1978 | "version": "5.2.0", 1979 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz", 1980 | "integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==", 1981 | "dev": true, 1982 | "license": "MIT", 1983 | "engines": { 1984 | "node": ">=10" 1985 | }, 1986 | "peerDependencies": { 1987 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" 1988 | } 1989 | }, 1990 | "node_modules/eslint-plugin-react-refresh": { 1991 | "version": "0.4.19", 1992 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.19.tgz", 1993 | "integrity": "sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ==", 1994 | "dev": true, 1995 | "license": "MIT", 1996 | "peerDependencies": { 1997 | "eslint": ">=8.40" 1998 | } 1999 | }, 2000 | "node_modules/eslint-scope": { 2001 | "version": "8.3.0", 2002 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", 2003 | "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", 2004 | "dev": true, 2005 | "license": "BSD-2-Clause", 2006 | "dependencies": { 2007 | "esrecurse": "^4.3.0", 2008 | "estraverse": "^5.2.0" 2009 | }, 2010 | "engines": { 2011 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2012 | }, 2013 | "funding": { 2014 | "url": "https://opencollective.com/eslint" 2015 | } 2016 | }, 2017 | "node_modules/eslint-visitor-keys": { 2018 | "version": "4.2.0", 2019 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 2020 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 2021 | "dev": true, 2022 | "license": "Apache-2.0", 2023 | "engines": { 2024 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2025 | }, 2026 | "funding": { 2027 | "url": "https://opencollective.com/eslint" 2028 | } 2029 | }, 2030 | "node_modules/espree": { 2031 | "version": "10.3.0", 2032 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 2033 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 2034 | "dev": true, 2035 | "license": "BSD-2-Clause", 2036 | "dependencies": { 2037 | "acorn": "^8.14.0", 2038 | "acorn-jsx": "^5.3.2", 2039 | "eslint-visitor-keys": "^4.2.0" 2040 | }, 2041 | "engines": { 2042 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2043 | }, 2044 | "funding": { 2045 | "url": "https://opencollective.com/eslint" 2046 | } 2047 | }, 2048 | "node_modules/esquery": { 2049 | "version": "1.6.0", 2050 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", 2051 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", 2052 | "dev": true, 2053 | "license": "BSD-3-Clause", 2054 | "dependencies": { 2055 | "estraverse": "^5.1.0" 2056 | }, 2057 | "engines": { 2058 | "node": ">=0.10" 2059 | } 2060 | }, 2061 | "node_modules/esrecurse": { 2062 | "version": "4.3.0", 2063 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2064 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2065 | "dev": true, 2066 | "license": "BSD-2-Clause", 2067 | "dependencies": { 2068 | "estraverse": "^5.2.0" 2069 | }, 2070 | "engines": { 2071 | "node": ">=4.0" 2072 | } 2073 | }, 2074 | "node_modules/estraverse": { 2075 | "version": "5.3.0", 2076 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2077 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2078 | "dev": true, 2079 | "license": "BSD-2-Clause", 2080 | "engines": { 2081 | "node": ">=4.0" 2082 | } 2083 | }, 2084 | "node_modules/esutils": { 2085 | "version": "2.0.3", 2086 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2087 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2088 | "dev": true, 2089 | "license": "BSD-2-Clause", 2090 | "engines": { 2091 | "node": ">=0.10.0" 2092 | } 2093 | }, 2094 | "node_modules/fast-deep-equal": { 2095 | "version": "3.1.3", 2096 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2097 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2098 | "dev": true, 2099 | "license": "MIT" 2100 | }, 2101 | "node_modules/fast-json-stable-stringify": { 2102 | "version": "2.1.0", 2103 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2104 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2105 | "dev": true, 2106 | "license": "MIT" 2107 | }, 2108 | "node_modules/fast-levenshtein": { 2109 | "version": "2.0.6", 2110 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 2111 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 2112 | "dev": true, 2113 | "license": "MIT" 2114 | }, 2115 | "node_modules/file-entry-cache": { 2116 | "version": "8.0.0", 2117 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 2118 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 2119 | "dev": true, 2120 | "license": "MIT", 2121 | "dependencies": { 2122 | "flat-cache": "^4.0.0" 2123 | }, 2124 | "engines": { 2125 | "node": ">=16.0.0" 2126 | } 2127 | }, 2128 | "node_modules/find-up": { 2129 | "version": "5.0.0", 2130 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 2131 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 2132 | "dev": true, 2133 | "license": "MIT", 2134 | "dependencies": { 2135 | "locate-path": "^6.0.0", 2136 | "path-exists": "^4.0.0" 2137 | }, 2138 | "engines": { 2139 | "node": ">=10" 2140 | }, 2141 | "funding": { 2142 | "url": "https://github.com/sponsors/sindresorhus" 2143 | } 2144 | }, 2145 | "node_modules/flat-cache": { 2146 | "version": "4.0.1", 2147 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 2148 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 2149 | "dev": true, 2150 | "license": "MIT", 2151 | "dependencies": { 2152 | "flatted": "^3.2.9", 2153 | "keyv": "^4.5.4" 2154 | }, 2155 | "engines": { 2156 | "node": ">=16" 2157 | } 2158 | }, 2159 | "node_modules/flatted": { 2160 | "version": "3.3.3", 2161 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", 2162 | "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", 2163 | "dev": true, 2164 | "license": "ISC" 2165 | }, 2166 | "node_modules/framer-motion": { 2167 | "version": "12.5.0", 2168 | "resolved": "https://registry.npmjs.org/framer-motion/-/framer-motion-12.5.0.tgz", 2169 | "integrity": "sha512-buPlioFbH9/W7rDzYh1C09AuZHAk2D1xTA1BlounJ2Rb9aRg84OXexP0GLd+R83v0khURdMX7b5MKnGTaSg5iA==", 2170 | "license": "MIT", 2171 | "dependencies": { 2172 | "motion-dom": "^12.5.0", 2173 | "motion-utils": "^12.5.0", 2174 | "tslib": "^2.4.0" 2175 | }, 2176 | "peerDependencies": { 2177 | "@emotion/is-prop-valid": "*", 2178 | "react": "^18.0.0 || ^19.0.0", 2179 | "react-dom": "^18.0.0 || ^19.0.0" 2180 | }, 2181 | "peerDependenciesMeta": { 2182 | "@emotion/is-prop-valid": { 2183 | "optional": true 2184 | }, 2185 | "react": { 2186 | "optional": true 2187 | }, 2188 | "react-dom": { 2189 | "optional": true 2190 | } 2191 | } 2192 | }, 2193 | "node_modules/fsevents": { 2194 | "version": "2.3.3", 2195 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2196 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2197 | "hasInstallScript": true, 2198 | "license": "MIT", 2199 | "optional": true, 2200 | "os": [ 2201 | "darwin" 2202 | ], 2203 | "engines": { 2204 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2205 | } 2206 | }, 2207 | "node_modules/gensync": { 2208 | "version": "1.0.0-beta.2", 2209 | "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", 2210 | "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", 2211 | "dev": true, 2212 | "license": "MIT", 2213 | "engines": { 2214 | "node": ">=6.9.0" 2215 | } 2216 | }, 2217 | "node_modules/glob-parent": { 2218 | "version": "6.0.2", 2219 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2220 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2221 | "dev": true, 2222 | "license": "ISC", 2223 | "dependencies": { 2224 | "is-glob": "^4.0.3" 2225 | }, 2226 | "engines": { 2227 | "node": ">=10.13.0" 2228 | } 2229 | }, 2230 | "node_modules/globals": { 2231 | "version": "15.15.0", 2232 | "resolved": "https://registry.npmjs.org/globals/-/globals-15.15.0.tgz", 2233 | "integrity": "sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==", 2234 | "dev": true, 2235 | "license": "MIT", 2236 | "engines": { 2237 | "node": ">=18" 2238 | }, 2239 | "funding": { 2240 | "url": "https://github.com/sponsors/sindresorhus" 2241 | } 2242 | }, 2243 | "node_modules/graceful-fs": { 2244 | "version": "4.2.11", 2245 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2246 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", 2247 | "license": "ISC" 2248 | }, 2249 | "node_modules/has-flag": { 2250 | "version": "4.0.0", 2251 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2252 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2253 | "dev": true, 2254 | "license": "MIT", 2255 | "engines": { 2256 | "node": ">=8" 2257 | } 2258 | }, 2259 | "node_modules/ignore": { 2260 | "version": "5.3.2", 2261 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 2262 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 2263 | "dev": true, 2264 | "license": "MIT", 2265 | "engines": { 2266 | "node": ">= 4" 2267 | } 2268 | }, 2269 | "node_modules/import-fresh": { 2270 | "version": "3.3.1", 2271 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", 2272 | "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", 2273 | "dev": true, 2274 | "license": "MIT", 2275 | "dependencies": { 2276 | "parent-module": "^1.0.0", 2277 | "resolve-from": "^4.0.0" 2278 | }, 2279 | "engines": { 2280 | "node": ">=6" 2281 | }, 2282 | "funding": { 2283 | "url": "https://github.com/sponsors/sindresorhus" 2284 | } 2285 | }, 2286 | "node_modules/imurmurhash": { 2287 | "version": "0.1.4", 2288 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2289 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2290 | "dev": true, 2291 | "license": "MIT", 2292 | "engines": { 2293 | "node": ">=0.8.19" 2294 | } 2295 | }, 2296 | "node_modules/is-extglob": { 2297 | "version": "2.1.1", 2298 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2299 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2300 | "dev": true, 2301 | "license": "MIT", 2302 | "engines": { 2303 | "node": ">=0.10.0" 2304 | } 2305 | }, 2306 | "node_modules/is-glob": { 2307 | "version": "4.0.3", 2308 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2309 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2310 | "dev": true, 2311 | "license": "MIT", 2312 | "dependencies": { 2313 | "is-extglob": "^2.1.1" 2314 | }, 2315 | "engines": { 2316 | "node": ">=0.10.0" 2317 | } 2318 | }, 2319 | "node_modules/isexe": { 2320 | "version": "2.0.0", 2321 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2322 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2323 | "dev": true, 2324 | "license": "ISC" 2325 | }, 2326 | "node_modules/jiti": { 2327 | "version": "2.4.2", 2328 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz", 2329 | "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==", 2330 | "license": "MIT", 2331 | "bin": { 2332 | "jiti": "lib/jiti-cli.mjs" 2333 | } 2334 | }, 2335 | "node_modules/js-tokens": { 2336 | "version": "4.0.0", 2337 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2338 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", 2339 | "dev": true, 2340 | "license": "MIT" 2341 | }, 2342 | "node_modules/js-yaml": { 2343 | "version": "4.1.0", 2344 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2345 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2346 | "dev": true, 2347 | "license": "MIT", 2348 | "dependencies": { 2349 | "argparse": "^2.0.1" 2350 | }, 2351 | "bin": { 2352 | "js-yaml": "bin/js-yaml.js" 2353 | } 2354 | }, 2355 | "node_modules/jsesc": { 2356 | "version": "3.1.0", 2357 | "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", 2358 | "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", 2359 | "dev": true, 2360 | "license": "MIT", 2361 | "bin": { 2362 | "jsesc": "bin/jsesc" 2363 | }, 2364 | "engines": { 2365 | "node": ">=6" 2366 | } 2367 | }, 2368 | "node_modules/json-buffer": { 2369 | "version": "3.0.1", 2370 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2371 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2372 | "dev": true, 2373 | "license": "MIT" 2374 | }, 2375 | "node_modules/json-schema-traverse": { 2376 | "version": "0.4.1", 2377 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2378 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2379 | "dev": true, 2380 | "license": "MIT" 2381 | }, 2382 | "node_modules/json-stable-stringify-without-jsonify": { 2383 | "version": "1.0.1", 2384 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2385 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2386 | "dev": true, 2387 | "license": "MIT" 2388 | }, 2389 | "node_modules/json5": { 2390 | "version": "2.2.3", 2391 | "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", 2392 | "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", 2393 | "dev": true, 2394 | "license": "MIT", 2395 | "bin": { 2396 | "json5": "lib/cli.js" 2397 | }, 2398 | "engines": { 2399 | "node": ">=6" 2400 | } 2401 | }, 2402 | "node_modules/keyv": { 2403 | "version": "4.5.4", 2404 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2405 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2406 | "dev": true, 2407 | "license": "MIT", 2408 | "dependencies": { 2409 | "json-buffer": "3.0.1" 2410 | } 2411 | }, 2412 | "node_modules/levn": { 2413 | "version": "0.4.1", 2414 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2415 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2416 | "dev": true, 2417 | "license": "MIT", 2418 | "dependencies": { 2419 | "prelude-ls": "^1.2.1", 2420 | "type-check": "~0.4.0" 2421 | }, 2422 | "engines": { 2423 | "node": ">= 0.8.0" 2424 | } 2425 | }, 2426 | "node_modules/lightningcss": { 2427 | "version": "1.29.2", 2428 | "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.29.2.tgz", 2429 | "integrity": "sha512-6b6gd/RUXKaw5keVdSEtqFVdzWnU5jMxTUjA2bVcMNPLwSQ08Sv/UodBVtETLCn7k4S1Ibxwh7k68IwLZPgKaA==", 2430 | "license": "MPL-2.0", 2431 | "dependencies": { 2432 | "detect-libc": "^2.0.3" 2433 | }, 2434 | "engines": { 2435 | "node": ">= 12.0.0" 2436 | }, 2437 | "funding": { 2438 | "type": "opencollective", 2439 | "url": "https://opencollective.com/parcel" 2440 | }, 2441 | "optionalDependencies": { 2442 | "lightningcss-darwin-arm64": "1.29.2", 2443 | "lightningcss-darwin-x64": "1.29.2", 2444 | "lightningcss-freebsd-x64": "1.29.2", 2445 | "lightningcss-linux-arm-gnueabihf": "1.29.2", 2446 | "lightningcss-linux-arm64-gnu": "1.29.2", 2447 | "lightningcss-linux-arm64-musl": "1.29.2", 2448 | "lightningcss-linux-x64-gnu": "1.29.2", 2449 | "lightningcss-linux-x64-musl": "1.29.2", 2450 | "lightningcss-win32-arm64-msvc": "1.29.2", 2451 | "lightningcss-win32-x64-msvc": "1.29.2" 2452 | } 2453 | }, 2454 | "node_modules/lightningcss-darwin-arm64": { 2455 | "version": "1.29.2", 2456 | "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.29.2.tgz", 2457 | "integrity": "sha512-cK/eMabSViKn/PG8U/a7aCorpeKLMlK0bQeNHmdb7qUnBkNPnL+oV5DjJUo0kqWsJUapZsM4jCfYItbqBDvlcA==", 2458 | "cpu": [ 2459 | "arm64" 2460 | ], 2461 | "license": "MPL-2.0", 2462 | "optional": true, 2463 | "os": [ 2464 | "darwin" 2465 | ], 2466 | "engines": { 2467 | "node": ">= 12.0.0" 2468 | }, 2469 | "funding": { 2470 | "type": "opencollective", 2471 | "url": "https://opencollective.com/parcel" 2472 | } 2473 | }, 2474 | "node_modules/lightningcss-darwin-x64": { 2475 | "version": "1.29.2", 2476 | "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.29.2.tgz", 2477 | "integrity": "sha512-j5qYxamyQw4kDXX5hnnCKMf3mLlHvG44f24Qyi2965/Ycz829MYqjrVg2H8BidybHBp9kom4D7DR5VqCKDXS0w==", 2478 | "cpu": [ 2479 | "x64" 2480 | ], 2481 | "license": "MPL-2.0", 2482 | "optional": true, 2483 | "os": [ 2484 | "darwin" 2485 | ], 2486 | "engines": { 2487 | "node": ">= 12.0.0" 2488 | }, 2489 | "funding": { 2490 | "type": "opencollective", 2491 | "url": "https://opencollective.com/parcel" 2492 | } 2493 | }, 2494 | "node_modules/lightningcss-freebsd-x64": { 2495 | "version": "1.29.2", 2496 | "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.29.2.tgz", 2497 | "integrity": "sha512-wDk7M2tM78Ii8ek9YjnY8MjV5f5JN2qNVO+/0BAGZRvXKtQrBC4/cn4ssQIpKIPP44YXw6gFdpUF+Ps+RGsCwg==", 2498 | "cpu": [ 2499 | "x64" 2500 | ], 2501 | "license": "MPL-2.0", 2502 | "optional": true, 2503 | "os": [ 2504 | "freebsd" 2505 | ], 2506 | "engines": { 2507 | "node": ">= 12.0.0" 2508 | }, 2509 | "funding": { 2510 | "type": "opencollective", 2511 | "url": "https://opencollective.com/parcel" 2512 | } 2513 | }, 2514 | "node_modules/lightningcss-linux-arm-gnueabihf": { 2515 | "version": "1.29.2", 2516 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.29.2.tgz", 2517 | "integrity": "sha512-IRUrOrAF2Z+KExdExe3Rz7NSTuuJ2HvCGlMKoquK5pjvo2JY4Rybr+NrKnq0U0hZnx5AnGsuFHjGnNT14w26sg==", 2518 | "cpu": [ 2519 | "arm" 2520 | ], 2521 | "license": "MPL-2.0", 2522 | "optional": true, 2523 | "os": [ 2524 | "linux" 2525 | ], 2526 | "engines": { 2527 | "node": ">= 12.0.0" 2528 | }, 2529 | "funding": { 2530 | "type": "opencollective", 2531 | "url": "https://opencollective.com/parcel" 2532 | } 2533 | }, 2534 | "node_modules/lightningcss-linux-arm64-gnu": { 2535 | "version": "1.29.2", 2536 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.29.2.tgz", 2537 | "integrity": "sha512-KKCpOlmhdjvUTX/mBuaKemp0oeDIBBLFiU5Fnqxh1/DZ4JPZi4evEH7TKoSBFOSOV3J7iEmmBaw/8dpiUvRKlQ==", 2538 | "cpu": [ 2539 | "arm64" 2540 | ], 2541 | "license": "MPL-2.0", 2542 | "optional": true, 2543 | "os": [ 2544 | "linux" 2545 | ], 2546 | "engines": { 2547 | "node": ">= 12.0.0" 2548 | }, 2549 | "funding": { 2550 | "type": "opencollective", 2551 | "url": "https://opencollective.com/parcel" 2552 | } 2553 | }, 2554 | "node_modules/lightningcss-linux-arm64-musl": { 2555 | "version": "1.29.2", 2556 | "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.29.2.tgz", 2557 | "integrity": "sha512-Q64eM1bPlOOUgxFmoPUefqzY1yV3ctFPE6d/Vt7WzLW4rKTv7MyYNky+FWxRpLkNASTnKQUaiMJ87zNODIrrKQ==", 2558 | "cpu": [ 2559 | "arm64" 2560 | ], 2561 | "license": "MPL-2.0", 2562 | "optional": true, 2563 | "os": [ 2564 | "linux" 2565 | ], 2566 | "engines": { 2567 | "node": ">= 12.0.0" 2568 | }, 2569 | "funding": { 2570 | "type": "opencollective", 2571 | "url": "https://opencollective.com/parcel" 2572 | } 2573 | }, 2574 | "node_modules/lightningcss-linux-x64-gnu": { 2575 | "version": "1.29.2", 2576 | "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.29.2.tgz", 2577 | "integrity": "sha512-0v6idDCPG6epLXtBH/RPkHvYx74CVziHo6TMYga8O2EiQApnUPZsbR9nFNrg2cgBzk1AYqEd95TlrsL7nYABQg==", 2578 | "cpu": [ 2579 | "x64" 2580 | ], 2581 | "license": "MPL-2.0", 2582 | "optional": true, 2583 | "os": [ 2584 | "linux" 2585 | ], 2586 | "engines": { 2587 | "node": ">= 12.0.0" 2588 | }, 2589 | "funding": { 2590 | "type": "opencollective", 2591 | "url": "https://opencollective.com/parcel" 2592 | } 2593 | }, 2594 | "node_modules/lightningcss-linux-x64-musl": { 2595 | "version": "1.29.2", 2596 | "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.29.2.tgz", 2597 | "integrity": "sha512-rMpz2yawkgGT8RULc5S4WiZopVMOFWjiItBT7aSfDX4NQav6M44rhn5hjtkKzB+wMTRlLLqxkeYEtQ3dd9696w==", 2598 | "cpu": [ 2599 | "x64" 2600 | ], 2601 | "license": "MPL-2.0", 2602 | "optional": true, 2603 | "os": [ 2604 | "linux" 2605 | ], 2606 | "engines": { 2607 | "node": ">= 12.0.0" 2608 | }, 2609 | "funding": { 2610 | "type": "opencollective", 2611 | "url": "https://opencollective.com/parcel" 2612 | } 2613 | }, 2614 | "node_modules/lightningcss-win32-arm64-msvc": { 2615 | "version": "1.29.2", 2616 | "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.29.2.tgz", 2617 | "integrity": "sha512-nL7zRW6evGQqYVu/bKGK+zShyz8OVzsCotFgc7judbt6wnB2KbiKKJwBE4SGoDBQ1O94RjW4asrCjQL4i8Fhbw==", 2618 | "cpu": [ 2619 | "arm64" 2620 | ], 2621 | "license": "MPL-2.0", 2622 | "optional": true, 2623 | "os": [ 2624 | "win32" 2625 | ], 2626 | "engines": { 2627 | "node": ">= 12.0.0" 2628 | }, 2629 | "funding": { 2630 | "type": "opencollective", 2631 | "url": "https://opencollective.com/parcel" 2632 | } 2633 | }, 2634 | "node_modules/lightningcss-win32-x64-msvc": { 2635 | "version": "1.29.2", 2636 | "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.29.2.tgz", 2637 | "integrity": "sha512-EdIUW3B2vLuHmv7urfzMI/h2fmlnOQBk1xlsDxkN1tCWKjNFjfLhGxYk8C8mzpSfr+A6jFFIi8fU6LbQGsRWjA==", 2638 | "cpu": [ 2639 | "x64" 2640 | ], 2641 | "license": "MPL-2.0", 2642 | "optional": true, 2643 | "os": [ 2644 | "win32" 2645 | ], 2646 | "engines": { 2647 | "node": ">= 12.0.0" 2648 | }, 2649 | "funding": { 2650 | "type": "opencollective", 2651 | "url": "https://opencollective.com/parcel" 2652 | } 2653 | }, 2654 | "node_modules/locate-path": { 2655 | "version": "6.0.0", 2656 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2657 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2658 | "dev": true, 2659 | "license": "MIT", 2660 | "dependencies": { 2661 | "p-locate": "^5.0.0" 2662 | }, 2663 | "engines": { 2664 | "node": ">=10" 2665 | }, 2666 | "funding": { 2667 | "url": "https://github.com/sponsors/sindresorhus" 2668 | } 2669 | }, 2670 | "node_modules/lodash.merge": { 2671 | "version": "4.6.2", 2672 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2673 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2674 | "dev": true, 2675 | "license": "MIT" 2676 | }, 2677 | "node_modules/lru-cache": { 2678 | "version": "5.1.1", 2679 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", 2680 | "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", 2681 | "dev": true, 2682 | "license": "ISC", 2683 | "dependencies": { 2684 | "yallist": "^3.0.2" 2685 | } 2686 | }, 2687 | "node_modules/minimatch": { 2688 | "version": "3.1.2", 2689 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2690 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2691 | "dev": true, 2692 | "license": "ISC", 2693 | "dependencies": { 2694 | "brace-expansion": "^1.1.7" 2695 | }, 2696 | "engines": { 2697 | "node": "*" 2698 | } 2699 | }, 2700 | "node_modules/motion-dom": { 2701 | "version": "12.5.0", 2702 | "resolved": "https://registry.npmjs.org/motion-dom/-/motion-dom-12.5.0.tgz", 2703 | "integrity": "sha512-uH2PETDh7m+Hjd1UQQ56yHqwn83SAwNjimNPE/kC+Kds0t4Yh7+29rfo5wezVFpPOv57U4IuWved5d1x0kNhbQ==", 2704 | "license": "MIT", 2705 | "dependencies": { 2706 | "motion-utils": "^12.5.0" 2707 | } 2708 | }, 2709 | "node_modules/motion-utils": { 2710 | "version": "12.5.0", 2711 | "resolved": "https://registry.npmjs.org/motion-utils/-/motion-utils-12.5.0.tgz", 2712 | "integrity": "sha512-+hFFzvimn0sBMP9iPxBa9OtRX35ZQ3py0UHnb8U29VD+d8lQ8zH3dTygJWqK7av2v6yhg7scj9iZuvTS0f4+SA==", 2713 | "license": "MIT" 2714 | }, 2715 | "node_modules/ms": { 2716 | "version": "2.1.3", 2717 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2718 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2719 | "dev": true, 2720 | "license": "MIT" 2721 | }, 2722 | "node_modules/nanoid": { 2723 | "version": "3.3.11", 2724 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", 2725 | "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", 2726 | "funding": [ 2727 | { 2728 | "type": "github", 2729 | "url": "https://github.com/sponsors/ai" 2730 | } 2731 | ], 2732 | "license": "MIT", 2733 | "bin": { 2734 | "nanoid": "bin/nanoid.cjs" 2735 | }, 2736 | "engines": { 2737 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2738 | } 2739 | }, 2740 | "node_modules/natural-compare": { 2741 | "version": "1.4.0", 2742 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2743 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2744 | "dev": true, 2745 | "license": "MIT" 2746 | }, 2747 | "node_modules/node-releases": { 2748 | "version": "2.0.19", 2749 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", 2750 | "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", 2751 | "dev": true, 2752 | "license": "MIT" 2753 | }, 2754 | "node_modules/optionator": { 2755 | "version": "0.9.4", 2756 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", 2757 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", 2758 | "dev": true, 2759 | "license": "MIT", 2760 | "dependencies": { 2761 | "deep-is": "^0.1.3", 2762 | "fast-levenshtein": "^2.0.6", 2763 | "levn": "^0.4.1", 2764 | "prelude-ls": "^1.2.1", 2765 | "type-check": "^0.4.0", 2766 | "word-wrap": "^1.2.5" 2767 | }, 2768 | "engines": { 2769 | "node": ">= 0.8.0" 2770 | } 2771 | }, 2772 | "node_modules/p-limit": { 2773 | "version": "3.1.0", 2774 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 2775 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 2776 | "dev": true, 2777 | "license": "MIT", 2778 | "dependencies": { 2779 | "yocto-queue": "^0.1.0" 2780 | }, 2781 | "engines": { 2782 | "node": ">=10" 2783 | }, 2784 | "funding": { 2785 | "url": "https://github.com/sponsors/sindresorhus" 2786 | } 2787 | }, 2788 | "node_modules/p-locate": { 2789 | "version": "5.0.0", 2790 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 2791 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 2792 | "dev": true, 2793 | "license": "MIT", 2794 | "dependencies": { 2795 | "p-limit": "^3.0.2" 2796 | }, 2797 | "engines": { 2798 | "node": ">=10" 2799 | }, 2800 | "funding": { 2801 | "url": "https://github.com/sponsors/sindresorhus" 2802 | } 2803 | }, 2804 | "node_modules/parent-module": { 2805 | "version": "1.0.1", 2806 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2807 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2808 | "dev": true, 2809 | "license": "MIT", 2810 | "dependencies": { 2811 | "callsites": "^3.0.0" 2812 | }, 2813 | "engines": { 2814 | "node": ">=6" 2815 | } 2816 | }, 2817 | "node_modules/path-exists": { 2818 | "version": "4.0.0", 2819 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2820 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2821 | "dev": true, 2822 | "license": "MIT", 2823 | "engines": { 2824 | "node": ">=8" 2825 | } 2826 | }, 2827 | "node_modules/path-key": { 2828 | "version": "3.1.1", 2829 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2830 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2831 | "dev": true, 2832 | "license": "MIT", 2833 | "engines": { 2834 | "node": ">=8" 2835 | } 2836 | }, 2837 | "node_modules/picocolors": { 2838 | "version": "1.1.1", 2839 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", 2840 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", 2841 | "license": "ISC" 2842 | }, 2843 | "node_modules/postcss": { 2844 | "version": "8.5.3", 2845 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.3.tgz", 2846 | "integrity": "sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==", 2847 | "funding": [ 2848 | { 2849 | "type": "opencollective", 2850 | "url": "https://opencollective.com/postcss/" 2851 | }, 2852 | { 2853 | "type": "tidelift", 2854 | "url": "https://tidelift.com/funding/github/npm/postcss" 2855 | }, 2856 | { 2857 | "type": "github", 2858 | "url": "https://github.com/sponsors/ai" 2859 | } 2860 | ], 2861 | "license": "MIT", 2862 | "dependencies": { 2863 | "nanoid": "^3.3.8", 2864 | "picocolors": "^1.1.1", 2865 | "source-map-js": "^1.2.1" 2866 | }, 2867 | "engines": { 2868 | "node": "^10 || ^12 || >=14" 2869 | } 2870 | }, 2871 | "node_modules/prelude-ls": { 2872 | "version": "1.2.1", 2873 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2874 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2875 | "dev": true, 2876 | "license": "MIT", 2877 | "engines": { 2878 | "node": ">= 0.8.0" 2879 | } 2880 | }, 2881 | "node_modules/punycode": { 2882 | "version": "2.3.1", 2883 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2884 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2885 | "dev": true, 2886 | "license": "MIT", 2887 | "engines": { 2888 | "node": ">=6" 2889 | } 2890 | }, 2891 | "node_modules/react": { 2892 | "version": "19.0.0", 2893 | "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz", 2894 | "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==", 2895 | "license": "MIT", 2896 | "engines": { 2897 | "node": ">=0.10.0" 2898 | } 2899 | }, 2900 | "node_modules/react-dom": { 2901 | "version": "19.0.0", 2902 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz", 2903 | "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==", 2904 | "license": "MIT", 2905 | "dependencies": { 2906 | "scheduler": "^0.25.0" 2907 | }, 2908 | "peerDependencies": { 2909 | "react": "^19.0.0" 2910 | } 2911 | }, 2912 | "node_modules/react-icons": { 2913 | "version": "5.5.0", 2914 | "resolved": "https://registry.npmjs.org/react-icons/-/react-icons-5.5.0.tgz", 2915 | "integrity": "sha512-MEFcXdkP3dLo8uumGI5xN3lDFNsRtrjbOEKDLD7yv76v4wpnEq2Lt2qeHaQOr34I/wPN3s3+N08WkQ+CW37Xiw==", 2916 | "license": "MIT", 2917 | "peerDependencies": { 2918 | "react": "*" 2919 | } 2920 | }, 2921 | "node_modules/react-refresh": { 2922 | "version": "0.14.2", 2923 | "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.2.tgz", 2924 | "integrity": "sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==", 2925 | "dev": true, 2926 | "license": "MIT", 2927 | "engines": { 2928 | "node": ">=0.10.0" 2929 | } 2930 | }, 2931 | "node_modules/react-router": { 2932 | "version": "7.4.0", 2933 | "resolved": "https://registry.npmjs.org/react-router/-/react-router-7.4.0.tgz", 2934 | "integrity": "sha512-Y2g5ObjkvX3VFeVt+0CIPuYd9PpgqCslG7ASSIdN73LwA1nNWzcMLaoMRJfP3prZFI92svxFwbn7XkLJ+UPQ6A==", 2935 | "license": "MIT", 2936 | "dependencies": { 2937 | "@types/cookie": "^0.6.0", 2938 | "cookie": "^1.0.1", 2939 | "set-cookie-parser": "^2.6.0", 2940 | "turbo-stream": "2.4.0" 2941 | }, 2942 | "engines": { 2943 | "node": ">=20.0.0" 2944 | }, 2945 | "peerDependencies": { 2946 | "react": ">=18", 2947 | "react-dom": ">=18" 2948 | }, 2949 | "peerDependenciesMeta": { 2950 | "react-dom": { 2951 | "optional": true 2952 | } 2953 | } 2954 | }, 2955 | "node_modules/react-router-dom": { 2956 | "version": "7.4.0", 2957 | "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-7.4.0.tgz", 2958 | "integrity": "sha512-VlksBPf3n2bijPvnA7nkTsXxMAKOj+bWp4R9c3i+bnwlSOFAGOkJkKhzy/OsRkWaBMICqcAl1JDzh9ZSOze9CA==", 2959 | "license": "MIT", 2960 | "dependencies": { 2961 | "react-router": "7.4.0" 2962 | }, 2963 | "engines": { 2964 | "node": ">=20.0.0" 2965 | }, 2966 | "peerDependencies": { 2967 | "react": ">=18", 2968 | "react-dom": ">=18" 2969 | } 2970 | }, 2971 | "node_modules/resolve-from": { 2972 | "version": "4.0.0", 2973 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2974 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2975 | "dev": true, 2976 | "license": "MIT", 2977 | "engines": { 2978 | "node": ">=4" 2979 | } 2980 | }, 2981 | "node_modules/rollup": { 2982 | "version": "4.36.0", 2983 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.36.0.tgz", 2984 | "integrity": "sha512-zwATAXNQxUcd40zgtQG0ZafcRK4g004WtEl7kbuhTWPvf07PsfohXl39jVUvPF7jvNAIkKPQ2XrsDlWuxBd++Q==", 2985 | "license": "MIT", 2986 | "dependencies": { 2987 | "@types/estree": "1.0.6" 2988 | }, 2989 | "bin": { 2990 | "rollup": "dist/bin/rollup" 2991 | }, 2992 | "engines": { 2993 | "node": ">=18.0.0", 2994 | "npm": ">=8.0.0" 2995 | }, 2996 | "optionalDependencies": { 2997 | "@rollup/rollup-android-arm-eabi": "4.36.0", 2998 | "@rollup/rollup-android-arm64": "4.36.0", 2999 | "@rollup/rollup-darwin-arm64": "4.36.0", 3000 | "@rollup/rollup-darwin-x64": "4.36.0", 3001 | "@rollup/rollup-freebsd-arm64": "4.36.0", 3002 | "@rollup/rollup-freebsd-x64": "4.36.0", 3003 | "@rollup/rollup-linux-arm-gnueabihf": "4.36.0", 3004 | "@rollup/rollup-linux-arm-musleabihf": "4.36.0", 3005 | "@rollup/rollup-linux-arm64-gnu": "4.36.0", 3006 | "@rollup/rollup-linux-arm64-musl": "4.36.0", 3007 | "@rollup/rollup-linux-loongarch64-gnu": "4.36.0", 3008 | "@rollup/rollup-linux-powerpc64le-gnu": "4.36.0", 3009 | "@rollup/rollup-linux-riscv64-gnu": "4.36.0", 3010 | "@rollup/rollup-linux-s390x-gnu": "4.36.0", 3011 | "@rollup/rollup-linux-x64-gnu": "4.36.0", 3012 | "@rollup/rollup-linux-x64-musl": "4.36.0", 3013 | "@rollup/rollup-win32-arm64-msvc": "4.36.0", 3014 | "@rollup/rollup-win32-ia32-msvc": "4.36.0", 3015 | "@rollup/rollup-win32-x64-msvc": "4.36.0", 3016 | "fsevents": "~2.3.2" 3017 | } 3018 | }, 3019 | "node_modules/scheduler": { 3020 | "version": "0.25.0", 3021 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz", 3022 | "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==", 3023 | "license": "MIT" 3024 | }, 3025 | "node_modules/semver": { 3026 | "version": "6.3.1", 3027 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 3028 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 3029 | "dev": true, 3030 | "license": "ISC", 3031 | "bin": { 3032 | "semver": "bin/semver.js" 3033 | } 3034 | }, 3035 | "node_modules/set-cookie-parser": { 3036 | "version": "2.7.1", 3037 | "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", 3038 | "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", 3039 | "license": "MIT" 3040 | }, 3041 | "node_modules/shebang-command": { 3042 | "version": "2.0.0", 3043 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3044 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3045 | "dev": true, 3046 | "license": "MIT", 3047 | "dependencies": { 3048 | "shebang-regex": "^3.0.0" 3049 | }, 3050 | "engines": { 3051 | "node": ">=8" 3052 | } 3053 | }, 3054 | "node_modules/shebang-regex": { 3055 | "version": "3.0.0", 3056 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3057 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3058 | "dev": true, 3059 | "license": "MIT", 3060 | "engines": { 3061 | "node": ">=8" 3062 | } 3063 | }, 3064 | "node_modules/source-map-js": { 3065 | "version": "1.2.1", 3066 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 3067 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 3068 | "license": "BSD-3-Clause", 3069 | "engines": { 3070 | "node": ">=0.10.0" 3071 | } 3072 | }, 3073 | "node_modules/strip-json-comments": { 3074 | "version": "3.1.1", 3075 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3076 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3077 | "dev": true, 3078 | "license": "MIT", 3079 | "engines": { 3080 | "node": ">=8" 3081 | }, 3082 | "funding": { 3083 | "url": "https://github.com/sponsors/sindresorhus" 3084 | } 3085 | }, 3086 | "node_modules/supports-color": { 3087 | "version": "7.2.0", 3088 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3089 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3090 | "dev": true, 3091 | "license": "MIT", 3092 | "dependencies": { 3093 | "has-flag": "^4.0.0" 3094 | }, 3095 | "engines": { 3096 | "node": ">=8" 3097 | } 3098 | }, 3099 | "node_modules/tailwindcss": { 3100 | "version": "4.0.15", 3101 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.0.15.tgz", 3102 | "integrity": "sha512-6ZMg+hHdMJpjpeCCFasX7K+U615U9D+7k5/cDK/iRwl6GptF24+I/AbKgOnXhVKePzrEyIXutLv36n4cRsq3Sg==", 3103 | "license": "MIT" 3104 | }, 3105 | "node_modules/tapable": { 3106 | "version": "2.2.1", 3107 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 3108 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 3109 | "license": "MIT", 3110 | "engines": { 3111 | "node": ">=6" 3112 | } 3113 | }, 3114 | "node_modules/tslib": { 3115 | "version": "2.8.1", 3116 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", 3117 | "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", 3118 | "license": "0BSD" 3119 | }, 3120 | "node_modules/turbo-stream": { 3121 | "version": "2.4.0", 3122 | "resolved": "https://registry.npmjs.org/turbo-stream/-/turbo-stream-2.4.0.tgz", 3123 | "integrity": "sha512-FHncC10WpBd2eOmGwpmQsWLDoK4cqsA/UT/GqNoaKOQnT8uzhtCbg3EoUDMvqpOSAI0S26mr0rkjzbOO6S3v1g==", 3124 | "license": "ISC" 3125 | }, 3126 | "node_modules/type-check": { 3127 | "version": "0.4.0", 3128 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 3129 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 3130 | "dev": true, 3131 | "license": "MIT", 3132 | "dependencies": { 3133 | "prelude-ls": "^1.2.1" 3134 | }, 3135 | "engines": { 3136 | "node": ">= 0.8.0" 3137 | } 3138 | }, 3139 | "node_modules/update-browserslist-db": { 3140 | "version": "1.1.3", 3141 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", 3142 | "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", 3143 | "dev": true, 3144 | "funding": [ 3145 | { 3146 | "type": "opencollective", 3147 | "url": "https://opencollective.com/browserslist" 3148 | }, 3149 | { 3150 | "type": "tidelift", 3151 | "url": "https://tidelift.com/funding/github/npm/browserslist" 3152 | }, 3153 | { 3154 | "type": "github", 3155 | "url": "https://github.com/sponsors/ai" 3156 | } 3157 | ], 3158 | "license": "MIT", 3159 | "dependencies": { 3160 | "escalade": "^3.2.0", 3161 | "picocolors": "^1.1.1" 3162 | }, 3163 | "bin": { 3164 | "update-browserslist-db": "cli.js" 3165 | }, 3166 | "peerDependencies": { 3167 | "browserslist": ">= 4.21.0" 3168 | } 3169 | }, 3170 | "node_modules/uri-js": { 3171 | "version": "4.4.1", 3172 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 3173 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 3174 | "dev": true, 3175 | "license": "BSD-2-Clause", 3176 | "dependencies": { 3177 | "punycode": "^2.1.0" 3178 | } 3179 | }, 3180 | "node_modules/vite": { 3181 | "version": "6.2.2", 3182 | "resolved": "https://registry.npmjs.org/vite/-/vite-6.2.2.tgz", 3183 | "integrity": "sha512-yW7PeMM+LkDzc7CgJuRLMW2Jz0FxMOsVJ8Lv3gpgW9WLcb9cTW+121UEr1hvmfR7w3SegR5ItvYyzVz1vxNJgQ==", 3184 | "license": "MIT", 3185 | "dependencies": { 3186 | "esbuild": "^0.25.0", 3187 | "postcss": "^8.5.3", 3188 | "rollup": "^4.30.1" 3189 | }, 3190 | "bin": { 3191 | "vite": "bin/vite.js" 3192 | }, 3193 | "engines": { 3194 | "node": "^18.0.0 || ^20.0.0 || >=22.0.0" 3195 | }, 3196 | "funding": { 3197 | "url": "https://github.com/vitejs/vite?sponsor=1" 3198 | }, 3199 | "optionalDependencies": { 3200 | "fsevents": "~2.3.3" 3201 | }, 3202 | "peerDependencies": { 3203 | "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", 3204 | "jiti": ">=1.21.0", 3205 | "less": "*", 3206 | "lightningcss": "^1.21.0", 3207 | "sass": "*", 3208 | "sass-embedded": "*", 3209 | "stylus": "*", 3210 | "sugarss": "*", 3211 | "terser": "^5.16.0", 3212 | "tsx": "^4.8.1", 3213 | "yaml": "^2.4.2" 3214 | }, 3215 | "peerDependenciesMeta": { 3216 | "@types/node": { 3217 | "optional": true 3218 | }, 3219 | "jiti": { 3220 | "optional": true 3221 | }, 3222 | "less": { 3223 | "optional": true 3224 | }, 3225 | "lightningcss": { 3226 | "optional": true 3227 | }, 3228 | "sass": { 3229 | "optional": true 3230 | }, 3231 | "sass-embedded": { 3232 | "optional": true 3233 | }, 3234 | "stylus": { 3235 | "optional": true 3236 | }, 3237 | "sugarss": { 3238 | "optional": true 3239 | }, 3240 | "terser": { 3241 | "optional": true 3242 | }, 3243 | "tsx": { 3244 | "optional": true 3245 | }, 3246 | "yaml": { 3247 | "optional": true 3248 | } 3249 | } 3250 | }, 3251 | "node_modules/which": { 3252 | "version": "2.0.2", 3253 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 3254 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 3255 | "dev": true, 3256 | "license": "ISC", 3257 | "dependencies": { 3258 | "isexe": "^2.0.0" 3259 | }, 3260 | "bin": { 3261 | "node-which": "bin/node-which" 3262 | }, 3263 | "engines": { 3264 | "node": ">= 8" 3265 | } 3266 | }, 3267 | "node_modules/word-wrap": { 3268 | "version": "1.2.5", 3269 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", 3270 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", 3271 | "dev": true, 3272 | "license": "MIT", 3273 | "engines": { 3274 | "node": ">=0.10.0" 3275 | } 3276 | }, 3277 | "node_modules/yallist": { 3278 | "version": "3.1.1", 3279 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", 3280 | "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", 3281 | "dev": true, 3282 | "license": "ISC" 3283 | }, 3284 | "node_modules/yocto-queue": { 3285 | "version": "0.1.0", 3286 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3287 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3288 | "dev": true, 3289 | "license": "MIT", 3290 | "engines": { 3291 | "node": ">=10" 3292 | }, 3293 | "funding": { 3294 | "url": "https://github.com/sponsors/sindresorhus" 3295 | } 3296 | } 3297 | } 3298 | } 3299 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "react-tailwind-starter", 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 | "@tailwindcss/vite": "^4.0.15", 14 | "framer-motion": "^12.5.0", 15 | "react": "^19.0.0", 16 | "react-dom": "^19.0.0", 17 | "react-icons": "^5.5.0", 18 | "react-router-dom": "^7.4.0", 19 | "tailwindcss": "^4.0.15" 20 | }, 21 | "devDependencies": { 22 | "@eslint/js": "^9.21.0", 23 | "@types/react": "^19.0.10", 24 | "@types/react-dom": "^19.0.4", 25 | "@vitejs/plugin-react": "^4.3.4", 26 | "eslint": "^9.21.0", 27 | "eslint-plugin-react-hooks": "^5.1.0", 28 | "eslint-plugin-react-refresh": "^0.4.19", 29 | "globals": "^15.15.0", 30 | "vite": "^6.2.0" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asrafaliii/react-tailwind-starter/b1d7c93159230e27e323f06d7bb6adc50944d00e/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- 1 | function App() { 2 | 3 | return ( 4 |
5 | ) 6 | } 7 | 8 | export default App 9 | -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react' 2 | 3 | const Footer = () => { 4 | return ( 5 |
Footer
6 | ) 7 | } 8 | 9 | export default Footer -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { NavLink } from "react-router-dom"; 3 | 4 | const Header = () => { 5 | return ( 6 |
7 | 12 |
13 | ); 14 | }; 15 | 16 | export default Header; 17 | -------------------------------------------------------------------------------- /src/components/Layout.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Header from "./Header"; 3 | import { Outlet } from "react-router-dom"; 4 | import Footer from "./Footer"; 5 | 6 | const Layout = () => { 7 | return ( 8 | <> 9 |
10 |
11 | 12 |
13 |