├── .env.example ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── components.json ├── components ├── GasCard.tsx └── ui │ └── card.tsx ├── lib ├── getData.ts └── utils.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── tailwind.config.js ├── tailwind.config.ts ├── tsconfig.json └── types.d.ts /.env.example: -------------------------------------------------------------------------------- 1 | INFURA_API_KEY= 2 | INFURA_API_KEY_SECRET= -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | .yarn/install-state.gz 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # Ignore environment variables 29 | .env 30 | .env.local 31 | .env.development.local 32 | .env.test.local 33 | .env.production.local 34 | 35 | # Ignore other dotfiles 36 | .DS_Store 37 | .*swp 38 | .idea/ 39 | 40 | # vercel 41 | .vercel 42 | 43 | # typescript 44 | *.tsbuildinfo 45 | next-env.d.ts 46 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | [![Gas API tutorial image 1](https://img.youtube.com/vi/74clgGR6rok/0.jpg)](https://www.youtube.com/watch?v=74clgGR6rok) 3 | 4 | In this tutorial, we will learn how to build a Gas Tracker App using the Gas API, Next.js, and ShadcnUI. This application will enable dapp users to access recommended gas prices tailored to their transaction priority. Watch the YouTube video above for a brief introduction to the Gas API. 5 | 6 | Understanding Gas Prices 7 | -------------------- 8 | 'Gas' refers to a unit that measures the amount of computational effort required to execute operations, such as making transactions or running smart contracts. It's akin to fuel for a car -- necessary for the network to process and validate operations. Each transaction on Ethereum requires a specific amount of gas, determined by its complexity. Users set a gas price in Gwei (1 Gwei = 1 billionth of an Ether), representing the amount of Ether they are willing to pay per unit of gas. 9 | 10 | Understanding gas prices is crucial in blockchain networks, as it helps users manage the cost of their transactions. Knowledge of current gas prices enables users to select the most economical time to initiate a transaction and determine its speed. Awareness of gas prices is also vital to prevent failed transactions, plan budgets, understand network congestion, and make informed investment decisions. 11 | 12 | ![Gas API tutorial image 1](https://images.ctfassets.net/9sy2a0egs6zh/4rVsrBM5eUvgT2b68DIQdA/e30bade0c4aa0cc62f409b623eb3596f/image3.png) 13 | 14 | The MetaMask Gas API 15 | -------------------- 16 | 17 | The MetaMask Gas API, available through Infura is a specialized tool designed to provide real-time gas price information for Ethereum Virtual Machine (EVM) compatible networks. It functions as an oracle, offering up-to-date data on the computational costs required for executing operations or transactions on these networks. The API empowers developers to create advanced gas estimation features, which can lead to cost savings on back-end transaction operations or enhance the user interface for users. 18 | 19 | Prerequisites 20 | ------------- 21 | 22 | - A valid [Web3 API key](https://docs.infura.io/networks/ethereum/how-to/secure-a-project/project-id) and [API key secret](https://docs.infura.io/networks/ethereum/how-to/secure-a-project/project-secret). 23 | - Node.js and either npm or yarn installed. 24 | - Familiarity with Next.js and React. 25 | 26 | Setting up Next.js + ShadcnUI 27 | ----------------------------- 28 | 29 | First, ensure Node.js is installed on your machine. Once you have Node.js set up, start a new Next.js application by opening your terminal and executing the following command: 30 | 31 | Copy 32 | 33 | ``` 34 | npx create-next-app@latest 35 | ``` 36 | 37 | After executing the command, not only will several prompts appear, but it will also generate a new directory under your specified project name - I used gastracker-app, thereby establishing the foundational structure of Next.js and installing essential dependencies. Now, proceed to your project's directory: 38 | 39 | Copy 40 | 41 | ``` 42 | npx create-next-app@latest 43 | ✔ What is your project named? ... gastracker-app 44 | ✔ Would you like to use TypeScript? ... No / Yes 45 | ✔ Would you like to use ESLint? ... No / Yes 46 | ✔ Would you like to use Tailwind CSS? ... No / Yes 47 | ✔ Would you like to use `src/` directory? ... No / Yes 48 | ✔ Would you like to use App Router? (recommended) ... No / Yes 49 | ✔ Would you like to customize the default import alias (@/*)? ... No / Yes 50 | ``` 51 | 52 | Navigate into your new project directory and activate the Next.js application in development mode by using. You can then explore your application by navigating to http://localhost:3000 in your browser. 53 | 54 | Copy 55 | 56 | ``` 57 | cd gastracker-app 58 | npm run dev 59 | ``` 60 | 61 | Crafting the user interface 62 | --------------------------- 63 | 64 | For our application, we will use a component library. Let's begin by installing ShadcnUI: 65 | 66 | Copy 67 | 68 | ``` 69 | npx shadcn-ui@latest init 70 | ``` 71 | 72 | During the installation, you'll be guided through configuring the components.json file with the following prompts: 73 | 74 | Copy 75 | 76 | ``` 77 | Would you like to use TypeScript (recommended)? no / yes 78 | Which style would you like to use? › Default 79 | Which color would you like to use as base color? › Slate 80 | Where is your global CSS file? › › app/globals.css 81 | Do you want to use CSS variables for colors? › no / yes 82 | Where is your tailwind.config.js located? › tailwind.config.js 83 | Configure the import alias for components: › @/components 84 | Configure the import alias for utils: › @/lib/utils 85 | Are you using React Server Components? › no / yes 86 | ``` 87 | 88 | With that out of the way, let's also install the Shadcn UI's Card component: 89 | 90 | Copy 91 | 92 | ``` 93 | npx shadcn-ui@latest add card 94 | ``` 95 | 96 | In this tutorial, we'll focus on using the Card component from Shadcn UI. To learn more about these components, visit the [Shadcn UI website](https://ui.shadcn.com/). With our front end now set up, we're ready to start working with the Gas API. 97 | 98 | In the root directory, create a file named .env, where we will store the following credentials: 99 | 100 | Copy 101 | 102 | ``` 103 | INFURA_API_KEY= 104 | INFURA_API_KEY_SECRET= 105 | ``` 106 | 107 | Ensure you obtain the API_KEY and API_KEY_SECRET from your Infura dashboard. It's crucial to avoid pushing the API key to GitHub. In the root directory, check the .gitignore file to confirm that the necessary lines are included. 108 | 109 | Copy 110 | 111 | ``` 112 | # Ignore environment variables 113 | .env 114 | .env.local 115 | .env.development.local 116 | .env.test.local 117 | .env.production.local 118 | ``` 119 | 120 | We will also be needing the `axios and the dotenv` packages: 121 | 122 | Copy 123 | 124 | ``` 125 | npm install axios 126 | npm install dotenv 127 | ``` 128 | 129 | Now, proceed to create a file named 'index.js' in the root of our gastracker-app and copy the following code into it: 130 | 131 | Copy 132 | 133 | ``` 134 | const axios = require("axios"); 135 | require("dotenv").config(); 136 | 137 | const Auth = Buffer.from( 138 | process.env.INFURA_API_KEY + ":" + process.env.INFURA_API_KEY_SECRET, 139 | ).toString("base64"); 140 | 141 | // The chain ID of the supported network 142 | const chainId = 1; 143 | 144 | (async () => { 145 | try { 146 | const { data } = await axios.get( 147 | `https://gas.api.infura.io/networks/${chainId}/suggestedGasFees`, 148 | { 149 | headers: { 150 | Authorization: `Basic ${Auth}`, 151 | }, 152 | }, 153 | ); 154 | console.log("Suggested gas fees:", data); 155 | } catch (error) { 156 | console.log("Server responded with:", error); 157 | } 158 | })(); 159 | ``` 160 | 161 | In another terminal window, run the following command. 162 | 163 | Copy 164 | 165 | ``` 166 | node index.js 167 | ``` 168 | 169 | You should see the following: 170 | 171 | Copy 172 | 173 | ``` 174 | Suggested gas fees: { 175 | low: { 176 | suggestedMaxPriorityFeePerGas: '0.05', 177 | suggestedMaxFeePerGas: '28.501086221', 178 | minWaitTimeEstimate: 15000, 179 | maxWaitTimeEstimate: 30000 180 | }, 181 | medium: { 182 | suggestedMaxPriorityFeePerGas: '0.1', 183 | suggestedMaxFeePerGas: '38.508966399', 184 | minWaitTimeEstimate: 15000, 185 | maxWaitTimeEstimate: 45000 186 | }, 187 | high: { 188 | suggestedMaxPriorityFeePerGas: '0.3', 189 | suggestedMaxFeePerGas: '48.666846576', 190 | minWaitTimeEstimate: 15000, 191 | maxWaitTimeEstimate: 60000 192 | }, 193 | estimatedBaseFee: '28.451086221', 194 | networkCongestion: 0.7718, 195 | latestPriorityFeeRange: [ '0.05', '9.249760902' ], 196 | historicalPriorityFeeRange: [ '0.023435712', '56.009283908' ], 197 | historicalBaseFeeRange: [ '19.277073248', '31.361941035' ], 198 | priorityFeeTrend: 'down', 199 | baseFeeTrend: 'up' 200 | } 201 | ``` 202 | 203 | If you observe the data displayed in the terminal, it indicates that we are successfully receiving responses from the API. The next step is to present this data on our frontend. You may now delete the index.js file. 204 | 205 | Displaying gas data on the frontend 206 | ----------------------------------- 207 | 208 | ![Gas API tutorial image 2](https://images.ctfassets.net/9sy2a0egs6zh/6DcVOvAKow6wCWVxOGwBt9/cb4708b6b59b0e0cfdcdc521233d48a5/image2.png) 209 | 210 | To establish custom types for use throughout the project, create a file named 'index.d.ts' in the root directory and include the following lines: 211 | 212 | Copy 213 | 214 | ``` 215 | interface GasFeeEstimate { 216 | suggestedMaxPriorityFeePerGas: string; 217 | suggestedMaxFeePerGas: string; 218 | minWaitTimeEstimate: number; 219 | maxWaitTimeEstimate: number; 220 | } 221 | 222 | interface GasFeesApiResponse { 223 | low: GasFeeEstimate; 224 | medium: GasFeeEstimate; 225 | high: GasFeeEstimate; 226 | estimatedBaseFee: string; 227 | networkCongestion: number; 228 | latestPriorityFeeRange: string[]; 229 | historicalPriorityFeeRange: string[]; 230 | historicalBaseFeeRange: string[]; 231 | priorityFeeTrend: 'up' | 'down'; 232 | baseFeeTrend: 'up' | 'down'; 233 | } 234 | ``` 235 | 236 | These TypeScript interface declarations in a global file define structures for gas fee estimates and API responses. They encompass details like fee suggestions, wait times, network congestion, and fee trends for different transaction priority levels on a blockchain network." 237 | 238 | In the 'lib' folder, create a file named 'getData.ts' and add the following code: 239 | 240 | Copy 241 | 242 | ``` 243 | const Auth = Buffer.from( 244 | process.env["INFURA_API_KEY"] + ":" + process.env["INFURA_API_KEY_SECRET"] 245 | ).toString("base64"); 246 | 247 | // The chain ID of the supported network 248 | const chainId = 1; 249 | 250 | export const getData = async () => { 251 | try { 252 | const res = await fetch( 253 | `https://gas.api.infura.io/networks/${chainId}/suggestedGasFees`, 254 | { 255 | headers: { 256 | Authorization: `Basic ${Auth}`, 257 | }, 258 | } 259 | ); 260 | 261 | const data = await res.json(); 262 | 263 | return data as GasFeesApiResponse; 264 | } catch (error) { 265 | console.log("Server responded with:", error); 266 | } 267 | }; 268 | ``` 269 | 270 | These codes fetch gas fee data from the Gas API: 271 | 272 | 1. Authentication Setup: Creates a Buffer from the INFURA_API_KEY and INFURA_API_KEY_SECRET, which are set as environment variables. This Buffer is then converted into a base64 string (named 'Auth') for basic authentication in API requests. 273 | 2. Chain ID Specification: Sets the variable chainId to 1, typically representing the Ethereum mainnet in blockchain contexts. 274 | 3. getData Function: An asynchronous function designed to fetch gas fee data: 275 | 276 | - It utilizes fetch to make a GET request to the Infura API endpoint, retrieving suggested gas fees for the specified chainId. 277 | - It sets the Authorization header in the request using the Auth token created earlier. 278 | - If successful, parses the response as JSON and returns it as GasFeesApiResponse, aligning with the previously defined interface. 279 | - Logs any errors, such as network issues or server errors, to the console. 280 | 281 | Chain ID Variability: The chainId can be adjusted based on the network for which the app is built. The Gas API on Infura supports most major EVM networks. For more information on supported networks, visit the [documentation](https://docs.infura.io/infura-expansion-apis/gas-api/supported-networks). 282 | 283 | Working on the UI 284 | ----------------- 285 | 286 | we've now reached the exciting part where we'll focus on the UI to display the data. Let's navigate to the components folder and create a component named 'GasCard.tsx'. 287 | 288 | Copy 289 | 290 | ``` 291 | import { getData } from "@/lib/getData"; 292 | import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; 293 | 294 | export const GasCard = async () => { 295 | const data = await getData(); 296 | 297 | const renderGasFeeEstimateCard = ( 298 | estimate: GasFeeEstimate, 299 | title: string 300 | ) => ( 301 | 302 | 303 | {title} 304 | 305 | 306 |

Max Priority Fee: {estimate.suggestedMaxPriorityFeePerGas}

307 |

Max Fee Per Gas: {estimate.suggestedMaxFeePerGas}

308 |

Min Wait Time: {estimate.minWaitTimeEstimate} seconds

309 |

Max Wait Time: {estimate.maxWaitTimeEstimate} seconds

310 |
311 |
312 | ); 313 | 314 | return ( 315 |
316 |
317 | {data?.low && 318 | renderGasFeeEstimateCard(data.low, "Low Gas Fee Estimate")} 319 | {data?.medium && 320 | renderGasFeeEstimateCard(data.medium, "Medium Gas Fee Estimate")} 321 | {data?.high && 322 | renderGasFeeEstimateCard(data.high, "High Gas Fee Estimate")} 323 |
324 | 325 | 326 |

Estimated Base Fee

327 |

Gas Price: {data?.estimatedBaseFee}

328 |

Network Congestion

329 |

{data?.networkCongestion}

330 |

Latest Priority Fee Range

331 |

{data?.latestPriorityFeeRange.join(" - ")}

332 |

Historical Priority Fee Range

333 |

{data?.historicalPriorityFeeRange.join(" - ")}

334 |

Historical Base Fee Range

335 |

{data?.historicalBaseFeeRange.join(" - ")}

336 |

Priority Fee Trend

337 |

{data?.priorityFeeTrend}

338 |

Base Fee Trend

339 |

{data?.baseFeeTrend}

340 |
341 |
342 |
343 | ); 344 | }; 345 | ``` 346 | 347 | Let's see what happened here: 348 | 349 | 1. Imports and Data Fetching: 350 | 351 | - The component imports the getData function for fetching gas fee data, along with various UI components like Card, CardContent, CardHeader, and CardTitle, which are part of the Shadcn UI we installed earlier. 352 | - Inside the GasCard component, the getData function is invoked to retrieve gas fee data. 353 | 354 | 1. Rendering Gas Fee Estimates: 355 | 356 | - A function named renderGasFeeEstimateCard is defined, which renders a card UI for a specific gas fee estimate (GasFeeEstimate) and title (title). 357 | - This function constructs a Card component displaying details such as the max priority fee, max fee per gas, and estimated wait times. 358 | 359 | 1. Component Structure: 360 | 361 | - The JSX structure of the GasCard component is outlined in the return statement. It employs a grid layout to exhibit cards for low, medium, and high gas fee estimates, which are conditionally displayed depending on data availability. 362 | - An additional card shows more information like the estimated base fee, network congestion, priority fee ranges (latest and historical), and trends in priority and base fees. 363 | 364 | Now, the only step remaining is to import the GasCard.tsx into the page.tsx file. After this, all the data should be visible on our frontend. 365 | 366 | ![Gas tracker app frontend image](https://images.ctfassets.net/9sy2a0egs6zh/24smEt3ovOwKs1BJt7SeM6/189f5a8fd4c5a1a2ad976a4a8251a5ae/image2.png) 367 | 368 | Get started using the Gas API 369 | ----------------------------- 370 | 371 | Utilizing the [Gas API on Infura](https://www.infura.io/platform/gas-api/?utm_source=owned&utm_medium=referral&utm_campaign=2023_Nov_gas-api-open-beta_content_content) offers significant advantages for developers engaging with EVM-compatible networks. It provides real-time insights into the fluctuating gas market, allowing users to make well-informed decisions about their transaction fees. This is particularly beneficial for optimizing both the speed and cost-effectiveness of transactions. 372 | 373 | This tutorial covers how to get started with the GasAPI and create a simple Gas Tracker App. You can find the code here: [GasAPI-Template on GitHub](https://github.com/meowyx/GasAPI-Template). 374 | 375 | But we can do a lot more fun things with this; we can add ways to refresh GasData at certain times with a countdown, and we can also integrate the GasAPI into any existing application.I recommend checking out the following resources: 376 | 377 | Gas API Docs: [Infura Gas API Documentation](https://docs.infura.io/infura-expansion-apis/gas-api) 378 | 379 | EventSea: [A full-stack Events Dapp that creatively utilizes GasAPI: EventSea on GitHub](https://github.com/Consensys/eventsea) 380 | 381 | Happy Building! 🚀 382 | -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Consensys/GasAPI-template/e0f932b18ad7a30e5a0c6e7f228b436982f861e8/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import type { Metadata } from 'next' 2 | import { Inter } from 'next/font/google' 3 | import './globals.css' 4 | 5 | const inter = Inter({ subsets: ['latin'] }) 6 | 7 | export const metadata: Metadata = { 8 | title: 'Create Next App', 9 | description: 'Generated by create next app', 10 | } 11 | 12 | export default function RootLayout({ 13 | children, 14 | }: { 15 | children: React.ReactNode 16 | }) { 17 | return ( 18 | 19 | {children} 20 | 21 | ) 22 | } 23 | -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | import { GasCard } from "@/components/GasCard"; 2 | 3 | export default async function Home() { 4 | return ( 5 |
6 |

Gas Card

7 | 8 |
9 | ); 10 | } 11 | -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://ui.shadcn.com/schema.json", 3 | "style": "default", 4 | "rsc": true, 5 | "tsx": true, 6 | "tailwind": { 7 | "config": "tailwind.config.js", 8 | "css": "app/globals.css", 9 | "baseColor": "zinc", 10 | "cssVariables": true 11 | }, 12 | "aliases": { 13 | "components": "@/components", 14 | "utils": "@/lib/utils" 15 | } 16 | } -------------------------------------------------------------------------------- /components/GasCard.tsx: -------------------------------------------------------------------------------- 1 | import { getData } from "@/lib/getData"; 2 | import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; 3 | 4 | export const GasCard = async () => { 5 | const data = await getData(); 6 | 7 | const renderGasFeeEstimateCard = ( 8 | estimate: GasFeeEstimate, 9 | title: string 10 | ) => ( 11 | 12 | 13 | {title} 14 | 15 | 16 |

Max Priority Fee: {estimate.suggestedMaxPriorityFeePerGas}

17 |

Max Fee Per Gas: {estimate.suggestedMaxFeePerGas}

18 |

Min Wait Time: {estimate.minWaitTimeEstimate} seconds

19 |

Max Wait Time: {estimate.maxWaitTimeEstimate} seconds

20 |
21 |
22 | ); 23 | 24 | return ( 25 |
26 |
27 | {data?.low && 28 | renderGasFeeEstimateCard(data.low, "Low Gas Fee Estimate")} 29 | {data?.medium && 30 | renderGasFeeEstimateCard(data.medium, "Medium Gas Fee Estimate")} 31 | {data?.high && 32 | renderGasFeeEstimateCard(data.high, "High Gas Fee Estimate")} 33 |
34 | 35 | 36 |

Estimated Base Fee

37 |

Gas Price: {data?.estimatedBaseFee}

38 |

Network Congestion

39 |

{data?.networkCongestion}

40 |

Latest Priority Fee Range

41 |

{data?.latestPriorityFeeRange.join(" - ")}

42 |

Historical Priority Fee Range

43 |

{data?.historicalPriorityFeeRange.join(" - ")}

44 |

Historical Base Fee Range

45 |

{data?.historicalBaseFeeRange.join(" - ")}

46 |

Priority Fee Trend

47 |

{data?.priorityFeeTrend}

48 |

Base Fee Trend

49 |

{data?.baseFeeTrend}

50 |
51 |
52 |
53 | ); 54 | }; 55 | -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- 1 | import * as React from "react" 2 | 3 | import { cn } from "@/lib/utils" 4 | 5 | const Card = React.forwardRef< 6 | HTMLDivElement, 7 | React.HTMLAttributes 8 | >(({ className, ...props }, ref) => ( 9 |
17 | )) 18 | Card.displayName = "Card" 19 | 20 | const CardHeader = React.forwardRef< 21 | HTMLDivElement, 22 | React.HTMLAttributes 23 | >(({ className, ...props }, ref) => ( 24 |
29 | )) 30 | CardHeader.displayName = "CardHeader" 31 | 32 | const CardTitle = React.forwardRef< 33 | HTMLParagraphElement, 34 | React.HTMLAttributes 35 | >(({ className, ...props }, ref) => ( 36 |

44 | )) 45 | CardTitle.displayName = "CardTitle" 46 | 47 | const CardDescription = React.forwardRef< 48 | HTMLParagraphElement, 49 | React.HTMLAttributes 50 | >(({ className, ...props }, ref) => ( 51 |

56 | )) 57 | CardDescription.displayName = "CardDescription" 58 | 59 | const CardContent = React.forwardRef< 60 | HTMLDivElement, 61 | React.HTMLAttributes 62 | >(({ className, ...props }, ref) => ( 63 |

64 | )) 65 | CardContent.displayName = "CardContent" 66 | 67 | const CardFooter = React.forwardRef< 68 | HTMLDivElement, 69 | React.HTMLAttributes 70 | >(({ className, ...props }, ref) => ( 71 |
76 | )) 77 | CardFooter.displayName = "CardFooter" 78 | 79 | export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent } 80 | -------------------------------------------------------------------------------- /lib/getData.ts: -------------------------------------------------------------------------------- 1 | const Auth = Buffer.from( 2 | process.env["INFURA_API_KEY"] + ":" + process.env["INFURA_API_KEY_SECRET"] 3 | ).toString("base64"); 4 | 5 | // The chain ID of the supported network 6 | const chainId = 1; 7 | 8 | export const getData = async () => { 9 | try { 10 | const res = await fetch( 11 | `https://gas.api.infura.io/networks/${chainId}/suggestedGasFees`, 12 | { 13 | headers: { 14 | Authorization: `Basic ${Auth}`, 15 | }, 16 | } 17 | ); 18 | 19 | const data = await res.json(); 20 | 21 | return data as GasFeesApiResponse; 22 | } catch (error) { 23 | console.log("Server responded with:", error); 24 | } 25 | }; 26 | -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- 1 | import { type ClassValue, clsx } from "clsx" 2 | import { twMerge } from "tailwind-merge" 3 | 4 | export function cn(...inputs: ClassValue[]) { 5 | return twMerge(clsx(inputs)) 6 | } 7 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {} 3 | 4 | module.exports = nextConfig 5 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "next-infura-gasapi", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "next-infura-gasapi", 9 | "version": "0.1.0", 10 | "license": "ISC", 11 | "dependencies": { 12 | "axios": "^1.6.1", 13 | "class-variance-authority": "^0.7.0", 14 | "clsx": "^2.0.0", 15 | "dotenv": "^16.3.1", 16 | "lucide-react": "^0.292.0", 17 | "next": "14.0.1", 18 | "react": "^18", 19 | "react-dom": "^18", 20 | "tailwind-merge": "^2.0.0", 21 | "tailwindcss-animate": "^1.0.7" 22 | }, 23 | "devDependencies": { 24 | "@types/node": "^20", 25 | "@types/react": "^18", 26 | "@types/react-dom": "^18", 27 | "autoprefixer": "^10.0.1", 28 | "eslint": "^8", 29 | "eslint-config-next": "14.0.1", 30 | "postcss": "^8", 31 | "tailwindcss": "^3.3.0", 32 | "typescript": "^5" 33 | } 34 | }, 35 | "node_modules/@aashutoshrathi/word-wrap": { 36 | "version": "1.2.6", 37 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 38 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 39 | "dev": true, 40 | "engines": { 41 | "node": ">=0.10.0" 42 | } 43 | }, 44 | "node_modules/@alloc/quick-lru": { 45 | "version": "5.2.0", 46 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 47 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 48 | "engines": { 49 | "node": ">=10" 50 | }, 51 | "funding": { 52 | "url": "https://github.com/sponsors/sindresorhus" 53 | } 54 | }, 55 | "node_modules/@babel/runtime": { 56 | "version": "7.23.2", 57 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.2.tgz", 58 | "integrity": "sha512-mM8eg4yl5D6i3lu2QKPuPH4FArvJ8KhTofbE7jwMUv9KX5mBvwPAqnV3MlyBNqdp9RyRKP6Yck8TrfYrPvX3bg==", 59 | "dependencies": { 60 | "regenerator-runtime": "^0.14.0" 61 | }, 62 | "engines": { 63 | "node": ">=6.9.0" 64 | } 65 | }, 66 | "node_modules/@eslint-community/eslint-utils": { 67 | "version": "4.4.0", 68 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 69 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 70 | "dev": true, 71 | "dependencies": { 72 | "eslint-visitor-keys": "^3.3.0" 73 | }, 74 | "engines": { 75 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 76 | }, 77 | "peerDependencies": { 78 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 79 | } 80 | }, 81 | "node_modules/@eslint-community/regexpp": { 82 | "version": "4.10.0", 83 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 84 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 85 | "dev": true, 86 | "engines": { 87 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 88 | } 89 | }, 90 | "node_modules/@eslint/eslintrc": { 91 | "version": "2.1.3", 92 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.3.tgz", 93 | "integrity": "sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==", 94 | "dev": true, 95 | "dependencies": { 96 | "ajv": "^6.12.4", 97 | "debug": "^4.3.2", 98 | "espree": "^9.6.0", 99 | "globals": "^13.19.0", 100 | "ignore": "^5.2.0", 101 | "import-fresh": "^3.2.1", 102 | "js-yaml": "^4.1.0", 103 | "minimatch": "^3.1.2", 104 | "strip-json-comments": "^3.1.1" 105 | }, 106 | "engines": { 107 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 108 | }, 109 | "funding": { 110 | "url": "https://opencollective.com/eslint" 111 | } 112 | }, 113 | "node_modules/@eslint/js": { 114 | "version": "8.53.0", 115 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.53.0.tgz", 116 | "integrity": "sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==", 117 | "dev": true, 118 | "engines": { 119 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 120 | } 121 | }, 122 | "node_modules/@humanwhocodes/config-array": { 123 | "version": "0.11.13", 124 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.13.tgz", 125 | "integrity": "sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==", 126 | "dev": true, 127 | "dependencies": { 128 | "@humanwhocodes/object-schema": "^2.0.1", 129 | "debug": "^4.1.1", 130 | "minimatch": "^3.0.5" 131 | }, 132 | "engines": { 133 | "node": ">=10.10.0" 134 | } 135 | }, 136 | "node_modules/@humanwhocodes/module-importer": { 137 | "version": "1.0.1", 138 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 139 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 140 | "dev": true, 141 | "engines": { 142 | "node": ">=12.22" 143 | }, 144 | "funding": { 145 | "type": "github", 146 | "url": "https://github.com/sponsors/nzakas" 147 | } 148 | }, 149 | "node_modules/@humanwhocodes/object-schema": { 150 | "version": "2.0.1", 151 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.1.tgz", 152 | "integrity": "sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==", 153 | "dev": true 154 | }, 155 | "node_modules/@jridgewell/gen-mapping": { 156 | "version": "0.3.3", 157 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 158 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 159 | "dependencies": { 160 | "@jridgewell/set-array": "^1.0.1", 161 | "@jridgewell/sourcemap-codec": "^1.4.10", 162 | "@jridgewell/trace-mapping": "^0.3.9" 163 | }, 164 | "engines": { 165 | "node": ">=6.0.0" 166 | } 167 | }, 168 | "node_modules/@jridgewell/resolve-uri": { 169 | "version": "3.1.1", 170 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", 171 | "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", 172 | "engines": { 173 | "node": ">=6.0.0" 174 | } 175 | }, 176 | "node_modules/@jridgewell/set-array": { 177 | "version": "1.1.2", 178 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 179 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 180 | "engines": { 181 | "node": ">=6.0.0" 182 | } 183 | }, 184 | "node_modules/@jridgewell/sourcemap-codec": { 185 | "version": "1.4.15", 186 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 187 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" 188 | }, 189 | "node_modules/@jridgewell/trace-mapping": { 190 | "version": "0.3.20", 191 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", 192 | "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", 193 | "dependencies": { 194 | "@jridgewell/resolve-uri": "^3.1.0", 195 | "@jridgewell/sourcemap-codec": "^1.4.14" 196 | } 197 | }, 198 | "node_modules/@next/env": { 199 | "version": "14.0.1", 200 | "resolved": "https://registry.npmjs.org/@next/env/-/env-14.0.1.tgz", 201 | "integrity": "sha512-Ms8ZswqY65/YfcjrlcIwMPD7Rg/dVjdLapMcSHG26W6O67EJDF435ShW4H4LXi1xKO1oRc97tLXUpx8jpLe86A==" 202 | }, 203 | "node_modules/@next/eslint-plugin-next": { 204 | "version": "14.0.1", 205 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.0.1.tgz", 206 | "integrity": "sha512-bLjJMwXdzvhnQOnxvHoTTUh/+PYk6FF/DCgHi4BXwXCINer+o1ZYfL9aVeezj/oI7wqGJOqwGIXrlBvPbAId3w==", 207 | "dev": true, 208 | "dependencies": { 209 | "glob": "7.1.7" 210 | } 211 | }, 212 | "node_modules/@next/swc-darwin-arm64": { 213 | "version": "14.0.1", 214 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.0.1.tgz", 215 | "integrity": "sha512-JyxnGCS4qT67hdOKQ0CkgFTp+PXub5W1wsGvIq98TNbF3YEIN7iDekYhYsZzc8Ov0pWEsghQt+tANdidITCLaw==", 216 | "cpu": [ 217 | "arm64" 218 | ], 219 | "optional": true, 220 | "os": [ 221 | "darwin" 222 | ], 223 | "engines": { 224 | "node": ">= 10" 225 | } 226 | }, 227 | "node_modules/@next/swc-darwin-x64": { 228 | "version": "14.0.1", 229 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.0.1.tgz", 230 | "integrity": "sha512-625Z7bb5AyIzswF9hvfZWa+HTwFZw+Jn3lOBNZB87lUS0iuCYDHqk3ujuHCkiyPtSC0xFBtYDLcrZ11mF/ap3w==", 231 | "cpu": [ 232 | "x64" 233 | ], 234 | "optional": true, 235 | "os": [ 236 | "darwin" 237 | ], 238 | "engines": { 239 | "node": ">= 10" 240 | } 241 | }, 242 | "node_modules/@next/swc-linux-arm64-gnu": { 243 | "version": "14.0.1", 244 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.0.1.tgz", 245 | "integrity": "sha512-iVpn3KG3DprFXzVHM09kvb//4CNNXBQ9NB/pTm8LO+vnnnaObnzFdS5KM+w1okwa32xH0g8EvZIhoB3fI3mS1g==", 246 | "cpu": [ 247 | "arm64" 248 | ], 249 | "optional": true, 250 | "os": [ 251 | "linux" 252 | ], 253 | "engines": { 254 | "node": ">= 10" 255 | } 256 | }, 257 | "node_modules/@next/swc-linux-arm64-musl": { 258 | "version": "14.0.1", 259 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.0.1.tgz", 260 | "integrity": "sha512-mVsGyMxTLWZXyD5sen6kGOTYVOO67lZjLApIj/JsTEEohDDt1im2nkspzfV5MvhfS7diDw6Rp/xvAQaWZTv1Ww==", 261 | "cpu": [ 262 | "arm64" 263 | ], 264 | "optional": true, 265 | "os": [ 266 | "linux" 267 | ], 268 | "engines": { 269 | "node": ">= 10" 270 | } 271 | }, 272 | "node_modules/@next/swc-linux-x64-gnu": { 273 | "version": "14.0.1", 274 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.0.1.tgz", 275 | "integrity": "sha512-wMqf90uDWN001NqCM/auRl3+qVVeKfjJdT9XW+RMIOf+rhUzadmYJu++tp2y+hUbb6GTRhT+VjQzcgg/QTD9NQ==", 276 | "cpu": [ 277 | "x64" 278 | ], 279 | "optional": true, 280 | "os": [ 281 | "linux" 282 | ], 283 | "engines": { 284 | "node": ">= 10" 285 | } 286 | }, 287 | "node_modules/@next/swc-linux-x64-musl": { 288 | "version": "14.0.1", 289 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.0.1.tgz", 290 | "integrity": "sha512-ol1X1e24w4j4QwdeNjfX0f+Nza25n+ymY0T2frTyalVczUmzkVD7QGgPTZMHfR1aLrO69hBs0G3QBYaj22J5GQ==", 291 | "cpu": [ 292 | "x64" 293 | ], 294 | "optional": true, 295 | "os": [ 296 | "linux" 297 | ], 298 | "engines": { 299 | "node": ">= 10" 300 | } 301 | }, 302 | "node_modules/@next/swc-win32-arm64-msvc": { 303 | "version": "14.0.1", 304 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.0.1.tgz", 305 | "integrity": "sha512-WEmTEeWs6yRUEnUlahTgvZteh5RJc4sEjCQIodJlZZ5/VJwVP8p2L7l6VhzQhT4h7KvLx/Ed4UViBdne6zpIsw==", 306 | "cpu": [ 307 | "arm64" 308 | ], 309 | "optional": true, 310 | "os": [ 311 | "win32" 312 | ], 313 | "engines": { 314 | "node": ">= 10" 315 | } 316 | }, 317 | "node_modules/@next/swc-win32-ia32-msvc": { 318 | "version": "14.0.1", 319 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.0.1.tgz", 320 | "integrity": "sha512-oFpHphN4ygAgZUKjzga7SoH2VGbEJXZa/KL8bHCAwCjDWle6R1SpiGOdUdA8EJ9YsG1TYWpzY6FTbUA+iAJeww==", 321 | "cpu": [ 322 | "ia32" 323 | ], 324 | "optional": true, 325 | "os": [ 326 | "win32" 327 | ], 328 | "engines": { 329 | "node": ">= 10" 330 | } 331 | }, 332 | "node_modules/@next/swc-win32-x64-msvc": { 333 | "version": "14.0.1", 334 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.0.1.tgz", 335 | "integrity": "sha512-FFp3nOJ/5qSpeWT0BZQ+YE1pSMk4IMpkME/1DwKBwhg4mJLB9L+6EXuJi4JEwaJdl5iN+UUlmUD3IsR1kx5fAg==", 336 | "cpu": [ 337 | "x64" 338 | ], 339 | "optional": true, 340 | "os": [ 341 | "win32" 342 | ], 343 | "engines": { 344 | "node": ">= 10" 345 | } 346 | }, 347 | "node_modules/@nodelib/fs.scandir": { 348 | "version": "2.1.5", 349 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 350 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 351 | "dependencies": { 352 | "@nodelib/fs.stat": "2.0.5", 353 | "run-parallel": "^1.1.9" 354 | }, 355 | "engines": { 356 | "node": ">= 8" 357 | } 358 | }, 359 | "node_modules/@nodelib/fs.stat": { 360 | "version": "2.0.5", 361 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 362 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 363 | "engines": { 364 | "node": ">= 8" 365 | } 366 | }, 367 | "node_modules/@nodelib/fs.walk": { 368 | "version": "1.2.8", 369 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 370 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 371 | "dependencies": { 372 | "@nodelib/fs.scandir": "2.1.5", 373 | "fastq": "^1.6.0" 374 | }, 375 | "engines": { 376 | "node": ">= 8" 377 | } 378 | }, 379 | "node_modules/@rushstack/eslint-patch": { 380 | "version": "1.5.1", 381 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.5.1.tgz", 382 | "integrity": "sha512-6i/8UoL0P5y4leBIGzvkZdS85RDMG9y1ihZzmTZQ5LdHUYmZ7pKFoj8X0236s3lusPs1Fa5HTQUpwI+UfTcmeA==", 383 | "dev": true 384 | }, 385 | "node_modules/@swc/helpers": { 386 | "version": "0.5.2", 387 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", 388 | "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", 389 | "dependencies": { 390 | "tslib": "^2.4.0" 391 | } 392 | }, 393 | "node_modules/@types/json5": { 394 | "version": "0.0.29", 395 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 396 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", 397 | "dev": true 398 | }, 399 | "node_modules/@types/node": { 400 | "version": "20.9.0", 401 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.9.0.tgz", 402 | "integrity": "sha512-nekiGu2NDb1BcVofVcEKMIwzlx4NjHlcjhoxxKBNLtz15Y1z7MYf549DFvkHSId02Ax6kGwWntIBPC3l/JZcmw==", 403 | "dev": true, 404 | "dependencies": { 405 | "undici-types": "~5.26.4" 406 | } 407 | }, 408 | "node_modules/@types/prop-types": { 409 | "version": "15.7.10", 410 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.10.tgz", 411 | "integrity": "sha512-mxSnDQxPqsZxmeShFH+uwQ4kO4gcJcGahjjMFeLbKE95IAZiiZyiEepGZjtXJ7hN/yfu0bu9xN2ajcU0JcxX6A==", 412 | "dev": true 413 | }, 414 | "node_modules/@types/react": { 415 | "version": "18.2.37", 416 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.37.tgz", 417 | "integrity": "sha512-RGAYMi2bhRgEXT3f4B92WTohopH6bIXw05FuGlmJEnv/omEn190+QYEIYxIAuIBdKgboYYdVved2p1AxZVQnaw==", 418 | "dev": true, 419 | "dependencies": { 420 | "@types/prop-types": "*", 421 | "@types/scheduler": "*", 422 | "csstype": "^3.0.2" 423 | } 424 | }, 425 | "node_modules/@types/react-dom": { 426 | "version": "18.2.15", 427 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.15.tgz", 428 | "integrity": "sha512-HWMdW+7r7MR5+PZqJF6YFNSCtjz1T0dsvo/f1BV6HkV+6erD/nA7wd9NM00KVG83zf2nJ7uATPO9ttdIPvi3gg==", 429 | "dev": true, 430 | "dependencies": { 431 | "@types/react": "*" 432 | } 433 | }, 434 | "node_modules/@types/scheduler": { 435 | "version": "0.16.6", 436 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.6.tgz", 437 | "integrity": "sha512-Vlktnchmkylvc9SnwwwozTv04L/e1NykF5vgoQ0XTmI8DD+wxfjQuHuvHS3p0r2jz2x2ghPs2h1FVeDirIteWA==", 438 | "dev": true 439 | }, 440 | "node_modules/@typescript-eslint/parser": { 441 | "version": "6.10.0", 442 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.10.0.tgz", 443 | "integrity": "sha512-+sZwIj+s+io9ozSxIWbNB5873OSdfeBEH/FR0re14WLI6BaKuSOnnwCJ2foUiu8uXf4dRp1UqHP0vrZ1zXGrog==", 444 | "dev": true, 445 | "dependencies": { 446 | "@typescript-eslint/scope-manager": "6.10.0", 447 | "@typescript-eslint/types": "6.10.0", 448 | "@typescript-eslint/typescript-estree": "6.10.0", 449 | "@typescript-eslint/visitor-keys": "6.10.0", 450 | "debug": "^4.3.4" 451 | }, 452 | "engines": { 453 | "node": "^16.0.0 || >=18.0.0" 454 | }, 455 | "funding": { 456 | "type": "opencollective", 457 | "url": "https://opencollective.com/typescript-eslint" 458 | }, 459 | "peerDependencies": { 460 | "eslint": "^7.0.0 || ^8.0.0" 461 | }, 462 | "peerDependenciesMeta": { 463 | "typescript": { 464 | "optional": true 465 | } 466 | } 467 | }, 468 | "node_modules/@typescript-eslint/scope-manager": { 469 | "version": "6.10.0", 470 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.10.0.tgz", 471 | "integrity": "sha512-TN/plV7dzqqC2iPNf1KrxozDgZs53Gfgg5ZHyw8erd6jd5Ta/JIEcdCheXFt9b1NYb93a1wmIIVW/2gLkombDg==", 472 | "dev": true, 473 | "dependencies": { 474 | "@typescript-eslint/types": "6.10.0", 475 | "@typescript-eslint/visitor-keys": "6.10.0" 476 | }, 477 | "engines": { 478 | "node": "^16.0.0 || >=18.0.0" 479 | }, 480 | "funding": { 481 | "type": "opencollective", 482 | "url": "https://opencollective.com/typescript-eslint" 483 | } 484 | }, 485 | "node_modules/@typescript-eslint/types": { 486 | "version": "6.10.0", 487 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.10.0.tgz", 488 | "integrity": "sha512-36Fq1PWh9dusgo3vH7qmQAj5/AZqARky1Wi6WpINxB6SkQdY5vQoT2/7rW7uBIsPDcvvGCLi4r10p0OJ7ITAeg==", 489 | "dev": true, 490 | "engines": { 491 | "node": "^16.0.0 || >=18.0.0" 492 | }, 493 | "funding": { 494 | "type": "opencollective", 495 | "url": "https://opencollective.com/typescript-eslint" 496 | } 497 | }, 498 | "node_modules/@typescript-eslint/typescript-estree": { 499 | "version": "6.10.0", 500 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.10.0.tgz", 501 | "integrity": "sha512-ek0Eyuy6P15LJVeghbWhSrBCj/vJpPXXR+EpaRZqou7achUWL8IdYnMSC5WHAeTWswYQuP2hAZgij/bC9fanBg==", 502 | "dev": true, 503 | "dependencies": { 504 | "@typescript-eslint/types": "6.10.0", 505 | "@typescript-eslint/visitor-keys": "6.10.0", 506 | "debug": "^4.3.4", 507 | "globby": "^11.1.0", 508 | "is-glob": "^4.0.3", 509 | "semver": "^7.5.4", 510 | "ts-api-utils": "^1.0.1" 511 | }, 512 | "engines": { 513 | "node": "^16.0.0 || >=18.0.0" 514 | }, 515 | "funding": { 516 | "type": "opencollective", 517 | "url": "https://opencollective.com/typescript-eslint" 518 | }, 519 | "peerDependenciesMeta": { 520 | "typescript": { 521 | "optional": true 522 | } 523 | } 524 | }, 525 | "node_modules/@typescript-eslint/visitor-keys": { 526 | "version": "6.10.0", 527 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.10.0.tgz", 528 | "integrity": "sha512-xMGluxQIEtOM7bqFCo+rCMh5fqI+ZxV5RUUOa29iVPz1OgCZrtc7rFnz5cLUazlkPKYqX+75iuDq7m0HQ48nCg==", 529 | "dev": true, 530 | "dependencies": { 531 | "@typescript-eslint/types": "6.10.0", 532 | "eslint-visitor-keys": "^3.4.1" 533 | }, 534 | "engines": { 535 | "node": "^16.0.0 || >=18.0.0" 536 | }, 537 | "funding": { 538 | "type": "opencollective", 539 | "url": "https://opencollective.com/typescript-eslint" 540 | } 541 | }, 542 | "node_modules/@ungap/structured-clone": { 543 | "version": "1.2.0", 544 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 545 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 546 | "dev": true 547 | }, 548 | "node_modules/acorn": { 549 | "version": "8.11.2", 550 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", 551 | "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", 552 | "dev": true, 553 | "bin": { 554 | "acorn": "bin/acorn" 555 | }, 556 | "engines": { 557 | "node": ">=0.4.0" 558 | } 559 | }, 560 | "node_modules/acorn-jsx": { 561 | "version": "5.3.2", 562 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 563 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 564 | "dev": true, 565 | "peerDependencies": { 566 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 567 | } 568 | }, 569 | "node_modules/ajv": { 570 | "version": "6.12.6", 571 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 572 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 573 | "dev": true, 574 | "dependencies": { 575 | "fast-deep-equal": "^3.1.1", 576 | "fast-json-stable-stringify": "^2.0.0", 577 | "json-schema-traverse": "^0.4.1", 578 | "uri-js": "^4.2.2" 579 | }, 580 | "funding": { 581 | "type": "github", 582 | "url": "https://github.com/sponsors/epoberezkin" 583 | } 584 | }, 585 | "node_modules/ansi-regex": { 586 | "version": "5.0.1", 587 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 588 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 589 | "dev": true, 590 | "engines": { 591 | "node": ">=8" 592 | } 593 | }, 594 | "node_modules/ansi-styles": { 595 | "version": "4.3.0", 596 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 597 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 598 | "dev": true, 599 | "dependencies": { 600 | "color-convert": "^2.0.1" 601 | }, 602 | "engines": { 603 | "node": ">=8" 604 | }, 605 | "funding": { 606 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 607 | } 608 | }, 609 | "node_modules/any-promise": { 610 | "version": "1.3.0", 611 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 612 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" 613 | }, 614 | "node_modules/anymatch": { 615 | "version": "3.1.3", 616 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 617 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 618 | "dependencies": { 619 | "normalize-path": "^3.0.0", 620 | "picomatch": "^2.0.4" 621 | }, 622 | "engines": { 623 | "node": ">= 8" 624 | } 625 | }, 626 | "node_modules/arg": { 627 | "version": "5.0.2", 628 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 629 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 630 | }, 631 | "node_modules/argparse": { 632 | "version": "2.0.1", 633 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 634 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 635 | "dev": true 636 | }, 637 | "node_modules/aria-query": { 638 | "version": "5.3.0", 639 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", 640 | "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", 641 | "dev": true, 642 | "dependencies": { 643 | "dequal": "^2.0.3" 644 | } 645 | }, 646 | "node_modules/array-buffer-byte-length": { 647 | "version": "1.0.0", 648 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 649 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 650 | "dev": true, 651 | "dependencies": { 652 | "call-bind": "^1.0.2", 653 | "is-array-buffer": "^3.0.1" 654 | }, 655 | "funding": { 656 | "url": "https://github.com/sponsors/ljharb" 657 | } 658 | }, 659 | "node_modules/array-includes": { 660 | "version": "3.1.7", 661 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", 662 | "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", 663 | "dev": true, 664 | "dependencies": { 665 | "call-bind": "^1.0.2", 666 | "define-properties": "^1.2.0", 667 | "es-abstract": "^1.22.1", 668 | "get-intrinsic": "^1.2.1", 669 | "is-string": "^1.0.7" 670 | }, 671 | "engines": { 672 | "node": ">= 0.4" 673 | }, 674 | "funding": { 675 | "url": "https://github.com/sponsors/ljharb" 676 | } 677 | }, 678 | "node_modules/array-union": { 679 | "version": "2.1.0", 680 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 681 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 682 | "dev": true, 683 | "engines": { 684 | "node": ">=8" 685 | } 686 | }, 687 | "node_modules/array.prototype.findlastindex": { 688 | "version": "1.2.3", 689 | "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", 690 | "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", 691 | "dev": true, 692 | "dependencies": { 693 | "call-bind": "^1.0.2", 694 | "define-properties": "^1.2.0", 695 | "es-abstract": "^1.22.1", 696 | "es-shim-unscopables": "^1.0.0", 697 | "get-intrinsic": "^1.2.1" 698 | }, 699 | "engines": { 700 | "node": ">= 0.4" 701 | }, 702 | "funding": { 703 | "url": "https://github.com/sponsors/ljharb" 704 | } 705 | }, 706 | "node_modules/array.prototype.flat": { 707 | "version": "1.3.2", 708 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", 709 | "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", 710 | "dev": true, 711 | "dependencies": { 712 | "call-bind": "^1.0.2", 713 | "define-properties": "^1.2.0", 714 | "es-abstract": "^1.22.1", 715 | "es-shim-unscopables": "^1.0.0" 716 | }, 717 | "engines": { 718 | "node": ">= 0.4" 719 | }, 720 | "funding": { 721 | "url": "https://github.com/sponsors/ljharb" 722 | } 723 | }, 724 | "node_modules/array.prototype.flatmap": { 725 | "version": "1.3.2", 726 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", 727 | "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", 728 | "dev": true, 729 | "dependencies": { 730 | "call-bind": "^1.0.2", 731 | "define-properties": "^1.2.0", 732 | "es-abstract": "^1.22.1", 733 | "es-shim-unscopables": "^1.0.0" 734 | }, 735 | "engines": { 736 | "node": ">= 0.4" 737 | }, 738 | "funding": { 739 | "url": "https://github.com/sponsors/ljharb" 740 | } 741 | }, 742 | "node_modules/array.prototype.tosorted": { 743 | "version": "1.1.2", 744 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", 745 | "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", 746 | "dev": true, 747 | "dependencies": { 748 | "call-bind": "^1.0.2", 749 | "define-properties": "^1.2.0", 750 | "es-abstract": "^1.22.1", 751 | "es-shim-unscopables": "^1.0.0", 752 | "get-intrinsic": "^1.2.1" 753 | } 754 | }, 755 | "node_modules/arraybuffer.prototype.slice": { 756 | "version": "1.0.2", 757 | "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", 758 | "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", 759 | "dev": true, 760 | "dependencies": { 761 | "array-buffer-byte-length": "^1.0.0", 762 | "call-bind": "^1.0.2", 763 | "define-properties": "^1.2.0", 764 | "es-abstract": "^1.22.1", 765 | "get-intrinsic": "^1.2.1", 766 | "is-array-buffer": "^3.0.2", 767 | "is-shared-array-buffer": "^1.0.2" 768 | }, 769 | "engines": { 770 | "node": ">= 0.4" 771 | }, 772 | "funding": { 773 | "url": "https://github.com/sponsors/ljharb" 774 | } 775 | }, 776 | "node_modules/ast-types-flow": { 777 | "version": "0.0.8", 778 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", 779 | "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==", 780 | "dev": true 781 | }, 782 | "node_modules/asynciterator.prototype": { 783 | "version": "1.0.0", 784 | "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", 785 | "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", 786 | "dev": true, 787 | "dependencies": { 788 | "has-symbols": "^1.0.3" 789 | } 790 | }, 791 | "node_modules/asynckit": { 792 | "version": "0.4.0", 793 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 794 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" 795 | }, 796 | "node_modules/autoprefixer": { 797 | "version": "10.4.16", 798 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", 799 | "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", 800 | "dev": true, 801 | "funding": [ 802 | { 803 | "type": "opencollective", 804 | "url": "https://opencollective.com/postcss/" 805 | }, 806 | { 807 | "type": "tidelift", 808 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 809 | }, 810 | { 811 | "type": "github", 812 | "url": "https://github.com/sponsors/ai" 813 | } 814 | ], 815 | "dependencies": { 816 | "browserslist": "^4.21.10", 817 | "caniuse-lite": "^1.0.30001538", 818 | "fraction.js": "^4.3.6", 819 | "normalize-range": "^0.1.2", 820 | "picocolors": "^1.0.0", 821 | "postcss-value-parser": "^4.2.0" 822 | }, 823 | "bin": { 824 | "autoprefixer": "bin/autoprefixer" 825 | }, 826 | "engines": { 827 | "node": "^10 || ^12 || >=14" 828 | }, 829 | "peerDependencies": { 830 | "postcss": "^8.1.0" 831 | } 832 | }, 833 | "node_modules/available-typed-arrays": { 834 | "version": "1.0.5", 835 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 836 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 837 | "dev": true, 838 | "engines": { 839 | "node": ">= 0.4" 840 | }, 841 | "funding": { 842 | "url": "https://github.com/sponsors/ljharb" 843 | } 844 | }, 845 | "node_modules/axe-core": { 846 | "version": "4.7.0", 847 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", 848 | "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", 849 | "dev": true, 850 | "engines": { 851 | "node": ">=4" 852 | } 853 | }, 854 | "node_modules/axios": { 855 | "version": "1.6.1", 856 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.6.1.tgz", 857 | "integrity": "sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==", 858 | "dependencies": { 859 | "follow-redirects": "^1.15.0", 860 | "form-data": "^4.0.0", 861 | "proxy-from-env": "^1.1.0" 862 | } 863 | }, 864 | "node_modules/axobject-query": { 865 | "version": "3.2.1", 866 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", 867 | "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", 868 | "dev": true, 869 | "dependencies": { 870 | "dequal": "^2.0.3" 871 | } 872 | }, 873 | "node_modules/balanced-match": { 874 | "version": "1.0.2", 875 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 876 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 877 | }, 878 | "node_modules/binary-extensions": { 879 | "version": "2.2.0", 880 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 881 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 882 | "engines": { 883 | "node": ">=8" 884 | } 885 | }, 886 | "node_modules/brace-expansion": { 887 | "version": "1.1.11", 888 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 889 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 890 | "dependencies": { 891 | "balanced-match": "^1.0.0", 892 | "concat-map": "0.0.1" 893 | } 894 | }, 895 | "node_modules/braces": { 896 | "version": "3.0.2", 897 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 898 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 899 | "dependencies": { 900 | "fill-range": "^7.0.1" 901 | }, 902 | "engines": { 903 | "node": ">=8" 904 | } 905 | }, 906 | "node_modules/browserslist": { 907 | "version": "4.22.1", 908 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.1.tgz", 909 | "integrity": "sha512-FEVc202+2iuClEhZhrWy6ZiAcRLvNMyYcxZ8raemul1DYVOVdFsbqckWLdsixQZCpJlwe77Z3UTalE7jsjnKfQ==", 910 | "dev": true, 911 | "funding": [ 912 | { 913 | "type": "opencollective", 914 | "url": "https://opencollective.com/browserslist" 915 | }, 916 | { 917 | "type": "tidelift", 918 | "url": "https://tidelift.com/funding/github/npm/browserslist" 919 | }, 920 | { 921 | "type": "github", 922 | "url": "https://github.com/sponsors/ai" 923 | } 924 | ], 925 | "dependencies": { 926 | "caniuse-lite": "^1.0.30001541", 927 | "electron-to-chromium": "^1.4.535", 928 | "node-releases": "^2.0.13", 929 | "update-browserslist-db": "^1.0.13" 930 | }, 931 | "bin": { 932 | "browserslist": "cli.js" 933 | }, 934 | "engines": { 935 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 936 | } 937 | }, 938 | "node_modules/busboy": { 939 | "version": "1.6.0", 940 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 941 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 942 | "dependencies": { 943 | "streamsearch": "^1.1.0" 944 | }, 945 | "engines": { 946 | "node": ">=10.16.0" 947 | } 948 | }, 949 | "node_modules/call-bind": { 950 | "version": "1.0.5", 951 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", 952 | "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", 953 | "dev": true, 954 | "dependencies": { 955 | "function-bind": "^1.1.2", 956 | "get-intrinsic": "^1.2.1", 957 | "set-function-length": "^1.1.1" 958 | }, 959 | "funding": { 960 | "url": "https://github.com/sponsors/ljharb" 961 | } 962 | }, 963 | "node_modules/callsites": { 964 | "version": "3.1.0", 965 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 966 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 967 | "dev": true, 968 | "engines": { 969 | "node": ">=6" 970 | } 971 | }, 972 | "node_modules/camelcase-css": { 973 | "version": "2.0.1", 974 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 975 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 976 | "engines": { 977 | "node": ">= 6" 978 | } 979 | }, 980 | "node_modules/caniuse-lite": { 981 | "version": "1.0.30001561", 982 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001561.tgz", 983 | "integrity": "sha512-NTt0DNoKe958Q0BE0j0c1V9jbUzhBxHIEJy7asmGrpE0yG63KTV7PLHPnK2E1O9RsQrQ081I3NLuXGS6zht3cw==", 984 | "funding": [ 985 | { 986 | "type": "opencollective", 987 | "url": "https://opencollective.com/browserslist" 988 | }, 989 | { 990 | "type": "tidelift", 991 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 992 | }, 993 | { 994 | "type": "github", 995 | "url": "https://github.com/sponsors/ai" 996 | } 997 | ] 998 | }, 999 | "node_modules/chalk": { 1000 | "version": "4.1.2", 1001 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1002 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1003 | "dev": true, 1004 | "dependencies": { 1005 | "ansi-styles": "^4.1.0", 1006 | "supports-color": "^7.1.0" 1007 | }, 1008 | "engines": { 1009 | "node": ">=10" 1010 | }, 1011 | "funding": { 1012 | "url": "https://github.com/chalk/chalk?sponsor=1" 1013 | } 1014 | }, 1015 | "node_modules/chokidar": { 1016 | "version": "3.5.3", 1017 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 1018 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 1019 | "funding": [ 1020 | { 1021 | "type": "individual", 1022 | "url": "https://paulmillr.com/funding/" 1023 | } 1024 | ], 1025 | "dependencies": { 1026 | "anymatch": "~3.1.2", 1027 | "braces": "~3.0.2", 1028 | "glob-parent": "~5.1.2", 1029 | "is-binary-path": "~2.1.0", 1030 | "is-glob": "~4.0.1", 1031 | "normalize-path": "~3.0.0", 1032 | "readdirp": "~3.6.0" 1033 | }, 1034 | "engines": { 1035 | "node": ">= 8.10.0" 1036 | }, 1037 | "optionalDependencies": { 1038 | "fsevents": "~2.3.2" 1039 | } 1040 | }, 1041 | "node_modules/chokidar/node_modules/glob-parent": { 1042 | "version": "5.1.2", 1043 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1044 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1045 | "dependencies": { 1046 | "is-glob": "^4.0.1" 1047 | }, 1048 | "engines": { 1049 | "node": ">= 6" 1050 | } 1051 | }, 1052 | "node_modules/class-variance-authority": { 1053 | "version": "0.7.0", 1054 | "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.0.tgz", 1055 | "integrity": "sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==", 1056 | "dependencies": { 1057 | "clsx": "2.0.0" 1058 | }, 1059 | "funding": { 1060 | "url": "https://joebell.co.uk" 1061 | } 1062 | }, 1063 | "node_modules/client-only": { 1064 | "version": "0.0.1", 1065 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 1066 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 1067 | }, 1068 | "node_modules/clsx": { 1069 | "version": "2.0.0", 1070 | "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.0.0.tgz", 1071 | "integrity": "sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==", 1072 | "engines": { 1073 | "node": ">=6" 1074 | } 1075 | }, 1076 | "node_modules/color-convert": { 1077 | "version": "2.0.1", 1078 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1079 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1080 | "dev": true, 1081 | "dependencies": { 1082 | "color-name": "~1.1.4" 1083 | }, 1084 | "engines": { 1085 | "node": ">=7.0.0" 1086 | } 1087 | }, 1088 | "node_modules/color-name": { 1089 | "version": "1.1.4", 1090 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1091 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 1092 | "dev": true 1093 | }, 1094 | "node_modules/combined-stream": { 1095 | "version": "1.0.8", 1096 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1097 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1098 | "dependencies": { 1099 | "delayed-stream": "~1.0.0" 1100 | }, 1101 | "engines": { 1102 | "node": ">= 0.8" 1103 | } 1104 | }, 1105 | "node_modules/commander": { 1106 | "version": "4.1.1", 1107 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 1108 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 1109 | "engines": { 1110 | "node": ">= 6" 1111 | } 1112 | }, 1113 | "node_modules/concat-map": { 1114 | "version": "0.0.1", 1115 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1116 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 1117 | }, 1118 | "node_modules/cross-spawn": { 1119 | "version": "7.0.3", 1120 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1121 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1122 | "dev": true, 1123 | "dependencies": { 1124 | "path-key": "^3.1.0", 1125 | "shebang-command": "^2.0.0", 1126 | "which": "^2.0.1" 1127 | }, 1128 | "engines": { 1129 | "node": ">= 8" 1130 | } 1131 | }, 1132 | "node_modules/cssesc": { 1133 | "version": "3.0.0", 1134 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1135 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1136 | "bin": { 1137 | "cssesc": "bin/cssesc" 1138 | }, 1139 | "engines": { 1140 | "node": ">=4" 1141 | } 1142 | }, 1143 | "node_modules/csstype": { 1144 | "version": "3.1.2", 1145 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", 1146 | "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==", 1147 | "dev": true 1148 | }, 1149 | "node_modules/damerau-levenshtein": { 1150 | "version": "1.0.8", 1151 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", 1152 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", 1153 | "dev": true 1154 | }, 1155 | "node_modules/debug": { 1156 | "version": "4.3.4", 1157 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1158 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1159 | "dev": true, 1160 | "dependencies": { 1161 | "ms": "2.1.2" 1162 | }, 1163 | "engines": { 1164 | "node": ">=6.0" 1165 | }, 1166 | "peerDependenciesMeta": { 1167 | "supports-color": { 1168 | "optional": true 1169 | } 1170 | } 1171 | }, 1172 | "node_modules/deep-is": { 1173 | "version": "0.1.4", 1174 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1175 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1176 | "dev": true 1177 | }, 1178 | "node_modules/define-data-property": { 1179 | "version": "1.1.1", 1180 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", 1181 | "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", 1182 | "dev": true, 1183 | "dependencies": { 1184 | "get-intrinsic": "^1.2.1", 1185 | "gopd": "^1.0.1", 1186 | "has-property-descriptors": "^1.0.0" 1187 | }, 1188 | "engines": { 1189 | "node": ">= 0.4" 1190 | } 1191 | }, 1192 | "node_modules/define-properties": { 1193 | "version": "1.2.1", 1194 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 1195 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 1196 | "dev": true, 1197 | "dependencies": { 1198 | "define-data-property": "^1.0.1", 1199 | "has-property-descriptors": "^1.0.0", 1200 | "object-keys": "^1.1.1" 1201 | }, 1202 | "engines": { 1203 | "node": ">= 0.4" 1204 | }, 1205 | "funding": { 1206 | "url": "https://github.com/sponsors/ljharb" 1207 | } 1208 | }, 1209 | "node_modules/delayed-stream": { 1210 | "version": "1.0.0", 1211 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1212 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1213 | "engines": { 1214 | "node": ">=0.4.0" 1215 | } 1216 | }, 1217 | "node_modules/dequal": { 1218 | "version": "2.0.3", 1219 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 1220 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 1221 | "dev": true, 1222 | "engines": { 1223 | "node": ">=6" 1224 | } 1225 | }, 1226 | "node_modules/didyoumean": { 1227 | "version": "1.2.2", 1228 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1229 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 1230 | }, 1231 | "node_modules/dir-glob": { 1232 | "version": "3.0.1", 1233 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1234 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1235 | "dev": true, 1236 | "dependencies": { 1237 | "path-type": "^4.0.0" 1238 | }, 1239 | "engines": { 1240 | "node": ">=8" 1241 | } 1242 | }, 1243 | "node_modules/dlv": { 1244 | "version": "1.1.3", 1245 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1246 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 1247 | }, 1248 | "node_modules/doctrine": { 1249 | "version": "3.0.0", 1250 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1251 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1252 | "dev": true, 1253 | "dependencies": { 1254 | "esutils": "^2.0.2" 1255 | }, 1256 | "engines": { 1257 | "node": ">=6.0.0" 1258 | } 1259 | }, 1260 | "node_modules/dotenv": { 1261 | "version": "16.3.1", 1262 | "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", 1263 | "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", 1264 | "engines": { 1265 | "node": ">=12" 1266 | }, 1267 | "funding": { 1268 | "url": "https://github.com/motdotla/dotenv?sponsor=1" 1269 | } 1270 | }, 1271 | "node_modules/electron-to-chromium": { 1272 | "version": "1.4.579", 1273 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.579.tgz", 1274 | "integrity": "sha512-bJKvA+awBIzYR0xRced7PrQuRIwGQPpo6ZLP62GAShahU9fWpsNN2IP6BSP1BLDDSbxvBVRGAMWlvVVq3npmLA==", 1275 | "dev": true 1276 | }, 1277 | "node_modules/emoji-regex": { 1278 | "version": "9.2.2", 1279 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1280 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", 1281 | "dev": true 1282 | }, 1283 | "node_modules/enhanced-resolve": { 1284 | "version": "5.15.0", 1285 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", 1286 | "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", 1287 | "dev": true, 1288 | "dependencies": { 1289 | "graceful-fs": "^4.2.4", 1290 | "tapable": "^2.2.0" 1291 | }, 1292 | "engines": { 1293 | "node": ">=10.13.0" 1294 | } 1295 | }, 1296 | "node_modules/es-abstract": { 1297 | "version": "1.22.3", 1298 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", 1299 | "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", 1300 | "dev": true, 1301 | "dependencies": { 1302 | "array-buffer-byte-length": "^1.0.0", 1303 | "arraybuffer.prototype.slice": "^1.0.2", 1304 | "available-typed-arrays": "^1.0.5", 1305 | "call-bind": "^1.0.5", 1306 | "es-set-tostringtag": "^2.0.1", 1307 | "es-to-primitive": "^1.2.1", 1308 | "function.prototype.name": "^1.1.6", 1309 | "get-intrinsic": "^1.2.2", 1310 | "get-symbol-description": "^1.0.0", 1311 | "globalthis": "^1.0.3", 1312 | "gopd": "^1.0.1", 1313 | "has-property-descriptors": "^1.0.0", 1314 | "has-proto": "^1.0.1", 1315 | "has-symbols": "^1.0.3", 1316 | "hasown": "^2.0.0", 1317 | "internal-slot": "^1.0.5", 1318 | "is-array-buffer": "^3.0.2", 1319 | "is-callable": "^1.2.7", 1320 | "is-negative-zero": "^2.0.2", 1321 | "is-regex": "^1.1.4", 1322 | "is-shared-array-buffer": "^1.0.2", 1323 | "is-string": "^1.0.7", 1324 | "is-typed-array": "^1.1.12", 1325 | "is-weakref": "^1.0.2", 1326 | "object-inspect": "^1.13.1", 1327 | "object-keys": "^1.1.1", 1328 | "object.assign": "^4.1.4", 1329 | "regexp.prototype.flags": "^1.5.1", 1330 | "safe-array-concat": "^1.0.1", 1331 | "safe-regex-test": "^1.0.0", 1332 | "string.prototype.trim": "^1.2.8", 1333 | "string.prototype.trimend": "^1.0.7", 1334 | "string.prototype.trimstart": "^1.0.7", 1335 | "typed-array-buffer": "^1.0.0", 1336 | "typed-array-byte-length": "^1.0.0", 1337 | "typed-array-byte-offset": "^1.0.0", 1338 | "typed-array-length": "^1.0.4", 1339 | "unbox-primitive": "^1.0.2", 1340 | "which-typed-array": "^1.1.13" 1341 | }, 1342 | "engines": { 1343 | "node": ">= 0.4" 1344 | }, 1345 | "funding": { 1346 | "url": "https://github.com/sponsors/ljharb" 1347 | } 1348 | }, 1349 | "node_modules/es-iterator-helpers": { 1350 | "version": "1.0.15", 1351 | "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", 1352 | "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", 1353 | "dev": true, 1354 | "dependencies": { 1355 | "asynciterator.prototype": "^1.0.0", 1356 | "call-bind": "^1.0.2", 1357 | "define-properties": "^1.2.1", 1358 | "es-abstract": "^1.22.1", 1359 | "es-set-tostringtag": "^2.0.1", 1360 | "function-bind": "^1.1.1", 1361 | "get-intrinsic": "^1.2.1", 1362 | "globalthis": "^1.0.3", 1363 | "has-property-descriptors": "^1.0.0", 1364 | "has-proto": "^1.0.1", 1365 | "has-symbols": "^1.0.3", 1366 | "internal-slot": "^1.0.5", 1367 | "iterator.prototype": "^1.1.2", 1368 | "safe-array-concat": "^1.0.1" 1369 | } 1370 | }, 1371 | "node_modules/es-set-tostringtag": { 1372 | "version": "2.0.2", 1373 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", 1374 | "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", 1375 | "dev": true, 1376 | "dependencies": { 1377 | "get-intrinsic": "^1.2.2", 1378 | "has-tostringtag": "^1.0.0", 1379 | "hasown": "^2.0.0" 1380 | }, 1381 | "engines": { 1382 | "node": ">= 0.4" 1383 | } 1384 | }, 1385 | "node_modules/es-shim-unscopables": { 1386 | "version": "1.0.2", 1387 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", 1388 | "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", 1389 | "dev": true, 1390 | "dependencies": { 1391 | "hasown": "^2.0.0" 1392 | } 1393 | }, 1394 | "node_modules/es-to-primitive": { 1395 | "version": "1.2.1", 1396 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1397 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1398 | "dev": true, 1399 | "dependencies": { 1400 | "is-callable": "^1.1.4", 1401 | "is-date-object": "^1.0.1", 1402 | "is-symbol": "^1.0.2" 1403 | }, 1404 | "engines": { 1405 | "node": ">= 0.4" 1406 | }, 1407 | "funding": { 1408 | "url": "https://github.com/sponsors/ljharb" 1409 | } 1410 | }, 1411 | "node_modules/escalade": { 1412 | "version": "3.1.1", 1413 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1414 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1415 | "dev": true, 1416 | "engines": { 1417 | "node": ">=6" 1418 | } 1419 | }, 1420 | "node_modules/escape-string-regexp": { 1421 | "version": "4.0.0", 1422 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1423 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1424 | "dev": true, 1425 | "engines": { 1426 | "node": ">=10" 1427 | }, 1428 | "funding": { 1429 | "url": "https://github.com/sponsors/sindresorhus" 1430 | } 1431 | }, 1432 | "node_modules/eslint": { 1433 | "version": "8.53.0", 1434 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.53.0.tgz", 1435 | "integrity": "sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==", 1436 | "dev": true, 1437 | "dependencies": { 1438 | "@eslint-community/eslint-utils": "^4.2.0", 1439 | "@eslint-community/regexpp": "^4.6.1", 1440 | "@eslint/eslintrc": "^2.1.3", 1441 | "@eslint/js": "8.53.0", 1442 | "@humanwhocodes/config-array": "^0.11.13", 1443 | "@humanwhocodes/module-importer": "^1.0.1", 1444 | "@nodelib/fs.walk": "^1.2.8", 1445 | "@ungap/structured-clone": "^1.2.0", 1446 | "ajv": "^6.12.4", 1447 | "chalk": "^4.0.0", 1448 | "cross-spawn": "^7.0.2", 1449 | "debug": "^4.3.2", 1450 | "doctrine": "^3.0.0", 1451 | "escape-string-regexp": "^4.0.0", 1452 | "eslint-scope": "^7.2.2", 1453 | "eslint-visitor-keys": "^3.4.3", 1454 | "espree": "^9.6.1", 1455 | "esquery": "^1.4.2", 1456 | "esutils": "^2.0.2", 1457 | "fast-deep-equal": "^3.1.3", 1458 | "file-entry-cache": "^6.0.1", 1459 | "find-up": "^5.0.0", 1460 | "glob-parent": "^6.0.2", 1461 | "globals": "^13.19.0", 1462 | "graphemer": "^1.4.0", 1463 | "ignore": "^5.2.0", 1464 | "imurmurhash": "^0.1.4", 1465 | "is-glob": "^4.0.0", 1466 | "is-path-inside": "^3.0.3", 1467 | "js-yaml": "^4.1.0", 1468 | "json-stable-stringify-without-jsonify": "^1.0.1", 1469 | "levn": "^0.4.1", 1470 | "lodash.merge": "^4.6.2", 1471 | "minimatch": "^3.1.2", 1472 | "natural-compare": "^1.4.0", 1473 | "optionator": "^0.9.3", 1474 | "strip-ansi": "^6.0.1", 1475 | "text-table": "^0.2.0" 1476 | }, 1477 | "bin": { 1478 | "eslint": "bin/eslint.js" 1479 | }, 1480 | "engines": { 1481 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1482 | }, 1483 | "funding": { 1484 | "url": "https://opencollective.com/eslint" 1485 | } 1486 | }, 1487 | "node_modules/eslint-config-next": { 1488 | "version": "14.0.1", 1489 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.0.1.tgz", 1490 | "integrity": "sha512-QfIFK2WD39H4WOespjgf6PLv9Bpsd7KGGelCtmq4l67nGvnlsGpuvj0hIT+aIy6p5gKH+lAChYILsyDlxP52yg==", 1491 | "dev": true, 1492 | "dependencies": { 1493 | "@next/eslint-plugin-next": "14.0.1", 1494 | "@rushstack/eslint-patch": "^1.3.3", 1495 | "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", 1496 | "eslint-import-resolver-node": "^0.3.6", 1497 | "eslint-import-resolver-typescript": "^3.5.2", 1498 | "eslint-plugin-import": "^2.28.1", 1499 | "eslint-plugin-jsx-a11y": "^6.7.1", 1500 | "eslint-plugin-react": "^7.33.2", 1501 | "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" 1502 | }, 1503 | "peerDependencies": { 1504 | "eslint": "^7.23.0 || ^8.0.0", 1505 | "typescript": ">=3.3.1" 1506 | }, 1507 | "peerDependenciesMeta": { 1508 | "typescript": { 1509 | "optional": true 1510 | } 1511 | } 1512 | }, 1513 | "node_modules/eslint-import-resolver-node": { 1514 | "version": "0.3.9", 1515 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", 1516 | "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", 1517 | "dev": true, 1518 | "dependencies": { 1519 | "debug": "^3.2.7", 1520 | "is-core-module": "^2.13.0", 1521 | "resolve": "^1.22.4" 1522 | } 1523 | }, 1524 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1525 | "version": "3.2.7", 1526 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1527 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1528 | "dev": true, 1529 | "dependencies": { 1530 | "ms": "^2.1.1" 1531 | } 1532 | }, 1533 | "node_modules/eslint-import-resolver-typescript": { 1534 | "version": "3.6.1", 1535 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", 1536 | "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", 1537 | "dev": true, 1538 | "dependencies": { 1539 | "debug": "^4.3.4", 1540 | "enhanced-resolve": "^5.12.0", 1541 | "eslint-module-utils": "^2.7.4", 1542 | "fast-glob": "^3.3.1", 1543 | "get-tsconfig": "^4.5.0", 1544 | "is-core-module": "^2.11.0", 1545 | "is-glob": "^4.0.3" 1546 | }, 1547 | "engines": { 1548 | "node": "^14.18.0 || >=16.0.0" 1549 | }, 1550 | "funding": { 1551 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" 1552 | }, 1553 | "peerDependencies": { 1554 | "eslint": "*", 1555 | "eslint-plugin-import": "*" 1556 | } 1557 | }, 1558 | "node_modules/eslint-module-utils": { 1559 | "version": "2.8.0", 1560 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1561 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1562 | "dev": true, 1563 | "dependencies": { 1564 | "debug": "^3.2.7" 1565 | }, 1566 | "engines": { 1567 | "node": ">=4" 1568 | }, 1569 | "peerDependenciesMeta": { 1570 | "eslint": { 1571 | "optional": true 1572 | } 1573 | } 1574 | }, 1575 | "node_modules/eslint-module-utils/node_modules/debug": { 1576 | "version": "3.2.7", 1577 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1578 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1579 | "dev": true, 1580 | "dependencies": { 1581 | "ms": "^2.1.1" 1582 | } 1583 | }, 1584 | "node_modules/eslint-plugin-import": { 1585 | "version": "2.29.0", 1586 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.0.tgz", 1587 | "integrity": "sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==", 1588 | "dev": true, 1589 | "dependencies": { 1590 | "array-includes": "^3.1.7", 1591 | "array.prototype.findlastindex": "^1.2.3", 1592 | "array.prototype.flat": "^1.3.2", 1593 | "array.prototype.flatmap": "^1.3.2", 1594 | "debug": "^3.2.7", 1595 | "doctrine": "^2.1.0", 1596 | "eslint-import-resolver-node": "^0.3.9", 1597 | "eslint-module-utils": "^2.8.0", 1598 | "hasown": "^2.0.0", 1599 | "is-core-module": "^2.13.1", 1600 | "is-glob": "^4.0.3", 1601 | "minimatch": "^3.1.2", 1602 | "object.fromentries": "^2.0.7", 1603 | "object.groupby": "^1.0.1", 1604 | "object.values": "^1.1.7", 1605 | "semver": "^6.3.1", 1606 | "tsconfig-paths": "^3.14.2" 1607 | }, 1608 | "engines": { 1609 | "node": ">=4" 1610 | }, 1611 | "peerDependencies": { 1612 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1613 | } 1614 | }, 1615 | "node_modules/eslint-plugin-import/node_modules/debug": { 1616 | "version": "3.2.7", 1617 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1618 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1619 | "dev": true, 1620 | "dependencies": { 1621 | "ms": "^2.1.1" 1622 | } 1623 | }, 1624 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1625 | "version": "2.1.0", 1626 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1627 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1628 | "dev": true, 1629 | "dependencies": { 1630 | "esutils": "^2.0.2" 1631 | }, 1632 | "engines": { 1633 | "node": ">=0.10.0" 1634 | } 1635 | }, 1636 | "node_modules/eslint-plugin-import/node_modules/semver": { 1637 | "version": "6.3.1", 1638 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 1639 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 1640 | "dev": true, 1641 | "bin": { 1642 | "semver": "bin/semver.js" 1643 | } 1644 | }, 1645 | "node_modules/eslint-plugin-jsx-a11y": { 1646 | "version": "6.8.0", 1647 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", 1648 | "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", 1649 | "dev": true, 1650 | "dependencies": { 1651 | "@babel/runtime": "^7.23.2", 1652 | "aria-query": "^5.3.0", 1653 | "array-includes": "^3.1.7", 1654 | "array.prototype.flatmap": "^1.3.2", 1655 | "ast-types-flow": "^0.0.8", 1656 | "axe-core": "=4.7.0", 1657 | "axobject-query": "^3.2.1", 1658 | "damerau-levenshtein": "^1.0.8", 1659 | "emoji-regex": "^9.2.2", 1660 | "es-iterator-helpers": "^1.0.15", 1661 | "hasown": "^2.0.0", 1662 | "jsx-ast-utils": "^3.3.5", 1663 | "language-tags": "^1.0.9", 1664 | "minimatch": "^3.1.2", 1665 | "object.entries": "^1.1.7", 1666 | "object.fromentries": "^2.0.7" 1667 | }, 1668 | "engines": { 1669 | "node": ">=4.0" 1670 | }, 1671 | "peerDependencies": { 1672 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1673 | } 1674 | }, 1675 | "node_modules/eslint-plugin-react": { 1676 | "version": "7.33.2", 1677 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", 1678 | "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", 1679 | "dev": true, 1680 | "dependencies": { 1681 | "array-includes": "^3.1.6", 1682 | "array.prototype.flatmap": "^1.3.1", 1683 | "array.prototype.tosorted": "^1.1.1", 1684 | "doctrine": "^2.1.0", 1685 | "es-iterator-helpers": "^1.0.12", 1686 | "estraverse": "^5.3.0", 1687 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1688 | "minimatch": "^3.1.2", 1689 | "object.entries": "^1.1.6", 1690 | "object.fromentries": "^2.0.6", 1691 | "object.hasown": "^1.1.2", 1692 | "object.values": "^1.1.6", 1693 | "prop-types": "^15.8.1", 1694 | "resolve": "^2.0.0-next.4", 1695 | "semver": "^6.3.1", 1696 | "string.prototype.matchall": "^4.0.8" 1697 | }, 1698 | "engines": { 1699 | "node": ">=4" 1700 | }, 1701 | "peerDependencies": { 1702 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1703 | } 1704 | }, 1705 | "node_modules/eslint-plugin-react-hooks": { 1706 | "version": "4.6.0", 1707 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", 1708 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", 1709 | "dev": true, 1710 | "engines": { 1711 | "node": ">=10" 1712 | }, 1713 | "peerDependencies": { 1714 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1715 | } 1716 | }, 1717 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1718 | "version": "2.1.0", 1719 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1720 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1721 | "dev": true, 1722 | "dependencies": { 1723 | "esutils": "^2.0.2" 1724 | }, 1725 | "engines": { 1726 | "node": ">=0.10.0" 1727 | } 1728 | }, 1729 | "node_modules/eslint-plugin-react/node_modules/resolve": { 1730 | "version": "2.0.0-next.5", 1731 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", 1732 | "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", 1733 | "dev": true, 1734 | "dependencies": { 1735 | "is-core-module": "^2.13.0", 1736 | "path-parse": "^1.0.7", 1737 | "supports-preserve-symlinks-flag": "^1.0.0" 1738 | }, 1739 | "bin": { 1740 | "resolve": "bin/resolve" 1741 | }, 1742 | "funding": { 1743 | "url": "https://github.com/sponsors/ljharb" 1744 | } 1745 | }, 1746 | "node_modules/eslint-plugin-react/node_modules/semver": { 1747 | "version": "6.3.1", 1748 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 1749 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 1750 | "dev": true, 1751 | "bin": { 1752 | "semver": "bin/semver.js" 1753 | } 1754 | }, 1755 | "node_modules/eslint-scope": { 1756 | "version": "7.2.2", 1757 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1758 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1759 | "dev": true, 1760 | "dependencies": { 1761 | "esrecurse": "^4.3.0", 1762 | "estraverse": "^5.2.0" 1763 | }, 1764 | "engines": { 1765 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1766 | }, 1767 | "funding": { 1768 | "url": "https://opencollective.com/eslint" 1769 | } 1770 | }, 1771 | "node_modules/eslint-visitor-keys": { 1772 | "version": "3.4.3", 1773 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1774 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1775 | "dev": true, 1776 | "engines": { 1777 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1778 | }, 1779 | "funding": { 1780 | "url": "https://opencollective.com/eslint" 1781 | } 1782 | }, 1783 | "node_modules/espree": { 1784 | "version": "9.6.1", 1785 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1786 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1787 | "dev": true, 1788 | "dependencies": { 1789 | "acorn": "^8.9.0", 1790 | "acorn-jsx": "^5.3.2", 1791 | "eslint-visitor-keys": "^3.4.1" 1792 | }, 1793 | "engines": { 1794 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1795 | }, 1796 | "funding": { 1797 | "url": "https://opencollective.com/eslint" 1798 | } 1799 | }, 1800 | "node_modules/esquery": { 1801 | "version": "1.5.0", 1802 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1803 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1804 | "dev": true, 1805 | "dependencies": { 1806 | "estraverse": "^5.1.0" 1807 | }, 1808 | "engines": { 1809 | "node": ">=0.10" 1810 | } 1811 | }, 1812 | "node_modules/esrecurse": { 1813 | "version": "4.3.0", 1814 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1815 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1816 | "dev": true, 1817 | "dependencies": { 1818 | "estraverse": "^5.2.0" 1819 | }, 1820 | "engines": { 1821 | "node": ">=4.0" 1822 | } 1823 | }, 1824 | "node_modules/estraverse": { 1825 | "version": "5.3.0", 1826 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1827 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1828 | "dev": true, 1829 | "engines": { 1830 | "node": ">=4.0" 1831 | } 1832 | }, 1833 | "node_modules/esutils": { 1834 | "version": "2.0.3", 1835 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1836 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1837 | "dev": true, 1838 | "engines": { 1839 | "node": ">=0.10.0" 1840 | } 1841 | }, 1842 | "node_modules/fast-deep-equal": { 1843 | "version": "3.1.3", 1844 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1845 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1846 | "dev": true 1847 | }, 1848 | "node_modules/fast-glob": { 1849 | "version": "3.3.2", 1850 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1851 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1852 | "dependencies": { 1853 | "@nodelib/fs.stat": "^2.0.2", 1854 | "@nodelib/fs.walk": "^1.2.3", 1855 | "glob-parent": "^5.1.2", 1856 | "merge2": "^1.3.0", 1857 | "micromatch": "^4.0.4" 1858 | }, 1859 | "engines": { 1860 | "node": ">=8.6.0" 1861 | } 1862 | }, 1863 | "node_modules/fast-glob/node_modules/glob-parent": { 1864 | "version": "5.1.2", 1865 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1866 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1867 | "dependencies": { 1868 | "is-glob": "^4.0.1" 1869 | }, 1870 | "engines": { 1871 | "node": ">= 6" 1872 | } 1873 | }, 1874 | "node_modules/fast-json-stable-stringify": { 1875 | "version": "2.1.0", 1876 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1877 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1878 | "dev": true 1879 | }, 1880 | "node_modules/fast-levenshtein": { 1881 | "version": "2.0.6", 1882 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1883 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1884 | "dev": true 1885 | }, 1886 | "node_modules/fastq": { 1887 | "version": "1.15.0", 1888 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1889 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1890 | "dependencies": { 1891 | "reusify": "^1.0.4" 1892 | } 1893 | }, 1894 | "node_modules/file-entry-cache": { 1895 | "version": "6.0.1", 1896 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1897 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1898 | "dev": true, 1899 | "dependencies": { 1900 | "flat-cache": "^3.0.4" 1901 | }, 1902 | "engines": { 1903 | "node": "^10.12.0 || >=12.0.0" 1904 | } 1905 | }, 1906 | "node_modules/fill-range": { 1907 | "version": "7.0.1", 1908 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1909 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1910 | "dependencies": { 1911 | "to-regex-range": "^5.0.1" 1912 | }, 1913 | "engines": { 1914 | "node": ">=8" 1915 | } 1916 | }, 1917 | "node_modules/find-up": { 1918 | "version": "5.0.0", 1919 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1920 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1921 | "dev": true, 1922 | "dependencies": { 1923 | "locate-path": "^6.0.0", 1924 | "path-exists": "^4.0.0" 1925 | }, 1926 | "engines": { 1927 | "node": ">=10" 1928 | }, 1929 | "funding": { 1930 | "url": "https://github.com/sponsors/sindresorhus" 1931 | } 1932 | }, 1933 | "node_modules/flat-cache": { 1934 | "version": "3.1.1", 1935 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.1.tgz", 1936 | "integrity": "sha512-/qM2b3LUIaIgviBQovTLvijfyOQXPtSRnRK26ksj2J7rzPIecePUIpJsZ4T02Qg+xiAEKIs5K8dsHEd+VaKa/Q==", 1937 | "dev": true, 1938 | "dependencies": { 1939 | "flatted": "^3.2.9", 1940 | "keyv": "^4.5.3", 1941 | "rimraf": "^3.0.2" 1942 | }, 1943 | "engines": { 1944 | "node": ">=12.0.0" 1945 | } 1946 | }, 1947 | "node_modules/flatted": { 1948 | "version": "3.2.9", 1949 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", 1950 | "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", 1951 | "dev": true 1952 | }, 1953 | "node_modules/follow-redirects": { 1954 | "version": "1.15.3", 1955 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", 1956 | "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", 1957 | "funding": [ 1958 | { 1959 | "type": "individual", 1960 | "url": "https://github.com/sponsors/RubenVerborgh" 1961 | } 1962 | ], 1963 | "engines": { 1964 | "node": ">=4.0" 1965 | }, 1966 | "peerDependenciesMeta": { 1967 | "debug": { 1968 | "optional": true 1969 | } 1970 | } 1971 | }, 1972 | "node_modules/for-each": { 1973 | "version": "0.3.3", 1974 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1975 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1976 | "dev": true, 1977 | "dependencies": { 1978 | "is-callable": "^1.1.3" 1979 | } 1980 | }, 1981 | "node_modules/form-data": { 1982 | "version": "4.0.0", 1983 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", 1984 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", 1985 | "dependencies": { 1986 | "asynckit": "^0.4.0", 1987 | "combined-stream": "^1.0.8", 1988 | "mime-types": "^2.1.12" 1989 | }, 1990 | "engines": { 1991 | "node": ">= 6" 1992 | } 1993 | }, 1994 | "node_modules/fraction.js": { 1995 | "version": "4.3.7", 1996 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", 1997 | "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", 1998 | "dev": true, 1999 | "engines": { 2000 | "node": "*" 2001 | }, 2002 | "funding": { 2003 | "type": "patreon", 2004 | "url": "https://github.com/sponsors/rawify" 2005 | } 2006 | }, 2007 | "node_modules/fs.realpath": { 2008 | "version": "1.0.0", 2009 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 2010 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 2011 | }, 2012 | "node_modules/fsevents": { 2013 | "version": "2.3.3", 2014 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", 2015 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", 2016 | "hasInstallScript": true, 2017 | "optional": true, 2018 | "os": [ 2019 | "darwin" 2020 | ], 2021 | "engines": { 2022 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2023 | } 2024 | }, 2025 | "node_modules/function-bind": { 2026 | "version": "1.1.2", 2027 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 2028 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 2029 | "funding": { 2030 | "url": "https://github.com/sponsors/ljharb" 2031 | } 2032 | }, 2033 | "node_modules/function.prototype.name": { 2034 | "version": "1.1.6", 2035 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", 2036 | "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", 2037 | "dev": true, 2038 | "dependencies": { 2039 | "call-bind": "^1.0.2", 2040 | "define-properties": "^1.2.0", 2041 | "es-abstract": "^1.22.1", 2042 | "functions-have-names": "^1.2.3" 2043 | }, 2044 | "engines": { 2045 | "node": ">= 0.4" 2046 | }, 2047 | "funding": { 2048 | "url": "https://github.com/sponsors/ljharb" 2049 | } 2050 | }, 2051 | "node_modules/functions-have-names": { 2052 | "version": "1.2.3", 2053 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 2054 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 2055 | "dev": true, 2056 | "funding": { 2057 | "url": "https://github.com/sponsors/ljharb" 2058 | } 2059 | }, 2060 | "node_modules/get-intrinsic": { 2061 | "version": "1.2.2", 2062 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", 2063 | "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", 2064 | "dev": true, 2065 | "dependencies": { 2066 | "function-bind": "^1.1.2", 2067 | "has-proto": "^1.0.1", 2068 | "has-symbols": "^1.0.3", 2069 | "hasown": "^2.0.0" 2070 | }, 2071 | "funding": { 2072 | "url": "https://github.com/sponsors/ljharb" 2073 | } 2074 | }, 2075 | "node_modules/get-symbol-description": { 2076 | "version": "1.0.0", 2077 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 2078 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 2079 | "dev": true, 2080 | "dependencies": { 2081 | "call-bind": "^1.0.2", 2082 | "get-intrinsic": "^1.1.1" 2083 | }, 2084 | "engines": { 2085 | "node": ">= 0.4" 2086 | }, 2087 | "funding": { 2088 | "url": "https://github.com/sponsors/ljharb" 2089 | } 2090 | }, 2091 | "node_modules/get-tsconfig": { 2092 | "version": "4.7.2", 2093 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz", 2094 | "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", 2095 | "dev": true, 2096 | "dependencies": { 2097 | "resolve-pkg-maps": "^1.0.0" 2098 | }, 2099 | "funding": { 2100 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 2101 | } 2102 | }, 2103 | "node_modules/glob": { 2104 | "version": "7.1.7", 2105 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 2106 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 2107 | "dev": true, 2108 | "dependencies": { 2109 | "fs.realpath": "^1.0.0", 2110 | "inflight": "^1.0.4", 2111 | "inherits": "2", 2112 | "minimatch": "^3.0.4", 2113 | "once": "^1.3.0", 2114 | "path-is-absolute": "^1.0.0" 2115 | }, 2116 | "engines": { 2117 | "node": "*" 2118 | }, 2119 | "funding": { 2120 | "url": "https://github.com/sponsors/isaacs" 2121 | } 2122 | }, 2123 | "node_modules/glob-parent": { 2124 | "version": "6.0.2", 2125 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2126 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2127 | "dependencies": { 2128 | "is-glob": "^4.0.3" 2129 | }, 2130 | "engines": { 2131 | "node": ">=10.13.0" 2132 | } 2133 | }, 2134 | "node_modules/glob-to-regexp": { 2135 | "version": "0.4.1", 2136 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", 2137 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" 2138 | }, 2139 | "node_modules/globals": { 2140 | "version": "13.23.0", 2141 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.23.0.tgz", 2142 | "integrity": "sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==", 2143 | "dev": true, 2144 | "dependencies": { 2145 | "type-fest": "^0.20.2" 2146 | }, 2147 | "engines": { 2148 | "node": ">=8" 2149 | }, 2150 | "funding": { 2151 | "url": "https://github.com/sponsors/sindresorhus" 2152 | } 2153 | }, 2154 | "node_modules/globalthis": { 2155 | "version": "1.0.3", 2156 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 2157 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 2158 | "dev": true, 2159 | "dependencies": { 2160 | "define-properties": "^1.1.3" 2161 | }, 2162 | "engines": { 2163 | "node": ">= 0.4" 2164 | }, 2165 | "funding": { 2166 | "url": "https://github.com/sponsors/ljharb" 2167 | } 2168 | }, 2169 | "node_modules/globby": { 2170 | "version": "11.1.0", 2171 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2172 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2173 | "dev": true, 2174 | "dependencies": { 2175 | "array-union": "^2.1.0", 2176 | "dir-glob": "^3.0.1", 2177 | "fast-glob": "^3.2.9", 2178 | "ignore": "^5.2.0", 2179 | "merge2": "^1.4.1", 2180 | "slash": "^3.0.0" 2181 | }, 2182 | "engines": { 2183 | "node": ">=10" 2184 | }, 2185 | "funding": { 2186 | "url": "https://github.com/sponsors/sindresorhus" 2187 | } 2188 | }, 2189 | "node_modules/gopd": { 2190 | "version": "1.0.1", 2191 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 2192 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 2193 | "dev": true, 2194 | "dependencies": { 2195 | "get-intrinsic": "^1.1.3" 2196 | }, 2197 | "funding": { 2198 | "url": "https://github.com/sponsors/ljharb" 2199 | } 2200 | }, 2201 | "node_modules/graceful-fs": { 2202 | "version": "4.2.11", 2203 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2204 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 2205 | }, 2206 | "node_modules/graphemer": { 2207 | "version": "1.4.0", 2208 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2209 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2210 | "dev": true 2211 | }, 2212 | "node_modules/has-bigints": { 2213 | "version": "1.0.2", 2214 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 2215 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 2216 | "dev": true, 2217 | "funding": { 2218 | "url": "https://github.com/sponsors/ljharb" 2219 | } 2220 | }, 2221 | "node_modules/has-flag": { 2222 | "version": "4.0.0", 2223 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2224 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2225 | "dev": true, 2226 | "engines": { 2227 | "node": ">=8" 2228 | } 2229 | }, 2230 | "node_modules/has-property-descriptors": { 2231 | "version": "1.0.1", 2232 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", 2233 | "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", 2234 | "dev": true, 2235 | "dependencies": { 2236 | "get-intrinsic": "^1.2.2" 2237 | }, 2238 | "funding": { 2239 | "url": "https://github.com/sponsors/ljharb" 2240 | } 2241 | }, 2242 | "node_modules/has-proto": { 2243 | "version": "1.0.1", 2244 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 2245 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 2246 | "dev": true, 2247 | "engines": { 2248 | "node": ">= 0.4" 2249 | }, 2250 | "funding": { 2251 | "url": "https://github.com/sponsors/ljharb" 2252 | } 2253 | }, 2254 | "node_modules/has-symbols": { 2255 | "version": "1.0.3", 2256 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 2257 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 2258 | "dev": true, 2259 | "engines": { 2260 | "node": ">= 0.4" 2261 | }, 2262 | "funding": { 2263 | "url": "https://github.com/sponsors/ljharb" 2264 | } 2265 | }, 2266 | "node_modules/has-tostringtag": { 2267 | "version": "1.0.0", 2268 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 2269 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 2270 | "dev": true, 2271 | "dependencies": { 2272 | "has-symbols": "^1.0.2" 2273 | }, 2274 | "engines": { 2275 | "node": ">= 0.4" 2276 | }, 2277 | "funding": { 2278 | "url": "https://github.com/sponsors/ljharb" 2279 | } 2280 | }, 2281 | "node_modules/hasown": { 2282 | "version": "2.0.0", 2283 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", 2284 | "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", 2285 | "dependencies": { 2286 | "function-bind": "^1.1.2" 2287 | }, 2288 | "engines": { 2289 | "node": ">= 0.4" 2290 | } 2291 | }, 2292 | "node_modules/ignore": { 2293 | "version": "5.2.4", 2294 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 2295 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 2296 | "dev": true, 2297 | "engines": { 2298 | "node": ">= 4" 2299 | } 2300 | }, 2301 | "node_modules/import-fresh": { 2302 | "version": "3.3.0", 2303 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2304 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2305 | "dev": true, 2306 | "dependencies": { 2307 | "parent-module": "^1.0.0", 2308 | "resolve-from": "^4.0.0" 2309 | }, 2310 | "engines": { 2311 | "node": ">=6" 2312 | }, 2313 | "funding": { 2314 | "url": "https://github.com/sponsors/sindresorhus" 2315 | } 2316 | }, 2317 | "node_modules/imurmurhash": { 2318 | "version": "0.1.4", 2319 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2320 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2321 | "dev": true, 2322 | "engines": { 2323 | "node": ">=0.8.19" 2324 | } 2325 | }, 2326 | "node_modules/inflight": { 2327 | "version": "1.0.6", 2328 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2329 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2330 | "dependencies": { 2331 | "once": "^1.3.0", 2332 | "wrappy": "1" 2333 | } 2334 | }, 2335 | "node_modules/inherits": { 2336 | "version": "2.0.4", 2337 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2338 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 2339 | }, 2340 | "node_modules/internal-slot": { 2341 | "version": "1.0.6", 2342 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", 2343 | "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", 2344 | "dev": true, 2345 | "dependencies": { 2346 | "get-intrinsic": "^1.2.2", 2347 | "hasown": "^2.0.0", 2348 | "side-channel": "^1.0.4" 2349 | }, 2350 | "engines": { 2351 | "node": ">= 0.4" 2352 | } 2353 | }, 2354 | "node_modules/is-array-buffer": { 2355 | "version": "3.0.2", 2356 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 2357 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 2358 | "dev": true, 2359 | "dependencies": { 2360 | "call-bind": "^1.0.2", 2361 | "get-intrinsic": "^1.2.0", 2362 | "is-typed-array": "^1.1.10" 2363 | }, 2364 | "funding": { 2365 | "url": "https://github.com/sponsors/ljharb" 2366 | } 2367 | }, 2368 | "node_modules/is-async-function": { 2369 | "version": "2.0.0", 2370 | "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", 2371 | "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", 2372 | "dev": true, 2373 | "dependencies": { 2374 | "has-tostringtag": "^1.0.0" 2375 | }, 2376 | "engines": { 2377 | "node": ">= 0.4" 2378 | }, 2379 | "funding": { 2380 | "url": "https://github.com/sponsors/ljharb" 2381 | } 2382 | }, 2383 | "node_modules/is-bigint": { 2384 | "version": "1.0.4", 2385 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2386 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2387 | "dev": true, 2388 | "dependencies": { 2389 | "has-bigints": "^1.0.1" 2390 | }, 2391 | "funding": { 2392 | "url": "https://github.com/sponsors/ljharb" 2393 | } 2394 | }, 2395 | "node_modules/is-binary-path": { 2396 | "version": "2.1.0", 2397 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2398 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2399 | "dependencies": { 2400 | "binary-extensions": "^2.0.0" 2401 | }, 2402 | "engines": { 2403 | "node": ">=8" 2404 | } 2405 | }, 2406 | "node_modules/is-boolean-object": { 2407 | "version": "1.1.2", 2408 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2409 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2410 | "dev": true, 2411 | "dependencies": { 2412 | "call-bind": "^1.0.2", 2413 | "has-tostringtag": "^1.0.0" 2414 | }, 2415 | "engines": { 2416 | "node": ">= 0.4" 2417 | }, 2418 | "funding": { 2419 | "url": "https://github.com/sponsors/ljharb" 2420 | } 2421 | }, 2422 | "node_modules/is-callable": { 2423 | "version": "1.2.7", 2424 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2425 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2426 | "dev": true, 2427 | "engines": { 2428 | "node": ">= 0.4" 2429 | }, 2430 | "funding": { 2431 | "url": "https://github.com/sponsors/ljharb" 2432 | } 2433 | }, 2434 | "node_modules/is-core-module": { 2435 | "version": "2.13.1", 2436 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", 2437 | "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", 2438 | "dependencies": { 2439 | "hasown": "^2.0.0" 2440 | }, 2441 | "funding": { 2442 | "url": "https://github.com/sponsors/ljharb" 2443 | } 2444 | }, 2445 | "node_modules/is-date-object": { 2446 | "version": "1.0.5", 2447 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2448 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2449 | "dev": true, 2450 | "dependencies": { 2451 | "has-tostringtag": "^1.0.0" 2452 | }, 2453 | "engines": { 2454 | "node": ">= 0.4" 2455 | }, 2456 | "funding": { 2457 | "url": "https://github.com/sponsors/ljharb" 2458 | } 2459 | }, 2460 | "node_modules/is-extglob": { 2461 | "version": "2.1.1", 2462 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2463 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2464 | "engines": { 2465 | "node": ">=0.10.0" 2466 | } 2467 | }, 2468 | "node_modules/is-finalizationregistry": { 2469 | "version": "1.0.2", 2470 | "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", 2471 | "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", 2472 | "dev": true, 2473 | "dependencies": { 2474 | "call-bind": "^1.0.2" 2475 | }, 2476 | "funding": { 2477 | "url": "https://github.com/sponsors/ljharb" 2478 | } 2479 | }, 2480 | "node_modules/is-generator-function": { 2481 | "version": "1.0.10", 2482 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", 2483 | "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", 2484 | "dev": true, 2485 | "dependencies": { 2486 | "has-tostringtag": "^1.0.0" 2487 | }, 2488 | "engines": { 2489 | "node": ">= 0.4" 2490 | }, 2491 | "funding": { 2492 | "url": "https://github.com/sponsors/ljharb" 2493 | } 2494 | }, 2495 | "node_modules/is-glob": { 2496 | "version": "4.0.3", 2497 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2498 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2499 | "dependencies": { 2500 | "is-extglob": "^2.1.1" 2501 | }, 2502 | "engines": { 2503 | "node": ">=0.10.0" 2504 | } 2505 | }, 2506 | "node_modules/is-map": { 2507 | "version": "2.0.2", 2508 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", 2509 | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", 2510 | "dev": true, 2511 | "funding": { 2512 | "url": "https://github.com/sponsors/ljharb" 2513 | } 2514 | }, 2515 | "node_modules/is-negative-zero": { 2516 | "version": "2.0.2", 2517 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2518 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2519 | "dev": true, 2520 | "engines": { 2521 | "node": ">= 0.4" 2522 | }, 2523 | "funding": { 2524 | "url": "https://github.com/sponsors/ljharb" 2525 | } 2526 | }, 2527 | "node_modules/is-number": { 2528 | "version": "7.0.0", 2529 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2530 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2531 | "engines": { 2532 | "node": ">=0.12.0" 2533 | } 2534 | }, 2535 | "node_modules/is-number-object": { 2536 | "version": "1.0.7", 2537 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2538 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2539 | "dev": true, 2540 | "dependencies": { 2541 | "has-tostringtag": "^1.0.0" 2542 | }, 2543 | "engines": { 2544 | "node": ">= 0.4" 2545 | }, 2546 | "funding": { 2547 | "url": "https://github.com/sponsors/ljharb" 2548 | } 2549 | }, 2550 | "node_modules/is-path-inside": { 2551 | "version": "3.0.3", 2552 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2553 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2554 | "dev": true, 2555 | "engines": { 2556 | "node": ">=8" 2557 | } 2558 | }, 2559 | "node_modules/is-regex": { 2560 | "version": "1.1.4", 2561 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2562 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2563 | "dev": true, 2564 | "dependencies": { 2565 | "call-bind": "^1.0.2", 2566 | "has-tostringtag": "^1.0.0" 2567 | }, 2568 | "engines": { 2569 | "node": ">= 0.4" 2570 | }, 2571 | "funding": { 2572 | "url": "https://github.com/sponsors/ljharb" 2573 | } 2574 | }, 2575 | "node_modules/is-set": { 2576 | "version": "2.0.2", 2577 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", 2578 | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", 2579 | "dev": true, 2580 | "funding": { 2581 | "url": "https://github.com/sponsors/ljharb" 2582 | } 2583 | }, 2584 | "node_modules/is-shared-array-buffer": { 2585 | "version": "1.0.2", 2586 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2587 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2588 | "dev": true, 2589 | "dependencies": { 2590 | "call-bind": "^1.0.2" 2591 | }, 2592 | "funding": { 2593 | "url": "https://github.com/sponsors/ljharb" 2594 | } 2595 | }, 2596 | "node_modules/is-string": { 2597 | "version": "1.0.7", 2598 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2599 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2600 | "dev": true, 2601 | "dependencies": { 2602 | "has-tostringtag": "^1.0.0" 2603 | }, 2604 | "engines": { 2605 | "node": ">= 0.4" 2606 | }, 2607 | "funding": { 2608 | "url": "https://github.com/sponsors/ljharb" 2609 | } 2610 | }, 2611 | "node_modules/is-symbol": { 2612 | "version": "1.0.4", 2613 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2614 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2615 | "dev": true, 2616 | "dependencies": { 2617 | "has-symbols": "^1.0.2" 2618 | }, 2619 | "engines": { 2620 | "node": ">= 0.4" 2621 | }, 2622 | "funding": { 2623 | "url": "https://github.com/sponsors/ljharb" 2624 | } 2625 | }, 2626 | "node_modules/is-typed-array": { 2627 | "version": "1.1.12", 2628 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", 2629 | "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", 2630 | "dev": true, 2631 | "dependencies": { 2632 | "which-typed-array": "^1.1.11" 2633 | }, 2634 | "engines": { 2635 | "node": ">= 0.4" 2636 | }, 2637 | "funding": { 2638 | "url": "https://github.com/sponsors/ljharb" 2639 | } 2640 | }, 2641 | "node_modules/is-weakmap": { 2642 | "version": "2.0.1", 2643 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", 2644 | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", 2645 | "dev": true, 2646 | "funding": { 2647 | "url": "https://github.com/sponsors/ljharb" 2648 | } 2649 | }, 2650 | "node_modules/is-weakref": { 2651 | "version": "1.0.2", 2652 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2653 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2654 | "dev": true, 2655 | "dependencies": { 2656 | "call-bind": "^1.0.2" 2657 | }, 2658 | "funding": { 2659 | "url": "https://github.com/sponsors/ljharb" 2660 | } 2661 | }, 2662 | "node_modules/is-weakset": { 2663 | "version": "2.0.2", 2664 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", 2665 | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", 2666 | "dev": true, 2667 | "dependencies": { 2668 | "call-bind": "^1.0.2", 2669 | "get-intrinsic": "^1.1.1" 2670 | }, 2671 | "funding": { 2672 | "url": "https://github.com/sponsors/ljharb" 2673 | } 2674 | }, 2675 | "node_modules/isarray": { 2676 | "version": "2.0.5", 2677 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2678 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", 2679 | "dev": true 2680 | }, 2681 | "node_modules/isexe": { 2682 | "version": "2.0.0", 2683 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2684 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 2685 | "dev": true 2686 | }, 2687 | "node_modules/iterator.prototype": { 2688 | "version": "1.1.2", 2689 | "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", 2690 | "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", 2691 | "dev": true, 2692 | "dependencies": { 2693 | "define-properties": "^1.2.1", 2694 | "get-intrinsic": "^1.2.1", 2695 | "has-symbols": "^1.0.3", 2696 | "reflect.getprototypeof": "^1.0.4", 2697 | "set-function-name": "^2.0.1" 2698 | } 2699 | }, 2700 | "node_modules/jiti": { 2701 | "version": "1.21.0", 2702 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", 2703 | "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", 2704 | "bin": { 2705 | "jiti": "bin/jiti.js" 2706 | } 2707 | }, 2708 | "node_modules/js-tokens": { 2709 | "version": "4.0.0", 2710 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2711 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2712 | }, 2713 | "node_modules/js-yaml": { 2714 | "version": "4.1.0", 2715 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2716 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2717 | "dev": true, 2718 | "dependencies": { 2719 | "argparse": "^2.0.1" 2720 | }, 2721 | "bin": { 2722 | "js-yaml": "bin/js-yaml.js" 2723 | } 2724 | }, 2725 | "node_modules/json-buffer": { 2726 | "version": "3.0.1", 2727 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2728 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2729 | "dev": true 2730 | }, 2731 | "node_modules/json-schema-traverse": { 2732 | "version": "0.4.1", 2733 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2734 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2735 | "dev": true 2736 | }, 2737 | "node_modules/json-stable-stringify-without-jsonify": { 2738 | "version": "1.0.1", 2739 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2740 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2741 | "dev": true 2742 | }, 2743 | "node_modules/json5": { 2744 | "version": "1.0.2", 2745 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2746 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2747 | "dev": true, 2748 | "dependencies": { 2749 | "minimist": "^1.2.0" 2750 | }, 2751 | "bin": { 2752 | "json5": "lib/cli.js" 2753 | } 2754 | }, 2755 | "node_modules/jsx-ast-utils": { 2756 | "version": "3.3.5", 2757 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", 2758 | "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", 2759 | "dev": true, 2760 | "dependencies": { 2761 | "array-includes": "^3.1.6", 2762 | "array.prototype.flat": "^1.3.1", 2763 | "object.assign": "^4.1.4", 2764 | "object.values": "^1.1.6" 2765 | }, 2766 | "engines": { 2767 | "node": ">=4.0" 2768 | } 2769 | }, 2770 | "node_modules/keyv": { 2771 | "version": "4.5.4", 2772 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2773 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2774 | "dev": true, 2775 | "dependencies": { 2776 | "json-buffer": "3.0.1" 2777 | } 2778 | }, 2779 | "node_modules/language-subtag-registry": { 2780 | "version": "0.3.22", 2781 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", 2782 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==", 2783 | "dev": true 2784 | }, 2785 | "node_modules/language-tags": { 2786 | "version": "1.0.9", 2787 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", 2788 | "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", 2789 | "dev": true, 2790 | "dependencies": { 2791 | "language-subtag-registry": "^0.3.20" 2792 | }, 2793 | "engines": { 2794 | "node": ">=0.10" 2795 | } 2796 | }, 2797 | "node_modules/levn": { 2798 | "version": "0.4.1", 2799 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2800 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2801 | "dev": true, 2802 | "dependencies": { 2803 | "prelude-ls": "^1.2.1", 2804 | "type-check": "~0.4.0" 2805 | }, 2806 | "engines": { 2807 | "node": ">= 0.8.0" 2808 | } 2809 | }, 2810 | "node_modules/lilconfig": { 2811 | "version": "2.1.0", 2812 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2813 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2814 | "engines": { 2815 | "node": ">=10" 2816 | } 2817 | }, 2818 | "node_modules/lines-and-columns": { 2819 | "version": "1.2.4", 2820 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2821 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" 2822 | }, 2823 | "node_modules/locate-path": { 2824 | "version": "6.0.0", 2825 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2826 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2827 | "dev": true, 2828 | "dependencies": { 2829 | "p-locate": "^5.0.0" 2830 | }, 2831 | "engines": { 2832 | "node": ">=10" 2833 | }, 2834 | "funding": { 2835 | "url": "https://github.com/sponsors/sindresorhus" 2836 | } 2837 | }, 2838 | "node_modules/lodash.merge": { 2839 | "version": "4.6.2", 2840 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2841 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 2842 | "dev": true 2843 | }, 2844 | "node_modules/loose-envify": { 2845 | "version": "1.4.0", 2846 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2847 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2848 | "dependencies": { 2849 | "js-tokens": "^3.0.0 || ^4.0.0" 2850 | }, 2851 | "bin": { 2852 | "loose-envify": "cli.js" 2853 | } 2854 | }, 2855 | "node_modules/lru-cache": { 2856 | "version": "6.0.0", 2857 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2858 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2859 | "dev": true, 2860 | "dependencies": { 2861 | "yallist": "^4.0.0" 2862 | }, 2863 | "engines": { 2864 | "node": ">=10" 2865 | } 2866 | }, 2867 | "node_modules/lucide-react": { 2868 | "version": "0.292.0", 2869 | "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.292.0.tgz", 2870 | "integrity": "sha512-rRgUkpEHWpa5VCT66YscInCQmQuPCB1RFRzkkxMxg4b+jaL0V12E3riWWR2Sh5OIiUhCwGW/ZExuEO4Az32E6Q==", 2871 | "peerDependencies": { 2872 | "react": "^16.5.1 || ^17.0.0 || ^18.0.0" 2873 | } 2874 | }, 2875 | "node_modules/merge2": { 2876 | "version": "1.4.1", 2877 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2878 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2879 | "engines": { 2880 | "node": ">= 8" 2881 | } 2882 | }, 2883 | "node_modules/micromatch": { 2884 | "version": "4.0.5", 2885 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2886 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2887 | "dependencies": { 2888 | "braces": "^3.0.2", 2889 | "picomatch": "^2.3.1" 2890 | }, 2891 | "engines": { 2892 | "node": ">=8.6" 2893 | } 2894 | }, 2895 | "node_modules/mime-db": { 2896 | "version": "1.52.0", 2897 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2898 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2899 | "engines": { 2900 | "node": ">= 0.6" 2901 | } 2902 | }, 2903 | "node_modules/mime-types": { 2904 | "version": "2.1.35", 2905 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2906 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2907 | "dependencies": { 2908 | "mime-db": "1.52.0" 2909 | }, 2910 | "engines": { 2911 | "node": ">= 0.6" 2912 | } 2913 | }, 2914 | "node_modules/minimatch": { 2915 | "version": "3.1.2", 2916 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2917 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2918 | "dependencies": { 2919 | "brace-expansion": "^1.1.7" 2920 | }, 2921 | "engines": { 2922 | "node": "*" 2923 | } 2924 | }, 2925 | "node_modules/minimist": { 2926 | "version": "1.2.8", 2927 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2928 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2929 | "dev": true, 2930 | "funding": { 2931 | "url": "https://github.com/sponsors/ljharb" 2932 | } 2933 | }, 2934 | "node_modules/ms": { 2935 | "version": "2.1.2", 2936 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2937 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 2938 | "dev": true 2939 | }, 2940 | "node_modules/mz": { 2941 | "version": "2.7.0", 2942 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 2943 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 2944 | "dependencies": { 2945 | "any-promise": "^1.0.0", 2946 | "object-assign": "^4.0.1", 2947 | "thenify-all": "^1.0.0" 2948 | } 2949 | }, 2950 | "node_modules/nanoid": { 2951 | "version": "3.3.7", 2952 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 2953 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 2954 | "funding": [ 2955 | { 2956 | "type": "github", 2957 | "url": "https://github.com/sponsors/ai" 2958 | } 2959 | ], 2960 | "bin": { 2961 | "nanoid": "bin/nanoid.cjs" 2962 | }, 2963 | "engines": { 2964 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2965 | } 2966 | }, 2967 | "node_modules/natural-compare": { 2968 | "version": "1.4.0", 2969 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2970 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 2971 | "dev": true 2972 | }, 2973 | "node_modules/next": { 2974 | "version": "14.0.1", 2975 | "resolved": "https://registry.npmjs.org/next/-/next-14.0.1.tgz", 2976 | "integrity": "sha512-s4YaLpE4b0gmb3ggtmpmV+wt+lPRuGtANzojMQ2+gmBpgX9w5fTbjsy6dXByBuENsdCX5pukZH/GxdFgO62+pA==", 2977 | "dependencies": { 2978 | "@next/env": "14.0.1", 2979 | "@swc/helpers": "0.5.2", 2980 | "busboy": "1.6.0", 2981 | "caniuse-lite": "^1.0.30001406", 2982 | "postcss": "8.4.31", 2983 | "styled-jsx": "5.1.1", 2984 | "watchpack": "2.4.0" 2985 | }, 2986 | "bin": { 2987 | "next": "dist/bin/next" 2988 | }, 2989 | "engines": { 2990 | "node": ">=18.17.0" 2991 | }, 2992 | "optionalDependencies": { 2993 | "@next/swc-darwin-arm64": "14.0.1", 2994 | "@next/swc-darwin-x64": "14.0.1", 2995 | "@next/swc-linux-arm64-gnu": "14.0.1", 2996 | "@next/swc-linux-arm64-musl": "14.0.1", 2997 | "@next/swc-linux-x64-gnu": "14.0.1", 2998 | "@next/swc-linux-x64-musl": "14.0.1", 2999 | "@next/swc-win32-arm64-msvc": "14.0.1", 3000 | "@next/swc-win32-ia32-msvc": "14.0.1", 3001 | "@next/swc-win32-x64-msvc": "14.0.1" 3002 | }, 3003 | "peerDependencies": { 3004 | "@opentelemetry/api": "^1.1.0", 3005 | "react": "^18.2.0", 3006 | "react-dom": "^18.2.0", 3007 | "sass": "^1.3.0" 3008 | }, 3009 | "peerDependenciesMeta": { 3010 | "@opentelemetry/api": { 3011 | "optional": true 3012 | }, 3013 | "sass": { 3014 | "optional": true 3015 | } 3016 | } 3017 | }, 3018 | "node_modules/node-releases": { 3019 | "version": "2.0.13", 3020 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", 3021 | "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", 3022 | "dev": true 3023 | }, 3024 | "node_modules/normalize-path": { 3025 | "version": "3.0.0", 3026 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 3027 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 3028 | "engines": { 3029 | "node": ">=0.10.0" 3030 | } 3031 | }, 3032 | "node_modules/normalize-range": { 3033 | "version": "0.1.2", 3034 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 3035 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 3036 | "dev": true, 3037 | "engines": { 3038 | "node": ">=0.10.0" 3039 | } 3040 | }, 3041 | "node_modules/object-assign": { 3042 | "version": "4.1.1", 3043 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 3044 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 3045 | "engines": { 3046 | "node": ">=0.10.0" 3047 | } 3048 | }, 3049 | "node_modules/object-hash": { 3050 | "version": "3.0.0", 3051 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 3052 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 3053 | "engines": { 3054 | "node": ">= 6" 3055 | } 3056 | }, 3057 | "node_modules/object-inspect": { 3058 | "version": "1.13.1", 3059 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", 3060 | "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", 3061 | "dev": true, 3062 | "funding": { 3063 | "url": "https://github.com/sponsors/ljharb" 3064 | } 3065 | }, 3066 | "node_modules/object-keys": { 3067 | "version": "1.1.1", 3068 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 3069 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 3070 | "dev": true, 3071 | "engines": { 3072 | "node": ">= 0.4" 3073 | } 3074 | }, 3075 | "node_modules/object.assign": { 3076 | "version": "4.1.4", 3077 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 3078 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 3079 | "dev": true, 3080 | "dependencies": { 3081 | "call-bind": "^1.0.2", 3082 | "define-properties": "^1.1.4", 3083 | "has-symbols": "^1.0.3", 3084 | "object-keys": "^1.1.1" 3085 | }, 3086 | "engines": { 3087 | "node": ">= 0.4" 3088 | }, 3089 | "funding": { 3090 | "url": "https://github.com/sponsors/ljharb" 3091 | } 3092 | }, 3093 | "node_modules/object.entries": { 3094 | "version": "1.1.7", 3095 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", 3096 | "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", 3097 | "dev": true, 3098 | "dependencies": { 3099 | "call-bind": "^1.0.2", 3100 | "define-properties": "^1.2.0", 3101 | "es-abstract": "^1.22.1" 3102 | }, 3103 | "engines": { 3104 | "node": ">= 0.4" 3105 | } 3106 | }, 3107 | "node_modules/object.fromentries": { 3108 | "version": "2.0.7", 3109 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", 3110 | "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", 3111 | "dev": true, 3112 | "dependencies": { 3113 | "call-bind": "^1.0.2", 3114 | "define-properties": "^1.2.0", 3115 | "es-abstract": "^1.22.1" 3116 | }, 3117 | "engines": { 3118 | "node": ">= 0.4" 3119 | }, 3120 | "funding": { 3121 | "url": "https://github.com/sponsors/ljharb" 3122 | } 3123 | }, 3124 | "node_modules/object.groupby": { 3125 | "version": "1.0.1", 3126 | "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", 3127 | "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", 3128 | "dev": true, 3129 | "dependencies": { 3130 | "call-bind": "^1.0.2", 3131 | "define-properties": "^1.2.0", 3132 | "es-abstract": "^1.22.1", 3133 | "get-intrinsic": "^1.2.1" 3134 | } 3135 | }, 3136 | "node_modules/object.hasown": { 3137 | "version": "1.1.3", 3138 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", 3139 | "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", 3140 | "dev": true, 3141 | "dependencies": { 3142 | "define-properties": "^1.2.0", 3143 | "es-abstract": "^1.22.1" 3144 | }, 3145 | "funding": { 3146 | "url": "https://github.com/sponsors/ljharb" 3147 | } 3148 | }, 3149 | "node_modules/object.values": { 3150 | "version": "1.1.7", 3151 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", 3152 | "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", 3153 | "dev": true, 3154 | "dependencies": { 3155 | "call-bind": "^1.0.2", 3156 | "define-properties": "^1.2.0", 3157 | "es-abstract": "^1.22.1" 3158 | }, 3159 | "engines": { 3160 | "node": ">= 0.4" 3161 | }, 3162 | "funding": { 3163 | "url": "https://github.com/sponsors/ljharb" 3164 | } 3165 | }, 3166 | "node_modules/once": { 3167 | "version": "1.4.0", 3168 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3169 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3170 | "dependencies": { 3171 | "wrappy": "1" 3172 | } 3173 | }, 3174 | "node_modules/optionator": { 3175 | "version": "0.9.3", 3176 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 3177 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 3178 | "dev": true, 3179 | "dependencies": { 3180 | "@aashutoshrathi/word-wrap": "^1.2.3", 3181 | "deep-is": "^0.1.3", 3182 | "fast-levenshtein": "^2.0.6", 3183 | "levn": "^0.4.1", 3184 | "prelude-ls": "^1.2.1", 3185 | "type-check": "^0.4.0" 3186 | }, 3187 | "engines": { 3188 | "node": ">= 0.8.0" 3189 | } 3190 | }, 3191 | "node_modules/p-limit": { 3192 | "version": "3.1.0", 3193 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3194 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3195 | "dev": true, 3196 | "dependencies": { 3197 | "yocto-queue": "^0.1.0" 3198 | }, 3199 | "engines": { 3200 | "node": ">=10" 3201 | }, 3202 | "funding": { 3203 | "url": "https://github.com/sponsors/sindresorhus" 3204 | } 3205 | }, 3206 | "node_modules/p-locate": { 3207 | "version": "5.0.0", 3208 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3209 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3210 | "dev": true, 3211 | "dependencies": { 3212 | "p-limit": "^3.0.2" 3213 | }, 3214 | "engines": { 3215 | "node": ">=10" 3216 | }, 3217 | "funding": { 3218 | "url": "https://github.com/sponsors/sindresorhus" 3219 | } 3220 | }, 3221 | "node_modules/parent-module": { 3222 | "version": "1.0.1", 3223 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3224 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3225 | "dev": true, 3226 | "dependencies": { 3227 | "callsites": "^3.0.0" 3228 | }, 3229 | "engines": { 3230 | "node": ">=6" 3231 | } 3232 | }, 3233 | "node_modules/path-exists": { 3234 | "version": "4.0.0", 3235 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3236 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3237 | "dev": true, 3238 | "engines": { 3239 | "node": ">=8" 3240 | } 3241 | }, 3242 | "node_modules/path-is-absolute": { 3243 | "version": "1.0.1", 3244 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3245 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3246 | "engines": { 3247 | "node": ">=0.10.0" 3248 | } 3249 | }, 3250 | "node_modules/path-key": { 3251 | "version": "3.1.1", 3252 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3253 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3254 | "dev": true, 3255 | "engines": { 3256 | "node": ">=8" 3257 | } 3258 | }, 3259 | "node_modules/path-parse": { 3260 | "version": "1.0.7", 3261 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3262 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 3263 | }, 3264 | "node_modules/path-type": { 3265 | "version": "4.0.0", 3266 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3267 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3268 | "dev": true, 3269 | "engines": { 3270 | "node": ">=8" 3271 | } 3272 | }, 3273 | "node_modules/picocolors": { 3274 | "version": "1.0.0", 3275 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3276 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 3277 | }, 3278 | "node_modules/picomatch": { 3279 | "version": "2.3.1", 3280 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3281 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3282 | "engines": { 3283 | "node": ">=8.6" 3284 | }, 3285 | "funding": { 3286 | "url": "https://github.com/sponsors/jonschlinkert" 3287 | } 3288 | }, 3289 | "node_modules/pify": { 3290 | "version": "2.3.0", 3291 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3292 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 3293 | "engines": { 3294 | "node": ">=0.10.0" 3295 | } 3296 | }, 3297 | "node_modules/pirates": { 3298 | "version": "4.0.6", 3299 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", 3300 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", 3301 | "engines": { 3302 | "node": ">= 6" 3303 | } 3304 | }, 3305 | "node_modules/postcss": { 3306 | "version": "8.4.31", 3307 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", 3308 | "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", 3309 | "funding": [ 3310 | { 3311 | "type": "opencollective", 3312 | "url": "https://opencollective.com/postcss/" 3313 | }, 3314 | { 3315 | "type": "tidelift", 3316 | "url": "https://tidelift.com/funding/github/npm/postcss" 3317 | }, 3318 | { 3319 | "type": "github", 3320 | "url": "https://github.com/sponsors/ai" 3321 | } 3322 | ], 3323 | "dependencies": { 3324 | "nanoid": "^3.3.6", 3325 | "picocolors": "^1.0.0", 3326 | "source-map-js": "^1.0.2" 3327 | }, 3328 | "engines": { 3329 | "node": "^10 || ^12 || >=14" 3330 | } 3331 | }, 3332 | "node_modules/postcss-import": { 3333 | "version": "15.1.0", 3334 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 3335 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 3336 | "dependencies": { 3337 | "postcss-value-parser": "^4.0.0", 3338 | "read-cache": "^1.0.0", 3339 | "resolve": "^1.1.7" 3340 | }, 3341 | "engines": { 3342 | "node": ">=14.0.0" 3343 | }, 3344 | "peerDependencies": { 3345 | "postcss": "^8.0.0" 3346 | } 3347 | }, 3348 | "node_modules/postcss-js": { 3349 | "version": "4.0.1", 3350 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 3351 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 3352 | "dependencies": { 3353 | "camelcase-css": "^2.0.1" 3354 | }, 3355 | "engines": { 3356 | "node": "^12 || ^14 || >= 16" 3357 | }, 3358 | "funding": { 3359 | "type": "opencollective", 3360 | "url": "https://opencollective.com/postcss/" 3361 | }, 3362 | "peerDependencies": { 3363 | "postcss": "^8.4.21" 3364 | } 3365 | }, 3366 | "node_modules/postcss-load-config": { 3367 | "version": "4.0.1", 3368 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", 3369 | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", 3370 | "dependencies": { 3371 | "lilconfig": "^2.0.5", 3372 | "yaml": "^2.1.1" 3373 | }, 3374 | "engines": { 3375 | "node": ">= 14" 3376 | }, 3377 | "funding": { 3378 | "type": "opencollective", 3379 | "url": "https://opencollective.com/postcss/" 3380 | }, 3381 | "peerDependencies": { 3382 | "postcss": ">=8.0.9", 3383 | "ts-node": ">=9.0.0" 3384 | }, 3385 | "peerDependenciesMeta": { 3386 | "postcss": { 3387 | "optional": true 3388 | }, 3389 | "ts-node": { 3390 | "optional": true 3391 | } 3392 | } 3393 | }, 3394 | "node_modules/postcss-nested": { 3395 | "version": "6.0.1", 3396 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 3397 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 3398 | "dependencies": { 3399 | "postcss-selector-parser": "^6.0.11" 3400 | }, 3401 | "engines": { 3402 | "node": ">=12.0" 3403 | }, 3404 | "funding": { 3405 | "type": "opencollective", 3406 | "url": "https://opencollective.com/postcss/" 3407 | }, 3408 | "peerDependencies": { 3409 | "postcss": "^8.2.14" 3410 | } 3411 | }, 3412 | "node_modules/postcss-selector-parser": { 3413 | "version": "6.0.13", 3414 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", 3415 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", 3416 | "dependencies": { 3417 | "cssesc": "^3.0.0", 3418 | "util-deprecate": "^1.0.2" 3419 | }, 3420 | "engines": { 3421 | "node": ">=4" 3422 | } 3423 | }, 3424 | "node_modules/postcss-value-parser": { 3425 | "version": "4.2.0", 3426 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3427 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 3428 | }, 3429 | "node_modules/prelude-ls": { 3430 | "version": "1.2.1", 3431 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3432 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3433 | "dev": true, 3434 | "engines": { 3435 | "node": ">= 0.8.0" 3436 | } 3437 | }, 3438 | "node_modules/prop-types": { 3439 | "version": "15.8.1", 3440 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 3441 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 3442 | "dev": true, 3443 | "dependencies": { 3444 | "loose-envify": "^1.4.0", 3445 | "object-assign": "^4.1.1", 3446 | "react-is": "^16.13.1" 3447 | } 3448 | }, 3449 | "node_modules/proxy-from-env": { 3450 | "version": "1.1.0", 3451 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 3452 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" 3453 | }, 3454 | "node_modules/punycode": { 3455 | "version": "2.3.1", 3456 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3457 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3458 | "dev": true, 3459 | "engines": { 3460 | "node": ">=6" 3461 | } 3462 | }, 3463 | "node_modules/queue-microtask": { 3464 | "version": "1.2.3", 3465 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3466 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3467 | "funding": [ 3468 | { 3469 | "type": "github", 3470 | "url": "https://github.com/sponsors/feross" 3471 | }, 3472 | { 3473 | "type": "patreon", 3474 | "url": "https://www.patreon.com/feross" 3475 | }, 3476 | { 3477 | "type": "consulting", 3478 | "url": "https://feross.org/support" 3479 | } 3480 | ] 3481 | }, 3482 | "node_modules/react": { 3483 | "version": "18.2.0", 3484 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 3485 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 3486 | "dependencies": { 3487 | "loose-envify": "^1.1.0" 3488 | }, 3489 | "engines": { 3490 | "node": ">=0.10.0" 3491 | } 3492 | }, 3493 | "node_modules/react-dom": { 3494 | "version": "18.2.0", 3495 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 3496 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 3497 | "dependencies": { 3498 | "loose-envify": "^1.1.0", 3499 | "scheduler": "^0.23.0" 3500 | }, 3501 | "peerDependencies": { 3502 | "react": "^18.2.0" 3503 | } 3504 | }, 3505 | "node_modules/react-is": { 3506 | "version": "16.13.1", 3507 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3508 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", 3509 | "dev": true 3510 | }, 3511 | "node_modules/read-cache": { 3512 | "version": "1.0.0", 3513 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 3514 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 3515 | "dependencies": { 3516 | "pify": "^2.3.0" 3517 | } 3518 | }, 3519 | "node_modules/readdirp": { 3520 | "version": "3.6.0", 3521 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3522 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3523 | "dependencies": { 3524 | "picomatch": "^2.2.1" 3525 | }, 3526 | "engines": { 3527 | "node": ">=8.10.0" 3528 | } 3529 | }, 3530 | "node_modules/reflect.getprototypeof": { 3531 | "version": "1.0.4", 3532 | "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", 3533 | "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", 3534 | "dev": true, 3535 | "dependencies": { 3536 | "call-bind": "^1.0.2", 3537 | "define-properties": "^1.2.0", 3538 | "es-abstract": "^1.22.1", 3539 | "get-intrinsic": "^1.2.1", 3540 | "globalthis": "^1.0.3", 3541 | "which-builtin-type": "^1.1.3" 3542 | }, 3543 | "engines": { 3544 | "node": ">= 0.4" 3545 | }, 3546 | "funding": { 3547 | "url": "https://github.com/sponsors/ljharb" 3548 | } 3549 | }, 3550 | "node_modules/regenerator-runtime": { 3551 | "version": "0.14.0", 3552 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", 3553 | "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==" 3554 | }, 3555 | "node_modules/regexp.prototype.flags": { 3556 | "version": "1.5.1", 3557 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", 3558 | "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", 3559 | "dev": true, 3560 | "dependencies": { 3561 | "call-bind": "^1.0.2", 3562 | "define-properties": "^1.2.0", 3563 | "set-function-name": "^2.0.0" 3564 | }, 3565 | "engines": { 3566 | "node": ">= 0.4" 3567 | }, 3568 | "funding": { 3569 | "url": "https://github.com/sponsors/ljharb" 3570 | } 3571 | }, 3572 | "node_modules/resolve": { 3573 | "version": "1.22.8", 3574 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 3575 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 3576 | "dependencies": { 3577 | "is-core-module": "^2.13.0", 3578 | "path-parse": "^1.0.7", 3579 | "supports-preserve-symlinks-flag": "^1.0.0" 3580 | }, 3581 | "bin": { 3582 | "resolve": "bin/resolve" 3583 | }, 3584 | "funding": { 3585 | "url": "https://github.com/sponsors/ljharb" 3586 | } 3587 | }, 3588 | "node_modules/resolve-from": { 3589 | "version": "4.0.0", 3590 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3591 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3592 | "dev": true, 3593 | "engines": { 3594 | "node": ">=4" 3595 | } 3596 | }, 3597 | "node_modules/resolve-pkg-maps": { 3598 | "version": "1.0.0", 3599 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 3600 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 3601 | "dev": true, 3602 | "funding": { 3603 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 3604 | } 3605 | }, 3606 | "node_modules/reusify": { 3607 | "version": "1.0.4", 3608 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3609 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3610 | "engines": { 3611 | "iojs": ">=1.0.0", 3612 | "node": ">=0.10.0" 3613 | } 3614 | }, 3615 | "node_modules/rimraf": { 3616 | "version": "3.0.2", 3617 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3618 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3619 | "dev": true, 3620 | "dependencies": { 3621 | "glob": "^7.1.3" 3622 | }, 3623 | "bin": { 3624 | "rimraf": "bin.js" 3625 | }, 3626 | "funding": { 3627 | "url": "https://github.com/sponsors/isaacs" 3628 | } 3629 | }, 3630 | "node_modules/run-parallel": { 3631 | "version": "1.2.0", 3632 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3633 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3634 | "funding": [ 3635 | { 3636 | "type": "github", 3637 | "url": "https://github.com/sponsors/feross" 3638 | }, 3639 | { 3640 | "type": "patreon", 3641 | "url": "https://www.patreon.com/feross" 3642 | }, 3643 | { 3644 | "type": "consulting", 3645 | "url": "https://feross.org/support" 3646 | } 3647 | ], 3648 | "dependencies": { 3649 | "queue-microtask": "^1.2.2" 3650 | } 3651 | }, 3652 | "node_modules/safe-array-concat": { 3653 | "version": "1.0.1", 3654 | "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", 3655 | "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", 3656 | "dev": true, 3657 | "dependencies": { 3658 | "call-bind": "^1.0.2", 3659 | "get-intrinsic": "^1.2.1", 3660 | "has-symbols": "^1.0.3", 3661 | "isarray": "^2.0.5" 3662 | }, 3663 | "engines": { 3664 | "node": ">=0.4" 3665 | }, 3666 | "funding": { 3667 | "url": "https://github.com/sponsors/ljharb" 3668 | } 3669 | }, 3670 | "node_modules/safe-regex-test": { 3671 | "version": "1.0.0", 3672 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3673 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3674 | "dev": true, 3675 | "dependencies": { 3676 | "call-bind": "^1.0.2", 3677 | "get-intrinsic": "^1.1.3", 3678 | "is-regex": "^1.1.4" 3679 | }, 3680 | "funding": { 3681 | "url": "https://github.com/sponsors/ljharb" 3682 | } 3683 | }, 3684 | "node_modules/scheduler": { 3685 | "version": "0.23.0", 3686 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 3687 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 3688 | "dependencies": { 3689 | "loose-envify": "^1.1.0" 3690 | } 3691 | }, 3692 | "node_modules/semver": { 3693 | "version": "7.5.4", 3694 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", 3695 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", 3696 | "dev": true, 3697 | "dependencies": { 3698 | "lru-cache": "^6.0.0" 3699 | }, 3700 | "bin": { 3701 | "semver": "bin/semver.js" 3702 | }, 3703 | "engines": { 3704 | "node": ">=10" 3705 | } 3706 | }, 3707 | "node_modules/set-function-length": { 3708 | "version": "1.1.1", 3709 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", 3710 | "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", 3711 | "dev": true, 3712 | "dependencies": { 3713 | "define-data-property": "^1.1.1", 3714 | "get-intrinsic": "^1.2.1", 3715 | "gopd": "^1.0.1", 3716 | "has-property-descriptors": "^1.0.0" 3717 | }, 3718 | "engines": { 3719 | "node": ">= 0.4" 3720 | } 3721 | }, 3722 | "node_modules/set-function-name": { 3723 | "version": "2.0.1", 3724 | "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", 3725 | "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", 3726 | "dev": true, 3727 | "dependencies": { 3728 | "define-data-property": "^1.0.1", 3729 | "functions-have-names": "^1.2.3", 3730 | "has-property-descriptors": "^1.0.0" 3731 | }, 3732 | "engines": { 3733 | "node": ">= 0.4" 3734 | } 3735 | }, 3736 | "node_modules/shebang-command": { 3737 | "version": "2.0.0", 3738 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3739 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3740 | "dev": true, 3741 | "dependencies": { 3742 | "shebang-regex": "^3.0.0" 3743 | }, 3744 | "engines": { 3745 | "node": ">=8" 3746 | } 3747 | }, 3748 | "node_modules/shebang-regex": { 3749 | "version": "3.0.0", 3750 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3751 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3752 | "dev": true, 3753 | "engines": { 3754 | "node": ">=8" 3755 | } 3756 | }, 3757 | "node_modules/side-channel": { 3758 | "version": "1.0.4", 3759 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3760 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3761 | "dev": true, 3762 | "dependencies": { 3763 | "call-bind": "^1.0.0", 3764 | "get-intrinsic": "^1.0.2", 3765 | "object-inspect": "^1.9.0" 3766 | }, 3767 | "funding": { 3768 | "url": "https://github.com/sponsors/ljharb" 3769 | } 3770 | }, 3771 | "node_modules/slash": { 3772 | "version": "3.0.0", 3773 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3774 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3775 | "dev": true, 3776 | "engines": { 3777 | "node": ">=8" 3778 | } 3779 | }, 3780 | "node_modules/source-map-js": { 3781 | "version": "1.0.2", 3782 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 3783 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 3784 | "engines": { 3785 | "node": ">=0.10.0" 3786 | } 3787 | }, 3788 | "node_modules/streamsearch": { 3789 | "version": "1.1.0", 3790 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 3791 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 3792 | "engines": { 3793 | "node": ">=10.0.0" 3794 | } 3795 | }, 3796 | "node_modules/string.prototype.matchall": { 3797 | "version": "4.0.10", 3798 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", 3799 | "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", 3800 | "dev": true, 3801 | "dependencies": { 3802 | "call-bind": "^1.0.2", 3803 | "define-properties": "^1.2.0", 3804 | "es-abstract": "^1.22.1", 3805 | "get-intrinsic": "^1.2.1", 3806 | "has-symbols": "^1.0.3", 3807 | "internal-slot": "^1.0.5", 3808 | "regexp.prototype.flags": "^1.5.0", 3809 | "set-function-name": "^2.0.0", 3810 | "side-channel": "^1.0.4" 3811 | }, 3812 | "funding": { 3813 | "url": "https://github.com/sponsors/ljharb" 3814 | } 3815 | }, 3816 | "node_modules/string.prototype.trim": { 3817 | "version": "1.2.8", 3818 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", 3819 | "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", 3820 | "dev": true, 3821 | "dependencies": { 3822 | "call-bind": "^1.0.2", 3823 | "define-properties": "^1.2.0", 3824 | "es-abstract": "^1.22.1" 3825 | }, 3826 | "engines": { 3827 | "node": ">= 0.4" 3828 | }, 3829 | "funding": { 3830 | "url": "https://github.com/sponsors/ljharb" 3831 | } 3832 | }, 3833 | "node_modules/string.prototype.trimend": { 3834 | "version": "1.0.7", 3835 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", 3836 | "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", 3837 | "dev": true, 3838 | "dependencies": { 3839 | "call-bind": "^1.0.2", 3840 | "define-properties": "^1.2.0", 3841 | "es-abstract": "^1.22.1" 3842 | }, 3843 | "funding": { 3844 | "url": "https://github.com/sponsors/ljharb" 3845 | } 3846 | }, 3847 | "node_modules/string.prototype.trimstart": { 3848 | "version": "1.0.7", 3849 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", 3850 | "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", 3851 | "dev": true, 3852 | "dependencies": { 3853 | "call-bind": "^1.0.2", 3854 | "define-properties": "^1.2.0", 3855 | "es-abstract": "^1.22.1" 3856 | }, 3857 | "funding": { 3858 | "url": "https://github.com/sponsors/ljharb" 3859 | } 3860 | }, 3861 | "node_modules/strip-ansi": { 3862 | "version": "6.0.1", 3863 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3864 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3865 | "dev": true, 3866 | "dependencies": { 3867 | "ansi-regex": "^5.0.1" 3868 | }, 3869 | "engines": { 3870 | "node": ">=8" 3871 | } 3872 | }, 3873 | "node_modules/strip-bom": { 3874 | "version": "3.0.0", 3875 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3876 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3877 | "dev": true, 3878 | "engines": { 3879 | "node": ">=4" 3880 | } 3881 | }, 3882 | "node_modules/strip-json-comments": { 3883 | "version": "3.1.1", 3884 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3885 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3886 | "dev": true, 3887 | "engines": { 3888 | "node": ">=8" 3889 | }, 3890 | "funding": { 3891 | "url": "https://github.com/sponsors/sindresorhus" 3892 | } 3893 | }, 3894 | "node_modules/styled-jsx": { 3895 | "version": "5.1.1", 3896 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", 3897 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", 3898 | "dependencies": { 3899 | "client-only": "0.0.1" 3900 | }, 3901 | "engines": { 3902 | "node": ">= 12.0.0" 3903 | }, 3904 | "peerDependencies": { 3905 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 3906 | }, 3907 | "peerDependenciesMeta": { 3908 | "@babel/core": { 3909 | "optional": true 3910 | }, 3911 | "babel-plugin-macros": { 3912 | "optional": true 3913 | } 3914 | } 3915 | }, 3916 | "node_modules/sucrase": { 3917 | "version": "3.34.0", 3918 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz", 3919 | "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==", 3920 | "dependencies": { 3921 | "@jridgewell/gen-mapping": "^0.3.2", 3922 | "commander": "^4.0.0", 3923 | "glob": "7.1.6", 3924 | "lines-and-columns": "^1.1.6", 3925 | "mz": "^2.7.0", 3926 | "pirates": "^4.0.1", 3927 | "ts-interface-checker": "^0.1.9" 3928 | }, 3929 | "bin": { 3930 | "sucrase": "bin/sucrase", 3931 | "sucrase-node": "bin/sucrase-node" 3932 | }, 3933 | "engines": { 3934 | "node": ">=8" 3935 | } 3936 | }, 3937 | "node_modules/sucrase/node_modules/glob": { 3938 | "version": "7.1.6", 3939 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 3940 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 3941 | "dependencies": { 3942 | "fs.realpath": "^1.0.0", 3943 | "inflight": "^1.0.4", 3944 | "inherits": "2", 3945 | "minimatch": "^3.0.4", 3946 | "once": "^1.3.0", 3947 | "path-is-absolute": "^1.0.0" 3948 | }, 3949 | "engines": { 3950 | "node": "*" 3951 | }, 3952 | "funding": { 3953 | "url": "https://github.com/sponsors/isaacs" 3954 | } 3955 | }, 3956 | "node_modules/supports-color": { 3957 | "version": "7.2.0", 3958 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 3959 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 3960 | "dev": true, 3961 | "dependencies": { 3962 | "has-flag": "^4.0.0" 3963 | }, 3964 | "engines": { 3965 | "node": ">=8" 3966 | } 3967 | }, 3968 | "node_modules/supports-preserve-symlinks-flag": { 3969 | "version": "1.0.0", 3970 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 3971 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 3972 | "engines": { 3973 | "node": ">= 0.4" 3974 | }, 3975 | "funding": { 3976 | "url": "https://github.com/sponsors/ljharb" 3977 | } 3978 | }, 3979 | "node_modules/tailwind-merge": { 3980 | "version": "2.0.0", 3981 | "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.0.0.tgz", 3982 | "integrity": "sha512-WO8qghn9yhsldLSg80au+3/gY9E4hFxIvQ3qOmlpXnqpDKoMruKfi/56BbbMg6fHTQJ9QD3cc79PoWqlaQE4rw==", 3983 | "dependencies": { 3984 | "@babel/runtime": "^7.23.1" 3985 | }, 3986 | "funding": { 3987 | "type": "github", 3988 | "url": "https://github.com/sponsors/dcastil" 3989 | } 3990 | }, 3991 | "node_modules/tailwindcss": { 3992 | "version": "3.3.5", 3993 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.5.tgz", 3994 | "integrity": "sha512-5SEZU4J7pxZgSkv7FP1zY8i2TIAOooNZ1e/OGtxIEv6GltpoiXUqWvLy89+a10qYTB1N5Ifkuw9lqQkN9sscvA==", 3995 | "dependencies": { 3996 | "@alloc/quick-lru": "^5.2.0", 3997 | "arg": "^5.0.2", 3998 | "chokidar": "^3.5.3", 3999 | "didyoumean": "^1.2.2", 4000 | "dlv": "^1.1.3", 4001 | "fast-glob": "^3.3.0", 4002 | "glob-parent": "^6.0.2", 4003 | "is-glob": "^4.0.3", 4004 | "jiti": "^1.19.1", 4005 | "lilconfig": "^2.1.0", 4006 | "micromatch": "^4.0.5", 4007 | "normalize-path": "^3.0.0", 4008 | "object-hash": "^3.0.0", 4009 | "picocolors": "^1.0.0", 4010 | "postcss": "^8.4.23", 4011 | "postcss-import": "^15.1.0", 4012 | "postcss-js": "^4.0.1", 4013 | "postcss-load-config": "^4.0.1", 4014 | "postcss-nested": "^6.0.1", 4015 | "postcss-selector-parser": "^6.0.11", 4016 | "resolve": "^1.22.2", 4017 | "sucrase": "^3.32.0" 4018 | }, 4019 | "bin": { 4020 | "tailwind": "lib/cli.js", 4021 | "tailwindcss": "lib/cli.js" 4022 | }, 4023 | "engines": { 4024 | "node": ">=14.0.0" 4025 | } 4026 | }, 4027 | "node_modules/tailwindcss-animate": { 4028 | "version": "1.0.7", 4029 | "resolved": "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz", 4030 | "integrity": "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==", 4031 | "peerDependencies": { 4032 | "tailwindcss": ">=3.0.0 || insiders" 4033 | } 4034 | }, 4035 | "node_modules/tapable": { 4036 | "version": "2.2.1", 4037 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 4038 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 4039 | "dev": true, 4040 | "engines": { 4041 | "node": ">=6" 4042 | } 4043 | }, 4044 | "node_modules/text-table": { 4045 | "version": "0.2.0", 4046 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 4047 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 4048 | "dev": true 4049 | }, 4050 | "node_modules/thenify": { 4051 | "version": "3.3.1", 4052 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 4053 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 4054 | "dependencies": { 4055 | "any-promise": "^1.0.0" 4056 | } 4057 | }, 4058 | "node_modules/thenify-all": { 4059 | "version": "1.6.0", 4060 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 4061 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 4062 | "dependencies": { 4063 | "thenify": ">= 3.1.0 < 4" 4064 | }, 4065 | "engines": { 4066 | "node": ">=0.8" 4067 | } 4068 | }, 4069 | "node_modules/to-regex-range": { 4070 | "version": "5.0.1", 4071 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4072 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4073 | "dependencies": { 4074 | "is-number": "^7.0.0" 4075 | }, 4076 | "engines": { 4077 | "node": ">=8.0" 4078 | } 4079 | }, 4080 | "node_modules/ts-api-utils": { 4081 | "version": "1.0.3", 4082 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", 4083 | "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", 4084 | "dev": true, 4085 | "engines": { 4086 | "node": ">=16.13.0" 4087 | }, 4088 | "peerDependencies": { 4089 | "typescript": ">=4.2.0" 4090 | } 4091 | }, 4092 | "node_modules/ts-interface-checker": { 4093 | "version": "0.1.13", 4094 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 4095 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" 4096 | }, 4097 | "node_modules/tsconfig-paths": { 4098 | "version": "3.14.2", 4099 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", 4100 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", 4101 | "dev": true, 4102 | "dependencies": { 4103 | "@types/json5": "^0.0.29", 4104 | "json5": "^1.0.2", 4105 | "minimist": "^1.2.6", 4106 | "strip-bom": "^3.0.0" 4107 | } 4108 | }, 4109 | "node_modules/tslib": { 4110 | "version": "2.6.2", 4111 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", 4112 | "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" 4113 | }, 4114 | "node_modules/type-check": { 4115 | "version": "0.4.0", 4116 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4117 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4118 | "dev": true, 4119 | "dependencies": { 4120 | "prelude-ls": "^1.2.1" 4121 | }, 4122 | "engines": { 4123 | "node": ">= 0.8.0" 4124 | } 4125 | }, 4126 | "node_modules/type-fest": { 4127 | "version": "0.20.2", 4128 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4129 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4130 | "dev": true, 4131 | "engines": { 4132 | "node": ">=10" 4133 | }, 4134 | "funding": { 4135 | "url": "https://github.com/sponsors/sindresorhus" 4136 | } 4137 | }, 4138 | "node_modules/typed-array-buffer": { 4139 | "version": "1.0.0", 4140 | "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", 4141 | "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", 4142 | "dev": true, 4143 | "dependencies": { 4144 | "call-bind": "^1.0.2", 4145 | "get-intrinsic": "^1.2.1", 4146 | "is-typed-array": "^1.1.10" 4147 | }, 4148 | "engines": { 4149 | "node": ">= 0.4" 4150 | } 4151 | }, 4152 | "node_modules/typed-array-byte-length": { 4153 | "version": "1.0.0", 4154 | "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", 4155 | "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", 4156 | "dev": true, 4157 | "dependencies": { 4158 | "call-bind": "^1.0.2", 4159 | "for-each": "^0.3.3", 4160 | "has-proto": "^1.0.1", 4161 | "is-typed-array": "^1.1.10" 4162 | }, 4163 | "engines": { 4164 | "node": ">= 0.4" 4165 | }, 4166 | "funding": { 4167 | "url": "https://github.com/sponsors/ljharb" 4168 | } 4169 | }, 4170 | "node_modules/typed-array-byte-offset": { 4171 | "version": "1.0.0", 4172 | "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", 4173 | "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", 4174 | "dev": true, 4175 | "dependencies": { 4176 | "available-typed-arrays": "^1.0.5", 4177 | "call-bind": "^1.0.2", 4178 | "for-each": "^0.3.3", 4179 | "has-proto": "^1.0.1", 4180 | "is-typed-array": "^1.1.10" 4181 | }, 4182 | "engines": { 4183 | "node": ">= 0.4" 4184 | }, 4185 | "funding": { 4186 | "url": "https://github.com/sponsors/ljharb" 4187 | } 4188 | }, 4189 | "node_modules/typed-array-length": { 4190 | "version": "1.0.4", 4191 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 4192 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 4193 | "dev": true, 4194 | "dependencies": { 4195 | "call-bind": "^1.0.2", 4196 | "for-each": "^0.3.3", 4197 | "is-typed-array": "^1.1.9" 4198 | }, 4199 | "funding": { 4200 | "url": "https://github.com/sponsors/ljharb" 4201 | } 4202 | }, 4203 | "node_modules/typescript": { 4204 | "version": "5.2.2", 4205 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", 4206 | "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", 4207 | "dev": true, 4208 | "bin": { 4209 | "tsc": "bin/tsc", 4210 | "tsserver": "bin/tsserver" 4211 | }, 4212 | "engines": { 4213 | "node": ">=14.17" 4214 | } 4215 | }, 4216 | "node_modules/unbox-primitive": { 4217 | "version": "1.0.2", 4218 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 4219 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 4220 | "dev": true, 4221 | "dependencies": { 4222 | "call-bind": "^1.0.2", 4223 | "has-bigints": "^1.0.2", 4224 | "has-symbols": "^1.0.3", 4225 | "which-boxed-primitive": "^1.0.2" 4226 | }, 4227 | "funding": { 4228 | "url": "https://github.com/sponsors/ljharb" 4229 | } 4230 | }, 4231 | "node_modules/undici-types": { 4232 | "version": "5.26.5", 4233 | "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", 4234 | "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", 4235 | "dev": true 4236 | }, 4237 | "node_modules/update-browserslist-db": { 4238 | "version": "1.0.13", 4239 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", 4240 | "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", 4241 | "dev": true, 4242 | "funding": [ 4243 | { 4244 | "type": "opencollective", 4245 | "url": "https://opencollective.com/browserslist" 4246 | }, 4247 | { 4248 | "type": "tidelift", 4249 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4250 | }, 4251 | { 4252 | "type": "github", 4253 | "url": "https://github.com/sponsors/ai" 4254 | } 4255 | ], 4256 | "dependencies": { 4257 | "escalade": "^3.1.1", 4258 | "picocolors": "^1.0.0" 4259 | }, 4260 | "bin": { 4261 | "update-browserslist-db": "cli.js" 4262 | }, 4263 | "peerDependencies": { 4264 | "browserslist": ">= 4.21.0" 4265 | } 4266 | }, 4267 | "node_modules/uri-js": { 4268 | "version": "4.4.1", 4269 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4270 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4271 | "dev": true, 4272 | "dependencies": { 4273 | "punycode": "^2.1.0" 4274 | } 4275 | }, 4276 | "node_modules/util-deprecate": { 4277 | "version": "1.0.2", 4278 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 4279 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 4280 | }, 4281 | "node_modules/watchpack": { 4282 | "version": "2.4.0", 4283 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", 4284 | "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", 4285 | "dependencies": { 4286 | "glob-to-regexp": "^0.4.1", 4287 | "graceful-fs": "^4.1.2" 4288 | }, 4289 | "engines": { 4290 | "node": ">=10.13.0" 4291 | } 4292 | }, 4293 | "node_modules/which": { 4294 | "version": "2.0.2", 4295 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4296 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4297 | "dev": true, 4298 | "dependencies": { 4299 | "isexe": "^2.0.0" 4300 | }, 4301 | "bin": { 4302 | "node-which": "bin/node-which" 4303 | }, 4304 | "engines": { 4305 | "node": ">= 8" 4306 | } 4307 | }, 4308 | "node_modules/which-boxed-primitive": { 4309 | "version": "1.0.2", 4310 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 4311 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 4312 | "dev": true, 4313 | "dependencies": { 4314 | "is-bigint": "^1.0.1", 4315 | "is-boolean-object": "^1.1.0", 4316 | "is-number-object": "^1.0.4", 4317 | "is-string": "^1.0.5", 4318 | "is-symbol": "^1.0.3" 4319 | }, 4320 | "funding": { 4321 | "url": "https://github.com/sponsors/ljharb" 4322 | } 4323 | }, 4324 | "node_modules/which-builtin-type": { 4325 | "version": "1.1.3", 4326 | "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", 4327 | "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", 4328 | "dev": true, 4329 | "dependencies": { 4330 | "function.prototype.name": "^1.1.5", 4331 | "has-tostringtag": "^1.0.0", 4332 | "is-async-function": "^2.0.0", 4333 | "is-date-object": "^1.0.5", 4334 | "is-finalizationregistry": "^1.0.2", 4335 | "is-generator-function": "^1.0.10", 4336 | "is-regex": "^1.1.4", 4337 | "is-weakref": "^1.0.2", 4338 | "isarray": "^2.0.5", 4339 | "which-boxed-primitive": "^1.0.2", 4340 | "which-collection": "^1.0.1", 4341 | "which-typed-array": "^1.1.9" 4342 | }, 4343 | "engines": { 4344 | "node": ">= 0.4" 4345 | }, 4346 | "funding": { 4347 | "url": "https://github.com/sponsors/ljharb" 4348 | } 4349 | }, 4350 | "node_modules/which-collection": { 4351 | "version": "1.0.1", 4352 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", 4353 | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", 4354 | "dev": true, 4355 | "dependencies": { 4356 | "is-map": "^2.0.1", 4357 | "is-set": "^2.0.1", 4358 | "is-weakmap": "^2.0.1", 4359 | "is-weakset": "^2.0.1" 4360 | }, 4361 | "funding": { 4362 | "url": "https://github.com/sponsors/ljharb" 4363 | } 4364 | }, 4365 | "node_modules/which-typed-array": { 4366 | "version": "1.1.13", 4367 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", 4368 | "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", 4369 | "dev": true, 4370 | "dependencies": { 4371 | "available-typed-arrays": "^1.0.5", 4372 | "call-bind": "^1.0.4", 4373 | "for-each": "^0.3.3", 4374 | "gopd": "^1.0.1", 4375 | "has-tostringtag": "^1.0.0" 4376 | }, 4377 | "engines": { 4378 | "node": ">= 0.4" 4379 | }, 4380 | "funding": { 4381 | "url": "https://github.com/sponsors/ljharb" 4382 | } 4383 | }, 4384 | "node_modules/wrappy": { 4385 | "version": "1.0.2", 4386 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4387 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 4388 | }, 4389 | "node_modules/yallist": { 4390 | "version": "4.0.0", 4391 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 4392 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", 4393 | "dev": true 4394 | }, 4395 | "node_modules/yaml": { 4396 | "version": "2.3.4", 4397 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", 4398 | "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", 4399 | "engines": { 4400 | "node": ">= 14" 4401 | } 4402 | }, 4403 | "node_modules/yocto-queue": { 4404 | "version": "0.1.0", 4405 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4406 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4407 | "dev": true, 4408 | "engines": { 4409 | "node": ">=10" 4410 | }, 4411 | "funding": { 4412 | "url": "https://github.com/sponsors/sindresorhus" 4413 | } 4414 | } 4415 | } 4416 | } 4417 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "next-infura-gasapi", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "axios": "^1.6.1", 13 | "class-variance-authority": "^0.7.0", 14 | "clsx": "^2.0.0", 15 | "dotenv": "^16.3.1", 16 | "lucide-react": "^0.292.0", 17 | "next": "14.0.1", 18 | "react": "^18", 19 | "react-dom": "^18", 20 | "tailwind-merge": "^2.0.0", 21 | "tailwindcss-animate": "^1.0.7" 22 | }, 23 | "devDependencies": { 24 | "@types/node": "^20", 25 | "@types/react": "^18", 26 | "@types/react-dom": "^18", 27 | "autoprefixer": "^10.0.1", 28 | "eslint": "^8", 29 | "eslint-config-next": "14.0.1", 30 | "postcss": "^8", 31 | "tailwindcss": "^3.3.0", 32 | "typescript": "^5" 33 | }, 34 | "description": "This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).", 35 | "main": "next.config.js", 36 | "directories": { 37 | "lib": "lib" 38 | }, 39 | "keywords": [], 40 | "author": "", 41 | "license": "ISC" 42 | } 43 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | darkMode: ["class"], 4 | content: [ 5 | './pages/**/*.{ts,tsx}', 6 | './components/**/*.{ts,tsx}', 7 | './app/**/*.{ts,tsx}', 8 | './src/**/*.{ts,tsx}', 9 | ], 10 | theme: { 11 | container: { 12 | center: true, 13 | padding: "2rem", 14 | screens: { 15 | "2xl": "1400px", 16 | }, 17 | }, 18 | extend: { 19 | colors: { 20 | border: "hsl(var(--border))", 21 | input: "hsl(var(--input))", 22 | ring: "hsl(var(--ring))", 23 | background: "hsl(var(--background))", 24 | foreground: "hsl(var(--foreground))", 25 | primary: { 26 | DEFAULT: "hsl(var(--primary))", 27 | foreground: "hsl(var(--primary-foreground))", 28 | }, 29 | secondary: { 30 | DEFAULT: "hsl(var(--secondary))", 31 | foreground: "hsl(var(--secondary-foreground))", 32 | }, 33 | destructive: { 34 | DEFAULT: "hsl(var(--destructive))", 35 | foreground: "hsl(var(--destructive-foreground))", 36 | }, 37 | muted: { 38 | DEFAULT: "hsl(var(--muted))", 39 | foreground: "hsl(var(--muted-foreground))", 40 | }, 41 | accent: { 42 | DEFAULT: "hsl(var(--accent))", 43 | foreground: "hsl(var(--accent-foreground))", 44 | }, 45 | popover: { 46 | DEFAULT: "hsl(var(--popover))", 47 | foreground: "hsl(var(--popover-foreground))", 48 | }, 49 | card: { 50 | DEFAULT: "hsl(var(--card))", 51 | foreground: "hsl(var(--card-foreground))", 52 | }, 53 | }, 54 | borderRadius: { 55 | lg: "var(--radius)", 56 | md: "calc(var(--radius) - 2px)", 57 | sm: "calc(var(--radius) - 4px)", 58 | }, 59 | keyframes: { 60 | "accordion-down": { 61 | from: { height: 0 }, 62 | to: { height: "var(--radix-accordion-content-height)" }, 63 | }, 64 | "accordion-up": { 65 | from: { height: "var(--radix-accordion-content-height)" }, 66 | to: { height: 0 }, 67 | }, 68 | }, 69 | animation: { 70 | "accordion-down": "accordion-down 0.2s ease-out", 71 | "accordion-up": "accordion-up 0.2s ease-out", 72 | }, 73 | }, 74 | }, 75 | plugins: [require("tailwindcss-animate")], 76 | } -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- 1 | import type { Config } from 'tailwindcss' 2 | 3 | const config: Config = { 4 | content: [ 5 | './pages/**/*.{js,ts,jsx,tsx,mdx}', 6 | './components/**/*.{js,ts,jsx,tsx,mdx}', 7 | './app/**/*.{js,ts,jsx,tsx,mdx}', 8 | ], 9 | theme: { 10 | extend: { 11 | backgroundImage: { 12 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 13 | 'gradient-conic': 14 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 15 | }, 16 | }, 17 | }, 18 | plugins: [], 19 | } 20 | export default config 21 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "noEmit": true, 9 | "esModuleInterop": true, 10 | "module": "esnext", 11 | "moduleResolution": "bundler", 12 | "resolveJsonModule": true, 13 | "isolatedModules": true, 14 | "jsx": "preserve", 15 | "incremental": true, 16 | "plugins": [ 17 | { 18 | "name": "next" 19 | } 20 | ], 21 | "paths": { 22 | "@/*": ["./*"] 23 | } 24 | }, 25 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 26 | "exclude": ["node_modules"] 27 | } 28 | -------------------------------------------------------------------------------- /types.d.ts: -------------------------------------------------------------------------------- 1 | interface GasFeeEstimate { 2 | suggestedMaxPriorityFeePerGas: string; 3 | suggestedMaxFeePerGas: string; 4 | minWaitTimeEstimate: number; 5 | maxWaitTimeEstimate: number; 6 | } 7 | 8 | interface GasFeesApiResponse { 9 | low: GasFeeEstimate; 10 | medium: GasFeeEstimate; 11 | high: GasFeeEstimate; 12 | estimatedBaseFee: string; 13 | networkCongestion: number; 14 | latestPriorityFeeRange: string[]; 15 | historicalPriorityFeeRange: string[]; 16 | historicalBaseFeeRange: string[]; 17 | priorityFeeTrend: 'up' | 'down'; 18 | baseFeeTrend: 'up' | 'down'; 19 | } --------------------------------------------------------------------------------