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

47 | {" "} 48 | Cart {cartItems.length} 49 |

50 |
51 |
52 | {filterData.map((item) => ( 53 |
54 |

{item.title}

55 | {item.title} 56 |

₹{item.price}

57 | 63 |
64 | ))} 65 |
66 | 72 |
73 | 74 | ); 75 | }; 76 | 77 | export default App; 78 | -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/Cart.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { useDispatch, useSelector } from "react-redux"; 3 | import { clearCart, removeItem } from "../store/cartSlice"; 4 | import User from "./User"; 5 | 6 | const Cart = () => { 7 | const cartItems = useSelector((store) => store.cart.items); 8 | console.log(cartItems); 9 | 10 | const dispatch = useDispatch(); 11 | 12 | function handleRemove(item) { 13 | dispatch(removeItem(item)); 14 | } 15 | 16 | if (cartItems.length == 0) { 17 | return ( 18 |
19 |

cart item is empty

20 | 21 |
22 | ); 23 | } 24 | 25 | return ( 26 |
34 |

Cart Page

35 | 36 | 37 |
38 | {cartItems.map((item) => { 39 | return ( 40 |
50 | 51 |
52 |

{item.title}

53 |

{item.description}

54 |
55 | 56 |
57 | ); 58 | })} 59 |
60 | 61 | 62 |
63 | ); 64 | }; 65 | 66 | export default Cart; 67 | -------------------------------------------------------------------------------- /src/components/Child.jsx: -------------------------------------------------------------------------------- 1 | import React, { useState } from "react"; 2 | 3 | const Child = ({ handleData }) => { 4 | const [name, setName] = useState(""); 5 | 6 | const handleChange = (e) => { 7 | setName(e.target.value); 8 | }; 9 | 10 | const handleClick = () => { 11 | handleData(name); 12 | }; 13 | return ( 14 |
15 | 16 | 17 |
18 | ); 19 | }; 20 | 21 | export default Child; 22 | -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- 1 | import React, { useState, memo } from "react"; 2 | 3 | const Header = () => { 4 | console.log("header"); 5 | return <>Header{1000}; 6 | }; 7 | 8 | export default memo(Header); 9 | -------------------------------------------------------------------------------- /src/components/Home.jsx: -------------------------------------------------------------------------------- 1 | import React, { useContext, useEffect, useMemo, useRef, useState } from "react"; 2 | import { data, Link } from "react-router-dom"; 3 | import Header from "./Header"; 4 | import UserContext from "../context/UserContext"; 5 | import ThemeContext from "../context/ThemeContext"; 6 | 7 | const Home = () => { 8 | const [count, setCount] = useState(1000); 9 | 10 | let data = 1000; //5000 11 | console.log(data); 12 | const inputRef = useRef(); //{current:undefined} 13 | 14 | const { color, setColor } = useContext(UserContext); 15 | 16 | const { theme, setTheme } = useContext(ThemeContext); 17 | 18 | const dataRef = useRef(1000); // {current:1000} 19 | console.log(inputRef); 20 | 21 | function handleFocus() { 22 | inputRef.current.focus(); 23 | } 24 | 25 | function handleSubmit() { 26 | console.log(inputRef.current.value); 27 | } 28 | 29 | function handleRef() { 30 | dataRef.current = dataRef.current + 1000; 31 | console.log(dataRef); 32 | } 33 | 34 | function handleData() { 35 | data = data + 1000; 36 | console.log(data); 37 | } 38 | 39 | return ( 40 |
41 | 42 | 43 |

{count}

44 | 45 | {color} 46 | 47 | 53 | {console.log(inputRef)} 54 | 55 | 58 | 61 | 67 | 68 | 71 | {/*
*/} 72 | {theme} 73 | 74 | 75 |
76 | ); 77 | }; 78 | 79 | export default Home; 80 | -------------------------------------------------------------------------------- /src/components/Layout.jsx: -------------------------------------------------------------------------------- 1 | import { Outlet } from "react-router-dom"; 2 | import Navbar from "./Navbar"; 3 | 4 | const Layout = () => { 5 | return ( 6 | <> 7 | 8 | 9 | 10 | ); 11 | }; 12 | 13 | export default Layout; 14 | -------------------------------------------------------------------------------- /src/components/Login.jsx: -------------------------------------------------------------------------------- 1 | import React, { useContext, useState } from "react"; 2 | import { Link, useNavigate } from "react-router-dom"; 3 | import UserContext from "../context/UserContext"; 4 | 5 | const Login = () => { 6 | const [email, setEmail] = useState(""); 7 | const [password, setPassword] = useState(""); 8 | 9 | const { color, setColor } = useContext(UserContext); 10 | 11 | const navigate = useNavigate(); 12 | 13 | const handleClick = () => { 14 | if (email === "abc@gmail.com" && password === "12345") { 15 | navigate("/mobile"); 16 | return; 17 | } 18 | 19 | alert("password or email in correct"); 20 | }; 21 | return ( 22 |
23 | 24 | 25 | setColor(e.target.value)} 28 | value={color} 29 | > 30 | setPassword(e.target.value)} 33 | > 34 | 35 | 38 |
39 | ); 40 | }; 41 | 42 | export default Login; 43 | -------------------------------------------------------------------------------- /src/components/Mobile.jsx: -------------------------------------------------------------------------------- 1 | import React, { useEffect, useRef, useState } from "react"; 2 | import { useLocation } from "react-router-dom"; 3 | 4 | const Mobile = () => { 5 | const [count, setCount] = useState(1000); 6 | const location = useLocation(); 7 | console.log(location); 8 | 9 | const imgRef = useRef(); //{current:undefined} 10 | 11 | let data = 20; 12 | 13 | const handleClick = () => { 14 | setCount(count + 1000); 15 | }; 16 | 17 | useEffect(() => { 18 | let id = setInterval(() => { 19 | console.log("setInterval"); 20 | }, 1000); 21 | 22 | return function () { 23 | console.log("return useEffect"); 24 | clearInterval(id); 25 | }; 26 | }, []); 27 | 28 | return ( 29 |
30 | 35 | 36 |

{count}

37 | 38 | 44 |
45 | ); 46 | }; 47 | 48 | export default Mobile; 49 | -------------------------------------------------------------------------------- /src/components/Navbar.jsx: -------------------------------------------------------------------------------- 1 | import React, { useContext } from "react"; 2 | import { Link } from "react-router-dom"; 3 | import UserContext from "../context/UserContext"; 4 | 5 | const Navbar = () => { 6 | const { color, setColor } = useContext(UserContext); 7 | return ( 8 |
9 |

React Routing

10 | {color} 11 | 12 |
13 | Home 14 | Product 15 | Mobile 16 | Login 17 |
18 |
19 | ); 20 | }; 21 | 22 | export default Navbar; 23 | -------------------------------------------------------------------------------- /src/components/Parent.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import Child from "./Child"; 3 | import { useState } from "react"; 4 | 5 | const Parent = () => { 6 | const [info, setInfo] = useState(""); 7 | const handleData = (data) => { 8 | setInfo(data); 9 | }; 10 | return ( 11 |
12 | Parent {info} child- 13 | 14 |
15 | ); 16 | }; 17 | 18 | export default Parent; 19 | -------------------------------------------------------------------------------- /src/components/Product.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Link, Outlet } from "react-router-dom"; 3 | 4 | const Product = () => { 5 | return ( 6 |
7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 | ); 15 | }; 16 | 17 | export default Product; 18 | -------------------------------------------------------------------------------- /src/components/ProtectedRoute.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { Navigate, Outlet } from "react-router-dom"; 3 | 4 | const ProtectedRoute = () => { 5 | const isAuthenticated = false; 6 | return isAuthenticated ? : ; 7 | }; 8 | 9 | export default ProtectedRoute; 10 | -------------------------------------------------------------------------------- /src/components/User.jsx: -------------------------------------------------------------------------------- 1 | 2 | import React, { Component } from "react"; 3 | 4 | class User extends Component { 5 | constructor(props) { 6 | super(props); 7 | console.log(props); 8 | 9 | this.state = { 10 | count: 1000, 11 | data: "songs", 12 | email: "abc@gmail.com", 13 | }; 14 | } 15 | 16 | render() { 17 | const { name, gfName } = this.props; 18 | return ( 19 | <> 20 |

hi dear

21 |

{name}

22 |

{gfName}

23 |

{this.state.data}

24 |

{this.state.email}

25 |

{this.state.count}

26 | 36 | 37 | ); 38 | } 39 | } 40 | 41 | -------------------------------------------------------------------------------- /src/context/ThemeContext.jsx: -------------------------------------------------------------------------------- 1 | import { createContext, useState } from "react"; 2 | 3 | const ThemeContext = createContext(); 4 | 5 | export default ThemeContext; 6 | 7 | export const ThemeProvider = ({ children }) => { 8 | const [theme, setTheme] = useState("dark"); 9 | 10 | return ( 11 | <> 12 | 13 | {children} 14 | 15 | 16 | ); 17 | }; 18 | -------------------------------------------------------------------------------- /src/context/UserContext.jsx: -------------------------------------------------------------------------------- 1 | import { createContext } from "react"; 2 | 3 | const UserContext = createContext(); 4 | 5 | export default UserContext; 6 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | @import "tailwindcss"; 2 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from "react"; 2 | import { createRoot } from "react-dom/client"; 3 | import "./index.css"; 4 | import App from "./App.jsx"; 5 | 6 | import { Provider } from "react-redux"; 7 | import appStore from "./store/appStore.jsx"; 8 | import { BrowserRouter, Route, Routes } from "react-router-dom"; 9 | import Cart from "./components/Cart.jsx"; 10 | import Parent from "./components/Parent.jsx"; 11 | 12 | createRoot(document.getElementById("root")).render( 13 | // 14 | 15 | 16 | 17 | 18 | } /> 19 | } /> 20 | } /> 21 | 22 | 23 | 24 | 25 | 26 | // , 27 | ); 28 | -------------------------------------------------------------------------------- /src/store/appStore.jsx: -------------------------------------------------------------------------------- 1 | import { configureStore } from "@reduxjs/toolkit"; 2 | import cartReducer from "./cartSlice"; 3 | 4 | const appStore = configureStore({ 5 | reducer: { 6 | cart: cartReducer, 7 | }, 8 | }); 9 | 10 | export default appStore; 11 | -------------------------------------------------------------------------------- /src/store/cartSlice.jsx: -------------------------------------------------------------------------------- 1 | import { createSlice } from "@reduxjs/toolkit"; 2 | 3 | const cartSlice = createSlice({ 4 | name: "cart", 5 | initialState: { 6 | items: [], 7 | total: 0, 8 | }, 9 | reducers: { 10 | addItem: (state, action) => { 11 | state.items.push(action.payload); 12 | }, 13 | removeItem: (state, action) => { 14 | const currentItem = action.payload; 15 | state.items = state.items.filter((item) => item.id != currentItem.id); 16 | }, 17 | clearCart: (state, action) => { 18 | state.items.length = 0; 19 | }, 20 | }, 21 | }); 22 | 23 | export const { addItem, removeItem, clearCart } = cartSlice.actions; 24 | export default cartSlice.reducer; 25 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vite"; 2 | import react from "@vitejs/plugin-react"; 3 | import tailwindcss from "@tailwindcss/vite"; 4 | 5 | // https://vite.dev/config/ 6 | export default defineConfig({ 7 | plugins: [react(), tailwindcss()], 8 | }); 9 | --------------------------------------------------------------------------------