├── .github └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.js ├── index.html ├── package.json ├── pnpm-lock.yaml ├── public └── vite.svg ├── src ├── App.css ├── App.jsx ├── assets │ └── react.svg ├── classy-react.js ├── index.css └── main.jsx ├── tests ├── basic.test.jsx └── setup.js ├── tsconfig.json ├── vite.config.js └── vitest.config.js /.github/ci.yml: -------------------------------------------------------------------------------- 1 | name: CI 2 | on: 3 | workflow_dispatch: 4 | pull_request: 5 | push: 6 | branches: [main] 7 | 8 | ############################################################## 9 | 10 | concurrency: 11 | group: ${{ github.workflow }}-${{ github.ref }} 12 | 13 | permissions: 14 | contents: read 15 | 16 | jobs: 17 | 18 | lints: 19 | name: "Lints" 20 | runs-on: ubuntu-latest 21 | 22 | steps: 23 | - uses: wyvox/action@v1 24 | - run: pnpm lint 25 | 26 | tests: 27 | name: "Tests" 28 | runs-on: ubuntu-latest 29 | 30 | steps: 31 | - uses: wyvox/action@v1 32 | - run: pnpm test 33 | 34 | 35 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | # Logs 4 | logs 5 | *.log 6 | npm-debug.log* 7 | yarn-debug.log* 8 | yarn-error.log* 9 | pnpm-debug.log* 10 | lerna-debug.log* 11 | 12 | node_modules 13 | dist 14 | dist-ssr 15 | *.local 16 | 17 | # Editor directories and files 18 | .vscode/* 19 | !.vscode/extensions.json 20 | .idea 21 | .DS_Store 22 | *.suo 23 | *.ntvs* 24 | *.njsproj 25 | *.sln 26 | *.sw? 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2024 NullVoxPopuli 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # classy-react 2 | 3 | - Want to use React, but tired of hooks? 4 | - But at the same time, you super appreciate the ergonomics provided in _authoring_ hooks? 5 | - Do you think that not being able to use hooks in classes is silly? 6 | 7 | Now you can have the best both worlds, with classy-react! 8 | 9 | ```jsx 10 | import React from 'react'; 11 | 12 | import { useState, useHooks } from 'classy-react'; 13 | 14 | export default @useHooks class App { 15 | @useState accessor count = 5; 16 | 17 | render = () => { 18 | return ( 19 | <> 20 | 23 | 24 | ); 25 | } 26 | } 27 | ``` 28 | 29 | ## Install 30 | 31 | ```bash 32 | pnpm add classy-react 33 | ``` 34 | 35 | ## API 36 | 37 | This library is experimental, and right now only provides three exports: 38 | 39 | - `@useHooks` - allows vanilla classes to be used as components -- like with React's own class component, the `render` function is special in that it is used to hold the template of your component. 40 | - `@useState` - `React.useState`, but as a decorator 41 | - `wrap` - utility for making turning your own hooks into decorators, as long as they return the tuple in the form of `[value, setter]` (like `useState` does) 42 | 43 | ## Notes 44 | - Rules of hooks still apply (albeit now hidden~ish) 45 | - You should never use `this.property = this.property.bind(this)` -- and React should have never recommended you do so. 46 | - This library has no tests (for now) 47 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import js from "@eslint/js"; 2 | import globals from "globals"; 3 | import react from "eslint-plugin-react"; 4 | import reactHooks from "eslint-plugin-react-hooks"; 5 | import reactRefresh from "eslint-plugin-react-refresh"; 6 | import babelParser from "@babel/eslint-parser"; 7 | 8 | export default [ 9 | { ignores: ["dist"] }, 10 | { 11 | files: ["**/*.{js,jsx}"], 12 | languageOptions: { 13 | ecmaVersion: 2020, 14 | globals: globals.browser, 15 | parser: babelParser, 16 | parserOptions: { 17 | ecmaVersion: "latest", 18 | sourceType: "module", 19 | requireConfigFile: false, 20 | babelOptions: { 21 | presets: ["@babel/preset-react"], 22 | plugins: [ 23 | ["@babel/plugin-proposal-decorators", { version: "2023-11" }], 24 | ], 25 | }, 26 | }, 27 | }, 28 | settings: { react: { version: "18.3" } }, 29 | plugins: { 30 | react, 31 | "react-hooks": reactHooks, 32 | "react-refresh": reactRefresh, 33 | }, 34 | rules: { 35 | ...js.configs.recommended.rules, 36 | ...react.configs.recommended.rules, 37 | ...react.configs["jsx-runtime"].rules, 38 | ...reactHooks.configs.recommended.rules, 39 | "no-undef": "off", // appears broken with decorators 40 | "react/jsx-uses-react": "error", 41 | "react/jsx-no-target-blank": "off", 42 | "react-refresh/only-export-components": [ 43 | "warn", 44 | { allowConstantExport: true }, 45 | ], 46 | }, 47 | }, 48 | ]; 49 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Vite + React 8 | 9 | 10 |
11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "classy-react", 3 | "version": "0.0.3", 4 | "main": "./src/classy-react.js", 5 | "type": "module", 6 | "files": [ 7 | "src/classy-react.js" 8 | ], 9 | "scripts": { 10 | "dev": "vite", 11 | "build": "vite build", 12 | "lint": "eslint .", 13 | "preview": "vite preview", 14 | "test": "vitest" 15 | }, 16 | "peerDependencies": { 17 | "react": ">= 18.3.1" 18 | }, 19 | "devDependencies": { 20 | "@babel/eslint-parser": "^7.25.1", 21 | "@babel/plugin-proposal-decorators": "^7.24.7", 22 | "@babel/plugin-transform-typescript": "^7.25.2", 23 | "@babel/preset-react": "^7.24.7", 24 | "@eslint/js": "^9.10.0", 25 | "@rollup/plugin-babel": "^6.0.4", 26 | "@testing-library/jest-dom": "^6.5.0", 27 | "@testing-library/react": "^16.0.1", 28 | "@testing-library/user-event": "^14.5.2", 29 | "@tsconfig/strictest": "^2.0.5", 30 | "@types/react": "^18.3.5", 31 | "@types/react-dom": "^18.3.0", 32 | "@vitejs/plugin-react": "^4.3.1", 33 | "@vitest/browser": "^2.1.1", 34 | "eslint": "^9.10.0", 35 | "eslint-plugin-react": "^7.35.2", 36 | "eslint-plugin-react-hooks": "^5.1.0-rc.0", 37 | "eslint-plugin-react-refresh": "^0.4.11", 38 | "globals": "^15.9.0", 39 | "jsdom": "^25.0.0", 40 | "prettier": "^3.3.3", 41 | "react": "^ 18.3.1", 42 | "react-dom": "^18.3.1", 43 | "typescript": "^5.6.2", 44 | "vite": "^5.4.3", 45 | "vite-plugin-babel": "^1.2.0", 46 | "vitest": "^2.1.1" 47 | }, 48 | "pnpm": { 49 | "overrides": { 50 | "esbuild": "0.23.1" 51 | } 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | overrides: 8 | esbuild: 0.23.1 9 | 10 | importers: 11 | 12 | .: 13 | devDependencies: 14 | '@babel/eslint-parser': 15 | specifier: ^7.25.1 16 | version: 7.25.1(@babel/core@7.25.2)(eslint@9.10.0) 17 | '@babel/plugin-proposal-decorators': 18 | specifier: ^7.24.7 19 | version: 7.24.7(@babel/core@7.25.2) 20 | '@babel/plugin-transform-typescript': 21 | specifier: ^7.25.2 22 | version: 7.25.2(@babel/core@7.25.2) 23 | '@babel/preset-react': 24 | specifier: ^7.24.7 25 | version: 7.24.7(@babel/core@7.25.2) 26 | '@eslint/js': 27 | specifier: ^9.10.0 28 | version: 9.10.0 29 | '@rollup/plugin-babel': 30 | specifier: ^6.0.4 31 | version: 6.0.4(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@4.21.2) 32 | '@testing-library/jest-dom': 33 | specifier: ^6.5.0 34 | version: 6.5.0 35 | '@testing-library/react': 36 | specifier: ^16.0.1 37 | version: 16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 38 | '@testing-library/user-event': 39 | specifier: ^14.5.2 40 | version: 14.5.2(@testing-library/dom@10.4.0) 41 | '@tsconfig/strictest': 42 | specifier: ^2.0.5 43 | version: 2.0.5 44 | '@types/react': 45 | specifier: ^18.3.5 46 | version: 18.3.5 47 | '@types/react-dom': 48 | specifier: ^18.3.0 49 | version: 18.3.0 50 | '@vitejs/plugin-react': 51 | specifier: ^4.3.1 52 | version: 4.3.1(vite@5.4.3(@types/node@22.5.5)) 53 | '@vitest/browser': 54 | specifier: ^2.1.1 55 | version: 2.1.1(@vitest/spy@2.1.1)(typescript@5.6.2)(vite@5.4.3(@types/node@22.5.5))(vitest@2.1.1) 56 | eslint: 57 | specifier: ^9.10.0 58 | version: 9.10.0 59 | eslint-plugin-react: 60 | specifier: ^7.35.2 61 | version: 7.35.2(eslint@9.10.0) 62 | eslint-plugin-react-hooks: 63 | specifier: ^5.1.0-rc.0 64 | version: 5.1.0-rc-fb9a90fa48-20240614(eslint@9.10.0) 65 | eslint-plugin-react-refresh: 66 | specifier: ^0.4.11 67 | version: 0.4.11(eslint@9.10.0) 68 | globals: 69 | specifier: ^15.9.0 70 | version: 15.9.0 71 | jsdom: 72 | specifier: ^25.0.0 73 | version: 25.0.0 74 | prettier: 75 | specifier: ^3.3.3 76 | version: 3.3.3 77 | react: 78 | specifier: ^ 18.3.1 79 | version: 18.3.1 80 | react-dom: 81 | specifier: ^18.3.1 82 | version: 18.3.1(react@18.3.1) 83 | typescript: 84 | specifier: ^5.6.2 85 | version: 5.6.2 86 | vite: 87 | specifier: ^5.4.3 88 | version: 5.4.3(@types/node@22.5.5) 89 | vite-plugin-babel: 90 | specifier: ^1.2.0 91 | version: 1.2.0(@babel/core@7.25.2)(vite@5.4.3(@types/node@22.5.5)) 92 | vitest: 93 | specifier: ^2.1.1 94 | version: 2.1.1(@types/node@22.5.5)(@vitest/browser@2.1.1)(jsdom@25.0.0)(msw@2.4.7(typescript@5.6.2)) 95 | 96 | packages: 97 | 98 | '@adobe/css-tools@4.4.0': 99 | resolution: {integrity: sha512-Ff9+ksdQQB3rMncgqDK78uLznstjyfIf2Arnh22pW8kBpLs6rpKDwgnZT46hin5Hl1WzazzK64DOrhSwYpS7bQ==} 100 | 101 | '@ampproject/remapping@2.3.0': 102 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 103 | engines: {node: '>=6.0.0'} 104 | 105 | '@babel/code-frame@7.24.7': 106 | resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==} 107 | engines: {node: '>=6.9.0'} 108 | 109 | '@babel/compat-data@7.25.4': 110 | resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==} 111 | engines: {node: '>=6.9.0'} 112 | 113 | '@babel/core@7.25.2': 114 | resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==} 115 | engines: {node: '>=6.9.0'} 116 | 117 | '@babel/eslint-parser@7.25.1': 118 | resolution: {integrity: sha512-Y956ghgTT4j7rKesabkh5WeqgSFZVFwaPR0IWFm7KFHFmmJ4afbG49SmfW4S+GyRPx0Dy5jxEWA5t0rpxfElWg==} 119 | engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} 120 | peerDependencies: 121 | '@babel/core': ^7.11.0 122 | eslint: ^7.5.0 || ^8.0.0 || ^9.0.0 123 | 124 | '@babel/generator@7.25.6': 125 | resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==} 126 | engines: {node: '>=6.9.0'} 127 | 128 | '@babel/helper-annotate-as-pure@7.24.7': 129 | resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==} 130 | engines: {node: '>=6.9.0'} 131 | 132 | '@babel/helper-compilation-targets@7.25.2': 133 | resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==} 134 | engines: {node: '>=6.9.0'} 135 | 136 | '@babel/helper-create-class-features-plugin@7.25.4': 137 | resolution: {integrity: sha512-ro/bFs3/84MDgDmMwbcHgDa8/E6J3QKNTk4xJJnVeFtGE+tL0K26E3pNxhYz2b67fJpt7Aphw5XcploKXuCvCQ==} 138 | engines: {node: '>=6.9.0'} 139 | peerDependencies: 140 | '@babel/core': ^7.0.0 141 | 142 | '@babel/helper-member-expression-to-functions@7.24.8': 143 | resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==} 144 | engines: {node: '>=6.9.0'} 145 | 146 | '@babel/helper-module-imports@7.24.7': 147 | resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==} 148 | engines: {node: '>=6.9.0'} 149 | 150 | '@babel/helper-module-transforms@7.25.2': 151 | resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==} 152 | engines: {node: '>=6.9.0'} 153 | peerDependencies: 154 | '@babel/core': ^7.0.0 155 | 156 | '@babel/helper-optimise-call-expression@7.24.7': 157 | resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==} 158 | engines: {node: '>=6.9.0'} 159 | 160 | '@babel/helper-plugin-utils@7.24.8': 161 | resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==} 162 | engines: {node: '>=6.9.0'} 163 | 164 | '@babel/helper-replace-supers@7.25.0': 165 | resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==} 166 | engines: {node: '>=6.9.0'} 167 | peerDependencies: 168 | '@babel/core': ^7.0.0 169 | 170 | '@babel/helper-simple-access@7.24.7': 171 | resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==} 172 | engines: {node: '>=6.9.0'} 173 | 174 | '@babel/helper-skip-transparent-expression-wrappers@7.24.7': 175 | resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==} 176 | engines: {node: '>=6.9.0'} 177 | 178 | '@babel/helper-string-parser@7.24.8': 179 | resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==} 180 | engines: {node: '>=6.9.0'} 181 | 182 | '@babel/helper-validator-identifier@7.24.7': 183 | resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==} 184 | engines: {node: '>=6.9.0'} 185 | 186 | '@babel/helper-validator-option@7.24.8': 187 | resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==} 188 | engines: {node: '>=6.9.0'} 189 | 190 | '@babel/helpers@7.25.6': 191 | resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==} 192 | engines: {node: '>=6.9.0'} 193 | 194 | '@babel/highlight@7.24.7': 195 | resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==} 196 | engines: {node: '>=6.9.0'} 197 | 198 | '@babel/parser@7.25.6': 199 | resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==} 200 | engines: {node: '>=6.0.0'} 201 | hasBin: true 202 | 203 | '@babel/plugin-proposal-decorators@7.24.7': 204 | resolution: {integrity: sha512-RL9GR0pUG5Kc8BUWLNDm2T5OpYwSX15r98I0IkgmRQTXuELq/OynH8xtMTMvTJFjXbMWFVTKtYkTaYQsuAwQlQ==} 205 | engines: {node: '>=6.9.0'} 206 | peerDependencies: 207 | '@babel/core': ^7.0.0-0 208 | 209 | '@babel/plugin-syntax-decorators@7.24.7': 210 | resolution: {integrity: sha512-Ui4uLJJrRV1lb38zg1yYTmRKmiZLiftDEvZN2iq3kd9kUFU+PttmzTbAFC2ucRk/XJmtek6G23gPsuZbhrT8fQ==} 211 | engines: {node: '>=6.9.0'} 212 | peerDependencies: 213 | '@babel/core': ^7.0.0-0 214 | 215 | '@babel/plugin-syntax-jsx@7.24.7': 216 | resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==} 217 | engines: {node: '>=6.9.0'} 218 | peerDependencies: 219 | '@babel/core': ^7.0.0-0 220 | 221 | '@babel/plugin-syntax-typescript@7.25.4': 222 | resolution: {integrity: sha512-uMOCoHVU52BsSWxPOMVv5qKRdeSlPuImUCB2dlPuBSU+W2/ROE7/Zg8F2Kepbk+8yBa68LlRKxO+xgEVWorsDg==} 223 | engines: {node: '>=6.9.0'} 224 | peerDependencies: 225 | '@babel/core': ^7.0.0-0 226 | 227 | '@babel/plugin-transform-react-display-name@7.24.7': 228 | resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==} 229 | engines: {node: '>=6.9.0'} 230 | peerDependencies: 231 | '@babel/core': ^7.0.0-0 232 | 233 | '@babel/plugin-transform-react-jsx-development@7.24.7': 234 | resolution: {integrity: sha512-QG9EnzoGn+Qar7rxuW+ZOsbWOt56FvvI93xInqsZDC5fsekx1AlIO4KIJ5M+D0p0SqSH156EpmZyXq630B8OlQ==} 235 | engines: {node: '>=6.9.0'} 236 | peerDependencies: 237 | '@babel/core': ^7.0.0-0 238 | 239 | '@babel/plugin-transform-react-jsx-self@7.24.7': 240 | resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==} 241 | engines: {node: '>=6.9.0'} 242 | peerDependencies: 243 | '@babel/core': ^7.0.0-0 244 | 245 | '@babel/plugin-transform-react-jsx-source@7.24.7': 246 | resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==} 247 | engines: {node: '>=6.9.0'} 248 | peerDependencies: 249 | '@babel/core': ^7.0.0-0 250 | 251 | '@babel/plugin-transform-react-jsx@7.25.2': 252 | resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==} 253 | engines: {node: '>=6.9.0'} 254 | peerDependencies: 255 | '@babel/core': ^7.0.0-0 256 | 257 | '@babel/plugin-transform-react-pure-annotations@7.24.7': 258 | resolution: {integrity: sha512-PLgBVk3fzbmEjBJ/u8kFzOqS9tUeDjiaWud/rRym/yjCo/M9cASPlnrd2ZmmZpQT40fOOrvR8jh+n8jikrOhNA==} 259 | engines: {node: '>=6.9.0'} 260 | peerDependencies: 261 | '@babel/core': ^7.0.0-0 262 | 263 | '@babel/plugin-transform-typescript@7.25.2': 264 | resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==} 265 | engines: {node: '>=6.9.0'} 266 | peerDependencies: 267 | '@babel/core': ^7.0.0-0 268 | 269 | '@babel/preset-react@7.24.7': 270 | resolution: {integrity: sha512-AAH4lEkpmzFWrGVlHaxJB7RLH21uPQ9+He+eFLWHmF9IuFQVugz8eAsamaW0DXRrTfco5zj1wWtpdcXJUOfsag==} 271 | engines: {node: '>=6.9.0'} 272 | peerDependencies: 273 | '@babel/core': ^7.0.0-0 274 | 275 | '@babel/runtime@7.25.6': 276 | resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==} 277 | engines: {node: '>=6.9.0'} 278 | 279 | '@babel/template@7.25.0': 280 | resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==} 281 | engines: {node: '>=6.9.0'} 282 | 283 | '@babel/traverse@7.25.6': 284 | resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==} 285 | engines: {node: '>=6.9.0'} 286 | 287 | '@babel/types@7.25.6': 288 | resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==} 289 | engines: {node: '>=6.9.0'} 290 | 291 | '@bundled-es-modules/cookie@2.0.0': 292 | resolution: {integrity: sha512-Or6YHg/kamKHpxULAdSqhGqnWFneIXu1NKvvfBBzKGwpVsYuFIQ5aBPHDnnoR3ghW1nvSkALd+EF9iMtY7Vjxw==} 293 | 294 | '@bundled-es-modules/statuses@1.0.1': 295 | resolution: {integrity: sha512-yn7BklA5acgcBr+7w064fGV+SGIFySjCKpqjcWgBAIfrAkY+4GQTJJHQMeT3V/sgz23VTEVV8TtOmkvJAhFVfg==} 296 | 297 | '@bundled-es-modules/tough-cookie@0.1.6': 298 | resolution: {integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==} 299 | 300 | '@esbuild/aix-ppc64@0.23.1': 301 | resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==} 302 | engines: {node: '>=18'} 303 | cpu: [ppc64] 304 | os: [aix] 305 | 306 | '@esbuild/android-arm64@0.23.1': 307 | resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==} 308 | engines: {node: '>=18'} 309 | cpu: [arm64] 310 | os: [android] 311 | 312 | '@esbuild/android-arm@0.23.1': 313 | resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==} 314 | engines: {node: '>=18'} 315 | cpu: [arm] 316 | os: [android] 317 | 318 | '@esbuild/android-x64@0.23.1': 319 | resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==} 320 | engines: {node: '>=18'} 321 | cpu: [x64] 322 | os: [android] 323 | 324 | '@esbuild/darwin-arm64@0.23.1': 325 | resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==} 326 | engines: {node: '>=18'} 327 | cpu: [arm64] 328 | os: [darwin] 329 | 330 | '@esbuild/darwin-x64@0.23.1': 331 | resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==} 332 | engines: {node: '>=18'} 333 | cpu: [x64] 334 | os: [darwin] 335 | 336 | '@esbuild/freebsd-arm64@0.23.1': 337 | resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==} 338 | engines: {node: '>=18'} 339 | cpu: [arm64] 340 | os: [freebsd] 341 | 342 | '@esbuild/freebsd-x64@0.23.1': 343 | resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==} 344 | engines: {node: '>=18'} 345 | cpu: [x64] 346 | os: [freebsd] 347 | 348 | '@esbuild/linux-arm64@0.23.1': 349 | resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==} 350 | engines: {node: '>=18'} 351 | cpu: [arm64] 352 | os: [linux] 353 | 354 | '@esbuild/linux-arm@0.23.1': 355 | resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==} 356 | engines: {node: '>=18'} 357 | cpu: [arm] 358 | os: [linux] 359 | 360 | '@esbuild/linux-ia32@0.23.1': 361 | resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==} 362 | engines: {node: '>=18'} 363 | cpu: [ia32] 364 | os: [linux] 365 | 366 | '@esbuild/linux-loong64@0.23.1': 367 | resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==} 368 | engines: {node: '>=18'} 369 | cpu: [loong64] 370 | os: [linux] 371 | 372 | '@esbuild/linux-mips64el@0.23.1': 373 | resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==} 374 | engines: {node: '>=18'} 375 | cpu: [mips64el] 376 | os: [linux] 377 | 378 | '@esbuild/linux-ppc64@0.23.1': 379 | resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==} 380 | engines: {node: '>=18'} 381 | cpu: [ppc64] 382 | os: [linux] 383 | 384 | '@esbuild/linux-riscv64@0.23.1': 385 | resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==} 386 | engines: {node: '>=18'} 387 | cpu: [riscv64] 388 | os: [linux] 389 | 390 | '@esbuild/linux-s390x@0.23.1': 391 | resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==} 392 | engines: {node: '>=18'} 393 | cpu: [s390x] 394 | os: [linux] 395 | 396 | '@esbuild/linux-x64@0.23.1': 397 | resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==} 398 | engines: {node: '>=18'} 399 | cpu: [x64] 400 | os: [linux] 401 | 402 | '@esbuild/netbsd-x64@0.23.1': 403 | resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==} 404 | engines: {node: '>=18'} 405 | cpu: [x64] 406 | os: [netbsd] 407 | 408 | '@esbuild/openbsd-arm64@0.23.1': 409 | resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==} 410 | engines: {node: '>=18'} 411 | cpu: [arm64] 412 | os: [openbsd] 413 | 414 | '@esbuild/openbsd-x64@0.23.1': 415 | resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==} 416 | engines: {node: '>=18'} 417 | cpu: [x64] 418 | os: [openbsd] 419 | 420 | '@esbuild/sunos-x64@0.23.1': 421 | resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==} 422 | engines: {node: '>=18'} 423 | cpu: [x64] 424 | os: [sunos] 425 | 426 | '@esbuild/win32-arm64@0.23.1': 427 | resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==} 428 | engines: {node: '>=18'} 429 | cpu: [arm64] 430 | os: [win32] 431 | 432 | '@esbuild/win32-ia32@0.23.1': 433 | resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==} 434 | engines: {node: '>=18'} 435 | cpu: [ia32] 436 | os: [win32] 437 | 438 | '@esbuild/win32-x64@0.23.1': 439 | resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==} 440 | engines: {node: '>=18'} 441 | cpu: [x64] 442 | os: [win32] 443 | 444 | '@eslint-community/eslint-utils@4.4.0': 445 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 446 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 447 | peerDependencies: 448 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 449 | 450 | '@eslint-community/regexpp@4.11.0': 451 | resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==} 452 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 453 | 454 | '@eslint/config-array@0.18.0': 455 | resolution: {integrity: sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==} 456 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 457 | 458 | '@eslint/eslintrc@3.1.0': 459 | resolution: {integrity: sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==} 460 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 461 | 462 | '@eslint/js@9.10.0': 463 | resolution: {integrity: sha512-fuXtbiP5GWIn8Fz+LWoOMVf/Jxm+aajZYkhi6CuEm4SxymFM+eUWzbO9qXT+L0iCkL5+KGYMCSGxo686H19S1g==} 464 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 465 | 466 | '@eslint/object-schema@2.1.4': 467 | resolution: {integrity: sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==} 468 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 469 | 470 | '@eslint/plugin-kit@0.1.0': 471 | resolution: {integrity: sha512-autAXT203ixhqei9xt+qkYOvY8l6LAFIdT2UXc/RPNeUVfqRF1BV94GTJyVPFKT8nFM6MyVJhjLj9E8JWvf5zQ==} 472 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 473 | 474 | '@humanwhocodes/module-importer@1.0.1': 475 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 476 | engines: {node: '>=12.22'} 477 | 478 | '@humanwhocodes/retry@0.3.0': 479 | resolution: {integrity: sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==} 480 | engines: {node: '>=18.18'} 481 | 482 | '@inquirer/confirm@3.2.0': 483 | resolution: {integrity: sha512-oOIwPs0Dvq5220Z8lGL/6LHRTEr9TgLHmiI99Rj1PJ1p1czTys+olrgBqZk4E2qC0YTzeHprxSQmoHioVdJ7Lw==} 484 | engines: {node: '>=18'} 485 | 486 | '@inquirer/core@9.2.0': 487 | resolution: {integrity: sha512-pDmhEEvhMSB49LrE/VxkUbWuFpYfllgn3pBGVoi+Up6cI/godUh5PoK3d2OrPV61LtMTBCWCizd0AIiMHTPQfQ==} 488 | engines: {node: '>=18'} 489 | 490 | '@inquirer/figures@1.0.5': 491 | resolution: {integrity: sha512-79hP/VWdZ2UVc9bFGJnoQ/lQMpL74mGgzSYX1xUqCVk7/v73vJCMw1VuyWN1jGkZ9B3z7THAbySqGbCNefcjfA==} 492 | engines: {node: '>=18'} 493 | 494 | '@inquirer/type@1.5.4': 495 | resolution: {integrity: sha512-E9sqh3kOGvFj+/tF0RVnclE39tUoa03kDu++WyYXjjf/X0FSI5tAfSHedRWYelix9l3xBUr2klQ92eFyl0aNzQ==} 496 | engines: {node: '>=18'} 497 | 498 | '@jridgewell/gen-mapping@0.3.5': 499 | resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==} 500 | engines: {node: '>=6.0.0'} 501 | 502 | '@jridgewell/resolve-uri@3.1.2': 503 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 504 | engines: {node: '>=6.0.0'} 505 | 506 | '@jridgewell/set-array@1.2.1': 507 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 508 | engines: {node: '>=6.0.0'} 509 | 510 | '@jridgewell/sourcemap-codec@1.5.0': 511 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 512 | 513 | '@jridgewell/trace-mapping@0.3.25': 514 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 515 | 516 | '@mswjs/interceptors@0.35.6': 517 | resolution: {integrity: sha512-PpD687w7qLxVMK176bpQjbzU9O0VC75QnBK5U1lKd29s4hIuxfTItUD6raNKyQ6BN8b64/8HE34RuYTkwH9uPQ==} 518 | engines: {node: '>=18'} 519 | 520 | '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': 521 | resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==} 522 | 523 | '@nodelib/fs.scandir@2.1.5': 524 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 525 | engines: {node: '>= 8'} 526 | 527 | '@nodelib/fs.stat@2.0.5': 528 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 529 | engines: {node: '>= 8'} 530 | 531 | '@nodelib/fs.walk@1.2.8': 532 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 533 | engines: {node: '>= 8'} 534 | 535 | '@open-draft/deferred-promise@2.2.0': 536 | resolution: {integrity: sha512-CecwLWx3rhxVQF6V4bAgPS5t+So2sTbPgAzafKkVizyi7tlwpcFpdFqq+wqF2OwNBmqFuu6tOyouTuxgpMfzmA==} 537 | 538 | '@open-draft/logger@0.3.0': 539 | resolution: {integrity: sha512-X2g45fzhxH238HKO4xbSr7+wBS8Fvw6ixhTDuvLd5mqh6bJJCFAPwU9mPDxbcrRtfxv4u5IHCEH77BmxvXmmxQ==} 540 | 541 | '@open-draft/until@2.1.0': 542 | resolution: {integrity: sha512-U69T3ItWHvLwGg5eJ0n3I62nWuE6ilHlmz7zM0npLBRvPRd7e6NYmg54vvRtP5mZG7kZqZCFVdsTWo7BPtBujg==} 543 | 544 | '@polka/url@1.0.0-next.25': 545 | resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} 546 | 547 | '@rollup/plugin-babel@6.0.4': 548 | resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==} 549 | engines: {node: '>=14.0.0'} 550 | peerDependencies: 551 | '@babel/core': ^7.0.0 552 | '@types/babel__core': ^7.1.9 553 | rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 554 | peerDependenciesMeta: 555 | '@types/babel__core': 556 | optional: true 557 | rollup: 558 | optional: true 559 | 560 | '@rollup/pluginutils@5.1.0': 561 | resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==} 562 | engines: {node: '>=14.0.0'} 563 | peerDependencies: 564 | rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 565 | peerDependenciesMeta: 566 | rollup: 567 | optional: true 568 | 569 | '@rollup/rollup-android-arm-eabi@4.21.2': 570 | resolution: {integrity: sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==} 571 | cpu: [arm] 572 | os: [android] 573 | 574 | '@rollup/rollup-android-arm64@4.21.2': 575 | resolution: {integrity: sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==} 576 | cpu: [arm64] 577 | os: [android] 578 | 579 | '@rollup/rollup-darwin-arm64@4.21.2': 580 | resolution: {integrity: sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==} 581 | cpu: [arm64] 582 | os: [darwin] 583 | 584 | '@rollup/rollup-darwin-x64@4.21.2': 585 | resolution: {integrity: sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==} 586 | cpu: [x64] 587 | os: [darwin] 588 | 589 | '@rollup/rollup-linux-arm-gnueabihf@4.21.2': 590 | resolution: {integrity: sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==} 591 | cpu: [arm] 592 | os: [linux] 593 | 594 | '@rollup/rollup-linux-arm-musleabihf@4.21.2': 595 | resolution: {integrity: sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==} 596 | cpu: [arm] 597 | os: [linux] 598 | 599 | '@rollup/rollup-linux-arm64-gnu@4.21.2': 600 | resolution: {integrity: sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==} 601 | cpu: [arm64] 602 | os: [linux] 603 | 604 | '@rollup/rollup-linux-arm64-musl@4.21.2': 605 | resolution: {integrity: sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==} 606 | cpu: [arm64] 607 | os: [linux] 608 | 609 | '@rollup/rollup-linux-powerpc64le-gnu@4.21.2': 610 | resolution: {integrity: sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==} 611 | cpu: [ppc64] 612 | os: [linux] 613 | 614 | '@rollup/rollup-linux-riscv64-gnu@4.21.2': 615 | resolution: {integrity: sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==} 616 | cpu: [riscv64] 617 | os: [linux] 618 | 619 | '@rollup/rollup-linux-s390x-gnu@4.21.2': 620 | resolution: {integrity: sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==} 621 | cpu: [s390x] 622 | os: [linux] 623 | 624 | '@rollup/rollup-linux-x64-gnu@4.21.2': 625 | resolution: {integrity: sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==} 626 | cpu: [x64] 627 | os: [linux] 628 | 629 | '@rollup/rollup-linux-x64-musl@4.21.2': 630 | resolution: {integrity: sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==} 631 | cpu: [x64] 632 | os: [linux] 633 | 634 | '@rollup/rollup-win32-arm64-msvc@4.21.2': 635 | resolution: {integrity: sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==} 636 | cpu: [arm64] 637 | os: [win32] 638 | 639 | '@rollup/rollup-win32-ia32-msvc@4.21.2': 640 | resolution: {integrity: sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==} 641 | cpu: [ia32] 642 | os: [win32] 643 | 644 | '@rollup/rollup-win32-x64-msvc@4.21.2': 645 | resolution: {integrity: sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==} 646 | cpu: [x64] 647 | os: [win32] 648 | 649 | '@testing-library/dom@10.4.0': 650 | resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==} 651 | engines: {node: '>=18'} 652 | 653 | '@testing-library/jest-dom@6.5.0': 654 | resolution: {integrity: sha512-xGGHpBXYSHUUr6XsKBfs85TWlYKpTc37cSBBVrXcib2MkHLboWlkClhWF37JKlDb9KEq3dHs+f2xR7XJEWGBxA==} 655 | engines: {node: '>=14', npm: '>=6', yarn: '>=1'} 656 | 657 | '@testing-library/react@16.0.1': 658 | resolution: {integrity: sha512-dSmwJVtJXmku+iocRhWOUFbrERC76TX2Mnf0ATODz8brzAZrMBbzLwQixlBSanZxR6LddK3eiwpSFZgDET1URg==} 659 | engines: {node: '>=18'} 660 | peerDependencies: 661 | '@testing-library/dom': ^10.0.0 662 | '@types/react': ^18.0.0 663 | '@types/react-dom': ^18.0.0 664 | react: ^18.0.0 665 | react-dom: ^18.0.0 666 | peerDependenciesMeta: 667 | '@types/react': 668 | optional: true 669 | '@types/react-dom': 670 | optional: true 671 | 672 | '@testing-library/user-event@14.5.2': 673 | resolution: {integrity: sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==} 674 | engines: {node: '>=12', npm: '>=6'} 675 | peerDependencies: 676 | '@testing-library/dom': '>=7.21.4' 677 | 678 | '@tsconfig/strictest@2.0.5': 679 | resolution: {integrity: sha512-ec4tjL2Rr0pkZ5hww65c+EEPYwxOi4Ryv+0MtjeaSQRJyq322Q27eOQiFbuNgw2hpL4hB1/W/HBGk3VKS43osg==} 680 | 681 | '@types/aria-query@5.0.4': 682 | resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} 683 | 684 | '@types/babel__core@7.20.5': 685 | resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 686 | 687 | '@types/babel__generator@7.6.8': 688 | resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} 689 | 690 | '@types/babel__template@7.4.4': 691 | resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 692 | 693 | '@types/babel__traverse@7.20.6': 694 | resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} 695 | 696 | '@types/cookie@0.6.0': 697 | resolution: {integrity: sha512-4Kh9a6B2bQciAhf7FSuMRRkUWecJgJu9nPnx3yzpsfXX/c50REIqpHY4C82bXP90qrLtXtkDxTZosYO3UpOwlA==} 698 | 699 | '@types/estree@1.0.5': 700 | resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} 701 | 702 | '@types/mute-stream@0.0.4': 703 | resolution: {integrity: sha512-CPM9nzrCPPJHQNA9keH9CVkVI+WR5kMa+7XEs5jcGQ0VoAGnLv242w8lIVgwAEfmE4oufJRaTc9PNLQl0ioAow==} 704 | 705 | '@types/node@22.5.5': 706 | resolution: {integrity: sha512-Xjs4y5UPO/CLdzpgR6GirZJx36yScjh73+2NlLlkFRSoQN8B0DpfXPdZGnvVmLRLOsqDpOfTNv7D9trgGhmOIA==} 707 | 708 | '@types/prop-types@15.7.12': 709 | resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} 710 | 711 | '@types/react-dom@18.3.0': 712 | resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==} 713 | 714 | '@types/react@18.3.5': 715 | resolution: {integrity: sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==} 716 | 717 | '@types/statuses@2.0.5': 718 | resolution: {integrity: sha512-jmIUGWrAiwu3dZpxntxieC+1n/5c3mjrImkmOSQ2NC5uP6cYO4aAZDdSmRcI5C1oiTmqlZGHC+/NmJrKogbP5A==} 719 | 720 | '@types/tough-cookie@4.0.5': 721 | resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==} 722 | 723 | '@types/wrap-ansi@3.0.0': 724 | resolution: {integrity: sha512-ltIpx+kM7g/MLRZfkbL7EsCEjfzCcScLpkg37eXEtx5kmrAKBkTJwd1GIAjDSL8wTpM6Hzn5YO4pSb91BEwu1g==} 725 | 726 | '@vitejs/plugin-react@4.3.1': 727 | resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==} 728 | engines: {node: ^14.18.0 || >=16.0.0} 729 | peerDependencies: 730 | vite: ^4.2.0 || ^5.0.0 731 | 732 | '@vitest/browser@2.1.1': 733 | resolution: {integrity: sha512-wLKqohwlZI24xMIEZAPwv9SVliv1avaIBeE0ou471D++BRPhiw2mubKBczFFIDHXuSL7UXb8/JQK9Ui6ttW9bQ==} 734 | peerDependencies: 735 | playwright: '*' 736 | safaridriver: '*' 737 | vitest: 2.1.1 738 | webdriverio: '*' 739 | peerDependenciesMeta: 740 | playwright: 741 | optional: true 742 | safaridriver: 743 | optional: true 744 | webdriverio: 745 | optional: true 746 | 747 | '@vitest/expect@2.1.1': 748 | resolution: {integrity: sha512-YeueunS0HiHiQxk+KEOnq/QMzlUuOzbU1Go+PgAsHvvv3tUkJPm9xWt+6ITNTlzsMXUjmgm5T+U7KBPK2qQV6w==} 749 | 750 | '@vitest/mocker@2.1.1': 751 | resolution: {integrity: sha512-LNN5VwOEdJqCmJ/2XJBywB11DLlkbY0ooDJW3uRX5cZyYCrc4PI/ePX0iQhE3BiEGiQmK4GE7Q/PqCkkaiPnrA==} 752 | peerDependencies: 753 | '@vitest/spy': 2.1.1 754 | msw: ^2.3.5 755 | vite: ^5.0.0 756 | peerDependenciesMeta: 757 | msw: 758 | optional: true 759 | vite: 760 | optional: true 761 | 762 | '@vitest/pretty-format@2.1.1': 763 | resolution: {integrity: sha512-SjxPFOtuINDUW8/UkElJYQSFtnWX7tMksSGW0vfjxMneFqxVr8YJ979QpMbDW7g+BIiq88RAGDjf7en6rvLPPQ==} 764 | 765 | '@vitest/runner@2.1.1': 766 | resolution: {integrity: sha512-uTPuY6PWOYitIkLPidaY5L3t0JJITdGTSwBtwMjKzo5O6RCOEncz9PUN+0pDidX8kTHYjO0EwUIvhlGpnGpxmA==} 767 | 768 | '@vitest/snapshot@2.1.1': 769 | resolution: {integrity: sha512-BnSku1WFy7r4mm96ha2FzN99AZJgpZOWrAhtQfoxjUU5YMRpq1zmHRq7a5K9/NjqonebO7iVDla+VvZS8BOWMw==} 770 | 771 | '@vitest/spy@2.1.1': 772 | resolution: {integrity: sha512-ZM39BnZ9t/xZ/nF4UwRH5il0Sw93QnZXd9NAZGRpIgj0yvVwPpLd702s/Cx955rGaMlyBQkZJ2Ir7qyY48VZ+g==} 773 | 774 | '@vitest/utils@2.1.1': 775 | resolution: {integrity: sha512-Y6Q9TsI+qJ2CC0ZKj6VBb+T8UPz593N113nnUykqwANqhgf3QkZeHFlusgKLTqrnVHbj/XDKZcDHol+dxVT+rQ==} 776 | 777 | acorn-jsx@5.3.2: 778 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 779 | peerDependencies: 780 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 781 | 782 | acorn@8.12.1: 783 | resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} 784 | engines: {node: '>=0.4.0'} 785 | hasBin: true 786 | 787 | agent-base@7.1.1: 788 | resolution: {integrity: sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==} 789 | engines: {node: '>= 14'} 790 | 791 | ajv@6.12.6: 792 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 793 | 794 | ansi-escapes@4.3.2: 795 | resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} 796 | engines: {node: '>=8'} 797 | 798 | ansi-regex@5.0.1: 799 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 800 | engines: {node: '>=8'} 801 | 802 | ansi-styles@3.2.1: 803 | resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 804 | engines: {node: '>=4'} 805 | 806 | ansi-styles@4.3.0: 807 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 808 | engines: {node: '>=8'} 809 | 810 | ansi-styles@5.2.0: 811 | resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 812 | engines: {node: '>=10'} 813 | 814 | argparse@2.0.1: 815 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 816 | 817 | aria-query@5.3.0: 818 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 819 | 820 | array-buffer-byte-length@1.0.1: 821 | resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==} 822 | engines: {node: '>= 0.4'} 823 | 824 | array-includes@3.1.8: 825 | resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} 826 | engines: {node: '>= 0.4'} 827 | 828 | array.prototype.findlast@1.2.5: 829 | resolution: {integrity: sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==} 830 | engines: {node: '>= 0.4'} 831 | 832 | array.prototype.flat@1.3.2: 833 | resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==} 834 | engines: {node: '>= 0.4'} 835 | 836 | array.prototype.flatmap@1.3.2: 837 | resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==} 838 | engines: {node: '>= 0.4'} 839 | 840 | array.prototype.tosorted@1.1.4: 841 | resolution: {integrity: sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==} 842 | engines: {node: '>= 0.4'} 843 | 844 | arraybuffer.prototype.slice@1.0.3: 845 | resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==} 846 | engines: {node: '>= 0.4'} 847 | 848 | assertion-error@2.0.1: 849 | resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 850 | engines: {node: '>=12'} 851 | 852 | asynckit@0.4.0: 853 | resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} 854 | 855 | available-typed-arrays@1.0.7: 856 | resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 857 | engines: {node: '>= 0.4'} 858 | 859 | balanced-match@1.0.2: 860 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 861 | 862 | brace-expansion@1.1.11: 863 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 864 | 865 | browserslist@4.23.3: 866 | resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==} 867 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 868 | hasBin: true 869 | 870 | cac@6.7.14: 871 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 872 | engines: {node: '>=8'} 873 | 874 | call-bind@1.0.7: 875 | resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==} 876 | engines: {node: '>= 0.4'} 877 | 878 | callsites@3.1.0: 879 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 880 | engines: {node: '>=6'} 881 | 882 | caniuse-lite@1.0.30001659: 883 | resolution: {integrity: sha512-Qxxyfv3RdHAfJcXelgf0hU4DFUVXBGTjqrBUZLUh8AtlGnsDo+CnncYtTd95+ZKfnANUOzxyIQCuU/UeBZBYoA==} 884 | 885 | chai@5.1.1: 886 | resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==} 887 | engines: {node: '>=12'} 888 | 889 | chalk@2.4.2: 890 | resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 891 | engines: {node: '>=4'} 892 | 893 | chalk@3.0.0: 894 | resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==} 895 | engines: {node: '>=8'} 896 | 897 | chalk@4.1.2: 898 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 899 | engines: {node: '>=10'} 900 | 901 | check-error@2.1.1: 902 | resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} 903 | engines: {node: '>= 16'} 904 | 905 | cli-width@4.1.0: 906 | resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} 907 | engines: {node: '>= 12'} 908 | 909 | cliui@8.0.1: 910 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 911 | engines: {node: '>=12'} 912 | 913 | color-convert@1.9.3: 914 | resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 915 | 916 | color-convert@2.0.1: 917 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 918 | engines: {node: '>=7.0.0'} 919 | 920 | color-name@1.1.3: 921 | resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 922 | 923 | color-name@1.1.4: 924 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 925 | 926 | combined-stream@1.0.8: 927 | resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} 928 | engines: {node: '>= 0.8'} 929 | 930 | concat-map@0.0.1: 931 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 932 | 933 | convert-source-map@2.0.0: 934 | resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 935 | 936 | cookie@0.5.0: 937 | resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==} 938 | engines: {node: '>= 0.6'} 939 | 940 | cross-spawn@7.0.3: 941 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 942 | engines: {node: '>= 8'} 943 | 944 | css.escape@1.5.1: 945 | resolution: {integrity: sha512-YUifsXXuknHlUsmlgyY0PKzgPOr7/FjCePfHNt0jxm83wHZi44VDMQ7/fGNkjY3/jV1MC+1CmZbaHzugyeRtpg==} 946 | 947 | cssstyle@4.1.0: 948 | resolution: {integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==} 949 | engines: {node: '>=18'} 950 | 951 | csstype@3.1.3: 952 | resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 953 | 954 | data-urls@5.0.0: 955 | resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} 956 | engines: {node: '>=18'} 957 | 958 | data-view-buffer@1.0.1: 959 | resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==} 960 | engines: {node: '>= 0.4'} 961 | 962 | data-view-byte-length@1.0.1: 963 | resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==} 964 | engines: {node: '>= 0.4'} 965 | 966 | data-view-byte-offset@1.0.0: 967 | resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==} 968 | engines: {node: '>= 0.4'} 969 | 970 | debug@4.3.7: 971 | resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==} 972 | engines: {node: '>=6.0'} 973 | peerDependencies: 974 | supports-color: '*' 975 | peerDependenciesMeta: 976 | supports-color: 977 | optional: true 978 | 979 | decimal.js@10.4.3: 980 | resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} 981 | 982 | deep-eql@5.0.2: 983 | resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} 984 | engines: {node: '>=6'} 985 | 986 | deep-is@0.1.4: 987 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 988 | 989 | define-data-property@1.1.4: 990 | resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 991 | engines: {node: '>= 0.4'} 992 | 993 | define-properties@1.2.1: 994 | resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 995 | engines: {node: '>= 0.4'} 996 | 997 | delayed-stream@1.0.0: 998 | resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} 999 | engines: {node: '>=0.4.0'} 1000 | 1001 | dequal@2.0.3: 1002 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 1003 | engines: {node: '>=6'} 1004 | 1005 | doctrine@2.1.0: 1006 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 1007 | engines: {node: '>=0.10.0'} 1008 | 1009 | dom-accessibility-api@0.5.16: 1010 | resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} 1011 | 1012 | dom-accessibility-api@0.6.3: 1013 | resolution: {integrity: sha512-7ZgogeTnjuHbo+ct10G9Ffp0mif17idi0IyWNVA/wcwcm7NPOD/WEHVP3n7n3MhXqxoIYm8d6MuZohYWIZ4T3w==} 1014 | 1015 | electron-to-chromium@1.5.18: 1016 | resolution: {integrity: sha512-1OfuVACu+zKlmjsNdcJuVQuVE61sZOLbNM4JAQ1Rvh6EOj0/EUKhMJjRH73InPlXSh8HIJk1cVZ8pyOV/FMdUQ==} 1017 | 1018 | emoji-regex@8.0.0: 1019 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1020 | 1021 | entities@4.5.0: 1022 | resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} 1023 | engines: {node: '>=0.12'} 1024 | 1025 | es-abstract@1.23.3: 1026 | resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==} 1027 | engines: {node: '>= 0.4'} 1028 | 1029 | es-define-property@1.0.0: 1030 | resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==} 1031 | engines: {node: '>= 0.4'} 1032 | 1033 | es-errors@1.3.0: 1034 | resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 1035 | engines: {node: '>= 0.4'} 1036 | 1037 | es-iterator-helpers@1.0.19: 1038 | resolution: {integrity: sha512-zoMwbCcH5hwUkKJkT8kDIBZSz9I6mVG//+lDCinLCGov4+r7NIy0ld8o03M0cJxl2spVf6ESYVS6/gpIfq1FFw==} 1039 | engines: {node: '>= 0.4'} 1040 | 1041 | es-object-atoms@1.0.0: 1042 | resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} 1043 | engines: {node: '>= 0.4'} 1044 | 1045 | es-set-tostringtag@2.0.3: 1046 | resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} 1047 | engines: {node: '>= 0.4'} 1048 | 1049 | es-shim-unscopables@1.0.2: 1050 | resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} 1051 | 1052 | es-to-primitive@1.2.1: 1053 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 1054 | engines: {node: '>= 0.4'} 1055 | 1056 | esbuild@0.23.1: 1057 | resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==} 1058 | engines: {node: '>=18'} 1059 | hasBin: true 1060 | 1061 | escalade@3.2.0: 1062 | resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 1063 | engines: {node: '>=6'} 1064 | 1065 | escape-string-regexp@1.0.5: 1066 | resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 1067 | engines: {node: '>=0.8.0'} 1068 | 1069 | escape-string-regexp@4.0.0: 1070 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1071 | engines: {node: '>=10'} 1072 | 1073 | eslint-plugin-react-hooks@5.1.0-rc-fb9a90fa48-20240614: 1074 | resolution: {integrity: sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w==} 1075 | engines: {node: '>=10'} 1076 | peerDependencies: 1077 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 1078 | 1079 | eslint-plugin-react-refresh@0.4.11: 1080 | resolution: {integrity: sha512-wrAKxMbVr8qhXTtIKfXqAn5SAtRZt0aXxe5P23Fh4pUAdC6XEsybGLB8P0PI4j1yYqOgUEUlzKAGDfo7rJOjcw==} 1081 | peerDependencies: 1082 | eslint: '>=7' 1083 | 1084 | eslint-plugin-react@7.35.2: 1085 | resolution: {integrity: sha512-Rbj2R9zwP2GYNcIak4xoAMV57hrBh3hTaR0k7hVjwCQgryE/pw5px4b13EYjduOI0hfXyZhwBxaGpOTbWSGzKQ==} 1086 | engines: {node: '>=4'} 1087 | peerDependencies: 1088 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 1089 | 1090 | eslint-scope@5.1.1: 1091 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 1092 | engines: {node: '>=8.0.0'} 1093 | 1094 | eslint-scope@8.0.2: 1095 | resolution: {integrity: sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==} 1096 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1097 | 1098 | eslint-visitor-keys@2.1.0: 1099 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 1100 | engines: {node: '>=10'} 1101 | 1102 | eslint-visitor-keys@3.4.3: 1103 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 1104 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1105 | 1106 | eslint-visitor-keys@4.0.0: 1107 | resolution: {integrity: sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==} 1108 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1109 | 1110 | eslint@9.10.0: 1111 | resolution: {integrity: sha512-Y4D0IgtBZfOcOUAIQTSXBKoNGfY0REGqHJG6+Q81vNippW5YlKjHFj4soMxamKK1NXHUWuBZTLdU3Km+L/pcHw==} 1112 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1113 | hasBin: true 1114 | peerDependencies: 1115 | jiti: '*' 1116 | peerDependenciesMeta: 1117 | jiti: 1118 | optional: true 1119 | 1120 | espree@10.1.0: 1121 | resolution: {integrity: sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==} 1122 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1123 | 1124 | esquery@1.6.0: 1125 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 1126 | engines: {node: '>=0.10'} 1127 | 1128 | esrecurse@4.3.0: 1129 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1130 | engines: {node: '>=4.0'} 1131 | 1132 | estraverse@4.3.0: 1133 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 1134 | engines: {node: '>=4.0'} 1135 | 1136 | estraverse@5.3.0: 1137 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1138 | engines: {node: '>=4.0'} 1139 | 1140 | estree-walker@2.0.2: 1141 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 1142 | 1143 | estree-walker@3.0.3: 1144 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 1145 | 1146 | esutils@2.0.3: 1147 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1148 | engines: {node: '>=0.10.0'} 1149 | 1150 | fast-deep-equal@3.1.3: 1151 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1152 | 1153 | fast-json-stable-stringify@2.1.0: 1154 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1155 | 1156 | fast-levenshtein@2.0.6: 1157 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1158 | 1159 | fastq@1.17.1: 1160 | resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==} 1161 | 1162 | file-entry-cache@8.0.0: 1163 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 1164 | engines: {node: '>=16.0.0'} 1165 | 1166 | find-up@5.0.0: 1167 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1168 | engines: {node: '>=10'} 1169 | 1170 | flat-cache@4.0.1: 1171 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 1172 | engines: {node: '>=16'} 1173 | 1174 | flatted@3.3.1: 1175 | resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==} 1176 | 1177 | for-each@0.3.3: 1178 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1179 | 1180 | form-data@4.0.0: 1181 | resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} 1182 | engines: {node: '>= 6'} 1183 | 1184 | fsevents@2.3.3: 1185 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 1186 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1187 | os: [darwin] 1188 | 1189 | function-bind@1.1.2: 1190 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 1191 | 1192 | function.prototype.name@1.1.6: 1193 | resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==} 1194 | engines: {node: '>= 0.4'} 1195 | 1196 | functions-have-names@1.2.3: 1197 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1198 | 1199 | gensync@1.0.0-beta.2: 1200 | resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 1201 | engines: {node: '>=6.9.0'} 1202 | 1203 | get-caller-file@2.0.5: 1204 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 1205 | engines: {node: 6.* || 8.* || >= 10.*} 1206 | 1207 | get-func-name@2.0.2: 1208 | resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} 1209 | 1210 | get-intrinsic@1.2.4: 1211 | resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==} 1212 | engines: {node: '>= 0.4'} 1213 | 1214 | get-symbol-description@1.0.2: 1215 | resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==} 1216 | engines: {node: '>= 0.4'} 1217 | 1218 | glob-parent@6.0.2: 1219 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1220 | engines: {node: '>=10.13.0'} 1221 | 1222 | globals@11.12.0: 1223 | resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 1224 | engines: {node: '>=4'} 1225 | 1226 | globals@14.0.0: 1227 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 1228 | engines: {node: '>=18'} 1229 | 1230 | globals@15.9.0: 1231 | resolution: {integrity: sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==} 1232 | engines: {node: '>=18'} 1233 | 1234 | globalthis@1.0.4: 1235 | resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} 1236 | engines: {node: '>= 0.4'} 1237 | 1238 | gopd@1.0.1: 1239 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1240 | 1241 | graphql@16.9.0: 1242 | resolution: {integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==} 1243 | engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0} 1244 | 1245 | has-bigints@1.0.2: 1246 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1247 | 1248 | has-flag@3.0.0: 1249 | resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1250 | engines: {node: '>=4'} 1251 | 1252 | has-flag@4.0.0: 1253 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1254 | engines: {node: '>=8'} 1255 | 1256 | has-property-descriptors@1.0.2: 1257 | resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 1258 | 1259 | has-proto@1.0.3: 1260 | resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==} 1261 | engines: {node: '>= 0.4'} 1262 | 1263 | has-symbols@1.0.3: 1264 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1265 | engines: {node: '>= 0.4'} 1266 | 1267 | has-tostringtag@1.0.2: 1268 | resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 1269 | engines: {node: '>= 0.4'} 1270 | 1271 | hasown@2.0.2: 1272 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 1273 | engines: {node: '>= 0.4'} 1274 | 1275 | headers-polyfill@4.0.3: 1276 | resolution: {integrity: sha512-IScLbePpkvO846sIwOtOTDjutRMWdXdJmXdMvk6gCBHxFO8d+QKOQedyZSxFTTFYRSmlgSTDtXqqq4pcenBXLQ==} 1277 | 1278 | html-encoding-sniffer@4.0.0: 1279 | resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} 1280 | engines: {node: '>=18'} 1281 | 1282 | http-proxy-agent@7.0.2: 1283 | resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} 1284 | engines: {node: '>= 14'} 1285 | 1286 | https-proxy-agent@7.0.5: 1287 | resolution: {integrity: sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==} 1288 | engines: {node: '>= 14'} 1289 | 1290 | iconv-lite@0.6.3: 1291 | resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 1292 | engines: {node: '>=0.10.0'} 1293 | 1294 | ignore@5.3.2: 1295 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 1296 | engines: {node: '>= 4'} 1297 | 1298 | import-fresh@3.3.0: 1299 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1300 | engines: {node: '>=6'} 1301 | 1302 | imurmurhash@0.1.4: 1303 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1304 | engines: {node: '>=0.8.19'} 1305 | 1306 | indent-string@4.0.0: 1307 | resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 1308 | engines: {node: '>=8'} 1309 | 1310 | internal-slot@1.0.7: 1311 | resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==} 1312 | engines: {node: '>= 0.4'} 1313 | 1314 | is-array-buffer@3.0.4: 1315 | resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==} 1316 | engines: {node: '>= 0.4'} 1317 | 1318 | is-async-function@2.0.0: 1319 | resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} 1320 | engines: {node: '>= 0.4'} 1321 | 1322 | is-bigint@1.0.4: 1323 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1324 | 1325 | is-boolean-object@1.1.2: 1326 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1327 | engines: {node: '>= 0.4'} 1328 | 1329 | is-callable@1.2.7: 1330 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1331 | engines: {node: '>= 0.4'} 1332 | 1333 | is-core-module@2.15.1: 1334 | resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==} 1335 | engines: {node: '>= 0.4'} 1336 | 1337 | is-data-view@1.0.1: 1338 | resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==} 1339 | engines: {node: '>= 0.4'} 1340 | 1341 | is-date-object@1.0.5: 1342 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1343 | engines: {node: '>= 0.4'} 1344 | 1345 | is-extglob@2.1.1: 1346 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1347 | engines: {node: '>=0.10.0'} 1348 | 1349 | is-finalizationregistry@1.0.2: 1350 | resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 1351 | 1352 | is-fullwidth-code-point@3.0.0: 1353 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1354 | engines: {node: '>=8'} 1355 | 1356 | is-generator-function@1.0.10: 1357 | resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} 1358 | engines: {node: '>= 0.4'} 1359 | 1360 | is-glob@4.0.3: 1361 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1362 | engines: {node: '>=0.10.0'} 1363 | 1364 | is-map@2.0.3: 1365 | resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} 1366 | engines: {node: '>= 0.4'} 1367 | 1368 | is-negative-zero@2.0.3: 1369 | resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==} 1370 | engines: {node: '>= 0.4'} 1371 | 1372 | is-node-process@1.2.0: 1373 | resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==} 1374 | 1375 | is-number-object@1.0.7: 1376 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1377 | engines: {node: '>= 0.4'} 1378 | 1379 | is-path-inside@3.0.3: 1380 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1381 | engines: {node: '>=8'} 1382 | 1383 | is-potential-custom-element-name@1.0.1: 1384 | resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} 1385 | 1386 | is-regex@1.1.4: 1387 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1388 | engines: {node: '>= 0.4'} 1389 | 1390 | is-set@2.0.3: 1391 | resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} 1392 | engines: {node: '>= 0.4'} 1393 | 1394 | is-shared-array-buffer@1.0.3: 1395 | resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==} 1396 | engines: {node: '>= 0.4'} 1397 | 1398 | is-string@1.0.7: 1399 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1400 | engines: {node: '>= 0.4'} 1401 | 1402 | is-symbol@1.0.4: 1403 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1404 | engines: {node: '>= 0.4'} 1405 | 1406 | is-typed-array@1.1.13: 1407 | resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==} 1408 | engines: {node: '>= 0.4'} 1409 | 1410 | is-weakmap@2.0.2: 1411 | resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} 1412 | engines: {node: '>= 0.4'} 1413 | 1414 | is-weakref@1.0.2: 1415 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1416 | 1417 | is-weakset@2.0.3: 1418 | resolution: {integrity: sha512-LvIm3/KWzS9oRFHugab7d+M/GcBXuXX5xZkzPmN+NxihdQlZUQ4dWuSV1xR/sq6upL1TJEDrfBgRepHFdBtSNQ==} 1419 | engines: {node: '>= 0.4'} 1420 | 1421 | isarray@2.0.5: 1422 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1423 | 1424 | isexe@2.0.0: 1425 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1426 | 1427 | iterator.prototype@1.1.2: 1428 | resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==} 1429 | 1430 | js-tokens@4.0.0: 1431 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1432 | 1433 | js-yaml@4.1.0: 1434 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1435 | hasBin: true 1436 | 1437 | jsdom@25.0.0: 1438 | resolution: {integrity: sha512-OhoFVT59T7aEq75TVw9xxEfkXgacpqAhQaYgP9y/fDqWQCMB/b1H66RfmPm/MaeaAIU9nDwMOVTlPN51+ao6CQ==} 1439 | engines: {node: '>=18'} 1440 | peerDependencies: 1441 | canvas: ^2.11.2 1442 | peerDependenciesMeta: 1443 | canvas: 1444 | optional: true 1445 | 1446 | jsesc@2.5.2: 1447 | resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==} 1448 | engines: {node: '>=4'} 1449 | hasBin: true 1450 | 1451 | json-buffer@3.0.1: 1452 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 1453 | 1454 | json-schema-traverse@0.4.1: 1455 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1456 | 1457 | json-stable-stringify-without-jsonify@1.0.1: 1458 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1459 | 1460 | json5@2.2.3: 1461 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 1462 | engines: {node: '>=6'} 1463 | hasBin: true 1464 | 1465 | jsx-ast-utils@3.3.5: 1466 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 1467 | engines: {node: '>=4.0'} 1468 | 1469 | keyv@4.5.4: 1470 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 1471 | 1472 | levn@0.4.1: 1473 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1474 | engines: {node: '>= 0.8.0'} 1475 | 1476 | locate-path@6.0.0: 1477 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1478 | engines: {node: '>=10'} 1479 | 1480 | lodash.merge@4.6.2: 1481 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1482 | 1483 | lodash@4.17.21: 1484 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1485 | 1486 | loose-envify@1.4.0: 1487 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1488 | hasBin: true 1489 | 1490 | loupe@3.1.1: 1491 | resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==} 1492 | 1493 | lru-cache@5.1.1: 1494 | resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 1495 | 1496 | lz-string@1.5.0: 1497 | resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} 1498 | hasBin: true 1499 | 1500 | magic-string@0.30.11: 1501 | resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==} 1502 | 1503 | mime-db@1.52.0: 1504 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 1505 | engines: {node: '>= 0.6'} 1506 | 1507 | mime-types@2.1.35: 1508 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 1509 | engines: {node: '>= 0.6'} 1510 | 1511 | min-indent@1.0.1: 1512 | resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} 1513 | engines: {node: '>=4'} 1514 | 1515 | minimatch@3.1.2: 1516 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1517 | 1518 | mrmime@2.0.0: 1519 | resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==} 1520 | engines: {node: '>=10'} 1521 | 1522 | ms@2.1.3: 1523 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1524 | 1525 | msw@2.4.7: 1526 | resolution: {integrity: sha512-lLfwzRjTQhaYaoJq600wCFAmjLQnI7JI2VnUDmqj6icZbxgClwJqaJW2/++kkeQvKKoI8rG8NRFMutoG8+LT7w==} 1527 | engines: {node: '>=18'} 1528 | hasBin: true 1529 | peerDependencies: 1530 | typescript: '>= 4.8.x' 1531 | peerDependenciesMeta: 1532 | typescript: 1533 | optional: true 1534 | 1535 | mute-stream@1.0.0: 1536 | resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==} 1537 | engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 1538 | 1539 | nanoid@3.3.7: 1540 | resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} 1541 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1542 | hasBin: true 1543 | 1544 | natural-compare@1.4.0: 1545 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1546 | 1547 | node-releases@2.0.18: 1548 | resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==} 1549 | 1550 | nwsapi@2.2.12: 1551 | resolution: {integrity: sha512-qXDmcVlZV4XRtKFzddidpfVP4oMSGhga+xdMc25mv8kaLUHtgzCDhUxkrN8exkGdTlLNaXj7CV3GtON7zuGZ+w==} 1552 | 1553 | object-assign@4.1.1: 1554 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1555 | engines: {node: '>=0.10.0'} 1556 | 1557 | object-inspect@1.13.2: 1558 | resolution: {integrity: sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==} 1559 | engines: {node: '>= 0.4'} 1560 | 1561 | object-keys@1.1.1: 1562 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1563 | engines: {node: '>= 0.4'} 1564 | 1565 | object.assign@4.1.5: 1566 | resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==} 1567 | engines: {node: '>= 0.4'} 1568 | 1569 | object.entries@1.1.8: 1570 | resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} 1571 | engines: {node: '>= 0.4'} 1572 | 1573 | object.fromentries@2.0.8: 1574 | resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} 1575 | engines: {node: '>= 0.4'} 1576 | 1577 | object.values@1.2.0: 1578 | resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==} 1579 | engines: {node: '>= 0.4'} 1580 | 1581 | optionator@0.9.4: 1582 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1583 | engines: {node: '>= 0.8.0'} 1584 | 1585 | outvariant@1.4.3: 1586 | resolution: {integrity: sha512-+Sl2UErvtsoajRDKCE5/dBz4DIvHXQQnAxtQTF04OJxY0+DyZXSo5P5Bb7XYWOh81syohlYL24hbDwxedPUJCA==} 1587 | 1588 | p-limit@3.1.0: 1589 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1590 | engines: {node: '>=10'} 1591 | 1592 | p-locate@5.0.0: 1593 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1594 | engines: {node: '>=10'} 1595 | 1596 | parent-module@1.0.1: 1597 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1598 | engines: {node: '>=6'} 1599 | 1600 | parse5@7.1.2: 1601 | resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} 1602 | 1603 | path-exists@4.0.0: 1604 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1605 | engines: {node: '>=8'} 1606 | 1607 | path-key@3.1.1: 1608 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1609 | engines: {node: '>=8'} 1610 | 1611 | path-parse@1.0.7: 1612 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1613 | 1614 | path-to-regexp@6.3.0: 1615 | resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==} 1616 | 1617 | pathe@1.1.2: 1618 | resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 1619 | 1620 | pathval@2.0.0: 1621 | resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} 1622 | engines: {node: '>= 14.16'} 1623 | 1624 | picocolors@1.1.0: 1625 | resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==} 1626 | 1627 | picomatch@2.3.1: 1628 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1629 | engines: {node: '>=8.6'} 1630 | 1631 | possible-typed-array-names@1.0.0: 1632 | resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} 1633 | engines: {node: '>= 0.4'} 1634 | 1635 | postcss@8.4.45: 1636 | resolution: {integrity: sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==} 1637 | engines: {node: ^10 || ^12 || >=14} 1638 | 1639 | prelude-ls@1.2.1: 1640 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1641 | engines: {node: '>= 0.8.0'} 1642 | 1643 | prettier@3.3.3: 1644 | resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} 1645 | engines: {node: '>=14'} 1646 | hasBin: true 1647 | 1648 | pretty-format@27.5.1: 1649 | resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} 1650 | engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} 1651 | 1652 | prop-types@15.8.1: 1653 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 1654 | 1655 | psl@1.9.0: 1656 | resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==} 1657 | 1658 | punycode@2.3.1: 1659 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1660 | engines: {node: '>=6'} 1661 | 1662 | querystringify@2.2.0: 1663 | resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==} 1664 | 1665 | queue-microtask@1.2.3: 1666 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1667 | 1668 | react-dom@18.3.1: 1669 | resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 1670 | peerDependencies: 1671 | react: ^18.3.1 1672 | 1673 | react-is@16.13.1: 1674 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 1675 | 1676 | react-is@17.0.2: 1677 | resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} 1678 | 1679 | react-refresh@0.14.2: 1680 | resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} 1681 | engines: {node: '>=0.10.0'} 1682 | 1683 | react@18.3.1: 1684 | resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 1685 | engines: {node: '>=0.10.0'} 1686 | 1687 | redent@3.0.0: 1688 | resolution: {integrity: sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==} 1689 | engines: {node: '>=8'} 1690 | 1691 | reflect.getprototypeof@1.0.6: 1692 | resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==} 1693 | engines: {node: '>= 0.4'} 1694 | 1695 | regenerator-runtime@0.14.1: 1696 | resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} 1697 | 1698 | regexp.prototype.flags@1.5.2: 1699 | resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==} 1700 | engines: {node: '>= 0.4'} 1701 | 1702 | require-directory@2.1.1: 1703 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 1704 | engines: {node: '>=0.10.0'} 1705 | 1706 | requires-port@1.0.0: 1707 | resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==} 1708 | 1709 | resolve-from@4.0.0: 1710 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1711 | engines: {node: '>=4'} 1712 | 1713 | resolve@2.0.0-next.5: 1714 | resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==} 1715 | hasBin: true 1716 | 1717 | reusify@1.0.4: 1718 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 1719 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1720 | 1721 | rollup@4.21.2: 1722 | resolution: {integrity: sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==} 1723 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1724 | hasBin: true 1725 | 1726 | rrweb-cssom@0.7.1: 1727 | resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} 1728 | 1729 | run-parallel@1.2.0: 1730 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1731 | 1732 | safe-array-concat@1.1.2: 1733 | resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==} 1734 | engines: {node: '>=0.4'} 1735 | 1736 | safe-regex-test@1.0.3: 1737 | resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==} 1738 | engines: {node: '>= 0.4'} 1739 | 1740 | safer-buffer@2.1.2: 1741 | resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 1742 | 1743 | saxes@6.0.0: 1744 | resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} 1745 | engines: {node: '>=v12.22.7'} 1746 | 1747 | scheduler@0.23.2: 1748 | resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 1749 | 1750 | semver@6.3.1: 1751 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 1752 | hasBin: true 1753 | 1754 | set-function-length@1.2.2: 1755 | resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 1756 | engines: {node: '>= 0.4'} 1757 | 1758 | set-function-name@2.0.2: 1759 | resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} 1760 | engines: {node: '>= 0.4'} 1761 | 1762 | shebang-command@2.0.0: 1763 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1764 | engines: {node: '>=8'} 1765 | 1766 | shebang-regex@3.0.0: 1767 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1768 | engines: {node: '>=8'} 1769 | 1770 | side-channel@1.0.6: 1771 | resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==} 1772 | engines: {node: '>= 0.4'} 1773 | 1774 | siginfo@2.0.0: 1775 | resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 1776 | 1777 | signal-exit@4.1.0: 1778 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1779 | engines: {node: '>=14'} 1780 | 1781 | sirv@2.0.4: 1782 | resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==} 1783 | engines: {node: '>= 10'} 1784 | 1785 | source-map-js@1.2.1: 1786 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1787 | engines: {node: '>=0.10.0'} 1788 | 1789 | stackback@0.0.2: 1790 | resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 1791 | 1792 | statuses@2.0.1: 1793 | resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 1794 | engines: {node: '>= 0.8'} 1795 | 1796 | std-env@3.7.0: 1797 | resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} 1798 | 1799 | strict-event-emitter@0.5.1: 1800 | resolution: {integrity: sha512-vMgjE/GGEPEFnhFub6pa4FmJBRBVOLpIII2hvCZ8Kzb7K0hlHo7mQv6xYrBvCL2LtAIBwFUK8wvuJgTVSQ5MFQ==} 1801 | 1802 | string-width@4.2.3: 1803 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1804 | engines: {node: '>=8'} 1805 | 1806 | string.prototype.matchall@4.0.11: 1807 | resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==} 1808 | engines: {node: '>= 0.4'} 1809 | 1810 | string.prototype.repeat@1.0.0: 1811 | resolution: {integrity: sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==} 1812 | 1813 | string.prototype.trim@1.2.9: 1814 | resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==} 1815 | engines: {node: '>= 0.4'} 1816 | 1817 | string.prototype.trimend@1.0.8: 1818 | resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==} 1819 | 1820 | string.prototype.trimstart@1.0.8: 1821 | resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} 1822 | engines: {node: '>= 0.4'} 1823 | 1824 | strip-ansi@6.0.1: 1825 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1826 | engines: {node: '>=8'} 1827 | 1828 | strip-indent@3.0.0: 1829 | resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} 1830 | engines: {node: '>=8'} 1831 | 1832 | strip-json-comments@3.1.1: 1833 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1834 | engines: {node: '>=8'} 1835 | 1836 | supports-color@5.5.0: 1837 | resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 1838 | engines: {node: '>=4'} 1839 | 1840 | supports-color@7.2.0: 1841 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1842 | engines: {node: '>=8'} 1843 | 1844 | supports-preserve-symlinks-flag@1.0.0: 1845 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1846 | engines: {node: '>= 0.4'} 1847 | 1848 | symbol-tree@3.2.4: 1849 | resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} 1850 | 1851 | text-table@0.2.0: 1852 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 1853 | 1854 | tinybench@2.9.0: 1855 | resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 1856 | 1857 | tinyexec@0.3.0: 1858 | resolution: {integrity: sha512-tVGE0mVJPGb0chKhqmsoosjsS+qUnJVGJpZgsHYQcGoPlG3B51R3PouqTgEGH2Dc9jjFyOqOpix6ZHNMXp1FZg==} 1859 | 1860 | tinypool@1.0.1: 1861 | resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==} 1862 | engines: {node: ^18.0.0 || >=20.0.0} 1863 | 1864 | tinyrainbow@1.2.0: 1865 | resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} 1866 | engines: {node: '>=14.0.0'} 1867 | 1868 | tinyspy@3.0.2: 1869 | resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} 1870 | engines: {node: '>=14.0.0'} 1871 | 1872 | to-fast-properties@2.0.0: 1873 | resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} 1874 | engines: {node: '>=4'} 1875 | 1876 | totalist@3.0.1: 1877 | resolution: {integrity: sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==} 1878 | engines: {node: '>=6'} 1879 | 1880 | tough-cookie@4.1.4: 1881 | resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==} 1882 | engines: {node: '>=6'} 1883 | 1884 | tr46@5.0.0: 1885 | resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==} 1886 | engines: {node: '>=18'} 1887 | 1888 | type-check@0.4.0: 1889 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1890 | engines: {node: '>= 0.8.0'} 1891 | 1892 | type-fest@0.21.3: 1893 | resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} 1894 | engines: {node: '>=10'} 1895 | 1896 | type-fest@4.26.1: 1897 | resolution: {integrity: sha512-yOGpmOAL7CkKe/91I5O3gPICmJNLJ1G4zFYVAsRHg7M64biSnPtRj0WNQt++bRkjYOqjWXrhnUw1utzmVErAdg==} 1898 | engines: {node: '>=16'} 1899 | 1900 | typed-array-buffer@1.0.2: 1901 | resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==} 1902 | engines: {node: '>= 0.4'} 1903 | 1904 | typed-array-byte-length@1.0.1: 1905 | resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==} 1906 | engines: {node: '>= 0.4'} 1907 | 1908 | typed-array-byte-offset@1.0.2: 1909 | resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==} 1910 | engines: {node: '>= 0.4'} 1911 | 1912 | typed-array-length@1.0.6: 1913 | resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==} 1914 | engines: {node: '>= 0.4'} 1915 | 1916 | typescript@5.6.2: 1917 | resolution: {integrity: sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==} 1918 | engines: {node: '>=14.17'} 1919 | hasBin: true 1920 | 1921 | unbox-primitive@1.0.2: 1922 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 1923 | 1924 | undici-types@6.19.8: 1925 | resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} 1926 | 1927 | universalify@0.2.0: 1928 | resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==} 1929 | engines: {node: '>= 4.0.0'} 1930 | 1931 | update-browserslist-db@1.1.0: 1932 | resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==} 1933 | hasBin: true 1934 | peerDependencies: 1935 | browserslist: '>= 4.21.0' 1936 | 1937 | uri-js@4.4.1: 1938 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1939 | 1940 | url-parse@1.5.10: 1941 | resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==} 1942 | 1943 | vite-node@2.1.1: 1944 | resolution: {integrity: sha512-N/mGckI1suG/5wQI35XeR9rsMsPqKXzq1CdUndzVstBj/HvyxxGctwnK6WX43NGt5L3Z5tcRf83g4TITKJhPrA==} 1945 | engines: {node: ^18.0.0 || >=20.0.0} 1946 | hasBin: true 1947 | 1948 | vite-plugin-babel@1.2.0: 1949 | resolution: {integrity: sha512-ltAnq535Ubf9sDbVCkztAdkwx5aQbNrwPFs+iZTJ5FaAhTdxjqmLGpxsAaRfJWEKBJ/kFf9KwMoTdArm0IRUUw==} 1950 | peerDependencies: 1951 | '@babel/core': ^7.0.0 1952 | vite: ^2.7.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 1953 | 1954 | vite@5.4.3: 1955 | resolution: {integrity: sha512-IH+nl64eq9lJjFqU+/yrRnrHPVTlgy42/+IzbOdaFDVlyLgI/wDlf+FCobXLX1cT0X5+7LMyH1mIy2xJdLfo8Q==} 1956 | engines: {node: ^18.0.0 || >=20.0.0} 1957 | hasBin: true 1958 | peerDependencies: 1959 | '@types/node': ^18.0.0 || >=20.0.0 1960 | less: '*' 1961 | lightningcss: ^1.21.0 1962 | sass: '*' 1963 | sass-embedded: '*' 1964 | stylus: '*' 1965 | sugarss: '*' 1966 | terser: ^5.4.0 1967 | peerDependenciesMeta: 1968 | '@types/node': 1969 | optional: true 1970 | less: 1971 | optional: true 1972 | lightningcss: 1973 | optional: true 1974 | sass: 1975 | optional: true 1976 | sass-embedded: 1977 | optional: true 1978 | stylus: 1979 | optional: true 1980 | sugarss: 1981 | optional: true 1982 | terser: 1983 | optional: true 1984 | 1985 | vitest@2.1.1: 1986 | resolution: {integrity: sha512-97We7/VC0e9X5zBVkvt7SGQMGrRtn3KtySFQG5fpaMlS+l62eeXRQO633AYhSTC3z7IMebnPPNjGXVGNRFlxBA==} 1987 | engines: {node: ^18.0.0 || >=20.0.0} 1988 | hasBin: true 1989 | peerDependencies: 1990 | '@edge-runtime/vm': '*' 1991 | '@types/node': ^18.0.0 || >=20.0.0 1992 | '@vitest/browser': 2.1.1 1993 | '@vitest/ui': 2.1.1 1994 | happy-dom: '*' 1995 | jsdom: '*' 1996 | peerDependenciesMeta: 1997 | '@edge-runtime/vm': 1998 | optional: true 1999 | '@types/node': 2000 | optional: true 2001 | '@vitest/browser': 2002 | optional: true 2003 | '@vitest/ui': 2004 | optional: true 2005 | happy-dom: 2006 | optional: true 2007 | jsdom: 2008 | optional: true 2009 | 2010 | w3c-xmlserializer@5.0.0: 2011 | resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} 2012 | engines: {node: '>=18'} 2013 | 2014 | webidl-conversions@7.0.0: 2015 | resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} 2016 | engines: {node: '>=12'} 2017 | 2018 | whatwg-encoding@3.1.1: 2019 | resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} 2020 | engines: {node: '>=18'} 2021 | 2022 | whatwg-mimetype@4.0.0: 2023 | resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} 2024 | engines: {node: '>=18'} 2025 | 2026 | whatwg-url@14.0.0: 2027 | resolution: {integrity: sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==} 2028 | engines: {node: '>=18'} 2029 | 2030 | which-boxed-primitive@1.0.2: 2031 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2032 | 2033 | which-builtin-type@1.1.4: 2034 | resolution: {integrity: sha512-bppkmBSsHFmIMSl8BO9TbsyzsvGjVoppt8xUiGzwiu/bhDCGxnpOKCxgqj6GuyHE0mINMDecBFPlOm2hzY084w==} 2035 | engines: {node: '>= 0.4'} 2036 | 2037 | which-collection@1.0.2: 2038 | resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} 2039 | engines: {node: '>= 0.4'} 2040 | 2041 | which-typed-array@1.1.15: 2042 | resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==} 2043 | engines: {node: '>= 0.4'} 2044 | 2045 | which@2.0.2: 2046 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2047 | engines: {node: '>= 8'} 2048 | hasBin: true 2049 | 2050 | why-is-node-running@2.3.0: 2051 | resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 2052 | engines: {node: '>=8'} 2053 | hasBin: true 2054 | 2055 | word-wrap@1.2.5: 2056 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 2057 | engines: {node: '>=0.10.0'} 2058 | 2059 | wrap-ansi@6.2.0: 2060 | resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} 2061 | engines: {node: '>=8'} 2062 | 2063 | wrap-ansi@7.0.0: 2064 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2065 | engines: {node: '>=10'} 2066 | 2067 | ws@8.18.0: 2068 | resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} 2069 | engines: {node: '>=10.0.0'} 2070 | peerDependencies: 2071 | bufferutil: ^4.0.1 2072 | utf-8-validate: '>=5.0.2' 2073 | peerDependenciesMeta: 2074 | bufferutil: 2075 | optional: true 2076 | utf-8-validate: 2077 | optional: true 2078 | 2079 | xml-name-validator@5.0.0: 2080 | resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} 2081 | engines: {node: '>=18'} 2082 | 2083 | xmlchars@2.2.0: 2084 | resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} 2085 | 2086 | y18n@5.0.8: 2087 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 2088 | engines: {node: '>=10'} 2089 | 2090 | yallist@3.1.1: 2091 | resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 2092 | 2093 | yargs-parser@21.1.1: 2094 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 2095 | engines: {node: '>=12'} 2096 | 2097 | yargs@17.7.2: 2098 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 2099 | engines: {node: '>=12'} 2100 | 2101 | yocto-queue@0.1.0: 2102 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2103 | engines: {node: '>=10'} 2104 | 2105 | yoctocolors-cjs@2.1.2: 2106 | resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==} 2107 | engines: {node: '>=18'} 2108 | 2109 | snapshots: 2110 | 2111 | '@adobe/css-tools@4.4.0': {} 2112 | 2113 | '@ampproject/remapping@2.3.0': 2114 | dependencies: 2115 | '@jridgewell/gen-mapping': 0.3.5 2116 | '@jridgewell/trace-mapping': 0.3.25 2117 | 2118 | '@babel/code-frame@7.24.7': 2119 | dependencies: 2120 | '@babel/highlight': 7.24.7 2121 | picocolors: 1.1.0 2122 | 2123 | '@babel/compat-data@7.25.4': {} 2124 | 2125 | '@babel/core@7.25.2': 2126 | dependencies: 2127 | '@ampproject/remapping': 2.3.0 2128 | '@babel/code-frame': 7.24.7 2129 | '@babel/generator': 7.25.6 2130 | '@babel/helper-compilation-targets': 7.25.2 2131 | '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2) 2132 | '@babel/helpers': 7.25.6 2133 | '@babel/parser': 7.25.6 2134 | '@babel/template': 7.25.0 2135 | '@babel/traverse': 7.25.6 2136 | '@babel/types': 7.25.6 2137 | convert-source-map: 2.0.0 2138 | debug: 4.3.7 2139 | gensync: 1.0.0-beta.2 2140 | json5: 2.2.3 2141 | semver: 6.3.1 2142 | transitivePeerDependencies: 2143 | - supports-color 2144 | 2145 | '@babel/eslint-parser@7.25.1(@babel/core@7.25.2)(eslint@9.10.0)': 2146 | dependencies: 2147 | '@babel/core': 7.25.2 2148 | '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 2149 | eslint: 9.10.0 2150 | eslint-visitor-keys: 2.1.0 2151 | semver: 6.3.1 2152 | 2153 | '@babel/generator@7.25.6': 2154 | dependencies: 2155 | '@babel/types': 7.25.6 2156 | '@jridgewell/gen-mapping': 0.3.5 2157 | '@jridgewell/trace-mapping': 0.3.25 2158 | jsesc: 2.5.2 2159 | 2160 | '@babel/helper-annotate-as-pure@7.24.7': 2161 | dependencies: 2162 | '@babel/types': 7.25.6 2163 | 2164 | '@babel/helper-compilation-targets@7.25.2': 2165 | dependencies: 2166 | '@babel/compat-data': 7.25.4 2167 | '@babel/helper-validator-option': 7.24.8 2168 | browserslist: 4.23.3 2169 | lru-cache: 5.1.1 2170 | semver: 6.3.1 2171 | 2172 | '@babel/helper-create-class-features-plugin@7.25.4(@babel/core@7.25.2)': 2173 | dependencies: 2174 | '@babel/core': 7.25.2 2175 | '@babel/helper-annotate-as-pure': 7.24.7 2176 | '@babel/helper-member-expression-to-functions': 7.24.8 2177 | '@babel/helper-optimise-call-expression': 7.24.7 2178 | '@babel/helper-replace-supers': 7.25.0(@babel/core@7.25.2) 2179 | '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 2180 | '@babel/traverse': 7.25.6 2181 | semver: 6.3.1 2182 | transitivePeerDependencies: 2183 | - supports-color 2184 | 2185 | '@babel/helper-member-expression-to-functions@7.24.8': 2186 | dependencies: 2187 | '@babel/traverse': 7.25.6 2188 | '@babel/types': 7.25.6 2189 | transitivePeerDependencies: 2190 | - supports-color 2191 | 2192 | '@babel/helper-module-imports@7.24.7': 2193 | dependencies: 2194 | '@babel/traverse': 7.25.6 2195 | '@babel/types': 7.25.6 2196 | transitivePeerDependencies: 2197 | - supports-color 2198 | 2199 | '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)': 2200 | dependencies: 2201 | '@babel/core': 7.25.2 2202 | '@babel/helper-module-imports': 7.24.7 2203 | '@babel/helper-simple-access': 7.24.7 2204 | '@babel/helper-validator-identifier': 7.24.7 2205 | '@babel/traverse': 7.25.6 2206 | transitivePeerDependencies: 2207 | - supports-color 2208 | 2209 | '@babel/helper-optimise-call-expression@7.24.7': 2210 | dependencies: 2211 | '@babel/types': 7.25.6 2212 | 2213 | '@babel/helper-plugin-utils@7.24.8': {} 2214 | 2215 | '@babel/helper-replace-supers@7.25.0(@babel/core@7.25.2)': 2216 | dependencies: 2217 | '@babel/core': 7.25.2 2218 | '@babel/helper-member-expression-to-functions': 7.24.8 2219 | '@babel/helper-optimise-call-expression': 7.24.7 2220 | '@babel/traverse': 7.25.6 2221 | transitivePeerDependencies: 2222 | - supports-color 2223 | 2224 | '@babel/helper-simple-access@7.24.7': 2225 | dependencies: 2226 | '@babel/traverse': 7.25.6 2227 | '@babel/types': 7.25.6 2228 | transitivePeerDependencies: 2229 | - supports-color 2230 | 2231 | '@babel/helper-skip-transparent-expression-wrappers@7.24.7': 2232 | dependencies: 2233 | '@babel/traverse': 7.25.6 2234 | '@babel/types': 7.25.6 2235 | transitivePeerDependencies: 2236 | - supports-color 2237 | 2238 | '@babel/helper-string-parser@7.24.8': {} 2239 | 2240 | '@babel/helper-validator-identifier@7.24.7': {} 2241 | 2242 | '@babel/helper-validator-option@7.24.8': {} 2243 | 2244 | '@babel/helpers@7.25.6': 2245 | dependencies: 2246 | '@babel/template': 7.25.0 2247 | '@babel/types': 7.25.6 2248 | 2249 | '@babel/highlight@7.24.7': 2250 | dependencies: 2251 | '@babel/helper-validator-identifier': 7.24.7 2252 | chalk: 2.4.2 2253 | js-tokens: 4.0.0 2254 | picocolors: 1.1.0 2255 | 2256 | '@babel/parser@7.25.6': 2257 | dependencies: 2258 | '@babel/types': 7.25.6 2259 | 2260 | '@babel/plugin-proposal-decorators@7.24.7(@babel/core@7.25.2)': 2261 | dependencies: 2262 | '@babel/core': 7.25.2 2263 | '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2) 2264 | '@babel/helper-plugin-utils': 7.24.8 2265 | '@babel/plugin-syntax-decorators': 7.24.7(@babel/core@7.25.2) 2266 | transitivePeerDependencies: 2267 | - supports-color 2268 | 2269 | '@babel/plugin-syntax-decorators@7.24.7(@babel/core@7.25.2)': 2270 | dependencies: 2271 | '@babel/core': 7.25.2 2272 | '@babel/helper-plugin-utils': 7.24.8 2273 | 2274 | '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.25.2)': 2275 | dependencies: 2276 | '@babel/core': 7.25.2 2277 | '@babel/helper-plugin-utils': 7.24.8 2278 | 2279 | '@babel/plugin-syntax-typescript@7.25.4(@babel/core@7.25.2)': 2280 | dependencies: 2281 | '@babel/core': 7.25.2 2282 | '@babel/helper-plugin-utils': 7.24.8 2283 | 2284 | '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.25.2)': 2285 | dependencies: 2286 | '@babel/core': 7.25.2 2287 | '@babel/helper-plugin-utils': 7.24.8 2288 | 2289 | '@babel/plugin-transform-react-jsx-development@7.24.7(@babel/core@7.25.2)': 2290 | dependencies: 2291 | '@babel/core': 7.25.2 2292 | '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2) 2293 | transitivePeerDependencies: 2294 | - supports-color 2295 | 2296 | '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.25.2)': 2297 | dependencies: 2298 | '@babel/core': 7.25.2 2299 | '@babel/helper-plugin-utils': 7.24.8 2300 | 2301 | '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.25.2)': 2302 | dependencies: 2303 | '@babel/core': 7.25.2 2304 | '@babel/helper-plugin-utils': 7.24.8 2305 | 2306 | '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.25.2)': 2307 | dependencies: 2308 | '@babel/core': 7.25.2 2309 | '@babel/helper-annotate-as-pure': 7.24.7 2310 | '@babel/helper-module-imports': 7.24.7 2311 | '@babel/helper-plugin-utils': 7.24.8 2312 | '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.25.2) 2313 | '@babel/types': 7.25.6 2314 | transitivePeerDependencies: 2315 | - supports-color 2316 | 2317 | '@babel/plugin-transform-react-pure-annotations@7.24.7(@babel/core@7.25.2)': 2318 | dependencies: 2319 | '@babel/core': 7.25.2 2320 | '@babel/helper-annotate-as-pure': 7.24.7 2321 | '@babel/helper-plugin-utils': 7.24.8 2322 | 2323 | '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.25.2)': 2324 | dependencies: 2325 | '@babel/core': 7.25.2 2326 | '@babel/helper-annotate-as-pure': 7.24.7 2327 | '@babel/helper-create-class-features-plugin': 7.25.4(@babel/core@7.25.2) 2328 | '@babel/helper-plugin-utils': 7.24.8 2329 | '@babel/helper-skip-transparent-expression-wrappers': 7.24.7 2330 | '@babel/plugin-syntax-typescript': 7.25.4(@babel/core@7.25.2) 2331 | transitivePeerDependencies: 2332 | - supports-color 2333 | 2334 | '@babel/preset-react@7.24.7(@babel/core@7.25.2)': 2335 | dependencies: 2336 | '@babel/core': 7.25.2 2337 | '@babel/helper-plugin-utils': 7.24.8 2338 | '@babel/helper-validator-option': 7.24.8 2339 | '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.25.2) 2340 | '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.25.2) 2341 | '@babel/plugin-transform-react-jsx-development': 7.24.7(@babel/core@7.25.2) 2342 | '@babel/plugin-transform-react-pure-annotations': 7.24.7(@babel/core@7.25.2) 2343 | transitivePeerDependencies: 2344 | - supports-color 2345 | 2346 | '@babel/runtime@7.25.6': 2347 | dependencies: 2348 | regenerator-runtime: 0.14.1 2349 | 2350 | '@babel/template@7.25.0': 2351 | dependencies: 2352 | '@babel/code-frame': 7.24.7 2353 | '@babel/parser': 7.25.6 2354 | '@babel/types': 7.25.6 2355 | 2356 | '@babel/traverse@7.25.6': 2357 | dependencies: 2358 | '@babel/code-frame': 7.24.7 2359 | '@babel/generator': 7.25.6 2360 | '@babel/parser': 7.25.6 2361 | '@babel/template': 7.25.0 2362 | '@babel/types': 7.25.6 2363 | debug: 4.3.7 2364 | globals: 11.12.0 2365 | transitivePeerDependencies: 2366 | - supports-color 2367 | 2368 | '@babel/types@7.25.6': 2369 | dependencies: 2370 | '@babel/helper-string-parser': 7.24.8 2371 | '@babel/helper-validator-identifier': 7.24.7 2372 | to-fast-properties: 2.0.0 2373 | 2374 | '@bundled-es-modules/cookie@2.0.0': 2375 | dependencies: 2376 | cookie: 0.5.0 2377 | 2378 | '@bundled-es-modules/statuses@1.0.1': 2379 | dependencies: 2380 | statuses: 2.0.1 2381 | 2382 | '@bundled-es-modules/tough-cookie@0.1.6': 2383 | dependencies: 2384 | '@types/tough-cookie': 4.0.5 2385 | tough-cookie: 4.1.4 2386 | 2387 | '@esbuild/aix-ppc64@0.23.1': 2388 | optional: true 2389 | 2390 | '@esbuild/android-arm64@0.23.1': 2391 | optional: true 2392 | 2393 | '@esbuild/android-arm@0.23.1': 2394 | optional: true 2395 | 2396 | '@esbuild/android-x64@0.23.1': 2397 | optional: true 2398 | 2399 | '@esbuild/darwin-arm64@0.23.1': 2400 | optional: true 2401 | 2402 | '@esbuild/darwin-x64@0.23.1': 2403 | optional: true 2404 | 2405 | '@esbuild/freebsd-arm64@0.23.1': 2406 | optional: true 2407 | 2408 | '@esbuild/freebsd-x64@0.23.1': 2409 | optional: true 2410 | 2411 | '@esbuild/linux-arm64@0.23.1': 2412 | optional: true 2413 | 2414 | '@esbuild/linux-arm@0.23.1': 2415 | optional: true 2416 | 2417 | '@esbuild/linux-ia32@0.23.1': 2418 | optional: true 2419 | 2420 | '@esbuild/linux-loong64@0.23.1': 2421 | optional: true 2422 | 2423 | '@esbuild/linux-mips64el@0.23.1': 2424 | optional: true 2425 | 2426 | '@esbuild/linux-ppc64@0.23.1': 2427 | optional: true 2428 | 2429 | '@esbuild/linux-riscv64@0.23.1': 2430 | optional: true 2431 | 2432 | '@esbuild/linux-s390x@0.23.1': 2433 | optional: true 2434 | 2435 | '@esbuild/linux-x64@0.23.1': 2436 | optional: true 2437 | 2438 | '@esbuild/netbsd-x64@0.23.1': 2439 | optional: true 2440 | 2441 | '@esbuild/openbsd-arm64@0.23.1': 2442 | optional: true 2443 | 2444 | '@esbuild/openbsd-x64@0.23.1': 2445 | optional: true 2446 | 2447 | '@esbuild/sunos-x64@0.23.1': 2448 | optional: true 2449 | 2450 | '@esbuild/win32-arm64@0.23.1': 2451 | optional: true 2452 | 2453 | '@esbuild/win32-ia32@0.23.1': 2454 | optional: true 2455 | 2456 | '@esbuild/win32-x64@0.23.1': 2457 | optional: true 2458 | 2459 | '@eslint-community/eslint-utils@4.4.0(eslint@9.10.0)': 2460 | dependencies: 2461 | eslint: 9.10.0 2462 | eslint-visitor-keys: 3.4.3 2463 | 2464 | '@eslint-community/regexpp@4.11.0': {} 2465 | 2466 | '@eslint/config-array@0.18.0': 2467 | dependencies: 2468 | '@eslint/object-schema': 2.1.4 2469 | debug: 4.3.7 2470 | minimatch: 3.1.2 2471 | transitivePeerDependencies: 2472 | - supports-color 2473 | 2474 | '@eslint/eslintrc@3.1.0': 2475 | dependencies: 2476 | ajv: 6.12.6 2477 | debug: 4.3.7 2478 | espree: 10.1.0 2479 | globals: 14.0.0 2480 | ignore: 5.3.2 2481 | import-fresh: 3.3.0 2482 | js-yaml: 4.1.0 2483 | minimatch: 3.1.2 2484 | strip-json-comments: 3.1.1 2485 | transitivePeerDependencies: 2486 | - supports-color 2487 | 2488 | '@eslint/js@9.10.0': {} 2489 | 2490 | '@eslint/object-schema@2.1.4': {} 2491 | 2492 | '@eslint/plugin-kit@0.1.0': 2493 | dependencies: 2494 | levn: 0.4.1 2495 | 2496 | '@humanwhocodes/module-importer@1.0.1': {} 2497 | 2498 | '@humanwhocodes/retry@0.3.0': {} 2499 | 2500 | '@inquirer/confirm@3.2.0': 2501 | dependencies: 2502 | '@inquirer/core': 9.2.0 2503 | '@inquirer/type': 1.5.4 2504 | 2505 | '@inquirer/core@9.2.0': 2506 | dependencies: 2507 | '@inquirer/figures': 1.0.5 2508 | '@inquirer/type': 1.5.4 2509 | '@types/mute-stream': 0.0.4 2510 | '@types/node': 22.5.5 2511 | '@types/wrap-ansi': 3.0.0 2512 | ansi-escapes: 4.3.2 2513 | cli-width: 4.1.0 2514 | mute-stream: 1.0.0 2515 | signal-exit: 4.1.0 2516 | strip-ansi: 6.0.1 2517 | wrap-ansi: 6.2.0 2518 | yoctocolors-cjs: 2.1.2 2519 | 2520 | '@inquirer/figures@1.0.5': {} 2521 | 2522 | '@inquirer/type@1.5.4': 2523 | dependencies: 2524 | mute-stream: 1.0.0 2525 | 2526 | '@jridgewell/gen-mapping@0.3.5': 2527 | dependencies: 2528 | '@jridgewell/set-array': 1.2.1 2529 | '@jridgewell/sourcemap-codec': 1.5.0 2530 | '@jridgewell/trace-mapping': 0.3.25 2531 | 2532 | '@jridgewell/resolve-uri@3.1.2': {} 2533 | 2534 | '@jridgewell/set-array@1.2.1': {} 2535 | 2536 | '@jridgewell/sourcemap-codec@1.5.0': {} 2537 | 2538 | '@jridgewell/trace-mapping@0.3.25': 2539 | dependencies: 2540 | '@jridgewell/resolve-uri': 3.1.2 2541 | '@jridgewell/sourcemap-codec': 1.5.0 2542 | 2543 | '@mswjs/interceptors@0.35.6': 2544 | dependencies: 2545 | '@open-draft/deferred-promise': 2.2.0 2546 | '@open-draft/logger': 0.3.0 2547 | '@open-draft/until': 2.1.0 2548 | is-node-process: 1.2.0 2549 | outvariant: 1.4.3 2550 | strict-event-emitter: 0.5.1 2551 | 2552 | '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1': 2553 | dependencies: 2554 | eslint-scope: 5.1.1 2555 | 2556 | '@nodelib/fs.scandir@2.1.5': 2557 | dependencies: 2558 | '@nodelib/fs.stat': 2.0.5 2559 | run-parallel: 1.2.0 2560 | 2561 | '@nodelib/fs.stat@2.0.5': {} 2562 | 2563 | '@nodelib/fs.walk@1.2.8': 2564 | dependencies: 2565 | '@nodelib/fs.scandir': 2.1.5 2566 | fastq: 1.17.1 2567 | 2568 | '@open-draft/deferred-promise@2.2.0': {} 2569 | 2570 | '@open-draft/logger@0.3.0': 2571 | dependencies: 2572 | is-node-process: 1.2.0 2573 | outvariant: 1.4.3 2574 | 2575 | '@open-draft/until@2.1.0': {} 2576 | 2577 | '@polka/url@1.0.0-next.25': {} 2578 | 2579 | '@rollup/plugin-babel@6.0.4(@babel/core@7.25.2)(@types/babel__core@7.20.5)(rollup@4.21.2)': 2580 | dependencies: 2581 | '@babel/core': 7.25.2 2582 | '@babel/helper-module-imports': 7.24.7 2583 | '@rollup/pluginutils': 5.1.0(rollup@4.21.2) 2584 | optionalDependencies: 2585 | '@types/babel__core': 7.20.5 2586 | rollup: 4.21.2 2587 | transitivePeerDependencies: 2588 | - supports-color 2589 | 2590 | '@rollup/pluginutils@5.1.0(rollup@4.21.2)': 2591 | dependencies: 2592 | '@types/estree': 1.0.5 2593 | estree-walker: 2.0.2 2594 | picomatch: 2.3.1 2595 | optionalDependencies: 2596 | rollup: 4.21.2 2597 | 2598 | '@rollup/rollup-android-arm-eabi@4.21.2': 2599 | optional: true 2600 | 2601 | '@rollup/rollup-android-arm64@4.21.2': 2602 | optional: true 2603 | 2604 | '@rollup/rollup-darwin-arm64@4.21.2': 2605 | optional: true 2606 | 2607 | '@rollup/rollup-darwin-x64@4.21.2': 2608 | optional: true 2609 | 2610 | '@rollup/rollup-linux-arm-gnueabihf@4.21.2': 2611 | optional: true 2612 | 2613 | '@rollup/rollup-linux-arm-musleabihf@4.21.2': 2614 | optional: true 2615 | 2616 | '@rollup/rollup-linux-arm64-gnu@4.21.2': 2617 | optional: true 2618 | 2619 | '@rollup/rollup-linux-arm64-musl@4.21.2': 2620 | optional: true 2621 | 2622 | '@rollup/rollup-linux-powerpc64le-gnu@4.21.2': 2623 | optional: true 2624 | 2625 | '@rollup/rollup-linux-riscv64-gnu@4.21.2': 2626 | optional: true 2627 | 2628 | '@rollup/rollup-linux-s390x-gnu@4.21.2': 2629 | optional: true 2630 | 2631 | '@rollup/rollup-linux-x64-gnu@4.21.2': 2632 | optional: true 2633 | 2634 | '@rollup/rollup-linux-x64-musl@4.21.2': 2635 | optional: true 2636 | 2637 | '@rollup/rollup-win32-arm64-msvc@4.21.2': 2638 | optional: true 2639 | 2640 | '@rollup/rollup-win32-ia32-msvc@4.21.2': 2641 | optional: true 2642 | 2643 | '@rollup/rollup-win32-x64-msvc@4.21.2': 2644 | optional: true 2645 | 2646 | '@testing-library/dom@10.4.0': 2647 | dependencies: 2648 | '@babel/code-frame': 7.24.7 2649 | '@babel/runtime': 7.25.6 2650 | '@types/aria-query': 5.0.4 2651 | aria-query: 5.3.0 2652 | chalk: 4.1.2 2653 | dom-accessibility-api: 0.5.16 2654 | lz-string: 1.5.0 2655 | pretty-format: 27.5.1 2656 | 2657 | '@testing-library/jest-dom@6.5.0': 2658 | dependencies: 2659 | '@adobe/css-tools': 4.4.0 2660 | aria-query: 5.3.0 2661 | chalk: 3.0.0 2662 | css.escape: 1.5.1 2663 | dom-accessibility-api: 0.6.3 2664 | lodash: 4.17.21 2665 | redent: 3.0.0 2666 | 2667 | '@testing-library/react@16.0.1(@testing-library/dom@10.4.0)(@types/react-dom@18.3.0)(@types/react@18.3.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 2668 | dependencies: 2669 | '@babel/runtime': 7.25.6 2670 | '@testing-library/dom': 10.4.0 2671 | react: 18.3.1 2672 | react-dom: 18.3.1(react@18.3.1) 2673 | optionalDependencies: 2674 | '@types/react': 18.3.5 2675 | '@types/react-dom': 18.3.0 2676 | 2677 | '@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)': 2678 | dependencies: 2679 | '@testing-library/dom': 10.4.0 2680 | 2681 | '@tsconfig/strictest@2.0.5': {} 2682 | 2683 | '@types/aria-query@5.0.4': {} 2684 | 2685 | '@types/babel__core@7.20.5': 2686 | dependencies: 2687 | '@babel/parser': 7.25.6 2688 | '@babel/types': 7.25.6 2689 | '@types/babel__generator': 7.6.8 2690 | '@types/babel__template': 7.4.4 2691 | '@types/babel__traverse': 7.20.6 2692 | 2693 | '@types/babel__generator@7.6.8': 2694 | dependencies: 2695 | '@babel/types': 7.25.6 2696 | 2697 | '@types/babel__template@7.4.4': 2698 | dependencies: 2699 | '@babel/parser': 7.25.6 2700 | '@babel/types': 7.25.6 2701 | 2702 | '@types/babel__traverse@7.20.6': 2703 | dependencies: 2704 | '@babel/types': 7.25.6 2705 | 2706 | '@types/cookie@0.6.0': {} 2707 | 2708 | '@types/estree@1.0.5': {} 2709 | 2710 | '@types/mute-stream@0.0.4': 2711 | dependencies: 2712 | '@types/node': 22.5.5 2713 | 2714 | '@types/node@22.5.5': 2715 | dependencies: 2716 | undici-types: 6.19.8 2717 | 2718 | '@types/prop-types@15.7.12': {} 2719 | 2720 | '@types/react-dom@18.3.0': 2721 | dependencies: 2722 | '@types/react': 18.3.5 2723 | 2724 | '@types/react@18.3.5': 2725 | dependencies: 2726 | '@types/prop-types': 15.7.12 2727 | csstype: 3.1.3 2728 | 2729 | '@types/statuses@2.0.5': {} 2730 | 2731 | '@types/tough-cookie@4.0.5': {} 2732 | 2733 | '@types/wrap-ansi@3.0.0': {} 2734 | 2735 | '@vitejs/plugin-react@4.3.1(vite@5.4.3(@types/node@22.5.5))': 2736 | dependencies: 2737 | '@babel/core': 7.25.2 2738 | '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.25.2) 2739 | '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.25.2) 2740 | '@types/babel__core': 7.20.5 2741 | react-refresh: 0.14.2 2742 | vite: 5.4.3(@types/node@22.5.5) 2743 | transitivePeerDependencies: 2744 | - supports-color 2745 | 2746 | '@vitest/browser@2.1.1(@vitest/spy@2.1.1)(typescript@5.6.2)(vite@5.4.3(@types/node@22.5.5))(vitest@2.1.1)': 2747 | dependencies: 2748 | '@testing-library/dom': 10.4.0 2749 | '@testing-library/user-event': 14.5.2(@testing-library/dom@10.4.0) 2750 | '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.7(typescript@5.6.2))(vite@5.4.3(@types/node@22.5.5)) 2751 | '@vitest/utils': 2.1.1 2752 | magic-string: 0.30.11 2753 | msw: 2.4.7(typescript@5.6.2) 2754 | sirv: 2.0.4 2755 | tinyrainbow: 1.2.0 2756 | vitest: 2.1.1(@types/node@22.5.5)(@vitest/browser@2.1.1)(jsdom@25.0.0)(msw@2.4.7(typescript@5.6.2)) 2757 | ws: 8.18.0 2758 | transitivePeerDependencies: 2759 | - '@vitest/spy' 2760 | - bufferutil 2761 | - typescript 2762 | - utf-8-validate 2763 | - vite 2764 | 2765 | '@vitest/expect@2.1.1': 2766 | dependencies: 2767 | '@vitest/spy': 2.1.1 2768 | '@vitest/utils': 2.1.1 2769 | chai: 5.1.1 2770 | tinyrainbow: 1.2.0 2771 | 2772 | '@vitest/mocker@2.1.1(@vitest/spy@2.1.1)(msw@2.4.7(typescript@5.6.2))(vite@5.4.3(@types/node@22.5.5))': 2773 | dependencies: 2774 | '@vitest/spy': 2.1.1 2775 | estree-walker: 3.0.3 2776 | magic-string: 0.30.11 2777 | optionalDependencies: 2778 | msw: 2.4.7(typescript@5.6.2) 2779 | vite: 5.4.3(@types/node@22.5.5) 2780 | 2781 | '@vitest/pretty-format@2.1.1': 2782 | dependencies: 2783 | tinyrainbow: 1.2.0 2784 | 2785 | '@vitest/runner@2.1.1': 2786 | dependencies: 2787 | '@vitest/utils': 2.1.1 2788 | pathe: 1.1.2 2789 | 2790 | '@vitest/snapshot@2.1.1': 2791 | dependencies: 2792 | '@vitest/pretty-format': 2.1.1 2793 | magic-string: 0.30.11 2794 | pathe: 1.1.2 2795 | 2796 | '@vitest/spy@2.1.1': 2797 | dependencies: 2798 | tinyspy: 3.0.2 2799 | 2800 | '@vitest/utils@2.1.1': 2801 | dependencies: 2802 | '@vitest/pretty-format': 2.1.1 2803 | loupe: 3.1.1 2804 | tinyrainbow: 1.2.0 2805 | 2806 | acorn-jsx@5.3.2(acorn@8.12.1): 2807 | dependencies: 2808 | acorn: 8.12.1 2809 | 2810 | acorn@8.12.1: {} 2811 | 2812 | agent-base@7.1.1: 2813 | dependencies: 2814 | debug: 4.3.7 2815 | transitivePeerDependencies: 2816 | - supports-color 2817 | 2818 | ajv@6.12.6: 2819 | dependencies: 2820 | fast-deep-equal: 3.1.3 2821 | fast-json-stable-stringify: 2.1.0 2822 | json-schema-traverse: 0.4.1 2823 | uri-js: 4.4.1 2824 | 2825 | ansi-escapes@4.3.2: 2826 | dependencies: 2827 | type-fest: 0.21.3 2828 | 2829 | ansi-regex@5.0.1: {} 2830 | 2831 | ansi-styles@3.2.1: 2832 | dependencies: 2833 | color-convert: 1.9.3 2834 | 2835 | ansi-styles@4.3.0: 2836 | dependencies: 2837 | color-convert: 2.0.1 2838 | 2839 | ansi-styles@5.2.0: {} 2840 | 2841 | argparse@2.0.1: {} 2842 | 2843 | aria-query@5.3.0: 2844 | dependencies: 2845 | dequal: 2.0.3 2846 | 2847 | array-buffer-byte-length@1.0.1: 2848 | dependencies: 2849 | call-bind: 1.0.7 2850 | is-array-buffer: 3.0.4 2851 | 2852 | array-includes@3.1.8: 2853 | dependencies: 2854 | call-bind: 1.0.7 2855 | define-properties: 1.2.1 2856 | es-abstract: 1.23.3 2857 | es-object-atoms: 1.0.0 2858 | get-intrinsic: 1.2.4 2859 | is-string: 1.0.7 2860 | 2861 | array.prototype.findlast@1.2.5: 2862 | dependencies: 2863 | call-bind: 1.0.7 2864 | define-properties: 1.2.1 2865 | es-abstract: 1.23.3 2866 | es-errors: 1.3.0 2867 | es-object-atoms: 1.0.0 2868 | es-shim-unscopables: 1.0.2 2869 | 2870 | array.prototype.flat@1.3.2: 2871 | dependencies: 2872 | call-bind: 1.0.7 2873 | define-properties: 1.2.1 2874 | es-abstract: 1.23.3 2875 | es-shim-unscopables: 1.0.2 2876 | 2877 | array.prototype.flatmap@1.3.2: 2878 | dependencies: 2879 | call-bind: 1.0.7 2880 | define-properties: 1.2.1 2881 | es-abstract: 1.23.3 2882 | es-shim-unscopables: 1.0.2 2883 | 2884 | array.prototype.tosorted@1.1.4: 2885 | dependencies: 2886 | call-bind: 1.0.7 2887 | define-properties: 1.2.1 2888 | es-abstract: 1.23.3 2889 | es-errors: 1.3.0 2890 | es-shim-unscopables: 1.0.2 2891 | 2892 | arraybuffer.prototype.slice@1.0.3: 2893 | dependencies: 2894 | array-buffer-byte-length: 1.0.1 2895 | call-bind: 1.0.7 2896 | define-properties: 1.2.1 2897 | es-abstract: 1.23.3 2898 | es-errors: 1.3.0 2899 | get-intrinsic: 1.2.4 2900 | is-array-buffer: 3.0.4 2901 | is-shared-array-buffer: 1.0.3 2902 | 2903 | assertion-error@2.0.1: {} 2904 | 2905 | asynckit@0.4.0: {} 2906 | 2907 | available-typed-arrays@1.0.7: 2908 | dependencies: 2909 | possible-typed-array-names: 1.0.0 2910 | 2911 | balanced-match@1.0.2: {} 2912 | 2913 | brace-expansion@1.1.11: 2914 | dependencies: 2915 | balanced-match: 1.0.2 2916 | concat-map: 0.0.1 2917 | 2918 | browserslist@4.23.3: 2919 | dependencies: 2920 | caniuse-lite: 1.0.30001659 2921 | electron-to-chromium: 1.5.18 2922 | node-releases: 2.0.18 2923 | update-browserslist-db: 1.1.0(browserslist@4.23.3) 2924 | 2925 | cac@6.7.14: {} 2926 | 2927 | call-bind@1.0.7: 2928 | dependencies: 2929 | es-define-property: 1.0.0 2930 | es-errors: 1.3.0 2931 | function-bind: 1.1.2 2932 | get-intrinsic: 1.2.4 2933 | set-function-length: 1.2.2 2934 | 2935 | callsites@3.1.0: {} 2936 | 2937 | caniuse-lite@1.0.30001659: {} 2938 | 2939 | chai@5.1.1: 2940 | dependencies: 2941 | assertion-error: 2.0.1 2942 | check-error: 2.1.1 2943 | deep-eql: 5.0.2 2944 | loupe: 3.1.1 2945 | pathval: 2.0.0 2946 | 2947 | chalk@2.4.2: 2948 | dependencies: 2949 | ansi-styles: 3.2.1 2950 | escape-string-regexp: 1.0.5 2951 | supports-color: 5.5.0 2952 | 2953 | chalk@3.0.0: 2954 | dependencies: 2955 | ansi-styles: 4.3.0 2956 | supports-color: 7.2.0 2957 | 2958 | chalk@4.1.2: 2959 | dependencies: 2960 | ansi-styles: 4.3.0 2961 | supports-color: 7.2.0 2962 | 2963 | check-error@2.1.1: {} 2964 | 2965 | cli-width@4.1.0: {} 2966 | 2967 | cliui@8.0.1: 2968 | dependencies: 2969 | string-width: 4.2.3 2970 | strip-ansi: 6.0.1 2971 | wrap-ansi: 7.0.0 2972 | 2973 | color-convert@1.9.3: 2974 | dependencies: 2975 | color-name: 1.1.3 2976 | 2977 | color-convert@2.0.1: 2978 | dependencies: 2979 | color-name: 1.1.4 2980 | 2981 | color-name@1.1.3: {} 2982 | 2983 | color-name@1.1.4: {} 2984 | 2985 | combined-stream@1.0.8: 2986 | dependencies: 2987 | delayed-stream: 1.0.0 2988 | 2989 | concat-map@0.0.1: {} 2990 | 2991 | convert-source-map@2.0.0: {} 2992 | 2993 | cookie@0.5.0: {} 2994 | 2995 | cross-spawn@7.0.3: 2996 | dependencies: 2997 | path-key: 3.1.1 2998 | shebang-command: 2.0.0 2999 | which: 2.0.2 3000 | 3001 | css.escape@1.5.1: {} 3002 | 3003 | cssstyle@4.1.0: 3004 | dependencies: 3005 | rrweb-cssom: 0.7.1 3006 | 3007 | csstype@3.1.3: {} 3008 | 3009 | data-urls@5.0.0: 3010 | dependencies: 3011 | whatwg-mimetype: 4.0.0 3012 | whatwg-url: 14.0.0 3013 | 3014 | data-view-buffer@1.0.1: 3015 | dependencies: 3016 | call-bind: 1.0.7 3017 | es-errors: 1.3.0 3018 | is-data-view: 1.0.1 3019 | 3020 | data-view-byte-length@1.0.1: 3021 | dependencies: 3022 | call-bind: 1.0.7 3023 | es-errors: 1.3.0 3024 | is-data-view: 1.0.1 3025 | 3026 | data-view-byte-offset@1.0.0: 3027 | dependencies: 3028 | call-bind: 1.0.7 3029 | es-errors: 1.3.0 3030 | is-data-view: 1.0.1 3031 | 3032 | debug@4.3.7: 3033 | dependencies: 3034 | ms: 2.1.3 3035 | 3036 | decimal.js@10.4.3: {} 3037 | 3038 | deep-eql@5.0.2: {} 3039 | 3040 | deep-is@0.1.4: {} 3041 | 3042 | define-data-property@1.1.4: 3043 | dependencies: 3044 | es-define-property: 1.0.0 3045 | es-errors: 1.3.0 3046 | gopd: 1.0.1 3047 | 3048 | define-properties@1.2.1: 3049 | dependencies: 3050 | define-data-property: 1.1.4 3051 | has-property-descriptors: 1.0.2 3052 | object-keys: 1.1.1 3053 | 3054 | delayed-stream@1.0.0: {} 3055 | 3056 | dequal@2.0.3: {} 3057 | 3058 | doctrine@2.1.0: 3059 | dependencies: 3060 | esutils: 2.0.3 3061 | 3062 | dom-accessibility-api@0.5.16: {} 3063 | 3064 | dom-accessibility-api@0.6.3: {} 3065 | 3066 | electron-to-chromium@1.5.18: {} 3067 | 3068 | emoji-regex@8.0.0: {} 3069 | 3070 | entities@4.5.0: {} 3071 | 3072 | es-abstract@1.23.3: 3073 | dependencies: 3074 | array-buffer-byte-length: 1.0.1 3075 | arraybuffer.prototype.slice: 1.0.3 3076 | available-typed-arrays: 1.0.7 3077 | call-bind: 1.0.7 3078 | data-view-buffer: 1.0.1 3079 | data-view-byte-length: 1.0.1 3080 | data-view-byte-offset: 1.0.0 3081 | es-define-property: 1.0.0 3082 | es-errors: 1.3.0 3083 | es-object-atoms: 1.0.0 3084 | es-set-tostringtag: 2.0.3 3085 | es-to-primitive: 1.2.1 3086 | function.prototype.name: 1.1.6 3087 | get-intrinsic: 1.2.4 3088 | get-symbol-description: 1.0.2 3089 | globalthis: 1.0.4 3090 | gopd: 1.0.1 3091 | has-property-descriptors: 1.0.2 3092 | has-proto: 1.0.3 3093 | has-symbols: 1.0.3 3094 | hasown: 2.0.2 3095 | internal-slot: 1.0.7 3096 | is-array-buffer: 3.0.4 3097 | is-callable: 1.2.7 3098 | is-data-view: 1.0.1 3099 | is-negative-zero: 2.0.3 3100 | is-regex: 1.1.4 3101 | is-shared-array-buffer: 1.0.3 3102 | is-string: 1.0.7 3103 | is-typed-array: 1.1.13 3104 | is-weakref: 1.0.2 3105 | object-inspect: 1.13.2 3106 | object-keys: 1.1.1 3107 | object.assign: 4.1.5 3108 | regexp.prototype.flags: 1.5.2 3109 | safe-array-concat: 1.1.2 3110 | safe-regex-test: 1.0.3 3111 | string.prototype.trim: 1.2.9 3112 | string.prototype.trimend: 1.0.8 3113 | string.prototype.trimstart: 1.0.8 3114 | typed-array-buffer: 1.0.2 3115 | typed-array-byte-length: 1.0.1 3116 | typed-array-byte-offset: 1.0.2 3117 | typed-array-length: 1.0.6 3118 | unbox-primitive: 1.0.2 3119 | which-typed-array: 1.1.15 3120 | 3121 | es-define-property@1.0.0: 3122 | dependencies: 3123 | get-intrinsic: 1.2.4 3124 | 3125 | es-errors@1.3.0: {} 3126 | 3127 | es-iterator-helpers@1.0.19: 3128 | dependencies: 3129 | call-bind: 1.0.7 3130 | define-properties: 1.2.1 3131 | es-abstract: 1.23.3 3132 | es-errors: 1.3.0 3133 | es-set-tostringtag: 2.0.3 3134 | function-bind: 1.1.2 3135 | get-intrinsic: 1.2.4 3136 | globalthis: 1.0.4 3137 | has-property-descriptors: 1.0.2 3138 | has-proto: 1.0.3 3139 | has-symbols: 1.0.3 3140 | internal-slot: 1.0.7 3141 | iterator.prototype: 1.1.2 3142 | safe-array-concat: 1.1.2 3143 | 3144 | es-object-atoms@1.0.0: 3145 | dependencies: 3146 | es-errors: 1.3.0 3147 | 3148 | es-set-tostringtag@2.0.3: 3149 | dependencies: 3150 | get-intrinsic: 1.2.4 3151 | has-tostringtag: 1.0.2 3152 | hasown: 2.0.2 3153 | 3154 | es-shim-unscopables@1.0.2: 3155 | dependencies: 3156 | hasown: 2.0.2 3157 | 3158 | es-to-primitive@1.2.1: 3159 | dependencies: 3160 | is-callable: 1.2.7 3161 | is-date-object: 1.0.5 3162 | is-symbol: 1.0.4 3163 | 3164 | esbuild@0.23.1: 3165 | optionalDependencies: 3166 | '@esbuild/aix-ppc64': 0.23.1 3167 | '@esbuild/android-arm': 0.23.1 3168 | '@esbuild/android-arm64': 0.23.1 3169 | '@esbuild/android-x64': 0.23.1 3170 | '@esbuild/darwin-arm64': 0.23.1 3171 | '@esbuild/darwin-x64': 0.23.1 3172 | '@esbuild/freebsd-arm64': 0.23.1 3173 | '@esbuild/freebsd-x64': 0.23.1 3174 | '@esbuild/linux-arm': 0.23.1 3175 | '@esbuild/linux-arm64': 0.23.1 3176 | '@esbuild/linux-ia32': 0.23.1 3177 | '@esbuild/linux-loong64': 0.23.1 3178 | '@esbuild/linux-mips64el': 0.23.1 3179 | '@esbuild/linux-ppc64': 0.23.1 3180 | '@esbuild/linux-riscv64': 0.23.1 3181 | '@esbuild/linux-s390x': 0.23.1 3182 | '@esbuild/linux-x64': 0.23.1 3183 | '@esbuild/netbsd-x64': 0.23.1 3184 | '@esbuild/openbsd-arm64': 0.23.1 3185 | '@esbuild/openbsd-x64': 0.23.1 3186 | '@esbuild/sunos-x64': 0.23.1 3187 | '@esbuild/win32-arm64': 0.23.1 3188 | '@esbuild/win32-ia32': 0.23.1 3189 | '@esbuild/win32-x64': 0.23.1 3190 | 3191 | escalade@3.2.0: {} 3192 | 3193 | escape-string-regexp@1.0.5: {} 3194 | 3195 | escape-string-regexp@4.0.0: {} 3196 | 3197 | eslint-plugin-react-hooks@5.1.0-rc-fb9a90fa48-20240614(eslint@9.10.0): 3198 | dependencies: 3199 | eslint: 9.10.0 3200 | 3201 | eslint-plugin-react-refresh@0.4.11(eslint@9.10.0): 3202 | dependencies: 3203 | eslint: 9.10.0 3204 | 3205 | eslint-plugin-react@7.35.2(eslint@9.10.0): 3206 | dependencies: 3207 | array-includes: 3.1.8 3208 | array.prototype.findlast: 1.2.5 3209 | array.prototype.flatmap: 1.3.2 3210 | array.prototype.tosorted: 1.1.4 3211 | doctrine: 2.1.0 3212 | es-iterator-helpers: 1.0.19 3213 | eslint: 9.10.0 3214 | estraverse: 5.3.0 3215 | hasown: 2.0.2 3216 | jsx-ast-utils: 3.3.5 3217 | minimatch: 3.1.2 3218 | object.entries: 1.1.8 3219 | object.fromentries: 2.0.8 3220 | object.values: 1.2.0 3221 | prop-types: 15.8.1 3222 | resolve: 2.0.0-next.5 3223 | semver: 6.3.1 3224 | string.prototype.matchall: 4.0.11 3225 | string.prototype.repeat: 1.0.0 3226 | 3227 | eslint-scope@5.1.1: 3228 | dependencies: 3229 | esrecurse: 4.3.0 3230 | estraverse: 4.3.0 3231 | 3232 | eslint-scope@8.0.2: 3233 | dependencies: 3234 | esrecurse: 4.3.0 3235 | estraverse: 5.3.0 3236 | 3237 | eslint-visitor-keys@2.1.0: {} 3238 | 3239 | eslint-visitor-keys@3.4.3: {} 3240 | 3241 | eslint-visitor-keys@4.0.0: {} 3242 | 3243 | eslint@9.10.0: 3244 | dependencies: 3245 | '@eslint-community/eslint-utils': 4.4.0(eslint@9.10.0) 3246 | '@eslint-community/regexpp': 4.11.0 3247 | '@eslint/config-array': 0.18.0 3248 | '@eslint/eslintrc': 3.1.0 3249 | '@eslint/js': 9.10.0 3250 | '@eslint/plugin-kit': 0.1.0 3251 | '@humanwhocodes/module-importer': 1.0.1 3252 | '@humanwhocodes/retry': 0.3.0 3253 | '@nodelib/fs.walk': 1.2.8 3254 | ajv: 6.12.6 3255 | chalk: 4.1.2 3256 | cross-spawn: 7.0.3 3257 | debug: 4.3.7 3258 | escape-string-regexp: 4.0.0 3259 | eslint-scope: 8.0.2 3260 | eslint-visitor-keys: 4.0.0 3261 | espree: 10.1.0 3262 | esquery: 1.6.0 3263 | esutils: 2.0.3 3264 | fast-deep-equal: 3.1.3 3265 | file-entry-cache: 8.0.0 3266 | find-up: 5.0.0 3267 | glob-parent: 6.0.2 3268 | ignore: 5.3.2 3269 | imurmurhash: 0.1.4 3270 | is-glob: 4.0.3 3271 | is-path-inside: 3.0.3 3272 | json-stable-stringify-without-jsonify: 1.0.1 3273 | lodash.merge: 4.6.2 3274 | minimatch: 3.1.2 3275 | natural-compare: 1.4.0 3276 | optionator: 0.9.4 3277 | strip-ansi: 6.0.1 3278 | text-table: 0.2.0 3279 | transitivePeerDependencies: 3280 | - supports-color 3281 | 3282 | espree@10.1.0: 3283 | dependencies: 3284 | acorn: 8.12.1 3285 | acorn-jsx: 5.3.2(acorn@8.12.1) 3286 | eslint-visitor-keys: 4.0.0 3287 | 3288 | esquery@1.6.0: 3289 | dependencies: 3290 | estraverse: 5.3.0 3291 | 3292 | esrecurse@4.3.0: 3293 | dependencies: 3294 | estraverse: 5.3.0 3295 | 3296 | estraverse@4.3.0: {} 3297 | 3298 | estraverse@5.3.0: {} 3299 | 3300 | estree-walker@2.0.2: {} 3301 | 3302 | estree-walker@3.0.3: 3303 | dependencies: 3304 | '@types/estree': 1.0.5 3305 | 3306 | esutils@2.0.3: {} 3307 | 3308 | fast-deep-equal@3.1.3: {} 3309 | 3310 | fast-json-stable-stringify@2.1.0: {} 3311 | 3312 | fast-levenshtein@2.0.6: {} 3313 | 3314 | fastq@1.17.1: 3315 | dependencies: 3316 | reusify: 1.0.4 3317 | 3318 | file-entry-cache@8.0.0: 3319 | dependencies: 3320 | flat-cache: 4.0.1 3321 | 3322 | find-up@5.0.0: 3323 | dependencies: 3324 | locate-path: 6.0.0 3325 | path-exists: 4.0.0 3326 | 3327 | flat-cache@4.0.1: 3328 | dependencies: 3329 | flatted: 3.3.1 3330 | keyv: 4.5.4 3331 | 3332 | flatted@3.3.1: {} 3333 | 3334 | for-each@0.3.3: 3335 | dependencies: 3336 | is-callable: 1.2.7 3337 | 3338 | form-data@4.0.0: 3339 | dependencies: 3340 | asynckit: 0.4.0 3341 | combined-stream: 1.0.8 3342 | mime-types: 2.1.35 3343 | 3344 | fsevents@2.3.3: 3345 | optional: true 3346 | 3347 | function-bind@1.1.2: {} 3348 | 3349 | function.prototype.name@1.1.6: 3350 | dependencies: 3351 | call-bind: 1.0.7 3352 | define-properties: 1.2.1 3353 | es-abstract: 1.23.3 3354 | functions-have-names: 1.2.3 3355 | 3356 | functions-have-names@1.2.3: {} 3357 | 3358 | gensync@1.0.0-beta.2: {} 3359 | 3360 | get-caller-file@2.0.5: {} 3361 | 3362 | get-func-name@2.0.2: {} 3363 | 3364 | get-intrinsic@1.2.4: 3365 | dependencies: 3366 | es-errors: 1.3.0 3367 | function-bind: 1.1.2 3368 | has-proto: 1.0.3 3369 | has-symbols: 1.0.3 3370 | hasown: 2.0.2 3371 | 3372 | get-symbol-description@1.0.2: 3373 | dependencies: 3374 | call-bind: 1.0.7 3375 | es-errors: 1.3.0 3376 | get-intrinsic: 1.2.4 3377 | 3378 | glob-parent@6.0.2: 3379 | dependencies: 3380 | is-glob: 4.0.3 3381 | 3382 | globals@11.12.0: {} 3383 | 3384 | globals@14.0.0: {} 3385 | 3386 | globals@15.9.0: {} 3387 | 3388 | globalthis@1.0.4: 3389 | dependencies: 3390 | define-properties: 1.2.1 3391 | gopd: 1.0.1 3392 | 3393 | gopd@1.0.1: 3394 | dependencies: 3395 | get-intrinsic: 1.2.4 3396 | 3397 | graphql@16.9.0: {} 3398 | 3399 | has-bigints@1.0.2: {} 3400 | 3401 | has-flag@3.0.0: {} 3402 | 3403 | has-flag@4.0.0: {} 3404 | 3405 | has-property-descriptors@1.0.2: 3406 | dependencies: 3407 | es-define-property: 1.0.0 3408 | 3409 | has-proto@1.0.3: {} 3410 | 3411 | has-symbols@1.0.3: {} 3412 | 3413 | has-tostringtag@1.0.2: 3414 | dependencies: 3415 | has-symbols: 1.0.3 3416 | 3417 | hasown@2.0.2: 3418 | dependencies: 3419 | function-bind: 1.1.2 3420 | 3421 | headers-polyfill@4.0.3: {} 3422 | 3423 | html-encoding-sniffer@4.0.0: 3424 | dependencies: 3425 | whatwg-encoding: 3.1.1 3426 | 3427 | http-proxy-agent@7.0.2: 3428 | dependencies: 3429 | agent-base: 7.1.1 3430 | debug: 4.3.7 3431 | transitivePeerDependencies: 3432 | - supports-color 3433 | 3434 | https-proxy-agent@7.0.5: 3435 | dependencies: 3436 | agent-base: 7.1.1 3437 | debug: 4.3.7 3438 | transitivePeerDependencies: 3439 | - supports-color 3440 | 3441 | iconv-lite@0.6.3: 3442 | dependencies: 3443 | safer-buffer: 2.1.2 3444 | 3445 | ignore@5.3.2: {} 3446 | 3447 | import-fresh@3.3.0: 3448 | dependencies: 3449 | parent-module: 1.0.1 3450 | resolve-from: 4.0.0 3451 | 3452 | imurmurhash@0.1.4: {} 3453 | 3454 | indent-string@4.0.0: {} 3455 | 3456 | internal-slot@1.0.7: 3457 | dependencies: 3458 | es-errors: 1.3.0 3459 | hasown: 2.0.2 3460 | side-channel: 1.0.6 3461 | 3462 | is-array-buffer@3.0.4: 3463 | dependencies: 3464 | call-bind: 1.0.7 3465 | get-intrinsic: 1.2.4 3466 | 3467 | is-async-function@2.0.0: 3468 | dependencies: 3469 | has-tostringtag: 1.0.2 3470 | 3471 | is-bigint@1.0.4: 3472 | dependencies: 3473 | has-bigints: 1.0.2 3474 | 3475 | is-boolean-object@1.1.2: 3476 | dependencies: 3477 | call-bind: 1.0.7 3478 | has-tostringtag: 1.0.2 3479 | 3480 | is-callable@1.2.7: {} 3481 | 3482 | is-core-module@2.15.1: 3483 | dependencies: 3484 | hasown: 2.0.2 3485 | 3486 | is-data-view@1.0.1: 3487 | dependencies: 3488 | is-typed-array: 1.1.13 3489 | 3490 | is-date-object@1.0.5: 3491 | dependencies: 3492 | has-tostringtag: 1.0.2 3493 | 3494 | is-extglob@2.1.1: {} 3495 | 3496 | is-finalizationregistry@1.0.2: 3497 | dependencies: 3498 | call-bind: 1.0.7 3499 | 3500 | is-fullwidth-code-point@3.0.0: {} 3501 | 3502 | is-generator-function@1.0.10: 3503 | dependencies: 3504 | has-tostringtag: 1.0.2 3505 | 3506 | is-glob@4.0.3: 3507 | dependencies: 3508 | is-extglob: 2.1.1 3509 | 3510 | is-map@2.0.3: {} 3511 | 3512 | is-negative-zero@2.0.3: {} 3513 | 3514 | is-node-process@1.2.0: {} 3515 | 3516 | is-number-object@1.0.7: 3517 | dependencies: 3518 | has-tostringtag: 1.0.2 3519 | 3520 | is-path-inside@3.0.3: {} 3521 | 3522 | is-potential-custom-element-name@1.0.1: {} 3523 | 3524 | is-regex@1.1.4: 3525 | dependencies: 3526 | call-bind: 1.0.7 3527 | has-tostringtag: 1.0.2 3528 | 3529 | is-set@2.0.3: {} 3530 | 3531 | is-shared-array-buffer@1.0.3: 3532 | dependencies: 3533 | call-bind: 1.0.7 3534 | 3535 | is-string@1.0.7: 3536 | dependencies: 3537 | has-tostringtag: 1.0.2 3538 | 3539 | is-symbol@1.0.4: 3540 | dependencies: 3541 | has-symbols: 1.0.3 3542 | 3543 | is-typed-array@1.1.13: 3544 | dependencies: 3545 | which-typed-array: 1.1.15 3546 | 3547 | is-weakmap@2.0.2: {} 3548 | 3549 | is-weakref@1.0.2: 3550 | dependencies: 3551 | call-bind: 1.0.7 3552 | 3553 | is-weakset@2.0.3: 3554 | dependencies: 3555 | call-bind: 1.0.7 3556 | get-intrinsic: 1.2.4 3557 | 3558 | isarray@2.0.5: {} 3559 | 3560 | isexe@2.0.0: {} 3561 | 3562 | iterator.prototype@1.1.2: 3563 | dependencies: 3564 | define-properties: 1.2.1 3565 | get-intrinsic: 1.2.4 3566 | has-symbols: 1.0.3 3567 | reflect.getprototypeof: 1.0.6 3568 | set-function-name: 2.0.2 3569 | 3570 | js-tokens@4.0.0: {} 3571 | 3572 | js-yaml@4.1.0: 3573 | dependencies: 3574 | argparse: 2.0.1 3575 | 3576 | jsdom@25.0.0: 3577 | dependencies: 3578 | cssstyle: 4.1.0 3579 | data-urls: 5.0.0 3580 | decimal.js: 10.4.3 3581 | form-data: 4.0.0 3582 | html-encoding-sniffer: 4.0.0 3583 | http-proxy-agent: 7.0.2 3584 | https-proxy-agent: 7.0.5 3585 | is-potential-custom-element-name: 1.0.1 3586 | nwsapi: 2.2.12 3587 | parse5: 7.1.2 3588 | rrweb-cssom: 0.7.1 3589 | saxes: 6.0.0 3590 | symbol-tree: 3.2.4 3591 | tough-cookie: 4.1.4 3592 | w3c-xmlserializer: 5.0.0 3593 | webidl-conversions: 7.0.0 3594 | whatwg-encoding: 3.1.1 3595 | whatwg-mimetype: 4.0.0 3596 | whatwg-url: 14.0.0 3597 | ws: 8.18.0 3598 | xml-name-validator: 5.0.0 3599 | transitivePeerDependencies: 3600 | - bufferutil 3601 | - supports-color 3602 | - utf-8-validate 3603 | 3604 | jsesc@2.5.2: {} 3605 | 3606 | json-buffer@3.0.1: {} 3607 | 3608 | json-schema-traverse@0.4.1: {} 3609 | 3610 | json-stable-stringify-without-jsonify@1.0.1: {} 3611 | 3612 | json5@2.2.3: {} 3613 | 3614 | jsx-ast-utils@3.3.5: 3615 | dependencies: 3616 | array-includes: 3.1.8 3617 | array.prototype.flat: 1.3.2 3618 | object.assign: 4.1.5 3619 | object.values: 1.2.0 3620 | 3621 | keyv@4.5.4: 3622 | dependencies: 3623 | json-buffer: 3.0.1 3624 | 3625 | levn@0.4.1: 3626 | dependencies: 3627 | prelude-ls: 1.2.1 3628 | type-check: 0.4.0 3629 | 3630 | locate-path@6.0.0: 3631 | dependencies: 3632 | p-locate: 5.0.0 3633 | 3634 | lodash.merge@4.6.2: {} 3635 | 3636 | lodash@4.17.21: {} 3637 | 3638 | loose-envify@1.4.0: 3639 | dependencies: 3640 | js-tokens: 4.0.0 3641 | 3642 | loupe@3.1.1: 3643 | dependencies: 3644 | get-func-name: 2.0.2 3645 | 3646 | lru-cache@5.1.1: 3647 | dependencies: 3648 | yallist: 3.1.1 3649 | 3650 | lz-string@1.5.0: {} 3651 | 3652 | magic-string@0.30.11: 3653 | dependencies: 3654 | '@jridgewell/sourcemap-codec': 1.5.0 3655 | 3656 | mime-db@1.52.0: {} 3657 | 3658 | mime-types@2.1.35: 3659 | dependencies: 3660 | mime-db: 1.52.0 3661 | 3662 | min-indent@1.0.1: {} 3663 | 3664 | minimatch@3.1.2: 3665 | dependencies: 3666 | brace-expansion: 1.1.11 3667 | 3668 | mrmime@2.0.0: {} 3669 | 3670 | ms@2.1.3: {} 3671 | 3672 | msw@2.4.7(typescript@5.6.2): 3673 | dependencies: 3674 | '@bundled-es-modules/cookie': 2.0.0 3675 | '@bundled-es-modules/statuses': 1.0.1 3676 | '@bundled-es-modules/tough-cookie': 0.1.6 3677 | '@inquirer/confirm': 3.2.0 3678 | '@mswjs/interceptors': 0.35.6 3679 | '@open-draft/until': 2.1.0 3680 | '@types/cookie': 0.6.0 3681 | '@types/statuses': 2.0.5 3682 | chalk: 4.1.2 3683 | graphql: 16.9.0 3684 | headers-polyfill: 4.0.3 3685 | is-node-process: 1.2.0 3686 | outvariant: 1.4.3 3687 | path-to-regexp: 6.3.0 3688 | strict-event-emitter: 0.5.1 3689 | type-fest: 4.26.1 3690 | yargs: 17.7.2 3691 | optionalDependencies: 3692 | typescript: 5.6.2 3693 | 3694 | mute-stream@1.0.0: {} 3695 | 3696 | nanoid@3.3.7: {} 3697 | 3698 | natural-compare@1.4.0: {} 3699 | 3700 | node-releases@2.0.18: {} 3701 | 3702 | nwsapi@2.2.12: {} 3703 | 3704 | object-assign@4.1.1: {} 3705 | 3706 | object-inspect@1.13.2: {} 3707 | 3708 | object-keys@1.1.1: {} 3709 | 3710 | object.assign@4.1.5: 3711 | dependencies: 3712 | call-bind: 1.0.7 3713 | define-properties: 1.2.1 3714 | has-symbols: 1.0.3 3715 | object-keys: 1.1.1 3716 | 3717 | object.entries@1.1.8: 3718 | dependencies: 3719 | call-bind: 1.0.7 3720 | define-properties: 1.2.1 3721 | es-object-atoms: 1.0.0 3722 | 3723 | object.fromentries@2.0.8: 3724 | dependencies: 3725 | call-bind: 1.0.7 3726 | define-properties: 1.2.1 3727 | es-abstract: 1.23.3 3728 | es-object-atoms: 1.0.0 3729 | 3730 | object.values@1.2.0: 3731 | dependencies: 3732 | call-bind: 1.0.7 3733 | define-properties: 1.2.1 3734 | es-object-atoms: 1.0.0 3735 | 3736 | optionator@0.9.4: 3737 | dependencies: 3738 | deep-is: 0.1.4 3739 | fast-levenshtein: 2.0.6 3740 | levn: 0.4.1 3741 | prelude-ls: 1.2.1 3742 | type-check: 0.4.0 3743 | word-wrap: 1.2.5 3744 | 3745 | outvariant@1.4.3: {} 3746 | 3747 | p-limit@3.1.0: 3748 | dependencies: 3749 | yocto-queue: 0.1.0 3750 | 3751 | p-locate@5.0.0: 3752 | dependencies: 3753 | p-limit: 3.1.0 3754 | 3755 | parent-module@1.0.1: 3756 | dependencies: 3757 | callsites: 3.1.0 3758 | 3759 | parse5@7.1.2: 3760 | dependencies: 3761 | entities: 4.5.0 3762 | 3763 | path-exists@4.0.0: {} 3764 | 3765 | path-key@3.1.1: {} 3766 | 3767 | path-parse@1.0.7: {} 3768 | 3769 | path-to-regexp@6.3.0: {} 3770 | 3771 | pathe@1.1.2: {} 3772 | 3773 | pathval@2.0.0: {} 3774 | 3775 | picocolors@1.1.0: {} 3776 | 3777 | picomatch@2.3.1: {} 3778 | 3779 | possible-typed-array-names@1.0.0: {} 3780 | 3781 | postcss@8.4.45: 3782 | dependencies: 3783 | nanoid: 3.3.7 3784 | picocolors: 1.1.0 3785 | source-map-js: 1.2.1 3786 | 3787 | prelude-ls@1.2.1: {} 3788 | 3789 | prettier@3.3.3: {} 3790 | 3791 | pretty-format@27.5.1: 3792 | dependencies: 3793 | ansi-regex: 5.0.1 3794 | ansi-styles: 5.2.0 3795 | react-is: 17.0.2 3796 | 3797 | prop-types@15.8.1: 3798 | dependencies: 3799 | loose-envify: 1.4.0 3800 | object-assign: 4.1.1 3801 | react-is: 16.13.1 3802 | 3803 | psl@1.9.0: {} 3804 | 3805 | punycode@2.3.1: {} 3806 | 3807 | querystringify@2.2.0: {} 3808 | 3809 | queue-microtask@1.2.3: {} 3810 | 3811 | react-dom@18.3.1(react@18.3.1): 3812 | dependencies: 3813 | loose-envify: 1.4.0 3814 | react: 18.3.1 3815 | scheduler: 0.23.2 3816 | 3817 | react-is@16.13.1: {} 3818 | 3819 | react-is@17.0.2: {} 3820 | 3821 | react-refresh@0.14.2: {} 3822 | 3823 | react@18.3.1: 3824 | dependencies: 3825 | loose-envify: 1.4.0 3826 | 3827 | redent@3.0.0: 3828 | dependencies: 3829 | indent-string: 4.0.0 3830 | strip-indent: 3.0.0 3831 | 3832 | reflect.getprototypeof@1.0.6: 3833 | dependencies: 3834 | call-bind: 1.0.7 3835 | define-properties: 1.2.1 3836 | es-abstract: 1.23.3 3837 | es-errors: 1.3.0 3838 | get-intrinsic: 1.2.4 3839 | globalthis: 1.0.4 3840 | which-builtin-type: 1.1.4 3841 | 3842 | regenerator-runtime@0.14.1: {} 3843 | 3844 | regexp.prototype.flags@1.5.2: 3845 | dependencies: 3846 | call-bind: 1.0.7 3847 | define-properties: 1.2.1 3848 | es-errors: 1.3.0 3849 | set-function-name: 2.0.2 3850 | 3851 | require-directory@2.1.1: {} 3852 | 3853 | requires-port@1.0.0: {} 3854 | 3855 | resolve-from@4.0.0: {} 3856 | 3857 | resolve@2.0.0-next.5: 3858 | dependencies: 3859 | is-core-module: 2.15.1 3860 | path-parse: 1.0.7 3861 | supports-preserve-symlinks-flag: 1.0.0 3862 | 3863 | reusify@1.0.4: {} 3864 | 3865 | rollup@4.21.2: 3866 | dependencies: 3867 | '@types/estree': 1.0.5 3868 | optionalDependencies: 3869 | '@rollup/rollup-android-arm-eabi': 4.21.2 3870 | '@rollup/rollup-android-arm64': 4.21.2 3871 | '@rollup/rollup-darwin-arm64': 4.21.2 3872 | '@rollup/rollup-darwin-x64': 4.21.2 3873 | '@rollup/rollup-linux-arm-gnueabihf': 4.21.2 3874 | '@rollup/rollup-linux-arm-musleabihf': 4.21.2 3875 | '@rollup/rollup-linux-arm64-gnu': 4.21.2 3876 | '@rollup/rollup-linux-arm64-musl': 4.21.2 3877 | '@rollup/rollup-linux-powerpc64le-gnu': 4.21.2 3878 | '@rollup/rollup-linux-riscv64-gnu': 4.21.2 3879 | '@rollup/rollup-linux-s390x-gnu': 4.21.2 3880 | '@rollup/rollup-linux-x64-gnu': 4.21.2 3881 | '@rollup/rollup-linux-x64-musl': 4.21.2 3882 | '@rollup/rollup-win32-arm64-msvc': 4.21.2 3883 | '@rollup/rollup-win32-ia32-msvc': 4.21.2 3884 | '@rollup/rollup-win32-x64-msvc': 4.21.2 3885 | fsevents: 2.3.3 3886 | 3887 | rrweb-cssom@0.7.1: {} 3888 | 3889 | run-parallel@1.2.0: 3890 | dependencies: 3891 | queue-microtask: 1.2.3 3892 | 3893 | safe-array-concat@1.1.2: 3894 | dependencies: 3895 | call-bind: 1.0.7 3896 | get-intrinsic: 1.2.4 3897 | has-symbols: 1.0.3 3898 | isarray: 2.0.5 3899 | 3900 | safe-regex-test@1.0.3: 3901 | dependencies: 3902 | call-bind: 1.0.7 3903 | es-errors: 1.3.0 3904 | is-regex: 1.1.4 3905 | 3906 | safer-buffer@2.1.2: {} 3907 | 3908 | saxes@6.0.0: 3909 | dependencies: 3910 | xmlchars: 2.2.0 3911 | 3912 | scheduler@0.23.2: 3913 | dependencies: 3914 | loose-envify: 1.4.0 3915 | 3916 | semver@6.3.1: {} 3917 | 3918 | set-function-length@1.2.2: 3919 | dependencies: 3920 | define-data-property: 1.1.4 3921 | es-errors: 1.3.0 3922 | function-bind: 1.1.2 3923 | get-intrinsic: 1.2.4 3924 | gopd: 1.0.1 3925 | has-property-descriptors: 1.0.2 3926 | 3927 | set-function-name@2.0.2: 3928 | dependencies: 3929 | define-data-property: 1.1.4 3930 | es-errors: 1.3.0 3931 | functions-have-names: 1.2.3 3932 | has-property-descriptors: 1.0.2 3933 | 3934 | shebang-command@2.0.0: 3935 | dependencies: 3936 | shebang-regex: 3.0.0 3937 | 3938 | shebang-regex@3.0.0: {} 3939 | 3940 | side-channel@1.0.6: 3941 | dependencies: 3942 | call-bind: 1.0.7 3943 | es-errors: 1.3.0 3944 | get-intrinsic: 1.2.4 3945 | object-inspect: 1.13.2 3946 | 3947 | siginfo@2.0.0: {} 3948 | 3949 | signal-exit@4.1.0: {} 3950 | 3951 | sirv@2.0.4: 3952 | dependencies: 3953 | '@polka/url': 1.0.0-next.25 3954 | mrmime: 2.0.0 3955 | totalist: 3.0.1 3956 | 3957 | source-map-js@1.2.1: {} 3958 | 3959 | stackback@0.0.2: {} 3960 | 3961 | statuses@2.0.1: {} 3962 | 3963 | std-env@3.7.0: {} 3964 | 3965 | strict-event-emitter@0.5.1: {} 3966 | 3967 | string-width@4.2.3: 3968 | dependencies: 3969 | emoji-regex: 8.0.0 3970 | is-fullwidth-code-point: 3.0.0 3971 | strip-ansi: 6.0.1 3972 | 3973 | string.prototype.matchall@4.0.11: 3974 | dependencies: 3975 | call-bind: 1.0.7 3976 | define-properties: 1.2.1 3977 | es-abstract: 1.23.3 3978 | es-errors: 1.3.0 3979 | es-object-atoms: 1.0.0 3980 | get-intrinsic: 1.2.4 3981 | gopd: 1.0.1 3982 | has-symbols: 1.0.3 3983 | internal-slot: 1.0.7 3984 | regexp.prototype.flags: 1.5.2 3985 | set-function-name: 2.0.2 3986 | side-channel: 1.0.6 3987 | 3988 | string.prototype.repeat@1.0.0: 3989 | dependencies: 3990 | define-properties: 1.2.1 3991 | es-abstract: 1.23.3 3992 | 3993 | string.prototype.trim@1.2.9: 3994 | dependencies: 3995 | call-bind: 1.0.7 3996 | define-properties: 1.2.1 3997 | es-abstract: 1.23.3 3998 | es-object-atoms: 1.0.0 3999 | 4000 | string.prototype.trimend@1.0.8: 4001 | dependencies: 4002 | call-bind: 1.0.7 4003 | define-properties: 1.2.1 4004 | es-object-atoms: 1.0.0 4005 | 4006 | string.prototype.trimstart@1.0.8: 4007 | dependencies: 4008 | call-bind: 1.0.7 4009 | define-properties: 1.2.1 4010 | es-object-atoms: 1.0.0 4011 | 4012 | strip-ansi@6.0.1: 4013 | dependencies: 4014 | ansi-regex: 5.0.1 4015 | 4016 | strip-indent@3.0.0: 4017 | dependencies: 4018 | min-indent: 1.0.1 4019 | 4020 | strip-json-comments@3.1.1: {} 4021 | 4022 | supports-color@5.5.0: 4023 | dependencies: 4024 | has-flag: 3.0.0 4025 | 4026 | supports-color@7.2.0: 4027 | dependencies: 4028 | has-flag: 4.0.0 4029 | 4030 | supports-preserve-symlinks-flag@1.0.0: {} 4031 | 4032 | symbol-tree@3.2.4: {} 4033 | 4034 | text-table@0.2.0: {} 4035 | 4036 | tinybench@2.9.0: {} 4037 | 4038 | tinyexec@0.3.0: {} 4039 | 4040 | tinypool@1.0.1: {} 4041 | 4042 | tinyrainbow@1.2.0: {} 4043 | 4044 | tinyspy@3.0.2: {} 4045 | 4046 | to-fast-properties@2.0.0: {} 4047 | 4048 | totalist@3.0.1: {} 4049 | 4050 | tough-cookie@4.1.4: 4051 | dependencies: 4052 | psl: 1.9.0 4053 | punycode: 2.3.1 4054 | universalify: 0.2.0 4055 | url-parse: 1.5.10 4056 | 4057 | tr46@5.0.0: 4058 | dependencies: 4059 | punycode: 2.3.1 4060 | 4061 | type-check@0.4.0: 4062 | dependencies: 4063 | prelude-ls: 1.2.1 4064 | 4065 | type-fest@0.21.3: {} 4066 | 4067 | type-fest@4.26.1: {} 4068 | 4069 | typed-array-buffer@1.0.2: 4070 | dependencies: 4071 | call-bind: 1.0.7 4072 | es-errors: 1.3.0 4073 | is-typed-array: 1.1.13 4074 | 4075 | typed-array-byte-length@1.0.1: 4076 | dependencies: 4077 | call-bind: 1.0.7 4078 | for-each: 0.3.3 4079 | gopd: 1.0.1 4080 | has-proto: 1.0.3 4081 | is-typed-array: 1.1.13 4082 | 4083 | typed-array-byte-offset@1.0.2: 4084 | dependencies: 4085 | available-typed-arrays: 1.0.7 4086 | call-bind: 1.0.7 4087 | for-each: 0.3.3 4088 | gopd: 1.0.1 4089 | has-proto: 1.0.3 4090 | is-typed-array: 1.1.13 4091 | 4092 | typed-array-length@1.0.6: 4093 | dependencies: 4094 | call-bind: 1.0.7 4095 | for-each: 0.3.3 4096 | gopd: 1.0.1 4097 | has-proto: 1.0.3 4098 | is-typed-array: 1.1.13 4099 | possible-typed-array-names: 1.0.0 4100 | 4101 | typescript@5.6.2: {} 4102 | 4103 | unbox-primitive@1.0.2: 4104 | dependencies: 4105 | call-bind: 1.0.7 4106 | has-bigints: 1.0.2 4107 | has-symbols: 1.0.3 4108 | which-boxed-primitive: 1.0.2 4109 | 4110 | undici-types@6.19.8: {} 4111 | 4112 | universalify@0.2.0: {} 4113 | 4114 | update-browserslist-db@1.1.0(browserslist@4.23.3): 4115 | dependencies: 4116 | browserslist: 4.23.3 4117 | escalade: 3.2.0 4118 | picocolors: 1.1.0 4119 | 4120 | uri-js@4.4.1: 4121 | dependencies: 4122 | punycode: 2.3.1 4123 | 4124 | url-parse@1.5.10: 4125 | dependencies: 4126 | querystringify: 2.2.0 4127 | requires-port: 1.0.0 4128 | 4129 | vite-node@2.1.1(@types/node@22.5.5): 4130 | dependencies: 4131 | cac: 6.7.14 4132 | debug: 4.3.7 4133 | pathe: 1.1.2 4134 | vite: 5.4.3(@types/node@22.5.5) 4135 | transitivePeerDependencies: 4136 | - '@types/node' 4137 | - less 4138 | - lightningcss 4139 | - sass 4140 | - sass-embedded 4141 | - stylus 4142 | - sugarss 4143 | - supports-color 4144 | - terser 4145 | 4146 | vite-plugin-babel@1.2.0(@babel/core@7.25.2)(vite@5.4.3(@types/node@22.5.5)): 4147 | dependencies: 4148 | '@babel/core': 7.25.2 4149 | vite: 5.4.3(@types/node@22.5.5) 4150 | 4151 | vite@5.4.3(@types/node@22.5.5): 4152 | dependencies: 4153 | esbuild: 0.23.1 4154 | postcss: 8.4.45 4155 | rollup: 4.21.2 4156 | optionalDependencies: 4157 | '@types/node': 22.5.5 4158 | fsevents: 2.3.3 4159 | 4160 | vitest@2.1.1(@types/node@22.5.5)(@vitest/browser@2.1.1)(jsdom@25.0.0)(msw@2.4.7(typescript@5.6.2)): 4161 | dependencies: 4162 | '@vitest/expect': 2.1.1 4163 | '@vitest/mocker': 2.1.1(@vitest/spy@2.1.1)(msw@2.4.7(typescript@5.6.2))(vite@5.4.3(@types/node@22.5.5)) 4164 | '@vitest/pretty-format': 2.1.1 4165 | '@vitest/runner': 2.1.1 4166 | '@vitest/snapshot': 2.1.1 4167 | '@vitest/spy': 2.1.1 4168 | '@vitest/utils': 2.1.1 4169 | chai: 5.1.1 4170 | debug: 4.3.7 4171 | magic-string: 0.30.11 4172 | pathe: 1.1.2 4173 | std-env: 3.7.0 4174 | tinybench: 2.9.0 4175 | tinyexec: 0.3.0 4176 | tinypool: 1.0.1 4177 | tinyrainbow: 1.2.0 4178 | vite: 5.4.3(@types/node@22.5.5) 4179 | vite-node: 2.1.1(@types/node@22.5.5) 4180 | why-is-node-running: 2.3.0 4181 | optionalDependencies: 4182 | '@types/node': 22.5.5 4183 | '@vitest/browser': 2.1.1(@vitest/spy@2.1.1)(typescript@5.6.2)(vite@5.4.3(@types/node@22.5.5))(vitest@2.1.1) 4184 | jsdom: 25.0.0 4185 | transitivePeerDependencies: 4186 | - less 4187 | - lightningcss 4188 | - msw 4189 | - sass 4190 | - sass-embedded 4191 | - stylus 4192 | - sugarss 4193 | - supports-color 4194 | - terser 4195 | 4196 | w3c-xmlserializer@5.0.0: 4197 | dependencies: 4198 | xml-name-validator: 5.0.0 4199 | 4200 | webidl-conversions@7.0.0: {} 4201 | 4202 | whatwg-encoding@3.1.1: 4203 | dependencies: 4204 | iconv-lite: 0.6.3 4205 | 4206 | whatwg-mimetype@4.0.0: {} 4207 | 4208 | whatwg-url@14.0.0: 4209 | dependencies: 4210 | tr46: 5.0.0 4211 | webidl-conversions: 7.0.0 4212 | 4213 | which-boxed-primitive@1.0.2: 4214 | dependencies: 4215 | is-bigint: 1.0.4 4216 | is-boolean-object: 1.1.2 4217 | is-number-object: 1.0.7 4218 | is-string: 1.0.7 4219 | is-symbol: 1.0.4 4220 | 4221 | which-builtin-type@1.1.4: 4222 | dependencies: 4223 | function.prototype.name: 1.1.6 4224 | has-tostringtag: 1.0.2 4225 | is-async-function: 2.0.0 4226 | is-date-object: 1.0.5 4227 | is-finalizationregistry: 1.0.2 4228 | is-generator-function: 1.0.10 4229 | is-regex: 1.1.4 4230 | is-weakref: 1.0.2 4231 | isarray: 2.0.5 4232 | which-boxed-primitive: 1.0.2 4233 | which-collection: 1.0.2 4234 | which-typed-array: 1.1.15 4235 | 4236 | which-collection@1.0.2: 4237 | dependencies: 4238 | is-map: 2.0.3 4239 | is-set: 2.0.3 4240 | is-weakmap: 2.0.2 4241 | is-weakset: 2.0.3 4242 | 4243 | which-typed-array@1.1.15: 4244 | dependencies: 4245 | available-typed-arrays: 1.0.7 4246 | call-bind: 1.0.7 4247 | for-each: 0.3.3 4248 | gopd: 1.0.1 4249 | has-tostringtag: 1.0.2 4250 | 4251 | which@2.0.2: 4252 | dependencies: 4253 | isexe: 2.0.0 4254 | 4255 | why-is-node-running@2.3.0: 4256 | dependencies: 4257 | siginfo: 2.0.0 4258 | stackback: 0.0.2 4259 | 4260 | word-wrap@1.2.5: {} 4261 | 4262 | wrap-ansi@6.2.0: 4263 | dependencies: 4264 | ansi-styles: 4.3.0 4265 | string-width: 4.2.3 4266 | strip-ansi: 6.0.1 4267 | 4268 | wrap-ansi@7.0.0: 4269 | dependencies: 4270 | ansi-styles: 4.3.0 4271 | string-width: 4.2.3 4272 | strip-ansi: 6.0.1 4273 | 4274 | ws@8.18.0: {} 4275 | 4276 | xml-name-validator@5.0.0: {} 4277 | 4278 | xmlchars@2.2.0: {} 4279 | 4280 | y18n@5.0.8: {} 4281 | 4282 | yallist@3.1.1: {} 4283 | 4284 | yargs-parser@21.1.1: {} 4285 | 4286 | yargs@17.7.2: 4287 | dependencies: 4288 | cliui: 8.0.1 4289 | escalade: 3.2.0 4290 | get-caller-file: 2.0.5 4291 | require-directory: 2.1.1 4292 | string-width: 4.2.3 4293 | y18n: 5.0.8 4294 | yargs-parser: 21.1.1 4295 | 4296 | yocto-queue@0.1.0: {} 4297 | 4298 | yoctocolors-cjs@2.1.2: {} 4299 | -------------------------------------------------------------------------------- /public/vite.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | #root { 2 | max-width: 1280px; 3 | margin: 0 auto; 4 | padding: 2rem; 5 | text-align: center; 6 | } 7 | 8 | .logo { 9 | height: 6em; 10 | padding: 1.5em; 11 | will-change: filter; 12 | transition: filter 300ms; 13 | } 14 | .logo:hover { 15 | filter: drop-shadow(0 0 2em #646cffaa); 16 | } 17 | .logo.react:hover { 18 | filter: drop-shadow(0 0 2em #61dafbaa); 19 | } 20 | 21 | @keyframes logo-spin { 22 | from { 23 | transform: rotate(0deg); 24 | } 25 | to { 26 | transform: rotate(360deg); 27 | } 28 | } 29 | 30 | @media (prefers-reduced-motion: no-preference) { 31 | a:nth-of-type(2) .logo { 32 | animation: logo-spin infinite 20s linear; 33 | } 34 | } 35 | 36 | .card { 37 | padding: 2em; 38 | } 39 | 40 | .read-the-docs { 41 | color: #888; 42 | } 43 | -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import reactLogo from './assets/react.svg'; 3 | import './App.css'; 4 | 5 | import { useState, useHooks } from './classy-react'; 6 | 7 | export default @useHooks class App { 8 | @useState accessor count = 5; 9 | 10 | render = () => { 11 | return ( 12 | <> 13 |
14 | 15 | React logo 16 | 17 |
18 |

Classy React

19 |
20 | 21 |
22 | 23 | ); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/assets/react.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/classy-react.js: -------------------------------------------------------------------------------- 1 | import * as ReactStuff from "react"; 2 | 3 | export const useState = wrap(ReactStuff.useState); 4 | 5 | const HOOKS = Symbol.for("__HONKS__"); 6 | const RULE_OF_HOOKS = Symbol.for("__RULEs_OF_HONKS__"); 7 | const CURRENT_VALUES = Symbol.for("__CURRENT_VALUES__"); 8 | 9 | export function useHooks(klass) { 10 | class RuleOfHooks extends klass { 11 | // hook initializer => hook-return-value 12 | [HOOKS] = new WeakMap(); 13 | // Because hooks-data is stale after a set (but before re-render) 14 | // we have to double up on the data storage so that this works: 15 | // 16 | // this.value #=> 1 17 | // this.value = 2 18 | // this.value #=> 2 19 | // 20 | // Without this storage, we'd have to wait for React to re-render 21 | // before we read the value again. 22 | [CURRENT_VALUES] = new WeakMap(); 23 | } 24 | 25 | return function () { 26 | // eslint-disable-next-line react-hooks/rules-of-hooks 27 | const [instance] = ReactStuff.useState(() => new RuleOfHooks()); 28 | /** 29 | * We need hooks to "re-run" every time a copmonent 30 | * renders, so we have to do this to trick react 31 | * in to thinking we aren't breaking the rules of hooks. 32 | * 33 | * This is bad for perf, but it's what folks do normally 34 | * in function-components anyway. 35 | */ 36 | instance[RULE_OF_HOOKS].forEach((hookInit) => { 37 | let value = hookInit(); 38 | instance[HOOKS].set(hookInit, value); 39 | }); 40 | 41 | return instance.render(); 42 | }; 43 | } 44 | 45 | export function wrap(hook) { 46 | return function decorated(target /*, context */) { 47 | const { get } = target; 48 | 49 | return { 50 | get() { 51 | let init = get.call(this); 52 | let current = this[CURRENT_VALUES].get(init); 53 | 54 | /** 55 | * See note above about why this is needed. 56 | * (and why in idiomatic function-React, you have to use 57 | * useCallback. 58 | */ 59 | if (current) { 60 | return current; 61 | } 62 | 63 | let tuple = this[HOOKS].get(init); 64 | return tuple[0]; 65 | }, 66 | set(value) { 67 | let init = get.call(this); 68 | let tuple = this[HOOKS].get(init); 69 | this[CURRENT_VALUES].set(init, value); 70 | return tuple[1](value); 71 | }, 72 | init(initialValue) { 73 | let init = () => { 74 | return hook(initialValue); 75 | }; 76 | 77 | this[RULE_OF_HOOKS] ||= []; 78 | this[RULE_OF_HOOKS].push(init); 79 | return init; 80 | }, 81 | }; 82 | }; 83 | } 84 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | :root { 2 | font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif; 3 | line-height: 1.5; 4 | font-weight: 400; 5 | 6 | color-scheme: light dark; 7 | color: rgba(255, 255, 255, 0.87); 8 | background-color: #242424; 9 | 10 | font-synthesis: none; 11 | text-rendering: optimizeLegibility; 12 | -webkit-font-smoothing: antialiased; 13 | -moz-osx-font-smoothing: grayscale; 14 | } 15 | 16 | a { 17 | font-weight: 500; 18 | color: #646cff; 19 | text-decoration: inherit; 20 | } 21 | a:hover { 22 | color: #535bf2; 23 | } 24 | 25 | body { 26 | margin: 0; 27 | display: flex; 28 | place-items: center; 29 | min-width: 320px; 30 | min-height: 100vh; 31 | } 32 | 33 | h1 { 34 | font-size: 3.2em; 35 | line-height: 1.1; 36 | } 37 | 38 | button { 39 | border-radius: 8px; 40 | border: 1px solid transparent; 41 | padding: 0.6em 1.2em; 42 | font-size: 1em; 43 | font-weight: 500; 44 | font-family: inherit; 45 | background-color: #1a1a1a; 46 | cursor: pointer; 47 | transition: border-color 0.25s; 48 | } 49 | button:hover { 50 | border-color: #646cff; 51 | } 52 | button:focus, 53 | button:focus-visible { 54 | outline: 4px auto -webkit-focus-ring-color; 55 | } 56 | 57 | @media (prefers-color-scheme: light) { 58 | :root { 59 | color: #213547; 60 | background-color: #ffffff; 61 | } 62 | a:hover { 63 | color: #747bff; 64 | } 65 | button { 66 | background-color: #f9f9f9; 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | import { StrictMode } from 'react' 3 | import { createRoot } from 'react-dom/client' 4 | import App from './App.jsx' 5 | import './index.css' 6 | 7 | createRoot(document.getElementById('root')).render( 8 | 9 | 10 | , 11 | ) 12 | -------------------------------------------------------------------------------- /tests/basic.test.jsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import { describe, it, expect } from 'vitest'; 3 | import { render, screen } from '@testing-library/react' 4 | import userEvent from '@testing-library/user-event' 5 | 6 | import { useState, useHooks } from '../src/classy-react.js'; 7 | 8 | describe('is Glitch Free (a non-standard behavior for React)', () => { 9 | it('incrementer works', async () => { 10 | @useHooks class Counter { 11 | @useState accessor count = 0; 12 | 13 | render = () => { 14 | return ( 15 | <> 16 | 17 | 18 | ); 19 | } 20 | } 21 | 22 | render() 23 | 24 | let button = screen.getByRole('button'); 25 | 26 | expect(button.innerHTML).toEqual('0'); 27 | await userEvent.click(button) 28 | expect(button.innerHTML).toEqual('1'); 29 | 30 | }) 31 | 32 | it('with a bound function', async () => { 33 | @useHooks class Counter { 34 | @useState accessor count = 0; 35 | 36 | inc = () => this.count++; 37 | 38 | render = () => { 39 | return ( 40 | <> 41 | {this.count} 42 | 43 | 44 | ); 45 | } 46 | } 47 | 48 | render() 49 | 50 | let button = screen.getByRole('button'); 51 | 52 | expect(button.innerHTML).toEqual('0'); 53 | await userEvent.click(button) 54 | expect(button.innerHTML).toEqual('1'); 55 | }) 56 | 57 | it('accessing count and setting it makes sense', async () => { 58 | let expectations = []; 59 | @useHooks class Counter { 60 | @useState accessor count = 0; 61 | 62 | inc = () => { 63 | expectations.push(this.count); 64 | this.count++; 65 | expectations.push(this.count); 66 | } 67 | 68 | render = () => { 69 | return ( 70 | <> 71 | {this.count} 72 | 73 | 74 | ); 75 | } 76 | } 77 | 78 | render() 79 | 80 | let button = screen.getByRole('button'); 81 | 82 | expect(button.innerHTML).toEqual('0'); 83 | await userEvent.click(button) 84 | expect(button.innerHTML).toEqual('1'); 85 | 86 | expect(expectations).to.deep.equal([0, 1]); 87 | }) 88 | }) 89 | -------------------------------------------------------------------------------- /tests/setup.js: -------------------------------------------------------------------------------- 1 | import { afterEach } from "vitest"; 2 | import { cleanup } from "@testing-library/react"; 3 | import "@testing-library/jest-dom/vitest"; 4 | 5 | // runs a clean after each test case (e.g. clearing jsdom) 6 | afterEach(() => { 7 | cleanup(); 8 | }); 9 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://json.schemastore.org/tsconfig", 3 | "extends": "@tsconfig/strictest/tsconfig.json", 4 | "include": ["src", "tests"], 5 | "exclude": ["dist", "declarations"], 6 | "compilerOptions": { 7 | "target": "esnext", 8 | "module": "preserve", 9 | "moduleResolution": "bundler", 10 | "declaration": true, 11 | "emitDeclarationOnly": true, 12 | "checkJs": false, 13 | "jsx": "react-jsx", 14 | 15 | /** 16 | Stylistic / linting. Does not provide extra type safety. 17 | */ 18 | "noPropertyAccessFromIndexSignature": false, 19 | 20 | /** 21 | https://www.typescriptlang.org/tsconfig#allowImportingTsExtensions 22 | 23 | We want our tooling to know how to resolve our custom files so the appropriate plugins 24 | can do the proper transformations on those files. 25 | */ 26 | "allowImportingTsExtensions": true, 27 | 28 | /** 29 | We don't want to include types dependencies in our compiled output, so tell TypeScript 30 | to enforce using `import type` instead of `import` for Types. 31 | */ 32 | "verbatimModuleSyntax": true, 33 | 34 | /** 35 | Don't implicitly pull in declarations from `@types` packages unless we 36 | actually import from them AND the package in question doesn't bring its 37 | own types. You may wish to override this e.g. with `"types": ["node"]` 38 | if your project has build-time elements that use NodeJS APIs. 39 | */ 40 | "types": [], 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vite"; 2 | import react from "@vitejs/plugin-react"; 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | esbuild: false, 7 | plugins: [ 8 | react({ 9 | babelrc: false, 10 | configFile: false, 11 | babel: { 12 | plugins: [ 13 | "@babel/plugin-syntax-jsx", 14 | "@babel/plugin-transform-react-jsx", 15 | ["@babel/plugin-proposal-decorators", { version: "2023-11" }], 16 | ], 17 | }, 18 | }), 19 | ], 20 | }); 21 | -------------------------------------------------------------------------------- /vitest.config.js: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vitest/config"; 2 | 3 | export default defineConfig({ 4 | test: { 5 | setupFiles: ["./tests/setup.js"], 6 | environment: "jsdom", 7 | }, 8 | }); 9 | --------------------------------------------------------------------------------