├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── eslint.config.js ├── index.html ├── package-lock.json ├── package.json ├── public └── images │ ├── meetingsdk-web-client-view.gif │ └── meetingsdk-web-component-view.gif ├── src ├── App-New.tsx ├── App.css ├── App.tsx ├── index.css ├── logo.svg ├── main.tsx ├── reportWebVitals.js ├── setupTests.js └── vite-env.d.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | pnpm-debug.log* 8 | lerna-debug.log* 9 | 10 | node_modules 11 | dist 12 | dist-ssr 13 | *.local 14 | 15 | # Editor directories and files 16 | .vscode/* 17 | !.vscode/extensions.json 18 | .idea 19 | .DS_Store 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | 2 | # Contributor Covenant Code of Conduct 3 | 4 | ## Our Pledge 5 | 6 | We as members, contributors, and leaders pledge to make participation in our 7 | community a harassment-free experience for everyone, regardless of age, body 8 | size, visible or invisible disability, ethnicity, sex characteristics, gender 9 | identity and expression, level of experience, education, socio-economic status, 10 | nationality, personal appearance, race, caste, color, religion, or sexual identity 11 | and orientation. 12 | 13 | We pledge to act and interact in ways that contribute to an open, welcoming, 14 | diverse, inclusive, and healthy community. 15 | 16 | ## Our Standards 17 | 18 | Examples of behavior that contributes to a positive environment for our 19 | community include: 20 | 21 | * Demonstrating empathy and kindness toward other people 22 | * Being respectful of differing opinions, viewpoints, and experiences 23 | * Giving and gracefully accepting constructive feedback 24 | * Accepting responsibility and apologizing to those affected by our mistakes, 25 | and learning from the experience 26 | * Focusing on what is best not just for us as individuals, but for the 27 | overall community 28 | 29 | Examples of unacceptable behavior include: 30 | 31 | * The use of sexualized language or imagery, and sexual attention or 32 | advances of any kind 33 | * Trolling, insulting or derogatory comments, and personal or political attacks 34 | * Public or private harassment 35 | * Publishing others' private information, such as a physical or email 36 | address, without their explicit permission 37 | * Other conduct which could reasonably be considered inappropriate in a 38 | professional setting 39 | 40 | ## Enforcement Responsibilities 41 | 42 | Community leaders are responsible for clarifying and enforcing our standards of 43 | acceptable behavior and will take appropriate and fair corrective action in 44 | response to any behavior that they deem inappropriate, threatening, offensive, 45 | or harmful. 46 | 47 | Community leaders have the right and responsibility to remove, edit, or reject 48 | comments, commits, code, wiki edits, issues, and other contributions that are 49 | not aligned to this Code of Conduct, and will communicate reasons for moderation 50 | decisions when appropriate. 51 | 52 | ## Scope 53 | 54 | This Code of Conduct applies within all community spaces, and also applies when 55 | an individual is officially representing the community in public spaces. 56 | Examples of representing our community include using an official e-mail address, 57 | posting via an official social media account, or acting as an appointed 58 | representative at an online or offline event. 59 | 60 | ## Enforcement 61 | 62 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 63 | reported to the community leaders responsible for enforcement at 64 | [INSERT CONTACT METHOD]. 65 | All complaints will be reviewed and investigated promptly and fairly. 66 | 67 | All community leaders are obligated to respect the privacy and security of the 68 | reporter of any incident. 69 | 70 | ## Enforcement Guidelines 71 | 72 | Community leaders will follow these Community Impact Guidelines in determining 73 | the consequences for any action they deem in violation of this Code of Conduct: 74 | 75 | ### 1. Correction 76 | 77 | **Community Impact**: Use of inappropriate language or other behavior deemed 78 | unprofessional or unwelcome in the community. 79 | 80 | **Consequence**: A private, written warning from community leaders, providing 81 | clarity around the nature of the violation and an explanation of why the 82 | behavior was inappropriate. A public apology may be requested. 83 | 84 | ### 2. Warning 85 | 86 | **Community Impact**: A violation through a single incident or series 87 | of actions. 88 | 89 | **Consequence**: A warning with consequences for continued behavior. No 90 | interaction with the people involved, including unsolicited interaction with 91 | those enforcing the Code of Conduct, for a specified period of time. This 92 | includes avoiding interactions in community spaces as well as external channels 93 | like social media. Violating these terms may lead to a temporary or 94 | permanent ban. 95 | 96 | ### 3. Temporary Ban 97 | 98 | **Community Impact**: A serious violation of community standards, including 99 | sustained inappropriate behavior. 100 | 101 | **Consequence**: A temporary ban from any sort of interaction or public 102 | communication with the community for a specified period of time. No public or 103 | private interaction with the people involved, including unsolicited interaction 104 | with those enforcing the Code of Conduct, is allowed during this period. 105 | Violating these terms may lead to a permanent ban. 106 | 107 | ### 4. Permanent Ban 108 | 109 | **Community Impact**: Demonstrating a pattern of violation of community 110 | standards, including sustained inappropriate behavior, harassment of an 111 | individual, or aggression toward or disparagement of classes of individuals. 112 | 113 | **Consequence**: A permanent ban from any sort of public interaction within 114 | the community. 115 | 116 | ## Attribution 117 | 118 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 119 | version 2.0, available at 120 | [https://www.contributor-covenant.org/version/2/0/code_of_conduct.html][v2.0]. 121 | 122 | Community Impact Guidelines were inspired by 123 | [Mozilla's code of conduct enforcement ladder][Mozilla CoC]. 124 | 125 | For answers to common questions about this code of conduct, see the FAQ at 126 | [https://www.contributor-covenant.org/faq][FAQ]. Translations are available 127 | at [https://www.contributor-covenant.org/translations][translations]. 128 | 129 | [homepage]: https://www.contributor-covenant.org 130 | [v2.0]: https://www.contributor-covenant.org/version/2/0/code_of_conduct.html 131 | [Mozilla CoC]: https://github.com/mozilla/diversity 132 | [FAQ]: https://www.contributor-covenant.org/faq 133 | [translations]: https://www.contributor-covenant.org/translations 134 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Use of this sample app is subject to our [Terms of Use](https://zoom.us/docs/en-us/zoom_api_license_and_tou.html). -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Zoom Meeting SDK React sample 2 | 3 | Use of this sample app is subject to our [Terms of Use](https://explore.zoom.us/en/legal/zoom-api-license-and-tou/). 4 | 5 | 6 | This repo is a [React](https://reactjs.org/) app generated via [Vite](https://vitejs.dev/) that uses the [Zoom Meeting SDK](https://developers.zoom.us/docs/meeting-sdk/web/) to start and join Zoom meetings and webinars. 7 | 8 | ![Zoom Meeting SDK Client View](/public/images/meetingsdk-web-client-view.gif) 9 | 10 | ## Installation 11 | 12 | To get started, clone the repo: 13 | 14 | `$ git clone https://github.com/zoom/meetingsdk-react-sample.git` 15 | 16 | ## Setup 17 | 18 | 1. Once cloned, navigate to the `meetingsdk-react-sample` directory: 19 | 20 | `$ cd meetingsdk-react-sample` 21 | 22 | 1. Then install the dependencies: 23 | 24 | `$ npm install` 25 | 26 | 1. Open the `meetingsdk-react-sample` directory in your code editor. 27 | 28 | 1. Open the `src/App.tsx` file, and enter values for the variables: 29 | 30 | **NEW:** To use the [Component View](https://developers.zoom.us/docs/meeting-sdk/web/component-view/), replace `App.tsx` with `App-New.tsx`. (The `leaveUrl` is not needed). 31 | 32 | | Variable | Description | 33 | | -----------------------|-------------| 34 | | authEndpoint | Required, your Meeting SDK auth endpoint that securely generates a Meeting SDK JWT. [Get a Meeting SDK auth endpoint here.](https://github.com/zoom/meetingsdk-sample-signature-node.js) | 35 | | sdkKey | Required, your Zoom Meeting SDK Key or Client ID for Meeting SDK app type's created after February 11, 2023. [You can get yours here](https://developers.zoom.us/docs/meeting-sdk/developer-accounts/#get-meeting-sdk-credentials). | 36 | | meetingNumber | Required, the Zoom Meeting or webinar number. | 37 | | passWord | Optional, meeting password. Leave as empty string if the meeting does not require a password. | 38 | | role | Required, `0` to specify participant, `1` to specify host. | 39 | | userName | Required, a name for the user joining / starting the meeting / webinar. | 40 | | userEmail | Required for Webinar, optional for Meeting, required for meeting and webinar if [registration is required](https://support.zoom.us/hc/en-us/articles/360054446052-Managing-meeting-and-webinar-registration). The email of the user starting or joining the meeting / webinar. | 41 | | registrantToken | Required if your [meeting](https://developers.zoom.us/docs/meeting-sdk/web/client-view/meetings/#join-meeting-with-registration-required) or [webinar](https://developers.zoom.us/docs/meeting-sdk/web/client-view/webinars/#join-webinar-with-registration-required) requires [registration](https://support.zoom.us/hc/en-us/articles/360054446052-Managing-meeting-and-webinar-registration). | 42 | | zakToken | Required to start meetings or webinars on external Zoom user's behalf, the [authorized Zoom user's ZAK token](https://developers.zoom.us/docs/meeting-sdk/auth/#start-meetings-and-webinars-with-a-zoom-users-zak-token). The ZAK can also be used to join as an [authenticated participant](https://support.zoom.com/hc/en/article?id=zm_kb&sysparm_article=KB0063837). | 43 | | leaveUrl | Required for Client View, the url the user is taken to once the meeting is over. | 44 | 45 | Example: 46 | 47 | ```js 48 | var authEndpoint = 'http://localhost:4000' 49 | var sdkKey = 'abc123' 50 | var meetingNumber = '123456789' 51 | var passWord = '' 52 | var role = 0 53 | var userName = 'React' 54 | var userEmail = '' 55 | var registrantToken = '' 56 | var zakToken = '' 57 | var leaveUrl = 'http://localhost:5173' 58 | ``` 59 | 60 | 1. Save `App.tsx`. 61 | 62 | 1. Run the app: 63 | 64 | `$ npm run dev` 65 | 66 | ## Usage 67 | 68 | 1. Navigate to http://localhost:5173 and click "Join Meeting". 69 | 70 | ### Client View 71 | 72 | ![Zoom Meeting SDK Client View](/public/images/meetingsdk-web-client-view.gif) 73 | 74 | ### Component View 75 | 76 | ![Zoom Meeting SDK Component View](/public/images/meetingsdk-web-component-view.gif) 77 | 78 | Learn more about [Gallery View requirements](https://developers.zoom.us/docs/meeting-sdk/web/gallery-view/) and [see more product screenshots](https://developers.zoom.us/docs/meeting-sdk/web/gallery-view/#how-views-look-with-and-without-sharedarraybuffer). 79 | 80 | ## Deployment 81 | 82 | The React Sample App can be easily deployed to [GitHub Pages](#github-pages), or [another static web hosting service](#other-static-web-hosting), like an AWS S3 bucket. 83 | 84 | ### GitHub Pages 85 | 86 | 1. Clone this repo and configure the `authEndpoint`. 87 | 88 | 1. Create a new repo on [GitHub](https://github.com). 89 | 90 | 1. Add the remote to your project: 91 | 92 | `$ git remote add myorigin GITHUB_URL/GITHUB_USERNAME/GITHUB_REPO_NAME.git` 93 | 94 | 1. Open the `vite.config.ts` file and add `base: "/GITHUB_REPO_NAME/"` in the `defineConfig` helper. 95 | 96 | 1. Build your project: 97 | 98 | `$ npm run build` 99 | 100 | 1. Rename the `build` folder to `docs` 101 | 102 | 1. Git add, commit, and push your project: 103 | 104 | `$ git add -A` 105 | 106 | `$ git commit -m "deploying to github"` 107 | 108 | `$ git push myorigin main` 109 | 110 | 1. On GitHub, in your repo, navigate to the "settings" page, scroll down to the "GitHub Pages" section, and choose the "main" branch and "/docs" folder for the source. 111 | 112 | 1. Now your project will be deployed to https://GITHUB_USERNAME.github.io/GITHUB_REPO_NAME. 113 | 114 | ### Other Static Web Hosting 115 | 116 | 1. Build your project: 117 | 118 | `$ npm run build` 119 | 120 | 1. Deploy the complied `/build` directory to a static web hosting service, like an AWS S3 bucket. 121 | 122 | ### Advanced Deployment 123 | 124 | For more advanced instructions on deployment, [see the Vite Deployment docs](https://vitejs.dev/guide/build.html#deployment). 125 | 126 | ## Need help? 127 | 128 | If you're looking for help, try [Developer Support](https://devsupport.zoom.us) or our [Developer Forum](https://devforum.zoom.us). Priority support is also available with [Premier Developer Support](https://explore.zoom.us/docs/en-us/developer-support-plans.html) plans. 129 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import js from '@eslint/js' 2 | import globals from 'globals' 3 | import reactHooks from 'eslint-plugin-react-hooks' 4 | import reactRefresh from 'eslint-plugin-react-refresh' 5 | import tseslint from 'typescript-eslint' 6 | 7 | export default tseslint.config({ 8 | extends: [js.configs.recommended, ...tseslint.configs.recommended], 9 | files: ['**/*.{ts,tsx}'], 10 | ignores: ['dist'], 11 | languageOptions: { 12 | ecmaVersion: 2020, 13 | globals: globals.browser, 14 | }, 15 | plugins: { 16 | 'react-hooks': reactHooks, 17 | 'react-refresh': reactRefresh, 18 | }, 19 | rules: { 20 | ...reactHooks.configs.recommended.rules, 21 | 'react-refresh/only-export-components': [ 22 | 'warn', 23 | { allowConstantExport: true }, 24 | ], 25 | }, 26 | }) 27 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Zoom Meeting SDK Sample React 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "meetingsdk-react-sample", 3 | "version": "3.13.1", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "meetingsdk-react-sample", 9 | "version": "3.13.1", 10 | "dependencies": { 11 | "@zoom/meetingsdk": "^3.13.1", 12 | "react": "^18.3.1", 13 | "react-dom": "^18.3.1" 14 | }, 15 | "devDependencies": { 16 | "@eslint/js": "^9.8.0", 17 | "@types/react": "^18.3.3", 18 | "@types/react-dom": "^18.3.0", 19 | "@vitejs/plugin-react-swc": "^3.5.0", 20 | "eslint": "^9.8.0", 21 | "eslint-plugin-react-hooks": "^5.1.0-rc.0", 22 | "eslint-plugin-react-refresh": "^0.4.9", 23 | "globals": "^15.9.0", 24 | "typescript": "^5.5.3", 25 | "typescript-eslint": "^8.0.0", 26 | "vite": "^5.4.0" 27 | } 28 | }, 29 | "node_modules/@aashutoshrathi/word-wrap": { 30 | "version": "1.2.6", 31 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 32 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 33 | "dev": true, 34 | "engines": { 35 | "node": ">=0.10.0" 36 | } 37 | }, 38 | "node_modules/@babel/runtime": { 39 | "version": "7.27.0", 40 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.0.tgz", 41 | "integrity": "sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==", 42 | "license": "MIT", 43 | "dependencies": { 44 | "regenerator-runtime": "^0.14.0" 45 | }, 46 | "engines": { 47 | "node": ">=6.9.0" 48 | } 49 | }, 50 | "node_modules/@esbuild/aix-ppc64": { 51 | "version": "0.21.5", 52 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", 53 | "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", 54 | "cpu": [ 55 | "ppc64" 56 | ], 57 | "dev": true, 58 | "optional": true, 59 | "os": [ 60 | "aix" 61 | ], 62 | "engines": { 63 | "node": ">=12" 64 | } 65 | }, 66 | "node_modules/@esbuild/android-arm": { 67 | "version": "0.21.5", 68 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", 69 | "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", 70 | "cpu": [ 71 | "arm" 72 | ], 73 | "dev": true, 74 | "optional": true, 75 | "os": [ 76 | "android" 77 | ], 78 | "engines": { 79 | "node": ">=12" 80 | } 81 | }, 82 | "node_modules/@esbuild/android-arm64": { 83 | "version": "0.21.5", 84 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", 85 | "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", 86 | "cpu": [ 87 | "arm64" 88 | ], 89 | "dev": true, 90 | "optional": true, 91 | "os": [ 92 | "android" 93 | ], 94 | "engines": { 95 | "node": ">=12" 96 | } 97 | }, 98 | "node_modules/@esbuild/android-x64": { 99 | "version": "0.21.5", 100 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", 101 | "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", 102 | "cpu": [ 103 | "x64" 104 | ], 105 | "dev": true, 106 | "optional": true, 107 | "os": [ 108 | "android" 109 | ], 110 | "engines": { 111 | "node": ">=12" 112 | } 113 | }, 114 | "node_modules/@esbuild/darwin-arm64": { 115 | "version": "0.21.5", 116 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", 117 | "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", 118 | "cpu": [ 119 | "arm64" 120 | ], 121 | "dev": true, 122 | "optional": true, 123 | "os": [ 124 | "darwin" 125 | ], 126 | "engines": { 127 | "node": ">=12" 128 | } 129 | }, 130 | "node_modules/@esbuild/darwin-x64": { 131 | "version": "0.21.5", 132 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", 133 | "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", 134 | "cpu": [ 135 | "x64" 136 | ], 137 | "dev": true, 138 | "optional": true, 139 | "os": [ 140 | "darwin" 141 | ], 142 | "engines": { 143 | "node": ">=12" 144 | } 145 | }, 146 | "node_modules/@esbuild/freebsd-arm64": { 147 | "version": "0.21.5", 148 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", 149 | "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", 150 | "cpu": [ 151 | "arm64" 152 | ], 153 | "dev": true, 154 | "optional": true, 155 | "os": [ 156 | "freebsd" 157 | ], 158 | "engines": { 159 | "node": ">=12" 160 | } 161 | }, 162 | "node_modules/@esbuild/freebsd-x64": { 163 | "version": "0.21.5", 164 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", 165 | "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", 166 | "cpu": [ 167 | "x64" 168 | ], 169 | "dev": true, 170 | "optional": true, 171 | "os": [ 172 | "freebsd" 173 | ], 174 | "engines": { 175 | "node": ">=12" 176 | } 177 | }, 178 | "node_modules/@esbuild/linux-arm": { 179 | "version": "0.21.5", 180 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", 181 | "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", 182 | "cpu": [ 183 | "arm" 184 | ], 185 | "dev": true, 186 | "optional": true, 187 | "os": [ 188 | "linux" 189 | ], 190 | "engines": { 191 | "node": ">=12" 192 | } 193 | }, 194 | "node_modules/@esbuild/linux-arm64": { 195 | "version": "0.21.5", 196 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", 197 | "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", 198 | "cpu": [ 199 | "arm64" 200 | ], 201 | "dev": true, 202 | "optional": true, 203 | "os": [ 204 | "linux" 205 | ], 206 | "engines": { 207 | "node": ">=12" 208 | } 209 | }, 210 | "node_modules/@esbuild/linux-ia32": { 211 | "version": "0.21.5", 212 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", 213 | "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", 214 | "cpu": [ 215 | "ia32" 216 | ], 217 | "dev": true, 218 | "optional": true, 219 | "os": [ 220 | "linux" 221 | ], 222 | "engines": { 223 | "node": ">=12" 224 | } 225 | }, 226 | "node_modules/@esbuild/linux-loong64": { 227 | "version": "0.21.5", 228 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", 229 | "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", 230 | "cpu": [ 231 | "loong64" 232 | ], 233 | "dev": true, 234 | "optional": true, 235 | "os": [ 236 | "linux" 237 | ], 238 | "engines": { 239 | "node": ">=12" 240 | } 241 | }, 242 | "node_modules/@esbuild/linux-mips64el": { 243 | "version": "0.21.5", 244 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", 245 | "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", 246 | "cpu": [ 247 | "mips64el" 248 | ], 249 | "dev": true, 250 | "optional": true, 251 | "os": [ 252 | "linux" 253 | ], 254 | "engines": { 255 | "node": ">=12" 256 | } 257 | }, 258 | "node_modules/@esbuild/linux-ppc64": { 259 | "version": "0.21.5", 260 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", 261 | "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", 262 | "cpu": [ 263 | "ppc64" 264 | ], 265 | "dev": true, 266 | "optional": true, 267 | "os": [ 268 | "linux" 269 | ], 270 | "engines": { 271 | "node": ">=12" 272 | } 273 | }, 274 | "node_modules/@esbuild/linux-riscv64": { 275 | "version": "0.21.5", 276 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", 277 | "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", 278 | "cpu": [ 279 | "riscv64" 280 | ], 281 | "dev": true, 282 | "optional": true, 283 | "os": [ 284 | "linux" 285 | ], 286 | "engines": { 287 | "node": ">=12" 288 | } 289 | }, 290 | "node_modules/@esbuild/linux-s390x": { 291 | "version": "0.21.5", 292 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", 293 | "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", 294 | "cpu": [ 295 | "s390x" 296 | ], 297 | "dev": true, 298 | "optional": true, 299 | "os": [ 300 | "linux" 301 | ], 302 | "engines": { 303 | "node": ">=12" 304 | } 305 | }, 306 | "node_modules/@esbuild/linux-x64": { 307 | "version": "0.21.5", 308 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", 309 | "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", 310 | "cpu": [ 311 | "x64" 312 | ], 313 | "dev": true, 314 | "optional": true, 315 | "os": [ 316 | "linux" 317 | ], 318 | "engines": { 319 | "node": ">=12" 320 | } 321 | }, 322 | "node_modules/@esbuild/netbsd-x64": { 323 | "version": "0.21.5", 324 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", 325 | "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", 326 | "cpu": [ 327 | "x64" 328 | ], 329 | "dev": true, 330 | "optional": true, 331 | "os": [ 332 | "netbsd" 333 | ], 334 | "engines": { 335 | "node": ">=12" 336 | } 337 | }, 338 | "node_modules/@esbuild/openbsd-x64": { 339 | "version": "0.21.5", 340 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", 341 | "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", 342 | "cpu": [ 343 | "x64" 344 | ], 345 | "dev": true, 346 | "optional": true, 347 | "os": [ 348 | "openbsd" 349 | ], 350 | "engines": { 351 | "node": ">=12" 352 | } 353 | }, 354 | "node_modules/@esbuild/sunos-x64": { 355 | "version": "0.21.5", 356 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", 357 | "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", 358 | "cpu": [ 359 | "x64" 360 | ], 361 | "dev": true, 362 | "optional": true, 363 | "os": [ 364 | "sunos" 365 | ], 366 | "engines": { 367 | "node": ">=12" 368 | } 369 | }, 370 | "node_modules/@esbuild/win32-arm64": { 371 | "version": "0.21.5", 372 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", 373 | "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", 374 | "cpu": [ 375 | "arm64" 376 | ], 377 | "dev": true, 378 | "optional": true, 379 | "os": [ 380 | "win32" 381 | ], 382 | "engines": { 383 | "node": ">=12" 384 | } 385 | }, 386 | "node_modules/@esbuild/win32-ia32": { 387 | "version": "0.21.5", 388 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", 389 | "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", 390 | "cpu": [ 391 | "ia32" 392 | ], 393 | "dev": true, 394 | "optional": true, 395 | "os": [ 396 | "win32" 397 | ], 398 | "engines": { 399 | "node": ">=12" 400 | } 401 | }, 402 | "node_modules/@esbuild/win32-x64": { 403 | "version": "0.21.5", 404 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", 405 | "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", 406 | "cpu": [ 407 | "x64" 408 | ], 409 | "dev": true, 410 | "optional": true, 411 | "os": [ 412 | "win32" 413 | ], 414 | "engines": { 415 | "node": ">=12" 416 | } 417 | }, 418 | "node_modules/@eslint-community/eslint-utils": { 419 | "version": "4.4.0", 420 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 421 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 422 | "dev": true, 423 | "dependencies": { 424 | "eslint-visitor-keys": "^3.3.0" 425 | }, 426 | "engines": { 427 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 428 | }, 429 | "peerDependencies": { 430 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 431 | } 432 | }, 433 | "node_modules/@eslint-community/regexpp": { 434 | "version": "4.12.1", 435 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", 436 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", 437 | "dev": true, 438 | "license": "MIT", 439 | "engines": { 440 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 441 | } 442 | }, 443 | "node_modules/@eslint/config-array": { 444 | "version": "0.19.0", 445 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.0.tgz", 446 | "integrity": "sha512-zdHg2FPIFNKPdcHWtiNT+jEFCHYVplAXRDlQDyqy0zGx/q2parwh7brGJSiTxRk/TSMkbM//zt/f5CHgyTyaSQ==", 447 | "dev": true, 448 | "license": "Apache-2.0", 449 | "dependencies": { 450 | "@eslint/object-schema": "^2.1.4", 451 | "debug": "^4.3.1", 452 | "minimatch": "^3.1.2" 453 | }, 454 | "engines": { 455 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 456 | } 457 | }, 458 | "node_modules/@eslint/core": { 459 | "version": "0.9.0", 460 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.0.tgz", 461 | "integrity": "sha512-7ATR9F0e4W85D/0w7cU0SNj7qkAexMG+bAHEZOjo9akvGuhHE2m7umzWzfnpa0XAg5Kxc1BWmtPMV67jJ+9VUg==", 462 | "dev": true, 463 | "license": "Apache-2.0", 464 | "engines": { 465 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 466 | } 467 | }, 468 | "node_modules/@eslint/eslintrc": { 469 | "version": "3.2.0", 470 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz", 471 | "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==", 472 | "dev": true, 473 | "license": "MIT", 474 | "dependencies": { 475 | "ajv": "^6.12.4", 476 | "debug": "^4.3.2", 477 | "espree": "^10.0.1", 478 | "globals": "^14.0.0", 479 | "ignore": "^5.2.0", 480 | "import-fresh": "^3.2.1", 481 | "js-yaml": "^4.1.0", 482 | "minimatch": "^3.1.2", 483 | "strip-json-comments": "^3.1.1" 484 | }, 485 | "engines": { 486 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 487 | }, 488 | "funding": { 489 | "url": "https://opencollective.com/eslint" 490 | } 491 | }, 492 | "node_modules/@eslint/eslintrc/node_modules/globals": { 493 | "version": "14.0.0", 494 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", 495 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", 496 | "dev": true, 497 | "license": "MIT", 498 | "engines": { 499 | "node": ">=18" 500 | }, 501 | "funding": { 502 | "url": "https://github.com/sponsors/sindresorhus" 503 | } 504 | }, 505 | "node_modules/@eslint/js": { 506 | "version": "9.16.0", 507 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.16.0.tgz", 508 | "integrity": "sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==", 509 | "dev": true, 510 | "license": "MIT", 511 | "engines": { 512 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 513 | } 514 | }, 515 | "node_modules/@eslint/object-schema": { 516 | "version": "2.1.4", 517 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", 518 | "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", 519 | "dev": true, 520 | "license": "Apache-2.0", 521 | "engines": { 522 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 523 | } 524 | }, 525 | "node_modules/@eslint/plugin-kit": { 526 | "version": "0.2.3", 527 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz", 528 | "integrity": "sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==", 529 | "dev": true, 530 | "license": "Apache-2.0", 531 | "dependencies": { 532 | "levn": "^0.4.1" 533 | }, 534 | "engines": { 535 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 536 | } 537 | }, 538 | "node_modules/@humanfs/core": { 539 | "version": "0.19.1", 540 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", 541 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", 542 | "dev": true, 543 | "license": "Apache-2.0", 544 | "engines": { 545 | "node": ">=18.18.0" 546 | } 547 | }, 548 | "node_modules/@humanfs/node": { 549 | "version": "0.16.6", 550 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", 551 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", 552 | "dev": true, 553 | "license": "Apache-2.0", 554 | "dependencies": { 555 | "@humanfs/core": "^0.19.1", 556 | "@humanwhocodes/retry": "^0.3.0" 557 | }, 558 | "engines": { 559 | "node": ">=18.18.0" 560 | } 561 | }, 562 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { 563 | "version": "0.3.1", 564 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", 565 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", 566 | "dev": true, 567 | "license": "Apache-2.0", 568 | "engines": { 569 | "node": ">=18.18" 570 | }, 571 | "funding": { 572 | "type": "github", 573 | "url": "https://github.com/sponsors/nzakas" 574 | } 575 | }, 576 | "node_modules/@humanwhocodes/module-importer": { 577 | "version": "1.0.1", 578 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 579 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 580 | "dev": true, 581 | "engines": { 582 | "node": ">=12.22" 583 | }, 584 | "funding": { 585 | "type": "github", 586 | "url": "https://github.com/sponsors/nzakas" 587 | } 588 | }, 589 | "node_modules/@humanwhocodes/retry": { 590 | "version": "0.4.1", 591 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz", 592 | "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==", 593 | "dev": true, 594 | "license": "Apache-2.0", 595 | "engines": { 596 | "node": ">=18.18" 597 | }, 598 | "funding": { 599 | "type": "github", 600 | "url": "https://github.com/sponsors/nzakas" 601 | } 602 | }, 603 | "node_modules/@jridgewell/gen-mapping": { 604 | "version": "0.3.3", 605 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 606 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 607 | "dev": true, 608 | "optional": true, 609 | "peer": true, 610 | "dependencies": { 611 | "@jridgewell/set-array": "^1.0.1", 612 | "@jridgewell/sourcemap-codec": "^1.4.10", 613 | "@jridgewell/trace-mapping": "^0.3.9" 614 | }, 615 | "engines": { 616 | "node": ">=6.0.0" 617 | } 618 | }, 619 | "node_modules/@jridgewell/resolve-uri": { 620 | "version": "3.1.1", 621 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", 622 | "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", 623 | "dev": true, 624 | "optional": true, 625 | "peer": true, 626 | "engines": { 627 | "node": ">=6.0.0" 628 | } 629 | }, 630 | "node_modules/@jridgewell/set-array": { 631 | "version": "1.1.2", 632 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 633 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 634 | "dev": true, 635 | "optional": true, 636 | "peer": true, 637 | "engines": { 638 | "node": ">=6.0.0" 639 | } 640 | }, 641 | "node_modules/@jridgewell/source-map": { 642 | "version": "0.3.5", 643 | "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", 644 | "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", 645 | "dev": true, 646 | "optional": true, 647 | "peer": true, 648 | "dependencies": { 649 | "@jridgewell/gen-mapping": "^0.3.0", 650 | "@jridgewell/trace-mapping": "^0.3.9" 651 | } 652 | }, 653 | "node_modules/@jridgewell/sourcemap-codec": { 654 | "version": "1.4.15", 655 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 656 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", 657 | "dev": true, 658 | "optional": true, 659 | "peer": true 660 | }, 661 | "node_modules/@jridgewell/trace-mapping": { 662 | "version": "0.3.20", 663 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", 664 | "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", 665 | "dev": true, 666 | "optional": true, 667 | "peer": true, 668 | "dependencies": { 669 | "@jridgewell/resolve-uri": "^3.1.0", 670 | "@jridgewell/sourcemap-codec": "^1.4.14" 671 | } 672 | }, 673 | "node_modules/@nodelib/fs.scandir": { 674 | "version": "2.1.5", 675 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 676 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 677 | "dev": true, 678 | "dependencies": { 679 | "@nodelib/fs.stat": "2.0.5", 680 | "run-parallel": "^1.1.9" 681 | }, 682 | "engines": { 683 | "node": ">= 8" 684 | } 685 | }, 686 | "node_modules/@nodelib/fs.stat": { 687 | "version": "2.0.5", 688 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 689 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 690 | "dev": true, 691 | "engines": { 692 | "node": ">= 8" 693 | } 694 | }, 695 | "node_modules/@nodelib/fs.walk": { 696 | "version": "1.2.8", 697 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 698 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 699 | "dev": true, 700 | "dependencies": { 701 | "@nodelib/fs.scandir": "2.1.5", 702 | "fastq": "^1.6.0" 703 | }, 704 | "engines": { 705 | "node": ">= 8" 706 | } 707 | }, 708 | "node_modules/@rollup/rollup-android-arm-eabi": { 709 | "version": "4.28.0", 710 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.28.0.tgz", 711 | "integrity": "sha512-wLJuPLT6grGZsy34g4N1yRfYeouklTgPhH1gWXCYspenKYD0s3cR99ZevOGw5BexMNywkbV3UkjADisozBmpPQ==", 712 | "cpu": [ 713 | "arm" 714 | ], 715 | "dev": true, 716 | "license": "MIT", 717 | "optional": true, 718 | "os": [ 719 | "android" 720 | ] 721 | }, 722 | "node_modules/@rollup/rollup-android-arm64": { 723 | "version": "4.28.0", 724 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.28.0.tgz", 725 | "integrity": "sha512-eiNkznlo0dLmVG/6wf+Ifi/v78G4d4QxRhuUl+s8EWZpDewgk7PX3ZyECUXU0Zq/Ca+8nU8cQpNC4Xgn2gFNDA==", 726 | "cpu": [ 727 | "arm64" 728 | ], 729 | "dev": true, 730 | "license": "MIT", 731 | "optional": true, 732 | "os": [ 733 | "android" 734 | ] 735 | }, 736 | "node_modules/@rollup/rollup-darwin-arm64": { 737 | "version": "4.28.0", 738 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.28.0.tgz", 739 | "integrity": "sha512-lmKx9yHsppblnLQZOGxdO66gT77bvdBtr/0P+TPOseowE7D9AJoBw8ZDULRasXRWf1Z86/gcOdpBrV6VDUY36Q==", 740 | "cpu": [ 741 | "arm64" 742 | ], 743 | "dev": true, 744 | "license": "MIT", 745 | "optional": true, 746 | "os": [ 747 | "darwin" 748 | ] 749 | }, 750 | "node_modules/@rollup/rollup-darwin-x64": { 751 | "version": "4.28.0", 752 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.28.0.tgz", 753 | "integrity": "sha512-8hxgfReVs7k9Js1uAIhS6zq3I+wKQETInnWQtgzt8JfGx51R1N6DRVy3F4o0lQwumbErRz52YqwjfvuwRxGv1w==", 754 | "cpu": [ 755 | "x64" 756 | ], 757 | "dev": true, 758 | "license": "MIT", 759 | "optional": true, 760 | "os": [ 761 | "darwin" 762 | ] 763 | }, 764 | "node_modules/@rollup/rollup-freebsd-arm64": { 765 | "version": "4.28.0", 766 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.28.0.tgz", 767 | "integrity": "sha512-lA1zZB3bFx5oxu9fYud4+g1mt+lYXCoch0M0V/xhqLoGatbzVse0wlSQ1UYOWKpuSu3gyN4qEc0Dxf/DII1bhQ==", 768 | "cpu": [ 769 | "arm64" 770 | ], 771 | "dev": true, 772 | "license": "MIT", 773 | "optional": true, 774 | "os": [ 775 | "freebsd" 776 | ] 777 | }, 778 | "node_modules/@rollup/rollup-freebsd-x64": { 779 | "version": "4.28.0", 780 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.28.0.tgz", 781 | "integrity": "sha512-aI2plavbUDjCQB/sRbeUZWX9qp12GfYkYSJOrdYTL/C5D53bsE2/nBPuoiJKoWp5SN78v2Vr8ZPnB+/VbQ2pFA==", 782 | "cpu": [ 783 | "x64" 784 | ], 785 | "dev": true, 786 | "license": "MIT", 787 | "optional": true, 788 | "os": [ 789 | "freebsd" 790 | ] 791 | }, 792 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": { 793 | "version": "4.28.0", 794 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.28.0.tgz", 795 | "integrity": "sha512-WXveUPKtfqtaNvpf0iOb0M6xC64GzUX/OowbqfiCSXTdi/jLlOmH0Ba94/OkiY2yTGTwteo4/dsHRfh5bDCZ+w==", 796 | "cpu": [ 797 | "arm" 798 | ], 799 | "dev": true, 800 | "license": "MIT", 801 | "optional": true, 802 | "os": [ 803 | "linux" 804 | ] 805 | }, 806 | "node_modules/@rollup/rollup-linux-arm-musleabihf": { 807 | "version": "4.28.0", 808 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.28.0.tgz", 809 | "integrity": "sha512-yLc3O2NtOQR67lI79zsSc7lk31xjwcaocvdD1twL64PK1yNaIqCeWI9L5B4MFPAVGEVjH5k1oWSGuYX1Wutxpg==", 810 | "cpu": [ 811 | "arm" 812 | ], 813 | "dev": true, 814 | "license": "MIT", 815 | "optional": true, 816 | "os": [ 817 | "linux" 818 | ] 819 | }, 820 | "node_modules/@rollup/rollup-linux-arm64-gnu": { 821 | "version": "4.28.0", 822 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.28.0.tgz", 823 | "integrity": "sha512-+P9G9hjEpHucHRXqesY+3X9hD2wh0iNnJXX/QhS/J5vTdG6VhNYMxJ2rJkQOxRUd17u5mbMLHM7yWGZdAASfcg==", 824 | "cpu": [ 825 | "arm64" 826 | ], 827 | "dev": true, 828 | "license": "MIT", 829 | "optional": true, 830 | "os": [ 831 | "linux" 832 | ] 833 | }, 834 | "node_modules/@rollup/rollup-linux-arm64-musl": { 835 | "version": "4.28.0", 836 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.28.0.tgz", 837 | "integrity": "sha512-1xsm2rCKSTpKzi5/ypT5wfc+4bOGa/9yI/eaOLW0oMs7qpC542APWhl4A37AENGZ6St6GBMWhCCMM6tXgTIplw==", 838 | "cpu": [ 839 | "arm64" 840 | ], 841 | "dev": true, 842 | "license": "MIT", 843 | "optional": true, 844 | "os": [ 845 | "linux" 846 | ] 847 | }, 848 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { 849 | "version": "4.28.0", 850 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.28.0.tgz", 851 | "integrity": "sha512-zgWxMq8neVQeXL+ouSf6S7DoNeo6EPgi1eeqHXVKQxqPy1B2NvTbaOUWPn/7CfMKL7xvhV0/+fq/Z/J69g1WAQ==", 852 | "cpu": [ 853 | "ppc64" 854 | ], 855 | "dev": true, 856 | "license": "MIT", 857 | "optional": true, 858 | "os": [ 859 | "linux" 860 | ] 861 | }, 862 | "node_modules/@rollup/rollup-linux-riscv64-gnu": { 863 | "version": "4.28.0", 864 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.28.0.tgz", 865 | "integrity": "sha512-VEdVYacLniRxbRJLNtzwGt5vwS0ycYshofI7cWAfj7Vg5asqj+pt+Q6x4n+AONSZW/kVm+5nklde0qs2EUwU2g==", 866 | "cpu": [ 867 | "riscv64" 868 | ], 869 | "dev": true, 870 | "license": "MIT", 871 | "optional": true, 872 | "os": [ 873 | "linux" 874 | ] 875 | }, 876 | "node_modules/@rollup/rollup-linux-s390x-gnu": { 877 | "version": "4.28.0", 878 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.28.0.tgz", 879 | "integrity": "sha512-LQlP5t2hcDJh8HV8RELD9/xlYtEzJkm/aWGsauvdO2ulfl3QYRjqrKW+mGAIWP5kdNCBheqqqYIGElSRCaXfpw==", 880 | "cpu": [ 881 | "s390x" 882 | ], 883 | "dev": true, 884 | "license": "MIT", 885 | "optional": true, 886 | "os": [ 887 | "linux" 888 | ] 889 | }, 890 | "node_modules/@rollup/rollup-linux-x64-gnu": { 891 | "version": "4.28.0", 892 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.28.0.tgz", 893 | "integrity": "sha512-Nl4KIzteVEKE9BdAvYoTkW19pa7LR/RBrT6F1dJCV/3pbjwDcaOq+edkP0LXuJ9kflW/xOK414X78r+K84+msw==", 894 | "cpu": [ 895 | "x64" 896 | ], 897 | "dev": true, 898 | "license": "MIT", 899 | "optional": true, 900 | "os": [ 901 | "linux" 902 | ] 903 | }, 904 | "node_modules/@rollup/rollup-linux-x64-musl": { 905 | "version": "4.28.0", 906 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.28.0.tgz", 907 | "integrity": "sha512-eKpJr4vBDOi4goT75MvW+0dXcNUqisK4jvibY9vDdlgLx+yekxSm55StsHbxUsRxSTt3JEQvlr3cGDkzcSP8bw==", 908 | "cpu": [ 909 | "x64" 910 | ], 911 | "dev": true, 912 | "license": "MIT", 913 | "optional": true, 914 | "os": [ 915 | "linux" 916 | ] 917 | }, 918 | "node_modules/@rollup/rollup-win32-arm64-msvc": { 919 | "version": "4.28.0", 920 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.28.0.tgz", 921 | "integrity": "sha512-Vi+WR62xWGsE/Oj+mD0FNAPY2MEox3cfyG0zLpotZdehPFXwz6lypkGs5y38Jd/NVSbOD02aVad6q6QYF7i8Bg==", 922 | "cpu": [ 923 | "arm64" 924 | ], 925 | "dev": true, 926 | "license": "MIT", 927 | "optional": true, 928 | "os": [ 929 | "win32" 930 | ] 931 | }, 932 | "node_modules/@rollup/rollup-win32-ia32-msvc": { 933 | "version": "4.28.0", 934 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.28.0.tgz", 935 | "integrity": "sha512-kN/Vpip8emMLn/eOza+4JwqDZBL6MPNpkdaEsgUtW1NYN3DZvZqSQrbKzJcTL6hd8YNmFTn7XGWMwccOcJBL0A==", 936 | "cpu": [ 937 | "ia32" 938 | ], 939 | "dev": true, 940 | "license": "MIT", 941 | "optional": true, 942 | "os": [ 943 | "win32" 944 | ] 945 | }, 946 | "node_modules/@rollup/rollup-win32-x64-msvc": { 947 | "version": "4.28.0", 948 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.28.0.tgz", 949 | "integrity": "sha512-Bvno2/aZT6usSa7lRDL2+hMjVAGjuqaymF1ApZm31JXzniR/hvr14jpU+/z4X6Gt5BPlzosscyJZGUvguXIqeQ==", 950 | "cpu": [ 951 | "x64" 952 | ], 953 | "dev": true, 954 | "license": "MIT", 955 | "optional": true, 956 | "os": [ 957 | "win32" 958 | ] 959 | }, 960 | "node_modules/@swc/core": { 961 | "version": "1.7.24", 962 | "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.7.24.tgz", 963 | "integrity": "sha512-FzJaai6z6DYdICAY1UKNN5pzTn296ksK2zzEjjaXlpZtoMkGktWT0ttS7hbdBCPGhLOu5Q9TA2zdPejKUFjgig==", 964 | "dev": true, 965 | "hasInstallScript": true, 966 | "dependencies": { 967 | "@swc/counter": "^0.1.3", 968 | "@swc/types": "^0.1.12" 969 | }, 970 | "engines": { 971 | "node": ">=10" 972 | }, 973 | "funding": { 974 | "type": "opencollective", 975 | "url": "https://opencollective.com/swc" 976 | }, 977 | "optionalDependencies": { 978 | "@swc/core-darwin-arm64": "1.7.24", 979 | "@swc/core-darwin-x64": "1.7.24", 980 | "@swc/core-linux-arm-gnueabihf": "1.7.24", 981 | "@swc/core-linux-arm64-gnu": "1.7.24", 982 | "@swc/core-linux-arm64-musl": "1.7.24", 983 | "@swc/core-linux-x64-gnu": "1.7.24", 984 | "@swc/core-linux-x64-musl": "1.7.24", 985 | "@swc/core-win32-arm64-msvc": "1.7.24", 986 | "@swc/core-win32-ia32-msvc": "1.7.24", 987 | "@swc/core-win32-x64-msvc": "1.7.24" 988 | }, 989 | "peerDependencies": { 990 | "@swc/helpers": "*" 991 | }, 992 | "peerDependenciesMeta": { 993 | "@swc/helpers": { 994 | "optional": true 995 | } 996 | } 997 | }, 998 | "node_modules/@swc/core-darwin-arm64": { 999 | "version": "1.7.24", 1000 | "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.7.24.tgz", 1001 | "integrity": "sha512-s0k09qAcsoa8jIncwgRRd43VApYqXu28R4OmICtDffV4S01HtsRLRarXsMuLutoZk3tbxqitep+A8MPBuqNgdg==", 1002 | "cpu": [ 1003 | "arm64" 1004 | ], 1005 | "dev": true, 1006 | "optional": true, 1007 | "os": [ 1008 | "darwin" 1009 | ], 1010 | "engines": { 1011 | "node": ">=10" 1012 | } 1013 | }, 1014 | "node_modules/@swc/core-darwin-x64": { 1015 | "version": "1.7.24", 1016 | "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.7.24.tgz", 1017 | "integrity": "sha512-1dlsulJ/fiOoJoJyQgaCewIEaZ7Sh6aJN4r5Uhl4lIZuNWa27XOb28A3K29/6HDO9JML3IJrvXPnl5o0vxDQuQ==", 1018 | "cpu": [ 1019 | "x64" 1020 | ], 1021 | "dev": true, 1022 | "optional": true, 1023 | "os": [ 1024 | "darwin" 1025 | ], 1026 | "engines": { 1027 | "node": ">=10" 1028 | } 1029 | }, 1030 | "node_modules/@swc/core-linux-arm-gnueabihf": { 1031 | "version": "1.7.24", 1032 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.7.24.tgz", 1033 | "integrity": "sha512-2ft1NmxyvHCu5CY4r2rNVybPqZtJaxpRSzvCcPlVjN/2D5Q3QgM5kBoo1t+0RCFfk4TS2V0KWJhtqKz0CNX62Q==", 1034 | "cpu": [ 1035 | "arm" 1036 | ], 1037 | "dev": true, 1038 | "optional": true, 1039 | "os": [ 1040 | "linux" 1041 | ], 1042 | "engines": { 1043 | "node": ">=10" 1044 | } 1045 | }, 1046 | "node_modules/@swc/core-linux-arm64-gnu": { 1047 | "version": "1.7.24", 1048 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.7.24.tgz", 1049 | "integrity": "sha512-v/Z8I9tUUNkNHKa1Sw4r1Q7Wp66ezbRhe6xMIxvPNKVJQFaMOsRpe0t8T5qbk5sV2hJGOCKpQynSpZqQXLcJDQ==", 1050 | "cpu": [ 1051 | "arm64" 1052 | ], 1053 | "dev": true, 1054 | "optional": true, 1055 | "os": [ 1056 | "linux" 1057 | ], 1058 | "engines": { 1059 | "node": ">=10" 1060 | } 1061 | }, 1062 | "node_modules/@swc/core-linux-arm64-musl": { 1063 | "version": "1.7.24", 1064 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.7.24.tgz", 1065 | "integrity": "sha512-0jJx0IcajcyOXaJsx1jXy86lYVrbupyy2VUj/OiJux/ic4oBJLjfL+WOuc8T8/hZj2p6X0X4jvfSCqWSuic4kA==", 1066 | "cpu": [ 1067 | "arm64" 1068 | ], 1069 | "dev": true, 1070 | "optional": true, 1071 | "os": [ 1072 | "linux" 1073 | ], 1074 | "engines": { 1075 | "node": ">=10" 1076 | } 1077 | }, 1078 | "node_modules/@swc/core-linux-x64-gnu": { 1079 | "version": "1.7.24", 1080 | "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.7.24.tgz", 1081 | "integrity": "sha512-2+3aKQpSGjVnWKDTKUPuJzitQlTQrGorg+PVFMRkv6l+RcNCHZQNe/8VYpMhyBhxDMb3LUlbp7776FRevcruxg==", 1082 | "cpu": [ 1083 | "x64" 1084 | ], 1085 | "dev": true, 1086 | "optional": true, 1087 | "os": [ 1088 | "linux" 1089 | ], 1090 | "engines": { 1091 | "node": ">=10" 1092 | } 1093 | }, 1094 | "node_modules/@swc/core-linux-x64-musl": { 1095 | "version": "1.7.24", 1096 | "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.7.24.tgz", 1097 | "integrity": "sha512-PMQ6SkCtMoj0Ks77DiishpEmIuHpYjFLDuVOzzJCzGeGoii0yRP5lKy/VeglFYLPqJzmhK9BHlpVehVf/8ZpvA==", 1098 | "cpu": [ 1099 | "x64" 1100 | ], 1101 | "dev": true, 1102 | "optional": true, 1103 | "os": [ 1104 | "linux" 1105 | ], 1106 | "engines": { 1107 | "node": ">=10" 1108 | } 1109 | }, 1110 | "node_modules/@swc/core-win32-arm64-msvc": { 1111 | "version": "1.7.24", 1112 | "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.7.24.tgz", 1113 | "integrity": "sha512-SNdCa4DtGXNWrPVHqctVUxgEVZVETuqERpqF50KFHO0Bvf5V/m1IJ4hFr2BxXlrzgnIW4t1Dpi6YOJbcGbEmnA==", 1114 | "cpu": [ 1115 | "arm64" 1116 | ], 1117 | "dev": true, 1118 | "optional": true, 1119 | "os": [ 1120 | "win32" 1121 | ], 1122 | "engines": { 1123 | "node": ">=10" 1124 | } 1125 | }, 1126 | "node_modules/@swc/core-win32-ia32-msvc": { 1127 | "version": "1.7.24", 1128 | "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.7.24.tgz", 1129 | "integrity": "sha512-5p3olHqwibMfrVFg2yVuSIPh9HArDYYlJXNZ9JKqeZk23A19J1pl9MuPmXDw+sxsiPfYJ/nUedIGeUHPF/+EDw==", 1130 | "cpu": [ 1131 | "ia32" 1132 | ], 1133 | "dev": true, 1134 | "optional": true, 1135 | "os": [ 1136 | "win32" 1137 | ], 1138 | "engines": { 1139 | "node": ">=10" 1140 | } 1141 | }, 1142 | "node_modules/@swc/core-win32-x64-msvc": { 1143 | "version": "1.7.24", 1144 | "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.7.24.tgz", 1145 | "integrity": "sha512-gRyPIxDznS8d2ClfmWbytjp2d48bij6swHnDLWhukNuOvXdQkEmaIzjEsionFG/zhcFLnz8zKfTvjEjInAMzxg==", 1146 | "cpu": [ 1147 | "x64" 1148 | ], 1149 | "dev": true, 1150 | "optional": true, 1151 | "os": [ 1152 | "win32" 1153 | ], 1154 | "engines": { 1155 | "node": ">=10" 1156 | } 1157 | }, 1158 | "node_modules/@swc/counter": { 1159 | "version": "0.1.3", 1160 | "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", 1161 | "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", 1162 | "dev": true 1163 | }, 1164 | "node_modules/@swc/types": { 1165 | "version": "0.1.12", 1166 | "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.12.tgz", 1167 | "integrity": "sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==", 1168 | "dev": true, 1169 | "dependencies": { 1170 | "@swc/counter": "^0.1.3" 1171 | } 1172 | }, 1173 | "node_modules/@types/estree": { 1174 | "version": "1.0.6", 1175 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", 1176 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", 1177 | "dev": true, 1178 | "license": "MIT" 1179 | }, 1180 | "node_modules/@types/hoist-non-react-statics": { 1181 | "version": "3.3.5", 1182 | "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.5.tgz", 1183 | "integrity": "sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==", 1184 | "dependencies": { 1185 | "@types/react": "*", 1186 | "hoist-non-react-statics": "^3.3.0" 1187 | } 1188 | }, 1189 | "node_modules/@types/json-schema": { 1190 | "version": "7.0.15", 1191 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", 1192 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", 1193 | "dev": true, 1194 | "license": "MIT" 1195 | }, 1196 | "node_modules/@types/node": { 1197 | "version": "20.8.6", 1198 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.8.6.tgz", 1199 | "integrity": "sha512-eWO4K2Ji70QzKUqRy6oyJWUeB7+g2cRagT3T/nxYibYcT4y2BDL8lqolRXjTHmkZCdJfIPaY73KbJAZmcryxTQ==", 1200 | "dev": true, 1201 | "optional": true, 1202 | "peer": true, 1203 | "dependencies": { 1204 | "undici-types": "~5.25.1" 1205 | } 1206 | }, 1207 | "node_modules/@types/prop-types": { 1208 | "version": "15.7.12", 1209 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz", 1210 | "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==" 1211 | }, 1212 | "node_modules/@types/react": { 1213 | "version": "18.3.5", 1214 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.5.tgz", 1215 | "integrity": "sha512-WeqMfGJLGuLCqHGYRGHxnKrXcTitc6L/nBUWfWPcTarG3t9PsquqUMuVeXZeca+mglY4Vo5GZjCi0A3Or2lnxA==", 1216 | "dependencies": { 1217 | "@types/prop-types": "*", 1218 | "csstype": "^3.0.2" 1219 | } 1220 | }, 1221 | "node_modules/@types/react-dom": { 1222 | "version": "18.3.0", 1223 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz", 1224 | "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==", 1225 | "devOptional": true, 1226 | "dependencies": { 1227 | "@types/react": "*" 1228 | } 1229 | }, 1230 | "node_modules/@types/use-sync-external-store": { 1231 | "version": "0.0.3", 1232 | "resolved": "https://registry.npmjs.org/@types/use-sync-external-store/-/use-sync-external-store-0.0.3.tgz", 1233 | "integrity": "sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==" 1234 | }, 1235 | "node_modules/@typescript-eslint/eslint-plugin": { 1236 | "version": "8.4.0", 1237 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.4.0.tgz", 1238 | "integrity": "sha512-rg8LGdv7ri3oAlenMACk9e+AR4wUV0yrrG+XKsGKOK0EVgeEDqurkXMPILG2836fW4ibokTB5v4b6Z9+GYQDEw==", 1239 | "dev": true, 1240 | "dependencies": { 1241 | "@eslint-community/regexpp": "^4.10.0", 1242 | "@typescript-eslint/scope-manager": "8.4.0", 1243 | "@typescript-eslint/type-utils": "8.4.0", 1244 | "@typescript-eslint/utils": "8.4.0", 1245 | "@typescript-eslint/visitor-keys": "8.4.0", 1246 | "graphemer": "^1.4.0", 1247 | "ignore": "^5.3.1", 1248 | "natural-compare": "^1.4.0", 1249 | "ts-api-utils": "^1.3.0" 1250 | }, 1251 | "engines": { 1252 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1253 | }, 1254 | "funding": { 1255 | "type": "opencollective", 1256 | "url": "https://opencollective.com/typescript-eslint" 1257 | }, 1258 | "peerDependencies": { 1259 | "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", 1260 | "eslint": "^8.57.0 || ^9.0.0" 1261 | }, 1262 | "peerDependenciesMeta": { 1263 | "typescript": { 1264 | "optional": true 1265 | } 1266 | } 1267 | }, 1268 | "node_modules/@typescript-eslint/parser": { 1269 | "version": "8.4.0", 1270 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.4.0.tgz", 1271 | "integrity": "sha512-NHgWmKSgJk5K9N16GIhQ4jSobBoJwrmURaLErad0qlLjrpP5bECYg+wxVTGlGZmJbU03jj/dfnb6V9bw+5icsA==", 1272 | "dev": true, 1273 | "dependencies": { 1274 | "@typescript-eslint/scope-manager": "8.4.0", 1275 | "@typescript-eslint/types": "8.4.0", 1276 | "@typescript-eslint/typescript-estree": "8.4.0", 1277 | "@typescript-eslint/visitor-keys": "8.4.0", 1278 | "debug": "^4.3.4" 1279 | }, 1280 | "engines": { 1281 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1282 | }, 1283 | "funding": { 1284 | "type": "opencollective", 1285 | "url": "https://opencollective.com/typescript-eslint" 1286 | }, 1287 | "peerDependencies": { 1288 | "eslint": "^8.57.0 || ^9.0.0" 1289 | }, 1290 | "peerDependenciesMeta": { 1291 | "typescript": { 1292 | "optional": true 1293 | } 1294 | } 1295 | }, 1296 | "node_modules/@typescript-eslint/scope-manager": { 1297 | "version": "8.4.0", 1298 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.4.0.tgz", 1299 | "integrity": "sha512-n2jFxLeY0JmKfUqy3P70rs6vdoPjHK8P/w+zJcV3fk0b0BwRXC/zxRTEnAsgYT7MwdQDt/ZEbtdzdVC+hcpF0A==", 1300 | "dev": true, 1301 | "dependencies": { 1302 | "@typescript-eslint/types": "8.4.0", 1303 | "@typescript-eslint/visitor-keys": "8.4.0" 1304 | }, 1305 | "engines": { 1306 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1307 | }, 1308 | "funding": { 1309 | "type": "opencollective", 1310 | "url": "https://opencollective.com/typescript-eslint" 1311 | } 1312 | }, 1313 | "node_modules/@typescript-eslint/type-utils": { 1314 | "version": "8.4.0", 1315 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.4.0.tgz", 1316 | "integrity": "sha512-pu2PAmNrl9KX6TtirVOrbLPLwDmASpZhK/XU7WvoKoCUkdtq9zF7qQ7gna0GBZFN0hci0vHaSusiL2WpsQk37A==", 1317 | "dev": true, 1318 | "dependencies": { 1319 | "@typescript-eslint/typescript-estree": "8.4.0", 1320 | "@typescript-eslint/utils": "8.4.0", 1321 | "debug": "^4.3.4", 1322 | "ts-api-utils": "^1.3.0" 1323 | }, 1324 | "engines": { 1325 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1326 | }, 1327 | "funding": { 1328 | "type": "opencollective", 1329 | "url": "https://opencollective.com/typescript-eslint" 1330 | }, 1331 | "peerDependenciesMeta": { 1332 | "typescript": { 1333 | "optional": true 1334 | } 1335 | } 1336 | }, 1337 | "node_modules/@typescript-eslint/types": { 1338 | "version": "8.4.0", 1339 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.4.0.tgz", 1340 | "integrity": "sha512-T1RB3KQdskh9t3v/qv7niK6P8yvn7ja1mS7QK7XfRVL6wtZ8/mFs/FHf4fKvTA0rKnqnYxl/uHFNbnEt0phgbw==", 1341 | "dev": true, 1342 | "engines": { 1343 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1344 | }, 1345 | "funding": { 1346 | "type": "opencollective", 1347 | "url": "https://opencollective.com/typescript-eslint" 1348 | } 1349 | }, 1350 | "node_modules/@typescript-eslint/typescript-estree": { 1351 | "version": "8.4.0", 1352 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.4.0.tgz", 1353 | "integrity": "sha512-kJ2OIP4dQw5gdI4uXsaxUZHRwWAGpREJ9Zq6D5L0BweyOrWsL6Sz0YcAZGWhvKnH7fm1J5YFE1JrQL0c9dd53A==", 1354 | "dev": true, 1355 | "dependencies": { 1356 | "@typescript-eslint/types": "8.4.0", 1357 | "@typescript-eslint/visitor-keys": "8.4.0", 1358 | "debug": "^4.3.4", 1359 | "fast-glob": "^3.3.2", 1360 | "is-glob": "^4.0.3", 1361 | "minimatch": "^9.0.4", 1362 | "semver": "^7.6.0", 1363 | "ts-api-utils": "^1.3.0" 1364 | }, 1365 | "engines": { 1366 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1367 | }, 1368 | "funding": { 1369 | "type": "opencollective", 1370 | "url": "https://opencollective.com/typescript-eslint" 1371 | }, 1372 | "peerDependenciesMeta": { 1373 | "typescript": { 1374 | "optional": true 1375 | } 1376 | } 1377 | }, 1378 | "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { 1379 | "version": "2.0.1", 1380 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 1381 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 1382 | "dev": true, 1383 | "dependencies": { 1384 | "balanced-match": "^1.0.0" 1385 | } 1386 | }, 1387 | "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { 1388 | "version": "9.0.5", 1389 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", 1390 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", 1391 | "dev": true, 1392 | "dependencies": { 1393 | "brace-expansion": "^2.0.1" 1394 | }, 1395 | "engines": { 1396 | "node": ">=16 || 14 >=14.17" 1397 | }, 1398 | "funding": { 1399 | "url": "https://github.com/sponsors/isaacs" 1400 | } 1401 | }, 1402 | "node_modules/@typescript-eslint/utils": { 1403 | "version": "8.4.0", 1404 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.4.0.tgz", 1405 | "integrity": "sha512-swULW8n1IKLjRAgciCkTCafyTHHfwVQFt8DovmaF69sKbOxTSFMmIZaSHjqO9i/RV0wIblaawhzvtva8Nmm7lQ==", 1406 | "dev": true, 1407 | "dependencies": { 1408 | "@eslint-community/eslint-utils": "^4.4.0", 1409 | "@typescript-eslint/scope-manager": "8.4.0", 1410 | "@typescript-eslint/types": "8.4.0", 1411 | "@typescript-eslint/typescript-estree": "8.4.0" 1412 | }, 1413 | "engines": { 1414 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1415 | }, 1416 | "funding": { 1417 | "type": "opencollective", 1418 | "url": "https://opencollective.com/typescript-eslint" 1419 | }, 1420 | "peerDependencies": { 1421 | "eslint": "^8.57.0 || ^9.0.0" 1422 | } 1423 | }, 1424 | "node_modules/@typescript-eslint/visitor-keys": { 1425 | "version": "8.4.0", 1426 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.4.0.tgz", 1427 | "integrity": "sha512-zTQD6WLNTre1hj5wp09nBIDiOc2U5r/qmzo7wxPn4ZgAjHql09EofqhF9WF+fZHzL5aCyaIpPcT2hyxl73kr9A==", 1428 | "dev": true, 1429 | "dependencies": { 1430 | "@typescript-eslint/types": "8.4.0", 1431 | "eslint-visitor-keys": "^3.4.3" 1432 | }, 1433 | "engines": { 1434 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1435 | }, 1436 | "funding": { 1437 | "type": "opencollective", 1438 | "url": "https://opencollective.com/typescript-eslint" 1439 | } 1440 | }, 1441 | "node_modules/@vitejs/plugin-react-swc": { 1442 | "version": "3.7.0", 1443 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.7.0.tgz", 1444 | "integrity": "sha512-yrknSb3Dci6svCd/qhHqhFPDSw0QtjumcqdKMoNNzmOl5lMXTTiqzjWtG4Qask2HdvvzaNgSunbQGet8/GrKdA==", 1445 | "dev": true, 1446 | "dependencies": { 1447 | "@swc/core": "^1.5.7" 1448 | }, 1449 | "peerDependencies": { 1450 | "vite": "^4 || ^5" 1451 | } 1452 | }, 1453 | "node_modules/@zoom/meetingsdk": { 1454 | "version": "3.13.1", 1455 | "resolved": "https://registry.npmjs.org/@zoom/meetingsdk/-/meetingsdk-3.13.1.tgz", 1456 | "integrity": "sha512-xicZTt6msr6lwtvbxFHJOSTQ3Ni2tgPTSPkEsxQhQ9ZOW9j5u3ldNFE8cLdCT/AdylSV8BJPY3xVD8pUi6IXOw==", 1457 | "license": "MIT", 1458 | "dependencies": { 1459 | "lodash": "^4.17.21", 1460 | "react": "18.2.0", 1461 | "react-dom": "18.2.0", 1462 | "react-redux": "8.1.2", 1463 | "redux": "4.2.1", 1464 | "redux-thunk": "2.4.2" 1465 | }, 1466 | "peerDependencies": { 1467 | "lodash": "^4.17.21", 1468 | "react": "18.2.0", 1469 | "react-dom": "18.2.0", 1470 | "react-redux": "8.1.2", 1471 | "redux": "4.2.1", 1472 | "redux-thunk": "2.4.2" 1473 | } 1474 | }, 1475 | "node_modules/@zoom/meetingsdk/node_modules/react": { 1476 | "version": "18.2.0", 1477 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 1478 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 1479 | "dependencies": { 1480 | "loose-envify": "^1.1.0" 1481 | }, 1482 | "engines": { 1483 | "node": ">=0.10.0" 1484 | } 1485 | }, 1486 | "node_modules/@zoom/meetingsdk/node_modules/react-dom": { 1487 | "version": "18.2.0", 1488 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 1489 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 1490 | "dependencies": { 1491 | "loose-envify": "^1.1.0", 1492 | "scheduler": "^0.23.0" 1493 | }, 1494 | "peerDependencies": { 1495 | "react": "^18.2.0" 1496 | } 1497 | }, 1498 | "node_modules/@zoom/meetingsdk/node_modules/react-is": { 1499 | "version": "18.2.0", 1500 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", 1501 | "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==" 1502 | }, 1503 | "node_modules/@zoom/meetingsdk/node_modules/react-redux": { 1504 | "version": "8.1.2", 1505 | "resolved": "https://registry.npmjs.org/react-redux/-/react-redux-8.1.2.tgz", 1506 | "integrity": "sha512-xJKYI189VwfsFc4CJvHqHlDrzyFTY/3vZACbE+rr/zQ34Xx1wQfB4OTOSeOSNrF6BDVe8OOdxIrAnMGXA3ggfw==", 1507 | "dependencies": { 1508 | "@babel/runtime": "^7.12.1", 1509 | "@types/hoist-non-react-statics": "^3.3.1", 1510 | "@types/use-sync-external-store": "^0.0.3", 1511 | "hoist-non-react-statics": "^3.3.2", 1512 | "react-is": "^18.0.0", 1513 | "use-sync-external-store": "^1.0.0" 1514 | }, 1515 | "peerDependencies": { 1516 | "@types/react": "^16.8 || ^17.0 || ^18.0", 1517 | "@types/react-dom": "^16.8 || ^17.0 || ^18.0", 1518 | "react": "^16.8 || ^17.0 || ^18.0", 1519 | "react-dom": "^16.8 || ^17.0 || ^18.0", 1520 | "react-native": ">=0.59", 1521 | "redux": "^4 || ^5.0.0-beta.0" 1522 | }, 1523 | "peerDependenciesMeta": { 1524 | "@types/react": { 1525 | "optional": true 1526 | }, 1527 | "@types/react-dom": { 1528 | "optional": true 1529 | }, 1530 | "react-dom": { 1531 | "optional": true 1532 | }, 1533 | "react-native": { 1534 | "optional": true 1535 | }, 1536 | "redux": { 1537 | "optional": true 1538 | } 1539 | } 1540 | }, 1541 | "node_modules/acorn": { 1542 | "version": "8.14.0", 1543 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", 1544 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", 1545 | "dev": true, 1546 | "license": "MIT", 1547 | "bin": { 1548 | "acorn": "bin/acorn" 1549 | }, 1550 | "engines": { 1551 | "node": ">=0.4.0" 1552 | } 1553 | }, 1554 | "node_modules/acorn-jsx": { 1555 | "version": "5.3.2", 1556 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 1557 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 1558 | "dev": true, 1559 | "license": "MIT", 1560 | "peerDependencies": { 1561 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 1562 | } 1563 | }, 1564 | "node_modules/ajv": { 1565 | "version": "6.12.6", 1566 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 1567 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 1568 | "dev": true, 1569 | "license": "MIT", 1570 | "dependencies": { 1571 | "fast-deep-equal": "^3.1.1", 1572 | "fast-json-stable-stringify": "^2.0.0", 1573 | "json-schema-traverse": "^0.4.1", 1574 | "uri-js": "^4.2.2" 1575 | }, 1576 | "funding": { 1577 | "type": "github", 1578 | "url": "https://github.com/sponsors/epoberezkin" 1579 | } 1580 | }, 1581 | "node_modules/ansi-styles": { 1582 | "version": "4.3.0", 1583 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 1584 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 1585 | "dev": true, 1586 | "dependencies": { 1587 | "color-convert": "^2.0.1" 1588 | }, 1589 | "engines": { 1590 | "node": ">=8" 1591 | }, 1592 | "funding": { 1593 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 1594 | } 1595 | }, 1596 | "node_modules/argparse": { 1597 | "version": "2.0.1", 1598 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 1599 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 1600 | "dev": true, 1601 | "license": "Python-2.0" 1602 | }, 1603 | "node_modules/balanced-match": { 1604 | "version": "1.0.2", 1605 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 1606 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 1607 | "dev": true 1608 | }, 1609 | "node_modules/brace-expansion": { 1610 | "version": "1.1.11", 1611 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 1612 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 1613 | "dev": true, 1614 | "license": "MIT", 1615 | "dependencies": { 1616 | "balanced-match": "^1.0.0", 1617 | "concat-map": "0.0.1" 1618 | } 1619 | }, 1620 | "node_modules/braces": { 1621 | "version": "3.0.3", 1622 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", 1623 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", 1624 | "dev": true, 1625 | "license": "MIT", 1626 | "dependencies": { 1627 | "fill-range": "^7.1.1" 1628 | }, 1629 | "engines": { 1630 | "node": ">=8" 1631 | } 1632 | }, 1633 | "node_modules/buffer-from": { 1634 | "version": "1.1.2", 1635 | "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", 1636 | "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", 1637 | "dev": true, 1638 | "optional": true, 1639 | "peer": true 1640 | }, 1641 | "node_modules/callsites": { 1642 | "version": "3.1.0", 1643 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1644 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1645 | "dev": true, 1646 | "license": "MIT", 1647 | "engines": { 1648 | "node": ">=6" 1649 | } 1650 | }, 1651 | "node_modules/chalk": { 1652 | "version": "4.1.2", 1653 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1654 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1655 | "dev": true, 1656 | "dependencies": { 1657 | "ansi-styles": "^4.1.0", 1658 | "supports-color": "^7.1.0" 1659 | }, 1660 | "engines": { 1661 | "node": ">=10" 1662 | }, 1663 | "funding": { 1664 | "url": "https://github.com/chalk/chalk?sponsor=1" 1665 | } 1666 | }, 1667 | "node_modules/color-convert": { 1668 | "version": "2.0.1", 1669 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1670 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1671 | "dev": true, 1672 | "dependencies": { 1673 | "color-name": "~1.1.4" 1674 | }, 1675 | "engines": { 1676 | "node": ">=7.0.0" 1677 | } 1678 | }, 1679 | "node_modules/color-name": { 1680 | "version": "1.1.4", 1681 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1682 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1683 | "dev": true 1684 | }, 1685 | "node_modules/concat-map": { 1686 | "version": "0.0.1", 1687 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1688 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 1689 | "dev": true, 1690 | "license": "MIT" 1691 | }, 1692 | "node_modules/cross-spawn": { 1693 | "version": "7.0.6", 1694 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", 1695 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", 1696 | "dev": true, 1697 | "license": "MIT", 1698 | "dependencies": { 1699 | "path-key": "^3.1.0", 1700 | "shebang-command": "^2.0.0", 1701 | "which": "^2.0.1" 1702 | }, 1703 | "engines": { 1704 | "node": ">= 8" 1705 | } 1706 | }, 1707 | "node_modules/csstype": { 1708 | "version": "3.1.3", 1709 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", 1710 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" 1711 | }, 1712 | "node_modules/debug": { 1713 | "version": "4.3.7", 1714 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", 1715 | "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", 1716 | "dev": true, 1717 | "license": "MIT", 1718 | "dependencies": { 1719 | "ms": "^2.1.3" 1720 | }, 1721 | "engines": { 1722 | "node": ">=6.0" 1723 | }, 1724 | "peerDependenciesMeta": { 1725 | "supports-color": { 1726 | "optional": true 1727 | } 1728 | } 1729 | }, 1730 | "node_modules/deep-is": { 1731 | "version": "0.1.4", 1732 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1733 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1734 | "dev": true 1735 | }, 1736 | "node_modules/esbuild": { 1737 | "version": "0.21.5", 1738 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", 1739 | "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", 1740 | "dev": true, 1741 | "hasInstallScript": true, 1742 | "bin": { 1743 | "esbuild": "bin/esbuild" 1744 | }, 1745 | "engines": { 1746 | "node": ">=12" 1747 | }, 1748 | "optionalDependencies": { 1749 | "@esbuild/aix-ppc64": "0.21.5", 1750 | "@esbuild/android-arm": "0.21.5", 1751 | "@esbuild/android-arm64": "0.21.5", 1752 | "@esbuild/android-x64": "0.21.5", 1753 | "@esbuild/darwin-arm64": "0.21.5", 1754 | "@esbuild/darwin-x64": "0.21.5", 1755 | "@esbuild/freebsd-arm64": "0.21.5", 1756 | "@esbuild/freebsd-x64": "0.21.5", 1757 | "@esbuild/linux-arm": "0.21.5", 1758 | "@esbuild/linux-arm64": "0.21.5", 1759 | "@esbuild/linux-ia32": "0.21.5", 1760 | "@esbuild/linux-loong64": "0.21.5", 1761 | "@esbuild/linux-mips64el": "0.21.5", 1762 | "@esbuild/linux-ppc64": "0.21.5", 1763 | "@esbuild/linux-riscv64": "0.21.5", 1764 | "@esbuild/linux-s390x": "0.21.5", 1765 | "@esbuild/linux-x64": "0.21.5", 1766 | "@esbuild/netbsd-x64": "0.21.5", 1767 | "@esbuild/openbsd-x64": "0.21.5", 1768 | "@esbuild/sunos-x64": "0.21.5", 1769 | "@esbuild/win32-arm64": "0.21.5", 1770 | "@esbuild/win32-ia32": "0.21.5", 1771 | "@esbuild/win32-x64": "0.21.5" 1772 | } 1773 | }, 1774 | "node_modules/eslint": { 1775 | "version": "9.16.0", 1776 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.16.0.tgz", 1777 | "integrity": "sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==", 1778 | "dev": true, 1779 | "license": "MIT", 1780 | "dependencies": { 1781 | "@eslint-community/eslint-utils": "^4.2.0", 1782 | "@eslint-community/regexpp": "^4.12.1", 1783 | "@eslint/config-array": "^0.19.0", 1784 | "@eslint/core": "^0.9.0", 1785 | "@eslint/eslintrc": "^3.2.0", 1786 | "@eslint/js": "9.16.0", 1787 | "@eslint/plugin-kit": "^0.2.3", 1788 | "@humanfs/node": "^0.16.6", 1789 | "@humanwhocodes/module-importer": "^1.0.1", 1790 | "@humanwhocodes/retry": "^0.4.1", 1791 | "@types/estree": "^1.0.6", 1792 | "@types/json-schema": "^7.0.15", 1793 | "ajv": "^6.12.4", 1794 | "chalk": "^4.0.0", 1795 | "cross-spawn": "^7.0.5", 1796 | "debug": "^4.3.2", 1797 | "escape-string-regexp": "^4.0.0", 1798 | "eslint-scope": "^8.2.0", 1799 | "eslint-visitor-keys": "^4.2.0", 1800 | "espree": "^10.3.0", 1801 | "esquery": "^1.5.0", 1802 | "esutils": "^2.0.2", 1803 | "fast-deep-equal": "^3.1.3", 1804 | "file-entry-cache": "^8.0.0", 1805 | "find-up": "^5.0.0", 1806 | "glob-parent": "^6.0.2", 1807 | "ignore": "^5.2.0", 1808 | "imurmurhash": "^0.1.4", 1809 | "is-glob": "^4.0.0", 1810 | "json-stable-stringify-without-jsonify": "^1.0.1", 1811 | "lodash.merge": "^4.6.2", 1812 | "minimatch": "^3.1.2", 1813 | "natural-compare": "^1.4.0", 1814 | "optionator": "^0.9.3" 1815 | }, 1816 | "bin": { 1817 | "eslint": "bin/eslint.js" 1818 | }, 1819 | "engines": { 1820 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1821 | }, 1822 | "funding": { 1823 | "url": "https://eslint.org/donate" 1824 | }, 1825 | "peerDependencies": { 1826 | "jiti": "*" 1827 | }, 1828 | "peerDependenciesMeta": { 1829 | "jiti": { 1830 | "optional": true 1831 | } 1832 | } 1833 | }, 1834 | "node_modules/eslint-plugin-react-hooks": { 1835 | "version": "5.1.0-rc-fb9a90fa48-20240614", 1836 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0-rc-fb9a90fa48-20240614.tgz", 1837 | "integrity": "sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w==", 1838 | "dev": true, 1839 | "engines": { 1840 | "node": ">=10" 1841 | }, 1842 | "peerDependencies": { 1843 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" 1844 | } 1845 | }, 1846 | "node_modules/eslint-plugin-react-refresh": { 1847 | "version": "0.4.11", 1848 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.11.tgz", 1849 | "integrity": "sha512-wrAKxMbVr8qhXTtIKfXqAn5SAtRZt0aXxe5P23Fh4pUAdC6XEsybGLB8P0PI4j1yYqOgUEUlzKAGDfo7rJOjcw==", 1850 | "dev": true, 1851 | "peerDependencies": { 1852 | "eslint": ">=7" 1853 | } 1854 | }, 1855 | "node_modules/eslint-scope": { 1856 | "version": "8.2.0", 1857 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz", 1858 | "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==", 1859 | "dev": true, 1860 | "license": "BSD-2-Clause", 1861 | "dependencies": { 1862 | "esrecurse": "^4.3.0", 1863 | "estraverse": "^5.2.0" 1864 | }, 1865 | "engines": { 1866 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1867 | }, 1868 | "funding": { 1869 | "url": "https://opencollective.com/eslint" 1870 | } 1871 | }, 1872 | "node_modules/eslint-visitor-keys": { 1873 | "version": "3.4.3", 1874 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1875 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1876 | "dev": true, 1877 | "engines": { 1878 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1879 | }, 1880 | "funding": { 1881 | "url": "https://opencollective.com/eslint" 1882 | } 1883 | }, 1884 | "node_modules/eslint/node_modules/escape-string-regexp": { 1885 | "version": "4.0.0", 1886 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1887 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1888 | "dev": true, 1889 | "engines": { 1890 | "node": ">=10" 1891 | }, 1892 | "funding": { 1893 | "url": "https://github.com/sponsors/sindresorhus" 1894 | } 1895 | }, 1896 | "node_modules/eslint/node_modules/eslint-visitor-keys": { 1897 | "version": "4.2.0", 1898 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 1899 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 1900 | "dev": true, 1901 | "license": "Apache-2.0", 1902 | "engines": { 1903 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1904 | }, 1905 | "funding": { 1906 | "url": "https://opencollective.com/eslint" 1907 | } 1908 | }, 1909 | "node_modules/eslint/node_modules/find-up": { 1910 | "version": "5.0.0", 1911 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1912 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1913 | "dev": true, 1914 | "dependencies": { 1915 | "locate-path": "^6.0.0", 1916 | "path-exists": "^4.0.0" 1917 | }, 1918 | "engines": { 1919 | "node": ">=10" 1920 | }, 1921 | "funding": { 1922 | "url": "https://github.com/sponsors/sindresorhus" 1923 | } 1924 | }, 1925 | "node_modules/eslint/node_modules/glob-parent": { 1926 | "version": "6.0.2", 1927 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1928 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1929 | "dev": true, 1930 | "dependencies": { 1931 | "is-glob": "^4.0.3" 1932 | }, 1933 | "engines": { 1934 | "node": ">=10.13.0" 1935 | } 1936 | }, 1937 | "node_modules/eslint/node_modules/locate-path": { 1938 | "version": "6.0.0", 1939 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1940 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1941 | "dev": true, 1942 | "dependencies": { 1943 | "p-locate": "^5.0.0" 1944 | }, 1945 | "engines": { 1946 | "node": ">=10" 1947 | }, 1948 | "funding": { 1949 | "url": "https://github.com/sponsors/sindresorhus" 1950 | } 1951 | }, 1952 | "node_modules/eslint/node_modules/p-limit": { 1953 | "version": "3.1.0", 1954 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1955 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1956 | "dev": true, 1957 | "dependencies": { 1958 | "yocto-queue": "^0.1.0" 1959 | }, 1960 | "engines": { 1961 | "node": ">=10" 1962 | }, 1963 | "funding": { 1964 | "url": "https://github.com/sponsors/sindresorhus" 1965 | } 1966 | }, 1967 | "node_modules/eslint/node_modules/p-locate": { 1968 | "version": "5.0.0", 1969 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1970 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1971 | "dev": true, 1972 | "dependencies": { 1973 | "p-limit": "^3.0.2" 1974 | }, 1975 | "engines": { 1976 | "node": ">=10" 1977 | }, 1978 | "funding": { 1979 | "url": "https://github.com/sponsors/sindresorhus" 1980 | } 1981 | }, 1982 | "node_modules/espree": { 1983 | "version": "10.3.0", 1984 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", 1985 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", 1986 | "dev": true, 1987 | "license": "BSD-2-Clause", 1988 | "dependencies": { 1989 | "acorn": "^8.14.0", 1990 | "acorn-jsx": "^5.3.2", 1991 | "eslint-visitor-keys": "^4.2.0" 1992 | }, 1993 | "engines": { 1994 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 1995 | }, 1996 | "funding": { 1997 | "url": "https://opencollective.com/eslint" 1998 | } 1999 | }, 2000 | "node_modules/espree/node_modules/eslint-visitor-keys": { 2001 | "version": "4.2.0", 2002 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", 2003 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", 2004 | "dev": true, 2005 | "license": "Apache-2.0", 2006 | "engines": { 2007 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2008 | }, 2009 | "funding": { 2010 | "url": "https://opencollective.com/eslint" 2011 | } 2012 | }, 2013 | "node_modules/esquery": { 2014 | "version": "1.5.0", 2015 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 2016 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 2017 | "dev": true, 2018 | "dependencies": { 2019 | "estraverse": "^5.1.0" 2020 | }, 2021 | "engines": { 2022 | "node": ">=0.10" 2023 | } 2024 | }, 2025 | "node_modules/esrecurse": { 2026 | "version": "4.3.0", 2027 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 2028 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 2029 | "dev": true, 2030 | "license": "BSD-2-Clause", 2031 | "dependencies": { 2032 | "estraverse": "^5.2.0" 2033 | }, 2034 | "engines": { 2035 | "node": ">=4.0" 2036 | } 2037 | }, 2038 | "node_modules/estraverse": { 2039 | "version": "5.3.0", 2040 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 2041 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 2042 | "dev": true, 2043 | "engines": { 2044 | "node": ">=4.0" 2045 | } 2046 | }, 2047 | "node_modules/esutils": { 2048 | "version": "2.0.3", 2049 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 2050 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 2051 | "dev": true, 2052 | "engines": { 2053 | "node": ">=0.10.0" 2054 | } 2055 | }, 2056 | "node_modules/fast-deep-equal": { 2057 | "version": "3.1.3", 2058 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 2059 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 2060 | "dev": true, 2061 | "license": "MIT" 2062 | }, 2063 | "node_modules/fast-glob": { 2064 | "version": "3.3.2", 2065 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 2066 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 2067 | "dev": true, 2068 | "dependencies": { 2069 | "@nodelib/fs.stat": "^2.0.2", 2070 | "@nodelib/fs.walk": "^1.2.3", 2071 | "glob-parent": "^5.1.2", 2072 | "merge2": "^1.3.0", 2073 | "micromatch": "^4.0.4" 2074 | }, 2075 | "engines": { 2076 | "node": ">=8.6.0" 2077 | } 2078 | }, 2079 | "node_modules/fast-json-stable-stringify": { 2080 | "version": "2.1.0", 2081 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 2082 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 2083 | "dev": true, 2084 | "license": "MIT" 2085 | }, 2086 | "node_modules/fast-levenshtein": { 2087 | "version": "2.0.6", 2088 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 2089 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 2090 | "dev": true 2091 | }, 2092 | "node_modules/fastq": { 2093 | "version": "1.15.0", 2094 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 2095 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 2096 | "dev": true, 2097 | "dependencies": { 2098 | "reusify": "^1.0.4" 2099 | } 2100 | }, 2101 | "node_modules/file-entry-cache": { 2102 | "version": "8.0.0", 2103 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", 2104 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", 2105 | "dev": true, 2106 | "dependencies": { 2107 | "flat-cache": "^4.0.0" 2108 | }, 2109 | "engines": { 2110 | "node": ">=16.0.0" 2111 | } 2112 | }, 2113 | "node_modules/fill-range": { 2114 | "version": "7.1.1", 2115 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", 2116 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", 2117 | "dev": true, 2118 | "license": "MIT", 2119 | "dependencies": { 2120 | "to-regex-range": "^5.0.1" 2121 | }, 2122 | "engines": { 2123 | "node": ">=8" 2124 | } 2125 | }, 2126 | "node_modules/flat-cache": { 2127 | "version": "4.0.1", 2128 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", 2129 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", 2130 | "dev": true, 2131 | "dependencies": { 2132 | "flatted": "^3.2.9", 2133 | "keyv": "^4.5.4" 2134 | }, 2135 | "engines": { 2136 | "node": ">=16" 2137 | } 2138 | }, 2139 | "node_modules/flatted": { 2140 | "version": "3.3.1", 2141 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", 2142 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", 2143 | "dev": true 2144 | }, 2145 | "node_modules/fsevents": { 2146 | "version": "2.3.3", 2147 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2148 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2149 | "dev": true, 2150 | "hasInstallScript": true, 2151 | "optional": true, 2152 | "os": [ 2153 | "darwin" 2154 | ], 2155 | "engines": { 2156 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2157 | } 2158 | }, 2159 | "node_modules/glob-parent": { 2160 | "version": "5.1.2", 2161 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 2162 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 2163 | "dev": true, 2164 | "dependencies": { 2165 | "is-glob": "^4.0.1" 2166 | }, 2167 | "engines": { 2168 | "node": ">= 6" 2169 | } 2170 | }, 2171 | "node_modules/globals": { 2172 | "version": "15.9.0", 2173 | "resolved": "https://registry.npmjs.org/globals/-/globals-15.9.0.tgz", 2174 | "integrity": "sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==", 2175 | "dev": true, 2176 | "engines": { 2177 | "node": ">=18" 2178 | }, 2179 | "funding": { 2180 | "url": "https://github.com/sponsors/sindresorhus" 2181 | } 2182 | }, 2183 | "node_modules/graphemer": { 2184 | "version": "1.4.0", 2185 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2186 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2187 | "dev": true 2188 | }, 2189 | "node_modules/has-flag": { 2190 | "version": "4.0.0", 2191 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2192 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2193 | "dev": true, 2194 | "engines": { 2195 | "node": ">=8" 2196 | } 2197 | }, 2198 | "node_modules/hoist-non-react-statics": { 2199 | "version": "3.3.2", 2200 | "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", 2201 | "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", 2202 | "dependencies": { 2203 | "react-is": "^16.7.0" 2204 | } 2205 | }, 2206 | "node_modules/hoist-non-react-statics/node_modules/react-is": { 2207 | "version": "16.13.1", 2208 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 2209 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 2210 | }, 2211 | "node_modules/ignore": { 2212 | "version": "5.3.2", 2213 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", 2214 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", 2215 | "dev": true, 2216 | "engines": { 2217 | "node": ">= 4" 2218 | } 2219 | }, 2220 | "node_modules/import-fresh": { 2221 | "version": "3.3.0", 2222 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2223 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2224 | "dev": true, 2225 | "license": "MIT", 2226 | "dependencies": { 2227 | "parent-module": "^1.0.0", 2228 | "resolve-from": "^4.0.0" 2229 | }, 2230 | "engines": { 2231 | "node": ">=6" 2232 | }, 2233 | "funding": { 2234 | "url": "https://github.com/sponsors/sindresorhus" 2235 | } 2236 | }, 2237 | "node_modules/imurmurhash": { 2238 | "version": "0.1.4", 2239 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2240 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2241 | "dev": true, 2242 | "engines": { 2243 | "node": ">=0.8.19" 2244 | } 2245 | }, 2246 | "node_modules/is-extglob": { 2247 | "version": "2.1.1", 2248 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2249 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2250 | "dev": true, 2251 | "engines": { 2252 | "node": ">=0.10.0" 2253 | } 2254 | }, 2255 | "node_modules/is-glob": { 2256 | "version": "4.0.3", 2257 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2258 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2259 | "dev": true, 2260 | "dependencies": { 2261 | "is-extglob": "^2.1.1" 2262 | }, 2263 | "engines": { 2264 | "node": ">=0.10.0" 2265 | } 2266 | }, 2267 | "node_modules/is-number": { 2268 | "version": "7.0.0", 2269 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2270 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2271 | "dev": true, 2272 | "license": "MIT", 2273 | "engines": { 2274 | "node": ">=0.12.0" 2275 | } 2276 | }, 2277 | "node_modules/isexe": { 2278 | "version": "2.0.0", 2279 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2280 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2281 | "dev": true, 2282 | "license": "ISC" 2283 | }, 2284 | "node_modules/jiti": { 2285 | "version": "1.20.0", 2286 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.20.0.tgz", 2287 | "integrity": "sha512-3TV69ZbrvV6U5DfQimop50jE9Dl6J8O1ja1dvBbMba/sZ3YBEQqJ2VZRoQPVnhlzjNtU1vaXRZVrVjU4qtm8yA==", 2288 | "dev": true, 2289 | "optional": true, 2290 | "peer": true, 2291 | "bin": { 2292 | "jiti": "bin/jiti.js" 2293 | } 2294 | }, 2295 | "node_modules/js-tokens": { 2296 | "version": "4.0.0", 2297 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2298 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2299 | }, 2300 | "node_modules/js-yaml": { 2301 | "version": "4.1.0", 2302 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2303 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2304 | "dev": true, 2305 | "license": "MIT", 2306 | "dependencies": { 2307 | "argparse": "^2.0.1" 2308 | }, 2309 | "bin": { 2310 | "js-yaml": "bin/js-yaml.js" 2311 | } 2312 | }, 2313 | "node_modules/json-buffer": { 2314 | "version": "3.0.1", 2315 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2316 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2317 | "dev": true 2318 | }, 2319 | "node_modules/json-schema-traverse": { 2320 | "version": "0.4.1", 2321 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2322 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2323 | "dev": true, 2324 | "license": "MIT" 2325 | }, 2326 | "node_modules/json-stable-stringify-without-jsonify": { 2327 | "version": "1.0.1", 2328 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2329 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2330 | "dev": true 2331 | }, 2332 | "node_modules/keyv": { 2333 | "version": "4.5.4", 2334 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2335 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2336 | "dev": true, 2337 | "dependencies": { 2338 | "json-buffer": "3.0.1" 2339 | } 2340 | }, 2341 | "node_modules/levn": { 2342 | "version": "0.4.1", 2343 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2344 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2345 | "dev": true, 2346 | "dependencies": { 2347 | "prelude-ls": "^1.2.1", 2348 | "type-check": "~0.4.0" 2349 | }, 2350 | "engines": { 2351 | "node": ">= 0.8.0" 2352 | } 2353 | }, 2354 | "node_modules/lodash": { 2355 | "version": "4.17.21", 2356 | "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", 2357 | "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" 2358 | }, 2359 | "node_modules/lodash.merge": { 2360 | "version": "4.6.2", 2361 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2362 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2363 | "dev": true 2364 | }, 2365 | "node_modules/loose-envify": { 2366 | "version": "1.4.0", 2367 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2368 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2369 | "dependencies": { 2370 | "js-tokens": "^3.0.0 || ^4.0.0" 2371 | }, 2372 | "bin": { 2373 | "loose-envify": "cli.js" 2374 | } 2375 | }, 2376 | "node_modules/merge2": { 2377 | "version": "1.4.1", 2378 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2379 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2380 | "dev": true, 2381 | "engines": { 2382 | "node": ">= 8" 2383 | } 2384 | }, 2385 | "node_modules/micromatch": { 2386 | "version": "4.0.8", 2387 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", 2388 | "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", 2389 | "dev": true, 2390 | "license": "MIT", 2391 | "dependencies": { 2392 | "braces": "^3.0.3", 2393 | "picomatch": "^2.3.1" 2394 | }, 2395 | "engines": { 2396 | "node": ">=8.6" 2397 | } 2398 | }, 2399 | "node_modules/minimatch": { 2400 | "version": "3.1.2", 2401 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2402 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2403 | "dev": true, 2404 | "license": "ISC", 2405 | "dependencies": { 2406 | "brace-expansion": "^1.1.7" 2407 | }, 2408 | "engines": { 2409 | "node": "*" 2410 | } 2411 | }, 2412 | "node_modules/ms": { 2413 | "version": "2.1.3", 2414 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", 2415 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", 2416 | "dev": true, 2417 | "license": "MIT" 2418 | }, 2419 | "node_modules/nanoid": { 2420 | "version": "3.3.8", 2421 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", 2422 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", 2423 | "dev": true, 2424 | "funding": [ 2425 | { 2426 | "type": "github", 2427 | "url": "https://github.com/sponsors/ai" 2428 | } 2429 | ], 2430 | "license": "MIT", 2431 | "bin": { 2432 | "nanoid": "bin/nanoid.cjs" 2433 | }, 2434 | "engines": { 2435 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2436 | } 2437 | }, 2438 | "node_modules/natural-compare": { 2439 | "version": "1.4.0", 2440 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2441 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2442 | "dev": true 2443 | }, 2444 | "node_modules/optionator": { 2445 | "version": "0.9.3", 2446 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 2447 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 2448 | "dev": true, 2449 | "dependencies": { 2450 | "@aashutoshrathi/word-wrap": "^1.2.3", 2451 | "deep-is": "^0.1.3", 2452 | "fast-levenshtein": "^2.0.6", 2453 | "levn": "^0.4.1", 2454 | "prelude-ls": "^1.2.1", 2455 | "type-check": "^0.4.0" 2456 | }, 2457 | "engines": { 2458 | "node": ">= 0.8.0" 2459 | } 2460 | }, 2461 | "node_modules/parent-module": { 2462 | "version": "1.0.1", 2463 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 2464 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 2465 | "dev": true, 2466 | "license": "MIT", 2467 | "dependencies": { 2468 | "callsites": "^3.0.0" 2469 | }, 2470 | "engines": { 2471 | "node": ">=6" 2472 | } 2473 | }, 2474 | "node_modules/path-exists": { 2475 | "version": "4.0.0", 2476 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 2477 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 2478 | "dev": true, 2479 | "engines": { 2480 | "node": ">=8" 2481 | } 2482 | }, 2483 | "node_modules/path-key": { 2484 | "version": "3.1.1", 2485 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 2486 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 2487 | "dev": true, 2488 | "license": "MIT", 2489 | "engines": { 2490 | "node": ">=8" 2491 | } 2492 | }, 2493 | "node_modules/picocolors": { 2494 | "version": "1.1.0", 2495 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", 2496 | "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", 2497 | "dev": true 2498 | }, 2499 | "node_modules/picomatch": { 2500 | "version": "2.3.1", 2501 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 2502 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 2503 | "dev": true, 2504 | "engines": { 2505 | "node": ">=8.6" 2506 | }, 2507 | "funding": { 2508 | "url": "https://github.com/sponsors/jonschlinkert" 2509 | } 2510 | }, 2511 | "node_modules/postcss": { 2512 | "version": "8.4.45", 2513 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.45.tgz", 2514 | "integrity": "sha512-7KTLTdzdZZYscUc65XmjFiB73vBhBfbPztCYdUNvlaso9PrzjzcmjqBPR0lNGkcVlcO4BjiO5rK/qNz+XAen1Q==", 2515 | "dev": true, 2516 | "funding": [ 2517 | { 2518 | "type": "opencollective", 2519 | "url": "https://opencollective.com/postcss/" 2520 | }, 2521 | { 2522 | "type": "tidelift", 2523 | "url": "https://tidelift.com/funding/github/npm/postcss" 2524 | }, 2525 | { 2526 | "type": "github", 2527 | "url": "https://github.com/sponsors/ai" 2528 | } 2529 | ], 2530 | "dependencies": { 2531 | "nanoid": "^3.3.7", 2532 | "picocolors": "^1.0.1", 2533 | "source-map-js": "^1.2.0" 2534 | }, 2535 | "engines": { 2536 | "node": "^10 || ^12 || >=14" 2537 | } 2538 | }, 2539 | "node_modules/prelude-ls": { 2540 | "version": "1.2.1", 2541 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 2542 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 2543 | "dev": true, 2544 | "engines": { 2545 | "node": ">= 0.8.0" 2546 | } 2547 | }, 2548 | "node_modules/punycode": { 2549 | "version": "2.3.1", 2550 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 2551 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 2552 | "dev": true, 2553 | "license": "MIT", 2554 | "engines": { 2555 | "node": ">=6" 2556 | } 2557 | }, 2558 | "node_modules/queue-microtask": { 2559 | "version": "1.2.3", 2560 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 2561 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 2562 | "dev": true, 2563 | "funding": [ 2564 | { 2565 | "type": "github", 2566 | "url": "https://github.com/sponsors/feross" 2567 | }, 2568 | { 2569 | "type": "patreon", 2570 | "url": "https://www.patreon.com/feross" 2571 | }, 2572 | { 2573 | "type": "consulting", 2574 | "url": "https://feross.org/support" 2575 | } 2576 | ] 2577 | }, 2578 | "node_modules/react": { 2579 | "version": "18.3.1", 2580 | "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", 2581 | "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", 2582 | "dependencies": { 2583 | "loose-envify": "^1.1.0" 2584 | }, 2585 | "engines": { 2586 | "node": ">=0.10.0" 2587 | } 2588 | }, 2589 | "node_modules/react-dom": { 2590 | "version": "18.3.1", 2591 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", 2592 | "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", 2593 | "dependencies": { 2594 | "loose-envify": "^1.1.0", 2595 | "scheduler": "^0.23.2" 2596 | }, 2597 | "peerDependencies": { 2598 | "react": "^18.3.1" 2599 | } 2600 | }, 2601 | "node_modules/redux": { 2602 | "version": "4.2.1", 2603 | "resolved": "https://registry.npmjs.org/redux/-/redux-4.2.1.tgz", 2604 | "integrity": "sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==", 2605 | "dependencies": { 2606 | "@babel/runtime": "^7.9.2" 2607 | } 2608 | }, 2609 | "node_modules/redux-thunk": { 2610 | "version": "2.4.2", 2611 | "resolved": "https://registry.npmjs.org/redux-thunk/-/redux-thunk-2.4.2.tgz", 2612 | "integrity": "sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==", 2613 | "peerDependencies": { 2614 | "redux": "^4" 2615 | } 2616 | }, 2617 | "node_modules/regenerator-runtime": { 2618 | "version": "0.14.0", 2619 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", 2620 | "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" 2621 | }, 2622 | "node_modules/resolve-from": { 2623 | "version": "4.0.0", 2624 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 2625 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 2626 | "dev": true, 2627 | "license": "MIT", 2628 | "engines": { 2629 | "node": ">=4" 2630 | } 2631 | }, 2632 | "node_modules/reusify": { 2633 | "version": "1.0.4", 2634 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 2635 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 2636 | "dev": true, 2637 | "engines": { 2638 | "iojs": ">=1.0.0", 2639 | "node": ">=0.10.0" 2640 | } 2641 | }, 2642 | "node_modules/rollup": { 2643 | "version": "4.28.0", 2644 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.28.0.tgz", 2645 | "integrity": "sha512-G9GOrmgWHBma4YfCcX8PjH0qhXSdH8B4HDE2o4/jaxj93S4DPCIDoLcXz99eWMji4hB29UFCEd7B2gwGJDR9cQ==", 2646 | "dev": true, 2647 | "license": "MIT", 2648 | "dependencies": { 2649 | "@types/estree": "1.0.6" 2650 | }, 2651 | "bin": { 2652 | "rollup": "dist/bin/rollup" 2653 | }, 2654 | "engines": { 2655 | "node": ">=18.0.0", 2656 | "npm": ">=8.0.0" 2657 | }, 2658 | "optionalDependencies": { 2659 | "@rollup/rollup-android-arm-eabi": "4.28.0", 2660 | "@rollup/rollup-android-arm64": "4.28.0", 2661 | "@rollup/rollup-darwin-arm64": "4.28.0", 2662 | "@rollup/rollup-darwin-x64": "4.28.0", 2663 | "@rollup/rollup-freebsd-arm64": "4.28.0", 2664 | "@rollup/rollup-freebsd-x64": "4.28.0", 2665 | "@rollup/rollup-linux-arm-gnueabihf": "4.28.0", 2666 | "@rollup/rollup-linux-arm-musleabihf": "4.28.0", 2667 | "@rollup/rollup-linux-arm64-gnu": "4.28.0", 2668 | "@rollup/rollup-linux-arm64-musl": "4.28.0", 2669 | "@rollup/rollup-linux-powerpc64le-gnu": "4.28.0", 2670 | "@rollup/rollup-linux-riscv64-gnu": "4.28.0", 2671 | "@rollup/rollup-linux-s390x-gnu": "4.28.0", 2672 | "@rollup/rollup-linux-x64-gnu": "4.28.0", 2673 | "@rollup/rollup-linux-x64-musl": "4.28.0", 2674 | "@rollup/rollup-win32-arm64-msvc": "4.28.0", 2675 | "@rollup/rollup-win32-ia32-msvc": "4.28.0", 2676 | "@rollup/rollup-win32-x64-msvc": "4.28.0", 2677 | "fsevents": "~2.3.2" 2678 | } 2679 | }, 2680 | "node_modules/run-parallel": { 2681 | "version": "1.2.0", 2682 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 2683 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 2684 | "dev": true, 2685 | "funding": [ 2686 | { 2687 | "type": "github", 2688 | "url": "https://github.com/sponsors/feross" 2689 | }, 2690 | { 2691 | "type": "patreon", 2692 | "url": "https://www.patreon.com/feross" 2693 | }, 2694 | { 2695 | "type": "consulting", 2696 | "url": "https://feross.org/support" 2697 | } 2698 | ], 2699 | "dependencies": { 2700 | "queue-microtask": "^1.2.2" 2701 | } 2702 | }, 2703 | "node_modules/scheduler": { 2704 | "version": "0.23.2", 2705 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", 2706 | "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", 2707 | "dependencies": { 2708 | "loose-envify": "^1.1.0" 2709 | } 2710 | }, 2711 | "node_modules/semver": { 2712 | "version": "7.6.3", 2713 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", 2714 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", 2715 | "dev": true, 2716 | "bin": { 2717 | "semver": "bin/semver.js" 2718 | }, 2719 | "engines": { 2720 | "node": ">=10" 2721 | } 2722 | }, 2723 | "node_modules/shebang-command": { 2724 | "version": "2.0.0", 2725 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 2726 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 2727 | "dev": true, 2728 | "license": "MIT", 2729 | "dependencies": { 2730 | "shebang-regex": "^3.0.0" 2731 | }, 2732 | "engines": { 2733 | "node": ">=8" 2734 | } 2735 | }, 2736 | "node_modules/shebang-regex": { 2737 | "version": "3.0.0", 2738 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 2739 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 2740 | "dev": true, 2741 | "license": "MIT", 2742 | "engines": { 2743 | "node": ">=8" 2744 | } 2745 | }, 2746 | "node_modules/source-map": { 2747 | "version": "0.6.1", 2748 | "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", 2749 | "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", 2750 | "dev": true, 2751 | "optional": true, 2752 | "peer": true, 2753 | "engines": { 2754 | "node": ">=0.10.0" 2755 | } 2756 | }, 2757 | "node_modules/source-map-js": { 2758 | "version": "1.2.1", 2759 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", 2760 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", 2761 | "dev": true, 2762 | "engines": { 2763 | "node": ">=0.10.0" 2764 | } 2765 | }, 2766 | "node_modules/source-map-support": { 2767 | "version": "0.5.21", 2768 | "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", 2769 | "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", 2770 | "dev": true, 2771 | "optional": true, 2772 | "peer": true, 2773 | "dependencies": { 2774 | "buffer-from": "^1.0.0", 2775 | "source-map": "^0.6.0" 2776 | } 2777 | }, 2778 | "node_modules/strip-json-comments": { 2779 | "version": "3.1.1", 2780 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 2781 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 2782 | "dev": true, 2783 | "license": "MIT", 2784 | "engines": { 2785 | "node": ">=8" 2786 | }, 2787 | "funding": { 2788 | "url": "https://github.com/sponsors/sindresorhus" 2789 | } 2790 | }, 2791 | "node_modules/supports-color": { 2792 | "version": "7.2.0", 2793 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 2794 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 2795 | "dev": true, 2796 | "dependencies": { 2797 | "has-flag": "^4.0.0" 2798 | }, 2799 | "engines": { 2800 | "node": ">=8" 2801 | } 2802 | }, 2803 | "node_modules/terser": { 2804 | "version": "5.22.0", 2805 | "resolved": "https://registry.npmjs.org/terser/-/terser-5.22.0.tgz", 2806 | "integrity": "sha512-hHZVLgRA2z4NWcN6aS5rQDc+7Dcy58HOf2zbYwmFcQ+ua3h6eEFf5lIDKTzbWwlazPyOZsFQO8V80/IjVNExEw==", 2807 | "dev": true, 2808 | "optional": true, 2809 | "peer": true, 2810 | "dependencies": { 2811 | "@jridgewell/source-map": "^0.3.3", 2812 | "acorn": "^8.8.2", 2813 | "commander": "^2.20.0", 2814 | "source-map-support": "~0.5.20" 2815 | }, 2816 | "bin": { 2817 | "terser": "bin/terser" 2818 | }, 2819 | "engines": { 2820 | "node": ">=10" 2821 | } 2822 | }, 2823 | "node_modules/terser/node_modules/commander": { 2824 | "version": "2.20.3", 2825 | "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", 2826 | "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", 2827 | "dev": true, 2828 | "optional": true, 2829 | "peer": true 2830 | }, 2831 | "node_modules/to-regex-range": { 2832 | "version": "5.0.1", 2833 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 2834 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 2835 | "dev": true, 2836 | "license": "MIT", 2837 | "dependencies": { 2838 | "is-number": "^7.0.0" 2839 | }, 2840 | "engines": { 2841 | "node": ">=8.0" 2842 | } 2843 | }, 2844 | "node_modules/ts-api-utils": { 2845 | "version": "1.3.0", 2846 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", 2847 | "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", 2848 | "dev": true, 2849 | "engines": { 2850 | "node": ">=16" 2851 | }, 2852 | "peerDependencies": { 2853 | "typescript": ">=4.2.0" 2854 | } 2855 | }, 2856 | "node_modules/type-check": { 2857 | "version": "0.4.0", 2858 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 2859 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 2860 | "dev": true, 2861 | "dependencies": { 2862 | "prelude-ls": "^1.2.1" 2863 | }, 2864 | "engines": { 2865 | "node": ">= 0.8.0" 2866 | } 2867 | }, 2868 | "node_modules/typescript": { 2869 | "version": "5.5.4", 2870 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz", 2871 | "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==", 2872 | "dev": true, 2873 | "bin": { 2874 | "tsc": "bin/tsc", 2875 | "tsserver": "bin/tsserver" 2876 | }, 2877 | "engines": { 2878 | "node": ">=14.17" 2879 | } 2880 | }, 2881 | "node_modules/typescript-eslint": { 2882 | "version": "8.4.0", 2883 | "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.4.0.tgz", 2884 | "integrity": "sha512-67qoc3zQZe3CAkO0ua17+7aCLI0dU+sSQd1eKPGq06QE4rfQjstVXR6woHO5qQvGUa550NfGckT4tzh3b3c8Pw==", 2885 | "dev": true, 2886 | "dependencies": { 2887 | "@typescript-eslint/eslint-plugin": "8.4.0", 2888 | "@typescript-eslint/parser": "8.4.0", 2889 | "@typescript-eslint/utils": "8.4.0" 2890 | }, 2891 | "engines": { 2892 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0" 2893 | }, 2894 | "funding": { 2895 | "type": "opencollective", 2896 | "url": "https://opencollective.com/typescript-eslint" 2897 | }, 2898 | "peerDependenciesMeta": { 2899 | "typescript": { 2900 | "optional": true 2901 | } 2902 | } 2903 | }, 2904 | "node_modules/undici-types": { 2905 | "version": "5.25.3", 2906 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.25.3.tgz", 2907 | "integrity": "sha512-Ga1jfYwRn7+cP9v8auvEXN1rX3sWqlayd4HP7OKk4mZWylEmu3KzXDUGrQUN6Ol7qo1gPvB2e5gX6udnyEPgdA==", 2908 | "dev": true, 2909 | "optional": true, 2910 | "peer": true 2911 | }, 2912 | "node_modules/uri-js": { 2913 | "version": "4.4.1", 2914 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 2915 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 2916 | "dev": true, 2917 | "license": "BSD-2-Clause", 2918 | "dependencies": { 2919 | "punycode": "^2.1.0" 2920 | } 2921 | }, 2922 | "node_modules/use-sync-external-store": { 2923 | "version": "1.2.0", 2924 | "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz", 2925 | "integrity": "sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA==", 2926 | "peerDependencies": { 2927 | "react": "^16.8.0 || ^17.0.0 || ^18.0.0" 2928 | } 2929 | }, 2930 | "node_modules/vite": { 2931 | "version": "5.4.18", 2932 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.18.tgz", 2933 | "integrity": "sha512-1oDcnEp3lVyHCuQ2YFelM4Alm2o91xNoMncRm1U7S+JdYfYOvbiGZ3/CxGttrOu2M/KcGz7cRC2DoNUA6urmMA==", 2934 | "dev": true, 2935 | "license": "MIT", 2936 | "dependencies": { 2937 | "esbuild": "^0.21.3", 2938 | "postcss": "^8.4.43", 2939 | "rollup": "^4.20.0" 2940 | }, 2941 | "bin": { 2942 | "vite": "bin/vite.js" 2943 | }, 2944 | "engines": { 2945 | "node": "^18.0.0 || >=20.0.0" 2946 | }, 2947 | "funding": { 2948 | "url": "https://github.com/vitejs/vite?sponsor=1" 2949 | }, 2950 | "optionalDependencies": { 2951 | "fsevents": "~2.3.3" 2952 | }, 2953 | "peerDependencies": { 2954 | "@types/node": "^18.0.0 || >=20.0.0", 2955 | "less": "*", 2956 | "lightningcss": "^1.21.0", 2957 | "sass": "*", 2958 | "sass-embedded": "*", 2959 | "stylus": "*", 2960 | "sugarss": "*", 2961 | "terser": "^5.4.0" 2962 | }, 2963 | "peerDependenciesMeta": { 2964 | "@types/node": { 2965 | "optional": true 2966 | }, 2967 | "less": { 2968 | "optional": true 2969 | }, 2970 | "lightningcss": { 2971 | "optional": true 2972 | }, 2973 | "sass": { 2974 | "optional": true 2975 | }, 2976 | "sass-embedded": { 2977 | "optional": true 2978 | }, 2979 | "stylus": { 2980 | "optional": true 2981 | }, 2982 | "sugarss": { 2983 | "optional": true 2984 | }, 2985 | "terser": { 2986 | "optional": true 2987 | } 2988 | } 2989 | }, 2990 | "node_modules/which": { 2991 | "version": "2.0.2", 2992 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 2993 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 2994 | "dev": true, 2995 | "license": "ISC", 2996 | "dependencies": { 2997 | "isexe": "^2.0.0" 2998 | }, 2999 | "bin": { 3000 | "node-which": "bin/node-which" 3001 | }, 3002 | "engines": { 3003 | "node": ">= 8" 3004 | } 3005 | }, 3006 | "node_modules/yocto-queue": { 3007 | "version": "0.1.0", 3008 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 3009 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 3010 | "dev": true, 3011 | "engines": { 3012 | "node": ">=10" 3013 | }, 3014 | "funding": { 3015 | "url": "https://github.com/sponsors/sindresorhus" 3016 | } 3017 | } 3018 | } 3019 | } 3020 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "meetingsdk-react-sample", 3 | "version": "3.13.1", 4 | "author": "Zoom Video Communications, Inc.", 5 | "contributors": [ 6 | { 7 | "name": "Tommy Gaessler" 8 | }, 9 | { 10 | "name": "EkaanshArora" 11 | } 12 | ], 13 | "homepage": "", 14 | "private": true, 15 | "type": "module", 16 | "scripts": { 17 | "dev": "vite", 18 | "build": "tsc -b && vite build", 19 | "lint": "eslint .", 20 | "preview": "vite preview" 21 | }, 22 | "dependencies": { 23 | "@zoom/meetingsdk": "^3.13.1", 24 | "react": "^18.3.1", 25 | "react-dom": "^18.3.1" 26 | }, 27 | "devDependencies": { 28 | "@eslint/js": "^9.8.0", 29 | "@types/react": "^18.3.3", 30 | "@types/react-dom": "^18.3.0", 31 | "@vitejs/plugin-react-swc": "^3.5.0", 32 | "eslint": "^9.8.0", 33 | "eslint-plugin-react-hooks": "^5.1.0-rc.0", 34 | "eslint-plugin-react-refresh": "^0.4.9", 35 | "globals": "^15.9.0", 36 | "typescript": "^5.5.3", 37 | "typescript-eslint": "^8.0.0", 38 | "vite": "^5.4.0" 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /public/images/meetingsdk-web-client-view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-react-sample/799cdebb4809165299bf10b041140acd8d850b19/public/images/meetingsdk-web-client-view.gif -------------------------------------------------------------------------------- /public/images/meetingsdk-web-component-view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoom/meetingsdk-react-sample/799cdebb4809165299bf10b041140acd8d850b19/public/images/meetingsdk-web-component-view.gif -------------------------------------------------------------------------------- /src/App-New.tsx: -------------------------------------------------------------------------------- 1 | import "./App.css"; 2 | import ZoomMtgEmbedded from "@zoom/meetingsdk/embedded"; 3 | 4 | function App() { 5 | const client = ZoomMtgEmbedded.createClient(); 6 | 7 | const authEndpoint = ""; // http://localhost:4000 8 | const sdkKey = ""; 9 | const meetingNumber = ""; 10 | const passWord = ""; 11 | const role = 0; 12 | const userName = "React"; 13 | const userEmail = ""; 14 | const registrantToken = ""; 15 | const zakToken = ""; 16 | 17 | const getSignature = async () => { 18 | try { 19 | const req = await fetch(authEndpoint, { 20 | method: "POST", 21 | headers: { "Content-Type": "application/json" }, 22 | body: JSON.stringify({ 23 | meetingNumber: meetingNumber, 24 | role: role, 25 | }), 26 | }); 27 | const res = await req.json() 28 | const signature = res.signature as string; 29 | startMeeting(signature) 30 | } catch (e) { 31 | console.log(e); 32 | } 33 | }; 34 | 35 | async function startMeeting(signature: string) { 36 | const meetingSDKElement = document.getElementById("meetingSDKElement")!; 37 | try { 38 | await client.init({ 39 | zoomAppRoot: meetingSDKElement, 40 | language: "en-US", 41 | patchJsMedia: true, 42 | leaveOnPageUnload: true, 43 | }) 44 | await client.join({ 45 | signature: signature, 46 | sdkKey: sdkKey, 47 | meetingNumber: meetingNumber, 48 | password: passWord, 49 | userName: userName, 50 | userEmail: userEmail, 51 | tk: registrantToken, 52 | zak: zakToken, 53 | }) 54 | console.log("joined successfully"); 55 | } catch (error) { 56 | console.log(error); 57 | } 58 | } 59 | 60 | return ( 61 |
62 |
63 |

Zoom Meeting SDK Sample React

64 | {/* For Component View */} 65 |
66 | {/* Zoom Meeting SDK Component View Rendered Here */} 67 |
68 | 69 |
70 |
71 | ); 72 | } 73 | 74 | export default App; 75 | -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | main { 2 | width: 70%; 3 | margin: auto; 4 | text-align: center; 5 | } 6 | 7 | main button { 8 | margin-top: 20px; 9 | background-color: #2D8CFF; 10 | color: #ffffff; 11 | text-decoration: none; 12 | padding-top: 10px; 13 | padding-bottom: 10px; 14 | padding-left: 40px; 15 | padding-right: 40px; 16 | display: inline-block; 17 | border-radius: 10px; 18 | cursor: pointer; 19 | border: none; 20 | outline: none; 21 | } 22 | 23 | main button:hover { 24 | background-color: #2681F2; 25 | } 26 | -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- 1 | import "./App.css"; 2 | import { ZoomMtg } from "@zoom/meetingsdk"; 3 | 4 | ZoomMtg.preLoadWasm(); 5 | ZoomMtg.prepareWebSDK(); 6 | 7 | function App() { 8 | const authEndpoint = ""; // http://localhost:4000 9 | const sdkKey = ""; 10 | const meetingNumber = ""; 11 | const passWord = ""; 12 | const role = 0; 13 | const userName = "React"; 14 | const userEmail = ""; 15 | const registrantToken = ""; 16 | const zakToken = ""; 17 | const leaveUrl = "http://localhost:5173"; 18 | 19 | const getSignature = async () => { 20 | try { 21 | const req = await fetch(authEndpoint, { 22 | method: "POST", 23 | headers: { "Content-Type": "application/json" }, 24 | body: JSON.stringify({ 25 | meetingNumber: meetingNumber, 26 | role: role, 27 | }), 28 | }); 29 | const res = await req.json() 30 | const signature = res.signature as string; 31 | startMeeting(signature) 32 | } catch (e) { 33 | console.log(e); 34 | } 35 | }; 36 | 37 | function startMeeting(signature: string) { 38 | document.getElementById("zmmtg-root")!.style.display = "block"; 39 | 40 | ZoomMtg.init({ 41 | leaveUrl: leaveUrl, 42 | patchJsMedia: true, 43 | leaveOnPageUnload: true, 44 | success: (success: unknown) => { 45 | console.log(success); 46 | // can this be async? 47 | ZoomMtg.join({ 48 | signature: signature, 49 | sdkKey: sdkKey, 50 | meetingNumber: meetingNumber, 51 | passWord: passWord, 52 | userName: userName, 53 | userEmail: userEmail, 54 | tk: registrantToken, 55 | zak: zakToken, 56 | success: (success: unknown) => { 57 | console.log(success); 58 | }, 59 | error: (error: unknown) => { 60 | console.log(error); 61 | }, 62 | }); 63 | }, 64 | error: (error: unknown) => { 65 | console.log(error); 66 | }, 67 | }); 68 | } 69 | 70 | return ( 71 |
72 |
73 |

Zoom Meeting SDK Sample React

74 | 75 |
76 |
77 | ); 78 | } 79 | 80 | export default App; 81 | -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 4 | 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 5 | sans-serif; 6 | -webkit-font-smoothing: antialiased; 7 | -moz-osx-font-smoothing: grayscale; 8 | } 9 | 10 | html, body { 11 | min-width: 0 !important; 12 | } 13 | 14 | #zmmtg-root { 15 | display: none; 16 | min-width: 0 !important; 17 | } 18 | 19 | iframe#webpack-dev-server-client-overlay{display:none!important} -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- 1 | import { StrictMode } from "react"; 2 | import { createRoot } from "react-dom/client"; 3 | import App from "./App"; 4 | import "./index.css"; 5 | 6 | createRoot(document.getElementById("root")!).render( 7 | 8 | 9 | 10 | ); 11 | -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- 1 | const reportWebVitals = onPerfEntry => { 2 | if (onPerfEntry && onPerfEntry instanceof Function) { 3 | import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { 4 | getCLS(onPerfEntry); 5 | getFID(onPerfEntry); 6 | getFCP(onPerfEntry); 7 | getLCP(onPerfEntry); 8 | getTTFB(onPerfEntry); 9 | }); 10 | } 11 | }; 12 | 13 | export default reportWebVitals; 14 | -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import '@testing-library/jest-dom'; 6 | -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2020", 4 | "useDefineForClassFields": true, 5 | "lib": ["ES2020", "DOM", "DOM.Iterable"], 6 | "module": "ESNext", 7 | "skipLibCheck": true, 8 | 9 | /* Bundler mode */ 10 | "moduleResolution": "bundler", 11 | "allowImportingTsExtensions": true, 12 | "isolatedModules": true, 13 | "moduleDetection": "force", 14 | "noEmit": true, 15 | "jsx": "react-jsx", 16 | 17 | /* Linting */ 18 | "strict": true, 19 | "noUnusedLocals": true, 20 | "noUnusedParameters": true, 21 | "noFallthroughCasesInSwitch": true 22 | }, 23 | "include": ["src"] 24 | } 25 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "files": [], 3 | "references": [ 4 | { "path": "./tsconfig.app.json" }, 5 | { "path": "./tsconfig.node.json" } 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES2022", 4 | "lib": ["ES2023"], 5 | "module": "ESNext", 6 | "skipLibCheck": true, 7 | 8 | /* Bundler mode */ 9 | "moduleResolution": "bundler", 10 | "allowImportingTsExtensions": true, 11 | "isolatedModules": true, 12 | "moduleDetection": "force", 13 | "noEmit": true, 14 | 15 | /* Linting */ 16 | "strict": true, 17 | "noUnusedLocals": true, 18 | "noUnusedParameters": true, 19 | "noFallthroughCasesInSwitch": true 20 | }, 21 | "include": ["vite.config.ts"] 22 | } 23 | -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from 'vite' 2 | import react from '@vitejs/plugin-react-swc' 3 | 4 | // https://vitejs.dev/config/ 5 | export default defineConfig({ 6 | plugins: [react()], 7 | }) 8 | --------------------------------------------------------------------------------