├── .gitignore
├── LICENSE
├── README.md
├── design
├── desktop-design.jpg
├── desktop-preview.jpg
└── mobile-design.jpg
├── images
├── favicon-32x32.png
├── image-qr-code.png
└── qr-code.png
├── index.html
├── nextjs-code
├── .gitignore
├── README.md
├── eslint.config.mjs
├── images
│ ├── favicon-32x32.png
│ ├── image-qr-code.png
│ └── qr-code.png
├── next.config.ts
├── package-lock.json
├── package.json
├── postcss.config.mjs
├── public
│ ├── file.svg
│ ├── globe.svg
│ ├── next.svg
│ ├── vercel.svg
│ └── window.svg
├── src
│ └── app
│ │ ├── favicon.ico
│ │ ├── globals.css
│ │ ├── layout.tsx
│ │ └── page.tsx
├── tailwind.config.ts
└── tsconfig.json
├── qr-code-component-figma
├── ._README.md
└── README.md
├── qr-code-component-sketch
├── ._README.md
└── README.md
├── react-code
├── .gitignore
├── README.md
├── eslint.config.js
├── images
│ ├── favicon-32x32.png
│ ├── image-qr-code.png
│ └── qr-code.png
├── index.html
├── package-lock.json
├── package.json
├── src
│ ├── App.css
│ ├── App.jsx
│ ├── index.css
│ └── main.jsx
└── vite.config.js
├── style-guide.md
└── style.css
/.gitignore:
--------------------------------------------------------------------------------
1 | # Avoid accidental upload of the Sketch and Figma design files
2 | #####################################################
3 | ## Please do not remove lines 5 and 6 - thanks! 🙂 ##
4 | #####################################################
5 | *.sketch
6 | *.fig
7 |
8 | # Avoid accidental XD upload if you convert the design file
9 | ###############################################
10 | ## Please do not remove line 12 - thanks! 🙂 ##
11 | ###############################################
12 | *.xd
13 |
14 | # Avoid your project being littered with annoying .DS_Store files!
15 | .DS_Store
16 | .prettierignore
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 Sarthak Sachdev
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # QR Code Page
2 |
3 | ## Welcome! 👋
4 |
5 | ## Table of contents
6 |
7 | - [Overview](#overview)
8 | - [The challenge](#the-challenge)
9 | - [How to setup the project](#how-to-setup-the-project)
10 | - [Screenshot](#screenshot)
11 | - [Links](#links)
12 | - [My process](#my-process)
13 | - [Built with](#built-with)
14 | - [What I learned](#what-i-learned)
15 | - [Continued development](#continued-development)
16 | - [Useful resources](#useful-resources)
17 | - [Author](#author)
18 | - [Acknowledgments](#acknowledgments)
19 |
20 | ## Overview
21 |
22 | ### The challenge
23 |
24 | The challenge is to create a simple QR Code Page dedicated to flashing the QR code for easy access to my website. Users should be able to view a centralized responsive container showcasing the QR code wide and clear, along with guidance text below for instructions on how to use it.
25 |
26 | Users should be able to:
27 |
28 | - View the optimal layout for the site depending on their device's screen size
29 | - See hover states for all interactive elements on the page
30 |
31 | ### How to setup the project
32 |
33 | To set up the project locally, follow these steps:
34 |
35 | 1. Clone the repository using GitHub Desktop or Git Bash:
36 | ```bash
37 | git clone https://github.com/SartHak-0-Sach/qr-code-page_frontend.git
38 | ```
39 | 2. Open the project folder in your code editor.
40 | 3. Run the project using a live server extension or deploy it using Netlify, Vercel, or another web hosting and deployment service.
41 |
42 | ### Screenshot
43 |
44 | 
45 |
46 | ### Links
47 |
48 | - Solution URL: [GitHub Repository](https://github.com/SartHak-0-Sach/qr-code-page_frontend)
49 | - Live Site URL: [Live Site](https://qr-page-frontend.netlify.app/)
50 |
51 | ## My process
52 |
53 | ### Built with
54 |
55 | - HTML5
56 | - CSS3
57 | - JavaScript
58 |
59 | ### What I learned
60 |
61 | This is the first project that I am making and is the most basic project ever. This project has helped me practice the most fundamental and simple concepts of HTML and CSS like making div responsive across all devices and I also got to learn about resetting CSS which is mentioned in the code snippet below-
62 |
63 | ```css
64 | * {
65 | margin: 0;
66 | padding: 0;
67 | box-sizing: border-box;
68 | }
69 |
70 | body {
71 | align-items: center;
72 | background-color: hsl(212, 45%, 89%);
73 | display: flex;
74 | font-family: "Outfit", serif;
75 | justify-content: center;
76 | height: 100%;
77 | min-height: 100vh;
78 | overflow: hidden;
79 | width: 100%;
80 | }
81 |
82 | .card {
83 | background-color: white;
84 | border-radius: 15px;
85 | box-shadow: 0 10px 40px hsl(220, 15%, 55%);
86 | padding: 4%;
87 | top: 25%;
88 | text-align: center;
89 | width: 375px;
90 | }
91 | ```
92 |
93 | ### Continued development
94 |
95 | The continuously learning journey of a programmer never ends. This project made me realize that there are many concepts that I need to work upon including fundamentals like flex-box and its properties, to more complex concepts like working with fetch and async await in javascript. These areas are some that I think I need to work more upon in the upcoming future as they highlight some of the most significant regions of web development that are important for every developer to know of.
96 |
97 | These key points mentioned here will help me grow accountable and consistent towards improving at writing good quality code and be a successful full stack developer one day.
98 |
99 | ### Useful resources
100 |
101 | - [Harkirat Singh course notes](https://github.com/SartHak-0-Sach/harkirat-singh-course_code_and_notes) - I have added notes of all lectures along with code and lecture insights of all weeks along with bonus lectures to help you all as much as I can.
102 | - [My development code and notes](https://github.com/SartHak-0-Sach/cwh-web-dev-playlist_code_and_notes) - These are my notes that I made while working on my development skills in initial days and did these courses. Make sure to star the repository if you like it.✨💫
103 | - [MDN documentation hover state for CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/:hover) - This is an amazing article which helped me finally understand hover states. I'd recommend it to anyone still learning this concept.
104 |
105 | ## Author
106 |
107 | Sarthak Sachdev
108 | - Website - [Sarthak Sachdev](https://itsmesarthak.netlify.app/)
109 | - LeetCode - [@sarthak_sachdev](https://leetcode.com/u/sarthak_sachdev/)
110 | - Twitter - [@sarthak_sach69](https://www.twitter.com/sarthak_sach69)
111 |
112 | ## Acknowledgments
113 |
114 | I feel like the solutions provided on the website and the continuous doubt solving by industry experts on discord for free is something that is unmatched by anyone else and need to be acknowledged for their efforts in improving me as a developer by suggesting the best practices in your respective tech stack.
115 |
116 | ## Got feedback for me?
117 |
118 | I love receiving feedback! I am always looking to improve my code and take up new innovative ideas to work upon. So if you have anything you'd like to mention, please email 'hi' at saarsaach30[at]gmail[dot]com.
119 |
120 | If you liked this project make sure to spread the word and share it with all your friends.
121 |
122 | **Happy coding!** ☺️🚀
123 |
--------------------------------------------------------------------------------
/design/desktop-design.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/design/desktop-design.jpg
--------------------------------------------------------------------------------
/design/desktop-preview.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/design/desktop-preview.jpg
--------------------------------------------------------------------------------
/design/mobile-design.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/design/mobile-design.jpg
--------------------------------------------------------------------------------
/images/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/images/favicon-32x32.png
--------------------------------------------------------------------------------
/images/image-qr-code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/images/image-qr-code.png
--------------------------------------------------------------------------------
/images/qr-code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/images/qr-code.png
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 | QR code component
12 |
13 |
14 |
15 |
16 |
17 |
18 | Improve your front-end skills by building projects
19 |
20 | Scan the QR code to visit Frontend Mentor and take your coding skills
21 | to the next level
22 |
23 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/nextjs-code/.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.*
7 | .yarn/*
8 | !.yarn/patches
9 | !.yarn/plugins
10 | !.yarn/releases
11 | !.yarn/versions
12 |
13 | # testing
14 | /coverage
15 |
16 | # next.js
17 | /.next/
18 | /out/
19 |
20 | # production
21 | /build
22 |
23 | # misc
24 | .DS_Store
25 | *.pem
26 |
27 | # debug
28 | npm-debug.log*
29 | yarn-debug.log*
30 | yarn-error.log*
31 | .pnpm-debug.log*
32 |
33 | # env files (can opt-in for committing if needed)
34 | .env*
35 |
36 | # vercel
37 | .vercel
38 |
39 | # typescript
40 | *.tsbuildinfo
41 | next-env.d.ts
42 |
--------------------------------------------------------------------------------
/nextjs-code/README.md:
--------------------------------------------------------------------------------
1 | # QR Code Page
2 |
3 | ## Welcome! 👋
4 |
5 | ## Table of contents
6 |
7 | - [Overview](#overview)
8 | - [The challenge](#the-challenge)
9 | - [How to setup the project](#how-to-setup-the-project)
10 | - [Screenshot](#screenshot)
11 | - [Links](#links)
12 | - [My process](#my-process)
13 | - [Built with](#built-with)
14 | - [What I learned](#what-i-learned)
15 | - [Continued development](#continued-development)
16 | - [Useful resources](#useful-resources)
17 | - [Author](#author)
18 | - [Acknowledgments](#acknowledgments)
19 |
20 | ## Overview
21 |
22 | ### The challenge
23 |
24 | The challenge is to create a simple QR Code Page dedicated to flashing the QR code for easy access to my website. Users should be able to view a centralized responsive container showcasing the QR code wide and clear, along with guidance text below for instructions on how to use it.
25 |
26 | Users should be able to:
27 |
28 | - View the optimal layout for the site depending on their device's screen size
29 | - See hover states for all interactive elements on the page
30 |
31 | ### How to setup the project
32 |
33 | To set up the project locally, follow these steps:
34 |
35 | 1. Clone the repository using GitHub Desktop or Git Bash:
36 | ```bash
37 | git clone https://github.com/SartHak-0-Sach/qr-code-page_frontend.git
38 | ```
39 | 2. Open the project folder in your code editor.
40 | 3. Run the project using a live server extension or deploy it using Netlify, Vercel, or another web hosting and deployment service.
41 |
42 | ### Screenshot
43 |
44 | 
45 |
46 | ### Links
47 |
48 | - Solution URL: [GitHub Repository](https://github.com/SartHak-0-Sach/qr-code-page_frontend)
49 | - Live Site URL: [Live Site](https://qr-page-frontend.netlify.app/)
50 |
51 | ## My process
52 |
53 | ### Built with
54 |
55 | - HTML5
56 | - CSS3
57 | - JavaScript
58 |
59 | ### What I learned
60 |
61 | This is the first project that I am making and is the most basic project ever. This project has helped me practice the most fundamental and simple concepts of HTML and CSS like making div responsive across all devices and I also got to learn about resetting CSS which is mentioned in the code snippet below-
62 |
63 | ```css
64 | * {
65 | margin: 0;
66 | padding: 0;
67 | box-sizing: border-box;
68 | }
69 |
70 | body {
71 | align-items: center;
72 | background-color: hsl(212, 45%, 89%);
73 | display: flex;
74 | font-family: "Outfit", serif;
75 | justify-content: center;
76 | height: 100%;
77 | min-height: 100vh;
78 | overflow: hidden;
79 | width: 100%;
80 | }
81 |
82 | .card {
83 | background-color: white;
84 | border-radius: 15px;
85 | box-shadow: 0 10px 40px hsl(220, 15%, 55%);
86 | padding: 4%;
87 | top: 25%;
88 | text-align: center;
89 | width: 375px;
90 | }
91 | ```
92 |
93 | ### Continued development
94 |
95 | The continuously learning journey of a programmer never ends. This project made me realize that there are many concepts that I need to work upon including fundamentals like flex-box and its properties, to more complex concepts like working with fetch and async await in javascript. These areas are some that I think I need to work more upon in the upcoming future as they highlight some of the most significant regions of web development that are important for every developer to know of.
96 |
97 | These key points mentioned here will help me grow accountable and consistent towards improving at writing good quality code and be a successful full stack developer one day.
98 |
99 | ### Useful resources
100 |
101 | - [Harkirat Singh course notes](https://github.com/SartHak-0-Sach/harkirat-singh-course_code_and_notes) - I have added notes of all lectures along with code and lecture insights of all weeks along with bonus lectures to help you all as much as I can.
102 | - [My development code and notes](https://github.com/SartHak-0-Sach/cwh-web-dev-playlist_code_and_notes) - These are my notes that I made while working on my development skills in initial days and did these courses. Make sure to star the repository if you like it.✨💫
103 | - [MDN documentation hover state for CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/:hover) - This is an amazing article which helped me finally understand hover states. I'd recommend it to anyone still learning this concept.
104 |
105 | ## Author
106 |
107 | Sarthak Sachdev
108 | - Website - [Sarthak Sachdev](https://itsmesarthak.netlify.app/)
109 | - LeetCode - [@sarthak_sachdev](https://leetcode.com/u/sarthak_sachdev/)
110 | - Twitter - [@sarthak_sach69](https://www.twitter.com/sarthak_sach69)
111 |
112 | ## Acknowledgments
113 |
114 | I feel like the solutions provided on the website and the continuous doubt solving by industry experts on discord for free is something that is unmatched by anyone else and need to be acknowledged for their efforts in improving me as a developer by suggesting the best practices in your respective tech stack.
115 |
116 | ## Got feedback for me?
117 |
118 | I love receiving feedback! I am always looking to improve my code and take up new innovative ideas to work upon. So if you have anything you'd like to mention, please email 'hi' at saarsaach30[at]gmail[dot]com.
119 |
120 | If you liked this project make sure to spread the word and share it with all your friends.
121 |
122 | **Happy coding!** ☺️🚀
123 |
--------------------------------------------------------------------------------
/nextjs-code/eslint.config.mjs:
--------------------------------------------------------------------------------
1 | import { dirname } from "path";
2 | import { fileURLToPath } from "url";
3 | import { FlatCompat } from "@eslint/eslintrc";
4 |
5 | const __filename = fileURLToPath(import.meta.url);
6 | const __dirname = dirname(__filename);
7 |
8 | const compat = new FlatCompat({
9 | baseDirectory: __dirname,
10 | });
11 |
12 | const eslintConfig = [
13 | ...compat.extends("next/core-web-vitals", "next/typescript"),
14 | ];
15 |
16 | export default eslintConfig;
17 |
--------------------------------------------------------------------------------
/nextjs-code/images/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/nextjs-code/images/favicon-32x32.png
--------------------------------------------------------------------------------
/nextjs-code/images/image-qr-code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/nextjs-code/images/image-qr-code.png
--------------------------------------------------------------------------------
/nextjs-code/images/qr-code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/nextjs-code/images/qr-code.png
--------------------------------------------------------------------------------
/nextjs-code/next.config.ts:
--------------------------------------------------------------------------------
1 | import type { NextConfig } from "next";
2 |
3 | const nextConfig: NextConfig = {
4 | /* config options here */
5 | };
6 |
7 | export default nextConfig;
8 |
--------------------------------------------------------------------------------
/nextjs-code/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "nextjs-code",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev --turbopack",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "react": "^19.0.0",
13 | "react-dom": "^19.0.0",
14 | "next": "15.1.3"
15 | },
16 | "devDependencies": {
17 | "typescript": "^5",
18 | "@types/node": "^20",
19 | "@types/react": "^19",
20 | "@types/react-dom": "^19",
21 | "postcss": "^8",
22 | "tailwindcss": "^3.4.1",
23 | "eslint": "^9",
24 | "eslint-config-next": "15.1.3",
25 | "@eslint/eslintrc": "^3"
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/nextjs-code/postcss.config.mjs:
--------------------------------------------------------------------------------
1 | /** @type {import('postcss-load-config').Config} */
2 | const config = {
3 | plugins: {
4 | tailwindcss: {},
5 | },
6 | };
7 |
8 | export default config;
9 |
--------------------------------------------------------------------------------
/nextjs-code/public/file.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nextjs-code/public/globe.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nextjs-code/public/next.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nextjs-code/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nextjs-code/public/window.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/nextjs-code/src/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/nextjs-code/src/app/favicon.ico
--------------------------------------------------------------------------------
/nextjs-code/src/app/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
--------------------------------------------------------------------------------
/nextjs-code/src/app/layout.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/nextjs-code/src/app/layout.tsx
--------------------------------------------------------------------------------
/nextjs-code/src/app/page.tsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/nextjs-code/src/app/page.tsx
--------------------------------------------------------------------------------
/nextjs-code/tailwind.config.ts:
--------------------------------------------------------------------------------
1 | import type { Config } from "tailwindcss";
2 |
3 | export default {
4 | content: [
5 | "./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
6 | "./src/components/**/*.{js,ts,jsx,tsx,mdx}",
7 | "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
8 | ],
9 | theme: {
10 | extend: {
11 | colors: {
12 | background: "var(--background)",
13 | foreground: "var(--foreground)",
14 | },
15 | },
16 | },
17 | plugins: [],
18 | } satisfies Config;
19 |
--------------------------------------------------------------------------------
/nextjs-code/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2017",
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 | "@/*": ["./src/*"]
23 | }
24 | },
25 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
26 | "exclude": ["node_modules"]
27 | }
28 |
--------------------------------------------------------------------------------
/qr-code-component-figma/._README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/qr-code-component-figma/._README.md
--------------------------------------------------------------------------------
/qr-code-component-figma/README.md:
--------------------------------------------------------------------------------
1 | # Using the Figma design file
2 |
3 | Using this design file will help you practice building projects in the same way professionals do. Seeing the details in the design will help you improve your accuracy when building projects and build projects faster.
4 |
5 | [Figma](https://www.figma.com/) is an extremely popular design tool that has a generous free tier and can also be used on both Windows and Mac computers.
6 |
7 | To get started with Figma, [download the correct app for your operating system](https://www.figma.com/downloads/). You can then open the app and open the `.fig` design file by dragging it over the app and dropping it into the projects home screen.
8 |
9 | If you're going to use the Desktop App, you don't need to download the Font Installer from the downloads page. But if you're planning on using the Figma web app you should download and install it to ensure the fonts show up correctly.
10 |
11 | If you haven't used Figma before, here are a couple of great resources to get you up to speed:
12 |
13 | - [“Everything Developers Need To Know About Figma” article on Smashing Magazine](https://www.smashingmagazine.com/2020/09/figma-developers-guide/)
14 | - ["Introduction to Figma for Developers" video with Ryan Warner and Jason Lengstorf on Learn with Jason](https://www.learnwithjason.dev/introduction-to-figma-for-developers)
15 |
16 | ---
17 |
18 | **⚠️ IMPORTANT ⚠️: Please be sure not to share our design files with anyone else. We include `.gitignore` files in the starter code download to help prevent you from accidentally uploading it to GitHub. Another easy way to prevent this is to keep the design file separate from your codebase.**
19 |
20 | ---
21 |
22 | Thanks for being a PRO member. We hope you enjoy the challenge! 🙂
--------------------------------------------------------------------------------
/qr-code-component-sketch/._README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/qr-code-component-sketch/._README.md
--------------------------------------------------------------------------------
/qr-code-component-sketch/README.md:
--------------------------------------------------------------------------------
1 | # Using the Sketch design file
2 |
3 | Using this design files will help you practice building projects in the same way professionals do. Seeing the details in the design will help you improve your accuracy when building projects and build projects faster.
4 |
5 | [Sketch](https://www.sketch.com/) is a popular design tool, but it requires a license and macOS in order to use it. If you've got both, the Sketch file will be a great option for you.
6 |
7 | If you haven't used Sketch before, here's a great guide that gives [Sketch tips for developers](https://blog.prototypr.io/sketch-tips-for-developers-4cbc9789b244).
8 |
9 | You can also import the Sketch file into Adobe XD, if you prefer to use that. We provide information on how to do this below.
10 |
11 | ## Adobe XD
12 |
13 | We don't include XD files as a download option, but if you want to use it you can import the Sketch file into Adobe XD very easily.
14 |
15 | It's worth noting that there can be rendering issues when importing Sketch files into XD, so we strongly recommend using either Sketch or Figma to view the designs.
16 |
17 | If you do want to get started with XD though, [head over to the downloads page and choose the free version](https://www.adobe.com/uk/products/xd/pricing/individual.html). Once you’ve downloaded and opened the app, go to File > Open from Your Computer and then find the challenge Sketch file on your computer and open it up. Once that’s done, you’ll be able to dive into the design on Adobe XD!
18 |
19 | ---
20 |
21 | **⚠️ IMPORTANT ⚠️: Please be sure not to share our design files with anyone else. We include `.gitignore` files in the starter code download to help prevent you from accidentally uploading it to GitHub. Another easy way to prevent this is to keep the design file separate from your codebase.**
22 |
23 | ---
24 |
25 | Thanks for being a PRO member. We hope you enjoy the challenge! 🙂
--------------------------------------------------------------------------------
/react-code/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | pnpm-debug.log*
8 | lerna-debug.log*
9 |
10 | node_modules
11 | dist
12 | dist-ssr
13 | *.local
14 |
15 | # Editor directories and files
16 | .vscode/*
17 | !.vscode/extensions.json
18 | .idea
19 | .DS_Store
20 | *.suo
21 | *.ntvs*
22 | *.njsproj
23 | *.sln
24 | *.sw?
25 |
--------------------------------------------------------------------------------
/react-code/README.md:
--------------------------------------------------------------------------------
1 | # QR Code Page
2 |
3 | ## Welcome! 👋
4 |
5 | ## Table of contents
6 |
7 | - [Overview](#overview)
8 | - [The challenge](#the-challenge)
9 | - [How to setup the project](#how-to-setup-the-project)
10 | - [Screenshot](#screenshot)
11 | - [Links](#links)
12 | - [My process](#my-process)
13 | - [Built with](#built-with)
14 | - [What I learned](#what-i-learned)
15 | - [Continued development](#continued-development)
16 | - [Useful resources](#useful-resources)
17 | - [Author](#author)
18 | - [Acknowledgments](#acknowledgments)
19 |
20 | ## Overview
21 |
22 | ### The challenge
23 |
24 | The challenge is to create a simple QR Code Page dedicated to flashing the QR code for easy access to my website. Users should be able to view a centralized responsive container showcasing the QR code wide and clear, along with guidance text below for instructions on how to use it.
25 |
26 | Users should be able to:
27 |
28 | - View the optimal layout for the site depending on their device's screen size
29 | - See hover states for all interactive elements on the page
30 |
31 | ### How to setup the project
32 |
33 | To set up the project locally, follow these steps:
34 |
35 | 1. Clone the repository using GitHub Desktop or Git Bash:
36 | ```bash
37 | git clone https://github.com/SartHak-0-Sach/qr-code-page_frontend.git
38 | ```
39 | 2. Open the project folder in your code editor.
40 | 3. Run the project using a live server extension or deploy it using Netlify, Vercel, or another web hosting and deployment service.
41 |
42 | ### Screenshot
43 |
44 | 
45 |
46 | ### Links
47 |
48 | - Solution URL: [GitHub Repository](https://github.com/SartHak-0-Sach/qr-code-page_frontend)
49 | - Live Site URL: [Live Site](https://qr-page-frontend.netlify.app/)
50 |
51 | ## My process
52 |
53 | ### Built with
54 |
55 | - HTML5
56 | - CSS3
57 | - JavaScript
58 |
59 | ### What I learned
60 |
61 | This is the first project that I am making and is the most basic project ever. This project has helped me practice the most fundamental and simple concepts of HTML and CSS like making div responsive across all devices and I also got to learn about resetting CSS which is mentioned in the code snippet below-
62 |
63 | ```css
64 | * {
65 | margin: 0;
66 | padding: 0;
67 | box-sizing: border-box;
68 | }
69 |
70 | body {
71 | align-items: center;
72 | background-color: hsl(212, 45%, 89%);
73 | display: flex;
74 | font-family: "Outfit", serif;
75 | justify-content: center;
76 | height: 100%;
77 | min-height: 100vh;
78 | overflow: hidden;
79 | width: 100%;
80 | }
81 |
82 | .card {
83 | background-color: white;
84 | border-radius: 15px;
85 | box-shadow: 0 10px 40px hsl(220, 15%, 55%);
86 | padding: 4%;
87 | top: 25%;
88 | text-align: center;
89 | width: 375px;
90 | }
91 | ```
92 |
93 | ### Continued development
94 |
95 | The continuously learning journey of a programmer never ends. This project made me realize that there are many concepts that I need to work upon including fundamentals like flex-box and its properties, to more complex concepts like working with fetch and async await in javascript. These areas are some that I think I need to work more upon in the upcoming future as they highlight some of the most significant regions of web development that are important for every developer to know of.
96 |
97 | These key points mentioned here will help me grow accountable and consistent towards improving at writing good quality code and be a successful full stack developer one day.
98 |
99 | ### Useful resources
100 |
101 | - [Harkirat Singh course notes](https://github.com/SartHak-0-Sach/harkirat-singh-course_code_and_notes) - I have added notes of all lectures along with code and lecture insights of all weeks along with bonus lectures to help you all as much as I can.
102 | - [My development code and notes](https://github.com/SartHak-0-Sach/cwh-web-dev-playlist_code_and_notes) - These are my notes that I made while working on my development skills in initial days and did these courses. Make sure to star the repository if you like it.✨💫
103 | - [MDN documentation hover state for CSS](https://developer.mozilla.org/en-US/docs/Web/CSS/:hover) - This is an amazing article which helped me finally understand hover states. I'd recommend it to anyone still learning this concept.
104 |
105 | ## Author
106 |
107 | Sarthak Sachdev
108 | - Website - [Sarthak Sachdev](https://itsmesarthak.netlify.app/)
109 | - LeetCode - [@sarthak_sachdev](https://leetcode.com/u/sarthak_sachdev/)
110 | - Twitter - [@sarthak_sach69](https://www.twitter.com/sarthak_sach69)
111 |
112 | ## Acknowledgments
113 |
114 | I feel like the solutions provided on the website and the continuous doubt solving by industry experts on discord for free is something that is unmatched by anyone else and need to be acknowledged for their efforts in improving me as a developer by suggesting the best practices in your respective tech stack.
115 |
116 | ## Got feedback for me?
117 |
118 | I love receiving feedback! I am always looking to improve my code and take up new innovative ideas to work upon. So if you have anything you'd like to mention, please email 'hi' at saarsaach30[at]gmail[dot]com.
119 |
120 | If you liked this project make sure to spread the word and share it with all your friends.
121 |
122 | **Happy coding!** ☺️🚀
--------------------------------------------------------------------------------
/react-code/eslint.config.js:
--------------------------------------------------------------------------------
1 | import js from '@eslint/js'
2 | import globals from 'globals'
3 | import react from 'eslint-plugin-react'
4 | import reactHooks from 'eslint-plugin-react-hooks'
5 | import reactRefresh from 'eslint-plugin-react-refresh'
6 |
7 | export default [
8 | { ignores: ['dist'] },
9 | {
10 | files: ['**/*.{js,jsx}'],
11 | languageOptions: {
12 | ecmaVersion: 2020,
13 | globals: globals.browser,
14 | parserOptions: {
15 | ecmaVersion: 'latest',
16 | ecmaFeatures: { jsx: true },
17 | sourceType: 'module',
18 | },
19 | },
20 | settings: { react: { version: '18.3' } },
21 | plugins: {
22 | react,
23 | 'react-hooks': reactHooks,
24 | 'react-refresh': reactRefresh,
25 | },
26 | rules: {
27 | ...js.configs.recommended.rules,
28 | ...react.configs.recommended.rules,
29 | ...react.configs['jsx-runtime'].rules,
30 | ...reactHooks.configs.recommended.rules,
31 | 'react/jsx-no-target-blank': 'off',
32 | 'react-refresh/only-export-components': [
33 | 'warn',
34 | { allowConstantExport: true },
35 | ],
36 | },
37 | },
38 | ]
39 |
--------------------------------------------------------------------------------
/react-code/images/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/react-code/images/favicon-32x32.png
--------------------------------------------------------------------------------
/react-code/images/image-qr-code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/react-code/images/image-qr-code.png
--------------------------------------------------------------------------------
/react-code/images/qr-code.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/react-code/images/qr-code.png
--------------------------------------------------------------------------------
/react-code/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | QR page
8 |
9 |
10 |
11 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/react-code/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-code",
3 | "version": "0.0.0",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "react-code",
9 | "version": "0.0.0",
10 | "dependencies": {
11 | "react": "^18.3.1",
12 | "react-dom": "^18.3.1"
13 | },
14 | "devDependencies": {
15 | "@eslint/js": "^9.17.0",
16 | "@types/react": "^18.3.18",
17 | "@types/react-dom": "^18.3.5",
18 | "@vitejs/plugin-react-swc": "^3.5.0",
19 | "eslint": "^9.17.0",
20 | "eslint-plugin-react": "^7.37.2",
21 | "eslint-plugin-react-hooks": "^5.0.0",
22 | "eslint-plugin-react-refresh": "^0.4.16",
23 | "globals": "^15.14.0",
24 | "vite": "^6.0.5"
25 | }
26 | },
27 | "node_modules/@esbuild/aix-ppc64": {
28 | "version": "0.24.2",
29 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.24.2.tgz",
30 | "integrity": "sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==",
31 | "cpu": [
32 | "ppc64"
33 | ],
34 | "dev": true,
35 | "license": "MIT",
36 | "optional": true,
37 | "os": [
38 | "aix"
39 | ],
40 | "engines": {
41 | "node": ">=18"
42 | }
43 | },
44 | "node_modules/@esbuild/android-arm": {
45 | "version": "0.24.2",
46 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.24.2.tgz",
47 | "integrity": "sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==",
48 | "cpu": [
49 | "arm"
50 | ],
51 | "dev": true,
52 | "license": "MIT",
53 | "optional": true,
54 | "os": [
55 | "android"
56 | ],
57 | "engines": {
58 | "node": ">=18"
59 | }
60 | },
61 | "node_modules/@esbuild/android-arm64": {
62 | "version": "0.24.2",
63 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.24.2.tgz",
64 | "integrity": "sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==",
65 | "cpu": [
66 | "arm64"
67 | ],
68 | "dev": true,
69 | "license": "MIT",
70 | "optional": true,
71 | "os": [
72 | "android"
73 | ],
74 | "engines": {
75 | "node": ">=18"
76 | }
77 | },
78 | "node_modules/@esbuild/android-x64": {
79 | "version": "0.24.2",
80 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.24.2.tgz",
81 | "integrity": "sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==",
82 | "cpu": [
83 | "x64"
84 | ],
85 | "dev": true,
86 | "license": "MIT",
87 | "optional": true,
88 | "os": [
89 | "android"
90 | ],
91 | "engines": {
92 | "node": ">=18"
93 | }
94 | },
95 | "node_modules/@esbuild/darwin-arm64": {
96 | "version": "0.24.2",
97 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.24.2.tgz",
98 | "integrity": "sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==",
99 | "cpu": [
100 | "arm64"
101 | ],
102 | "dev": true,
103 | "license": "MIT",
104 | "optional": true,
105 | "os": [
106 | "darwin"
107 | ],
108 | "engines": {
109 | "node": ">=18"
110 | }
111 | },
112 | "node_modules/@esbuild/darwin-x64": {
113 | "version": "0.24.2",
114 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.24.2.tgz",
115 | "integrity": "sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==",
116 | "cpu": [
117 | "x64"
118 | ],
119 | "dev": true,
120 | "license": "MIT",
121 | "optional": true,
122 | "os": [
123 | "darwin"
124 | ],
125 | "engines": {
126 | "node": ">=18"
127 | }
128 | },
129 | "node_modules/@esbuild/freebsd-arm64": {
130 | "version": "0.24.2",
131 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.24.2.tgz",
132 | "integrity": "sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==",
133 | "cpu": [
134 | "arm64"
135 | ],
136 | "dev": true,
137 | "license": "MIT",
138 | "optional": true,
139 | "os": [
140 | "freebsd"
141 | ],
142 | "engines": {
143 | "node": ">=18"
144 | }
145 | },
146 | "node_modules/@esbuild/freebsd-x64": {
147 | "version": "0.24.2",
148 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.24.2.tgz",
149 | "integrity": "sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==",
150 | "cpu": [
151 | "x64"
152 | ],
153 | "dev": true,
154 | "license": "MIT",
155 | "optional": true,
156 | "os": [
157 | "freebsd"
158 | ],
159 | "engines": {
160 | "node": ">=18"
161 | }
162 | },
163 | "node_modules/@esbuild/linux-arm": {
164 | "version": "0.24.2",
165 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.24.2.tgz",
166 | "integrity": "sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==",
167 | "cpu": [
168 | "arm"
169 | ],
170 | "dev": true,
171 | "license": "MIT",
172 | "optional": true,
173 | "os": [
174 | "linux"
175 | ],
176 | "engines": {
177 | "node": ">=18"
178 | }
179 | },
180 | "node_modules/@esbuild/linux-arm64": {
181 | "version": "0.24.2",
182 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.24.2.tgz",
183 | "integrity": "sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==",
184 | "cpu": [
185 | "arm64"
186 | ],
187 | "dev": true,
188 | "license": "MIT",
189 | "optional": true,
190 | "os": [
191 | "linux"
192 | ],
193 | "engines": {
194 | "node": ">=18"
195 | }
196 | },
197 | "node_modules/@esbuild/linux-ia32": {
198 | "version": "0.24.2",
199 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.24.2.tgz",
200 | "integrity": "sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==",
201 | "cpu": [
202 | "ia32"
203 | ],
204 | "dev": true,
205 | "license": "MIT",
206 | "optional": true,
207 | "os": [
208 | "linux"
209 | ],
210 | "engines": {
211 | "node": ">=18"
212 | }
213 | },
214 | "node_modules/@esbuild/linux-loong64": {
215 | "version": "0.24.2",
216 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.24.2.tgz",
217 | "integrity": "sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==",
218 | "cpu": [
219 | "loong64"
220 | ],
221 | "dev": true,
222 | "license": "MIT",
223 | "optional": true,
224 | "os": [
225 | "linux"
226 | ],
227 | "engines": {
228 | "node": ">=18"
229 | }
230 | },
231 | "node_modules/@esbuild/linux-mips64el": {
232 | "version": "0.24.2",
233 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.24.2.tgz",
234 | "integrity": "sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==",
235 | "cpu": [
236 | "mips64el"
237 | ],
238 | "dev": true,
239 | "license": "MIT",
240 | "optional": true,
241 | "os": [
242 | "linux"
243 | ],
244 | "engines": {
245 | "node": ">=18"
246 | }
247 | },
248 | "node_modules/@esbuild/linux-ppc64": {
249 | "version": "0.24.2",
250 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.24.2.tgz",
251 | "integrity": "sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==",
252 | "cpu": [
253 | "ppc64"
254 | ],
255 | "dev": true,
256 | "license": "MIT",
257 | "optional": true,
258 | "os": [
259 | "linux"
260 | ],
261 | "engines": {
262 | "node": ">=18"
263 | }
264 | },
265 | "node_modules/@esbuild/linux-riscv64": {
266 | "version": "0.24.2",
267 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.24.2.tgz",
268 | "integrity": "sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==",
269 | "cpu": [
270 | "riscv64"
271 | ],
272 | "dev": true,
273 | "license": "MIT",
274 | "optional": true,
275 | "os": [
276 | "linux"
277 | ],
278 | "engines": {
279 | "node": ">=18"
280 | }
281 | },
282 | "node_modules/@esbuild/linux-s390x": {
283 | "version": "0.24.2",
284 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.24.2.tgz",
285 | "integrity": "sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==",
286 | "cpu": [
287 | "s390x"
288 | ],
289 | "dev": true,
290 | "license": "MIT",
291 | "optional": true,
292 | "os": [
293 | "linux"
294 | ],
295 | "engines": {
296 | "node": ">=18"
297 | }
298 | },
299 | "node_modules/@esbuild/linux-x64": {
300 | "version": "0.24.2",
301 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz",
302 | "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==",
303 | "cpu": [
304 | "x64"
305 | ],
306 | "dev": true,
307 | "license": "MIT",
308 | "optional": true,
309 | "os": [
310 | "linux"
311 | ],
312 | "engines": {
313 | "node": ">=18"
314 | }
315 | },
316 | "node_modules/@esbuild/netbsd-arm64": {
317 | "version": "0.24.2",
318 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.24.2.tgz",
319 | "integrity": "sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==",
320 | "cpu": [
321 | "arm64"
322 | ],
323 | "dev": true,
324 | "license": "MIT",
325 | "optional": true,
326 | "os": [
327 | "netbsd"
328 | ],
329 | "engines": {
330 | "node": ">=18"
331 | }
332 | },
333 | "node_modules/@esbuild/netbsd-x64": {
334 | "version": "0.24.2",
335 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.24.2.tgz",
336 | "integrity": "sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==",
337 | "cpu": [
338 | "x64"
339 | ],
340 | "dev": true,
341 | "license": "MIT",
342 | "optional": true,
343 | "os": [
344 | "netbsd"
345 | ],
346 | "engines": {
347 | "node": ">=18"
348 | }
349 | },
350 | "node_modules/@esbuild/openbsd-arm64": {
351 | "version": "0.24.2",
352 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.24.2.tgz",
353 | "integrity": "sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==",
354 | "cpu": [
355 | "arm64"
356 | ],
357 | "dev": true,
358 | "license": "MIT",
359 | "optional": true,
360 | "os": [
361 | "openbsd"
362 | ],
363 | "engines": {
364 | "node": ">=18"
365 | }
366 | },
367 | "node_modules/@esbuild/openbsd-x64": {
368 | "version": "0.24.2",
369 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.24.2.tgz",
370 | "integrity": "sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==",
371 | "cpu": [
372 | "x64"
373 | ],
374 | "dev": true,
375 | "license": "MIT",
376 | "optional": true,
377 | "os": [
378 | "openbsd"
379 | ],
380 | "engines": {
381 | "node": ">=18"
382 | }
383 | },
384 | "node_modules/@esbuild/sunos-x64": {
385 | "version": "0.24.2",
386 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.24.2.tgz",
387 | "integrity": "sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==",
388 | "cpu": [
389 | "x64"
390 | ],
391 | "dev": true,
392 | "license": "MIT",
393 | "optional": true,
394 | "os": [
395 | "sunos"
396 | ],
397 | "engines": {
398 | "node": ">=18"
399 | }
400 | },
401 | "node_modules/@esbuild/win32-arm64": {
402 | "version": "0.24.2",
403 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.24.2.tgz",
404 | "integrity": "sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==",
405 | "cpu": [
406 | "arm64"
407 | ],
408 | "dev": true,
409 | "license": "MIT",
410 | "optional": true,
411 | "os": [
412 | "win32"
413 | ],
414 | "engines": {
415 | "node": ">=18"
416 | }
417 | },
418 | "node_modules/@esbuild/win32-ia32": {
419 | "version": "0.24.2",
420 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.24.2.tgz",
421 | "integrity": "sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==",
422 | "cpu": [
423 | "ia32"
424 | ],
425 | "dev": true,
426 | "license": "MIT",
427 | "optional": true,
428 | "os": [
429 | "win32"
430 | ],
431 | "engines": {
432 | "node": ">=18"
433 | }
434 | },
435 | "node_modules/@esbuild/win32-x64": {
436 | "version": "0.24.2",
437 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.24.2.tgz",
438 | "integrity": "sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==",
439 | "cpu": [
440 | "x64"
441 | ],
442 | "dev": true,
443 | "license": "MIT",
444 | "optional": true,
445 | "os": [
446 | "win32"
447 | ],
448 | "engines": {
449 | "node": ">=18"
450 | }
451 | },
452 | "node_modules/@eslint-community/eslint-utils": {
453 | "version": "4.4.1",
454 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz",
455 | "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==",
456 | "dev": true,
457 | "license": "MIT",
458 | "dependencies": {
459 | "eslint-visitor-keys": "^3.4.3"
460 | },
461 | "engines": {
462 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
463 | },
464 | "funding": {
465 | "url": "https://opencollective.com/eslint"
466 | },
467 | "peerDependencies": {
468 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
469 | }
470 | },
471 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
472 | "version": "3.4.3",
473 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
474 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
475 | "dev": true,
476 | "license": "Apache-2.0",
477 | "engines": {
478 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
479 | },
480 | "funding": {
481 | "url": "https://opencollective.com/eslint"
482 | }
483 | },
484 | "node_modules/@eslint-community/regexpp": {
485 | "version": "4.12.1",
486 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
487 | "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
488 | "dev": true,
489 | "license": "MIT",
490 | "engines": {
491 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
492 | }
493 | },
494 | "node_modules/@eslint/config-array": {
495 | "version": "0.19.1",
496 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.19.1.tgz",
497 | "integrity": "sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==",
498 | "dev": true,
499 | "license": "Apache-2.0",
500 | "dependencies": {
501 | "@eslint/object-schema": "^2.1.5",
502 | "debug": "^4.3.1",
503 | "minimatch": "^3.1.2"
504 | },
505 | "engines": {
506 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
507 | }
508 | },
509 | "node_modules/@eslint/core": {
510 | "version": "0.9.1",
511 | "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.9.1.tgz",
512 | "integrity": "sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==",
513 | "dev": true,
514 | "license": "Apache-2.0",
515 | "dependencies": {
516 | "@types/json-schema": "^7.0.15"
517 | },
518 | "engines": {
519 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
520 | }
521 | },
522 | "node_modules/@eslint/eslintrc": {
523 | "version": "3.2.0",
524 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.2.0.tgz",
525 | "integrity": "sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==",
526 | "dev": true,
527 | "license": "MIT",
528 | "dependencies": {
529 | "ajv": "^6.12.4",
530 | "debug": "^4.3.2",
531 | "espree": "^10.0.1",
532 | "globals": "^14.0.0",
533 | "ignore": "^5.2.0",
534 | "import-fresh": "^3.2.1",
535 | "js-yaml": "^4.1.0",
536 | "minimatch": "^3.1.2",
537 | "strip-json-comments": "^3.1.1"
538 | },
539 | "engines": {
540 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
541 | },
542 | "funding": {
543 | "url": "https://opencollective.com/eslint"
544 | }
545 | },
546 | "node_modules/@eslint/eslintrc/node_modules/globals": {
547 | "version": "14.0.0",
548 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
549 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
550 | "dev": true,
551 | "license": "MIT",
552 | "engines": {
553 | "node": ">=18"
554 | },
555 | "funding": {
556 | "url": "https://github.com/sponsors/sindresorhus"
557 | }
558 | },
559 | "node_modules/@eslint/js": {
560 | "version": "9.17.0",
561 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.17.0.tgz",
562 | "integrity": "sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==",
563 | "dev": true,
564 | "license": "MIT",
565 | "engines": {
566 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
567 | }
568 | },
569 | "node_modules/@eslint/object-schema": {
570 | "version": "2.1.5",
571 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.5.tgz",
572 | "integrity": "sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==",
573 | "dev": true,
574 | "license": "Apache-2.0",
575 | "engines": {
576 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
577 | }
578 | },
579 | "node_modules/@eslint/plugin-kit": {
580 | "version": "0.2.4",
581 | "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.4.tgz",
582 | "integrity": "sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==",
583 | "dev": true,
584 | "license": "Apache-2.0",
585 | "dependencies": {
586 | "levn": "^0.4.1"
587 | },
588 | "engines": {
589 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
590 | }
591 | },
592 | "node_modules/@humanfs/core": {
593 | "version": "0.19.1",
594 | "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
595 | "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
596 | "dev": true,
597 | "license": "Apache-2.0",
598 | "engines": {
599 | "node": ">=18.18.0"
600 | }
601 | },
602 | "node_modules/@humanfs/node": {
603 | "version": "0.16.6",
604 | "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz",
605 | "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==",
606 | "dev": true,
607 | "license": "Apache-2.0",
608 | "dependencies": {
609 | "@humanfs/core": "^0.19.1",
610 | "@humanwhocodes/retry": "^0.3.0"
611 | },
612 | "engines": {
613 | "node": ">=18.18.0"
614 | }
615 | },
616 | "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": {
617 | "version": "0.3.1",
618 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz",
619 | "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==",
620 | "dev": true,
621 | "license": "Apache-2.0",
622 | "engines": {
623 | "node": ">=18.18"
624 | },
625 | "funding": {
626 | "type": "github",
627 | "url": "https://github.com/sponsors/nzakas"
628 | }
629 | },
630 | "node_modules/@humanwhocodes/module-importer": {
631 | "version": "1.0.1",
632 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
633 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
634 | "dev": true,
635 | "license": "Apache-2.0",
636 | "engines": {
637 | "node": ">=12.22"
638 | },
639 | "funding": {
640 | "type": "github",
641 | "url": "https://github.com/sponsors/nzakas"
642 | }
643 | },
644 | "node_modules/@humanwhocodes/retry": {
645 | "version": "0.4.1",
646 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.1.tgz",
647 | "integrity": "sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==",
648 | "dev": true,
649 | "license": "Apache-2.0",
650 | "engines": {
651 | "node": ">=18.18"
652 | },
653 | "funding": {
654 | "type": "github",
655 | "url": "https://github.com/sponsors/nzakas"
656 | }
657 | },
658 | "node_modules/@rollup/rollup-android-arm-eabi": {
659 | "version": "4.29.1",
660 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.29.1.tgz",
661 | "integrity": "sha512-ssKhA8RNltTZLpG6/QNkCSge+7mBQGUqJRisZ2MDQcEGaK93QESEgWK2iOpIDZ7k9zPVkG5AS3ksvD5ZWxmItw==",
662 | "cpu": [
663 | "arm"
664 | ],
665 | "dev": true,
666 | "license": "MIT",
667 | "optional": true,
668 | "os": [
669 | "android"
670 | ]
671 | },
672 | "node_modules/@rollup/rollup-android-arm64": {
673 | "version": "4.29.1",
674 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.29.1.tgz",
675 | "integrity": "sha512-CaRfrV0cd+NIIcVVN/jx+hVLN+VRqnuzLRmfmlzpOzB87ajixsN/+9L5xNmkaUUvEbI5BmIKS+XTwXsHEb65Ew==",
676 | "cpu": [
677 | "arm64"
678 | ],
679 | "dev": true,
680 | "license": "MIT",
681 | "optional": true,
682 | "os": [
683 | "android"
684 | ]
685 | },
686 | "node_modules/@rollup/rollup-darwin-arm64": {
687 | "version": "4.29.1",
688 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.29.1.tgz",
689 | "integrity": "sha512-2ORr7T31Y0Mnk6qNuwtyNmy14MunTAMx06VAPI6/Ju52W10zk1i7i5U3vlDRWjhOI5quBcrvhkCHyF76bI7kEw==",
690 | "cpu": [
691 | "arm64"
692 | ],
693 | "dev": true,
694 | "license": "MIT",
695 | "optional": true,
696 | "os": [
697 | "darwin"
698 | ]
699 | },
700 | "node_modules/@rollup/rollup-darwin-x64": {
701 | "version": "4.29.1",
702 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.29.1.tgz",
703 | "integrity": "sha512-j/Ej1oanzPjmN0tirRd5K2/nncAhS9W6ICzgxV+9Y5ZsP0hiGhHJXZ2JQ53iSSjj8m6cRY6oB1GMzNn2EUt6Ng==",
704 | "cpu": [
705 | "x64"
706 | ],
707 | "dev": true,
708 | "license": "MIT",
709 | "optional": true,
710 | "os": [
711 | "darwin"
712 | ]
713 | },
714 | "node_modules/@rollup/rollup-freebsd-arm64": {
715 | "version": "4.29.1",
716 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.29.1.tgz",
717 | "integrity": "sha512-91C//G6Dm/cv724tpt7nTyP+JdN12iqeXGFM1SqnljCmi5yTXriH7B1r8AD9dAZByHpKAumqP1Qy2vVNIdLZqw==",
718 | "cpu": [
719 | "arm64"
720 | ],
721 | "dev": true,
722 | "license": "MIT",
723 | "optional": true,
724 | "os": [
725 | "freebsd"
726 | ]
727 | },
728 | "node_modules/@rollup/rollup-freebsd-x64": {
729 | "version": "4.29.1",
730 | "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.29.1.tgz",
731 | "integrity": "sha512-hEioiEQ9Dec2nIRoeHUP6hr1PSkXzQaCUyqBDQ9I9ik4gCXQZjJMIVzoNLBRGet+hIUb3CISMh9KXuCcWVW/8w==",
732 | "cpu": [
733 | "x64"
734 | ],
735 | "dev": true,
736 | "license": "MIT",
737 | "optional": true,
738 | "os": [
739 | "freebsd"
740 | ]
741 | },
742 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
743 | "version": "4.29.1",
744 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.29.1.tgz",
745 | "integrity": "sha512-Py5vFd5HWYN9zxBv3WMrLAXY3yYJ6Q/aVERoeUFwiDGiMOWsMs7FokXihSOaT/PMWUty/Pj60XDQndK3eAfE6A==",
746 | "cpu": [
747 | "arm"
748 | ],
749 | "dev": true,
750 | "license": "MIT",
751 | "optional": true,
752 | "os": [
753 | "linux"
754 | ]
755 | },
756 | "node_modules/@rollup/rollup-linux-arm-musleabihf": {
757 | "version": "4.29.1",
758 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.29.1.tgz",
759 | "integrity": "sha512-RiWpGgbayf7LUcuSNIbahr0ys2YnEERD4gYdISA06wa0i8RALrnzflh9Wxii7zQJEB2/Eh74dX4y/sHKLWp5uQ==",
760 | "cpu": [
761 | "arm"
762 | ],
763 | "dev": true,
764 | "license": "MIT",
765 | "optional": true,
766 | "os": [
767 | "linux"
768 | ]
769 | },
770 | "node_modules/@rollup/rollup-linux-arm64-gnu": {
771 | "version": "4.29.1",
772 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.29.1.tgz",
773 | "integrity": "sha512-Z80O+taYxTQITWMjm/YqNoe9d10OX6kDh8X5/rFCMuPqsKsSyDilvfg+vd3iXIqtfmp+cnfL1UrYirkaF8SBZA==",
774 | "cpu": [
775 | "arm64"
776 | ],
777 | "dev": true,
778 | "license": "MIT",
779 | "optional": true,
780 | "os": [
781 | "linux"
782 | ]
783 | },
784 | "node_modules/@rollup/rollup-linux-arm64-musl": {
785 | "version": "4.29.1",
786 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.29.1.tgz",
787 | "integrity": "sha512-fOHRtF9gahwJk3QVp01a/GqS4hBEZCV1oKglVVq13kcK3NeVlS4BwIFzOHDbmKzt3i0OuHG4zfRP0YoG5OF/rA==",
788 | "cpu": [
789 | "arm64"
790 | ],
791 | "dev": true,
792 | "license": "MIT",
793 | "optional": true,
794 | "os": [
795 | "linux"
796 | ]
797 | },
798 | "node_modules/@rollup/rollup-linux-loongarch64-gnu": {
799 | "version": "4.29.1",
800 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.29.1.tgz",
801 | "integrity": "sha512-5a7q3tnlbcg0OodyxcAdrrCxFi0DgXJSoOuidFUzHZ2GixZXQs6Tc3CHmlvqKAmOs5eRde+JJxeIf9DonkmYkw==",
802 | "cpu": [
803 | "loong64"
804 | ],
805 | "dev": true,
806 | "license": "MIT",
807 | "optional": true,
808 | "os": [
809 | "linux"
810 | ]
811 | },
812 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
813 | "version": "4.29.1",
814 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.29.1.tgz",
815 | "integrity": "sha512-9b4Mg5Yfz6mRnlSPIdROcfw1BU22FQxmfjlp/CShWwO3LilKQuMISMTtAu/bxmmrE6A902W2cZJuzx8+gJ8e9w==",
816 | "cpu": [
817 | "ppc64"
818 | ],
819 | "dev": true,
820 | "license": "MIT",
821 | "optional": true,
822 | "os": [
823 | "linux"
824 | ]
825 | },
826 | "node_modules/@rollup/rollup-linux-riscv64-gnu": {
827 | "version": "4.29.1",
828 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.29.1.tgz",
829 | "integrity": "sha512-G5pn0NChlbRM8OJWpJFMX4/i8OEU538uiSv0P6roZcbpe/WfhEO+AT8SHVKfp8qhDQzaz7Q+1/ixMy7hBRidnQ==",
830 | "cpu": [
831 | "riscv64"
832 | ],
833 | "dev": true,
834 | "license": "MIT",
835 | "optional": true,
836 | "os": [
837 | "linux"
838 | ]
839 | },
840 | "node_modules/@rollup/rollup-linux-s390x-gnu": {
841 | "version": "4.29.1",
842 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.29.1.tgz",
843 | "integrity": "sha512-WM9lIkNdkhVwiArmLxFXpWndFGuOka4oJOZh8EP3Vb8q5lzdSCBuhjavJsw68Q9AKDGeOOIHYzYm4ZFvmWez5g==",
844 | "cpu": [
845 | "s390x"
846 | ],
847 | "dev": true,
848 | "license": "MIT",
849 | "optional": true,
850 | "os": [
851 | "linux"
852 | ]
853 | },
854 | "node_modules/@rollup/rollup-linux-x64-gnu": {
855 | "version": "4.29.1",
856 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.29.1.tgz",
857 | "integrity": "sha512-87xYCwb0cPGZFoGiErT1eDcssByaLX4fc0z2nRM6eMtV9njAfEE6OW3UniAoDhX4Iq5xQVpE6qO9aJbCFumKYQ==",
858 | "cpu": [
859 | "x64"
860 | ],
861 | "dev": true,
862 | "license": "MIT",
863 | "optional": true,
864 | "os": [
865 | "linux"
866 | ]
867 | },
868 | "node_modules/@rollup/rollup-linux-x64-musl": {
869 | "version": "4.29.1",
870 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.29.1.tgz",
871 | "integrity": "sha512-xufkSNppNOdVRCEC4WKvlR1FBDyqCSCpQeMMgv9ZyXqqtKBfkw1yfGMTUTs9Qsl6WQbJnsGboWCp7pJGkeMhKA==",
872 | "cpu": [
873 | "x64"
874 | ],
875 | "dev": true,
876 | "license": "MIT",
877 | "optional": true,
878 | "os": [
879 | "linux"
880 | ]
881 | },
882 | "node_modules/@rollup/rollup-win32-arm64-msvc": {
883 | "version": "4.29.1",
884 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.29.1.tgz",
885 | "integrity": "sha512-F2OiJ42m77lSkizZQLuC+jiZ2cgueWQL5YC9tjo3AgaEw+KJmVxHGSyQfDUoYR9cci0lAywv2Clmckzulcq6ig==",
886 | "cpu": [
887 | "arm64"
888 | ],
889 | "dev": true,
890 | "license": "MIT",
891 | "optional": true,
892 | "os": [
893 | "win32"
894 | ]
895 | },
896 | "node_modules/@rollup/rollup-win32-ia32-msvc": {
897 | "version": "4.29.1",
898 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.29.1.tgz",
899 | "integrity": "sha512-rYRe5S0FcjlOBZQHgbTKNrqxCBUmgDJem/VQTCcTnA2KCabYSWQDrytOzX7avb79cAAweNmMUb/Zw18RNd4mng==",
900 | "cpu": [
901 | "ia32"
902 | ],
903 | "dev": true,
904 | "license": "MIT",
905 | "optional": true,
906 | "os": [
907 | "win32"
908 | ]
909 | },
910 | "node_modules/@rollup/rollup-win32-x64-msvc": {
911 | "version": "4.29.1",
912 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.29.1.tgz",
913 | "integrity": "sha512-+10CMg9vt1MoHj6x1pxyjPSMjHTIlqs8/tBztXvPAx24SKs9jwVnKqHJumlH/IzhaPUaj3T6T6wfZr8okdXaIg==",
914 | "cpu": [
915 | "x64"
916 | ],
917 | "dev": true,
918 | "license": "MIT",
919 | "optional": true,
920 | "os": [
921 | "win32"
922 | ]
923 | },
924 | "node_modules/@swc/core": {
925 | "version": "1.10.4",
926 | "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.10.4.tgz",
927 | "integrity": "sha512-ut3zfiTLORMxhr6y/GBxkHmzcGuVpwJYX4qyXWuBKkpw/0g0S5iO1/wW7RnLnZbAi8wS/n0atRZoaZlXWBkeJg==",
928 | "dev": true,
929 | "hasInstallScript": true,
930 | "license": "Apache-2.0",
931 | "dependencies": {
932 | "@swc/counter": "^0.1.3",
933 | "@swc/types": "^0.1.17"
934 | },
935 | "engines": {
936 | "node": ">=10"
937 | },
938 | "funding": {
939 | "type": "opencollective",
940 | "url": "https://opencollective.com/swc"
941 | },
942 | "optionalDependencies": {
943 | "@swc/core-darwin-arm64": "1.10.4",
944 | "@swc/core-darwin-x64": "1.10.4",
945 | "@swc/core-linux-arm-gnueabihf": "1.10.4",
946 | "@swc/core-linux-arm64-gnu": "1.10.4",
947 | "@swc/core-linux-arm64-musl": "1.10.4",
948 | "@swc/core-linux-x64-gnu": "1.10.4",
949 | "@swc/core-linux-x64-musl": "1.10.4",
950 | "@swc/core-win32-arm64-msvc": "1.10.4",
951 | "@swc/core-win32-ia32-msvc": "1.10.4",
952 | "@swc/core-win32-x64-msvc": "1.10.4"
953 | },
954 | "peerDependencies": {
955 | "@swc/helpers": "*"
956 | },
957 | "peerDependenciesMeta": {
958 | "@swc/helpers": {
959 | "optional": true
960 | }
961 | }
962 | },
963 | "node_modules/@swc/core-darwin-arm64": {
964 | "version": "1.10.4",
965 | "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.10.4.tgz",
966 | "integrity": "sha512-sV/eurLhkjn/197y48bxKP19oqcLydSel42Qsy2zepBltqUx+/zZ8+/IS0Bi7kaWVFxerbW1IPB09uq8Zuvm3g==",
967 | "cpu": [
968 | "arm64"
969 | ],
970 | "dev": true,
971 | "license": "Apache-2.0 AND MIT",
972 | "optional": true,
973 | "os": [
974 | "darwin"
975 | ],
976 | "engines": {
977 | "node": ">=10"
978 | }
979 | },
980 | "node_modules/@swc/core-darwin-x64": {
981 | "version": "1.10.4",
982 | "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.10.4.tgz",
983 | "integrity": "sha512-gjYNU6vrAUO4+FuovEo9ofnVosTFXkF0VDuo1MKPItz6e2pxc2ale4FGzLw0Nf7JB1sX4a8h06CN16/pLJ8Q2w==",
984 | "cpu": [
985 | "x64"
986 | ],
987 | "dev": true,
988 | "license": "Apache-2.0 AND MIT",
989 | "optional": true,
990 | "os": [
991 | "darwin"
992 | ],
993 | "engines": {
994 | "node": ">=10"
995 | }
996 | },
997 | "node_modules/@swc/core-linux-arm-gnueabihf": {
998 | "version": "1.10.4",
999 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.10.4.tgz",
1000 | "integrity": "sha512-zd7fXH5w8s+Sfvn2oO464KDWl+ZX1MJiVmE4Pdk46N3PEaNwE0koTfgx2vQRqRG4vBBobzVvzICC3618WcefOA==",
1001 | "cpu": [
1002 | "arm"
1003 | ],
1004 | "dev": true,
1005 | "license": "Apache-2.0",
1006 | "optional": true,
1007 | "os": [
1008 | "linux"
1009 | ],
1010 | "engines": {
1011 | "node": ">=10"
1012 | }
1013 | },
1014 | "node_modules/@swc/core-linux-arm64-gnu": {
1015 | "version": "1.10.4",
1016 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.10.4.tgz",
1017 | "integrity": "sha512-+UGfoHDxsMZgFD3tABKLeEZHqLNOkxStu+qCG7atGBhS4Slri6h6zijVvf4yI5X3kbXdvc44XV/hrP/Klnui2A==",
1018 | "cpu": [
1019 | "arm64"
1020 | ],
1021 | "dev": true,
1022 | "license": "Apache-2.0 AND MIT",
1023 | "optional": true,
1024 | "os": [
1025 | "linux"
1026 | ],
1027 | "engines": {
1028 | "node": ">=10"
1029 | }
1030 | },
1031 | "node_modules/@swc/core-linux-arm64-musl": {
1032 | "version": "1.10.4",
1033 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.10.4.tgz",
1034 | "integrity": "sha512-cDDj2/uYsOH0pgAnDkovLZvKJpFmBMyXkxEG6Q4yw99HbzO6QzZ5HDGWGWVq/6dLgYKlnnmpjZCPPQIu01mXEg==",
1035 | "cpu": [
1036 | "arm64"
1037 | ],
1038 | "dev": true,
1039 | "license": "Apache-2.0 AND MIT",
1040 | "optional": true,
1041 | "os": [
1042 | "linux"
1043 | ],
1044 | "engines": {
1045 | "node": ">=10"
1046 | }
1047 | },
1048 | "node_modules/@swc/core-linux-x64-gnu": {
1049 | "version": "1.10.4",
1050 | "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.10.4.tgz",
1051 | "integrity": "sha512-qJXh9D6Kf5xSdGWPINpLGixAbB5JX8JcbEJpRamhlDBoOcQC79dYfOMEIxWPhTS1DGLyFakAx2FX/b2VmQmj0g==",
1052 | "cpu": [
1053 | "x64"
1054 | ],
1055 | "dev": true,
1056 | "license": "Apache-2.0 AND MIT",
1057 | "optional": true,
1058 | "os": [
1059 | "linux"
1060 | ],
1061 | "engines": {
1062 | "node": ">=10"
1063 | }
1064 | },
1065 | "node_modules/@swc/core-linux-x64-musl": {
1066 | "version": "1.10.4",
1067 | "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.10.4.tgz",
1068 | "integrity": "sha512-A76lIAeyQnHCVt0RL/pG+0er8Qk9+acGJqSZOZm67Ve3B0oqMd871kPtaHBM0BW3OZAhoILgfHW3Op9Q3mx3Cw==",
1069 | "cpu": [
1070 | "x64"
1071 | ],
1072 | "dev": true,
1073 | "license": "Apache-2.0 AND MIT",
1074 | "optional": true,
1075 | "os": [
1076 | "linux"
1077 | ],
1078 | "engines": {
1079 | "node": ">=10"
1080 | }
1081 | },
1082 | "node_modules/@swc/core-win32-arm64-msvc": {
1083 | "version": "1.10.4",
1084 | "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.10.4.tgz",
1085 | "integrity": "sha512-e6j5kBu4fIY7fFxFxnZI0MlEovRvp50Lg59Fw+DVbtqHk3C85dckcy5xKP+UoXeuEmFceauQDczUcGs19SRGSQ==",
1086 | "cpu": [
1087 | "arm64"
1088 | ],
1089 | "dev": true,
1090 | "license": "Apache-2.0 AND MIT",
1091 | "optional": true,
1092 | "os": [
1093 | "win32"
1094 | ],
1095 | "engines": {
1096 | "node": ">=10"
1097 | }
1098 | },
1099 | "node_modules/@swc/core-win32-ia32-msvc": {
1100 | "version": "1.10.4",
1101 | "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.10.4.tgz",
1102 | "integrity": "sha512-RSYHfdKgNXV/amY5Tqk1EWVsyQnhlsM//jeqMLw5Fy9rfxP592W9UTumNikNRPdjI8wKKzNMXDb1U29tQjN0dg==",
1103 | "cpu": [
1104 | "ia32"
1105 | ],
1106 | "dev": true,
1107 | "license": "Apache-2.0 AND MIT",
1108 | "optional": true,
1109 | "os": [
1110 | "win32"
1111 | ],
1112 | "engines": {
1113 | "node": ">=10"
1114 | }
1115 | },
1116 | "node_modules/@swc/core-win32-x64-msvc": {
1117 | "version": "1.10.4",
1118 | "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.10.4.tgz",
1119 | "integrity": "sha512-1ujYpaqfqNPYdwKBlvJnOqcl+Syn3UrQ4XE0Txz6zMYgyh6cdU6a3pxqLqIUSJ12MtXRA9ZUhEz1ekU3LfLWXw==",
1120 | "cpu": [
1121 | "x64"
1122 | ],
1123 | "dev": true,
1124 | "license": "Apache-2.0 AND MIT",
1125 | "optional": true,
1126 | "os": [
1127 | "win32"
1128 | ],
1129 | "engines": {
1130 | "node": ">=10"
1131 | }
1132 | },
1133 | "node_modules/@swc/counter": {
1134 | "version": "0.1.3",
1135 | "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz",
1136 | "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==",
1137 | "dev": true,
1138 | "license": "Apache-2.0"
1139 | },
1140 | "node_modules/@swc/types": {
1141 | "version": "0.1.17",
1142 | "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.17.tgz",
1143 | "integrity": "sha512-V5gRru+aD8YVyCOMAjMpWR1Ui577DD5KSJsHP8RAxopAH22jFz6GZd/qxqjO6MJHQhcsjvjOFXyDhyLQUnMveQ==",
1144 | "dev": true,
1145 | "license": "Apache-2.0",
1146 | "dependencies": {
1147 | "@swc/counter": "^0.1.3"
1148 | }
1149 | },
1150 | "node_modules/@types/estree": {
1151 | "version": "1.0.6",
1152 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz",
1153 | "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==",
1154 | "dev": true,
1155 | "license": "MIT"
1156 | },
1157 | "node_modules/@types/json-schema": {
1158 | "version": "7.0.15",
1159 | "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
1160 | "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
1161 | "dev": true,
1162 | "license": "MIT"
1163 | },
1164 | "node_modules/@types/prop-types": {
1165 | "version": "15.7.14",
1166 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz",
1167 | "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==",
1168 | "dev": true,
1169 | "license": "MIT"
1170 | },
1171 | "node_modules/@types/react": {
1172 | "version": "18.3.18",
1173 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.18.tgz",
1174 | "integrity": "sha512-t4yC+vtgnkYjNSKlFx1jkAhH8LgTo2N/7Qvi83kdEaUtMDiwpbLAktKDaAMlRcJ5eSxZkH74eEGt1ky31d7kfQ==",
1175 | "dev": true,
1176 | "license": "MIT",
1177 | "dependencies": {
1178 | "@types/prop-types": "*",
1179 | "csstype": "^3.0.2"
1180 | }
1181 | },
1182 | "node_modules/@types/react-dom": {
1183 | "version": "18.3.5",
1184 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.5.tgz",
1185 | "integrity": "sha512-P4t6saawp+b/dFrUr2cvkVsfvPguwsxtH6dNIYRllMsefqFzkZk5UIjzyDOv5g1dXIPdG4Sp1yCR4Z6RCUsG/Q==",
1186 | "dev": true,
1187 | "license": "MIT",
1188 | "peerDependencies": {
1189 | "@types/react": "^18.0.0"
1190 | }
1191 | },
1192 | "node_modules/@vitejs/plugin-react-swc": {
1193 | "version": "3.7.2",
1194 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.7.2.tgz",
1195 | "integrity": "sha512-y0byko2b2tSVVf5Gpng1eEhX1OvPC7x8yns1Fx8jDzlJp4LS6CMkCPfLw47cjyoMrshQDoQw4qcgjsU9VvlCew==",
1196 | "dev": true,
1197 | "license": "MIT",
1198 | "dependencies": {
1199 | "@swc/core": "^1.7.26"
1200 | },
1201 | "peerDependencies": {
1202 | "vite": "^4 || ^5 || ^6"
1203 | }
1204 | },
1205 | "node_modules/acorn": {
1206 | "version": "8.14.0",
1207 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz",
1208 | "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==",
1209 | "dev": true,
1210 | "license": "MIT",
1211 | "bin": {
1212 | "acorn": "bin/acorn"
1213 | },
1214 | "engines": {
1215 | "node": ">=0.4.0"
1216 | }
1217 | },
1218 | "node_modules/acorn-jsx": {
1219 | "version": "5.3.2",
1220 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1221 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1222 | "dev": true,
1223 | "license": "MIT",
1224 | "peerDependencies": {
1225 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1226 | }
1227 | },
1228 | "node_modules/ajv": {
1229 | "version": "6.12.6",
1230 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
1231 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
1232 | "dev": true,
1233 | "license": "MIT",
1234 | "dependencies": {
1235 | "fast-deep-equal": "^3.1.1",
1236 | "fast-json-stable-stringify": "^2.0.0",
1237 | "json-schema-traverse": "^0.4.1",
1238 | "uri-js": "^4.2.2"
1239 | },
1240 | "funding": {
1241 | "type": "github",
1242 | "url": "https://github.com/sponsors/epoberezkin"
1243 | }
1244 | },
1245 | "node_modules/ansi-styles": {
1246 | "version": "4.3.0",
1247 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1248 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1249 | "dev": true,
1250 | "license": "MIT",
1251 | "dependencies": {
1252 | "color-convert": "^2.0.1"
1253 | },
1254 | "engines": {
1255 | "node": ">=8"
1256 | },
1257 | "funding": {
1258 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1259 | }
1260 | },
1261 | "node_modules/argparse": {
1262 | "version": "2.0.1",
1263 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
1264 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
1265 | "dev": true,
1266 | "license": "Python-2.0"
1267 | },
1268 | "node_modules/array-buffer-byte-length": {
1269 | "version": "1.0.2",
1270 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.2.tgz",
1271 | "integrity": "sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==",
1272 | "dev": true,
1273 | "license": "MIT",
1274 | "dependencies": {
1275 | "call-bound": "^1.0.3",
1276 | "is-array-buffer": "^3.0.5"
1277 | },
1278 | "engines": {
1279 | "node": ">= 0.4"
1280 | },
1281 | "funding": {
1282 | "url": "https://github.com/sponsors/ljharb"
1283 | }
1284 | },
1285 | "node_modules/array-includes": {
1286 | "version": "3.1.8",
1287 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.8.tgz",
1288 | "integrity": "sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==",
1289 | "dev": true,
1290 | "license": "MIT",
1291 | "dependencies": {
1292 | "call-bind": "^1.0.7",
1293 | "define-properties": "^1.2.1",
1294 | "es-abstract": "^1.23.2",
1295 | "es-object-atoms": "^1.0.0",
1296 | "get-intrinsic": "^1.2.4",
1297 | "is-string": "^1.0.7"
1298 | },
1299 | "engines": {
1300 | "node": ">= 0.4"
1301 | },
1302 | "funding": {
1303 | "url": "https://github.com/sponsors/ljharb"
1304 | }
1305 | },
1306 | "node_modules/array.prototype.findlast": {
1307 | "version": "1.2.5",
1308 | "resolved": "https://registry.npmjs.org/array.prototype.findlast/-/array.prototype.findlast-1.2.5.tgz",
1309 | "integrity": "sha512-CVvd6FHg1Z3POpBLxO6E6zr+rSKEQ9L6rZHAaY7lLfhKsWYUBBOuMs0e9o24oopj6H+geRCX0YJ+TJLBK2eHyQ==",
1310 | "dev": true,
1311 | "license": "MIT",
1312 | "dependencies": {
1313 | "call-bind": "^1.0.7",
1314 | "define-properties": "^1.2.1",
1315 | "es-abstract": "^1.23.2",
1316 | "es-errors": "^1.3.0",
1317 | "es-object-atoms": "^1.0.0",
1318 | "es-shim-unscopables": "^1.0.2"
1319 | },
1320 | "engines": {
1321 | "node": ">= 0.4"
1322 | },
1323 | "funding": {
1324 | "url": "https://github.com/sponsors/ljharb"
1325 | }
1326 | },
1327 | "node_modules/array.prototype.flat": {
1328 | "version": "1.3.3",
1329 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.3.tgz",
1330 | "integrity": "sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==",
1331 | "dev": true,
1332 | "license": "MIT",
1333 | "dependencies": {
1334 | "call-bind": "^1.0.8",
1335 | "define-properties": "^1.2.1",
1336 | "es-abstract": "^1.23.5",
1337 | "es-shim-unscopables": "^1.0.2"
1338 | },
1339 | "engines": {
1340 | "node": ">= 0.4"
1341 | },
1342 | "funding": {
1343 | "url": "https://github.com/sponsors/ljharb"
1344 | }
1345 | },
1346 | "node_modules/array.prototype.flatmap": {
1347 | "version": "1.3.3",
1348 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.3.tgz",
1349 | "integrity": "sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==",
1350 | "dev": true,
1351 | "license": "MIT",
1352 | "dependencies": {
1353 | "call-bind": "^1.0.8",
1354 | "define-properties": "^1.2.1",
1355 | "es-abstract": "^1.23.5",
1356 | "es-shim-unscopables": "^1.0.2"
1357 | },
1358 | "engines": {
1359 | "node": ">= 0.4"
1360 | },
1361 | "funding": {
1362 | "url": "https://github.com/sponsors/ljharb"
1363 | }
1364 | },
1365 | "node_modules/array.prototype.tosorted": {
1366 | "version": "1.1.4",
1367 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.4.tgz",
1368 | "integrity": "sha512-p6Fx8B7b7ZhL/gmUsAy0D15WhvDccw3mnGNbZpi3pmeJdxtWsj2jEaI4Y6oo3XiHfzuSgPwKc04MYt6KgvC/wA==",
1369 | "dev": true,
1370 | "license": "MIT",
1371 | "dependencies": {
1372 | "call-bind": "^1.0.7",
1373 | "define-properties": "^1.2.1",
1374 | "es-abstract": "^1.23.3",
1375 | "es-errors": "^1.3.0",
1376 | "es-shim-unscopables": "^1.0.2"
1377 | },
1378 | "engines": {
1379 | "node": ">= 0.4"
1380 | }
1381 | },
1382 | "node_modules/arraybuffer.prototype.slice": {
1383 | "version": "1.0.4",
1384 | "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.4.tgz",
1385 | "integrity": "sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==",
1386 | "dev": true,
1387 | "license": "MIT",
1388 | "dependencies": {
1389 | "array-buffer-byte-length": "^1.0.1",
1390 | "call-bind": "^1.0.8",
1391 | "define-properties": "^1.2.1",
1392 | "es-abstract": "^1.23.5",
1393 | "es-errors": "^1.3.0",
1394 | "get-intrinsic": "^1.2.6",
1395 | "is-array-buffer": "^3.0.4"
1396 | },
1397 | "engines": {
1398 | "node": ">= 0.4"
1399 | },
1400 | "funding": {
1401 | "url": "https://github.com/sponsors/ljharb"
1402 | }
1403 | },
1404 | "node_modules/available-typed-arrays": {
1405 | "version": "1.0.7",
1406 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz",
1407 | "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==",
1408 | "dev": true,
1409 | "license": "MIT",
1410 | "dependencies": {
1411 | "possible-typed-array-names": "^1.0.0"
1412 | },
1413 | "engines": {
1414 | "node": ">= 0.4"
1415 | },
1416 | "funding": {
1417 | "url": "https://github.com/sponsors/ljharb"
1418 | }
1419 | },
1420 | "node_modules/balanced-match": {
1421 | "version": "1.0.2",
1422 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1423 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1424 | "dev": true,
1425 | "license": "MIT"
1426 | },
1427 | "node_modules/brace-expansion": {
1428 | "version": "1.1.11",
1429 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
1430 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
1431 | "dev": true,
1432 | "license": "MIT",
1433 | "dependencies": {
1434 | "balanced-match": "^1.0.0",
1435 | "concat-map": "0.0.1"
1436 | }
1437 | },
1438 | "node_modules/call-bind": {
1439 | "version": "1.0.8",
1440 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.8.tgz",
1441 | "integrity": "sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==",
1442 | "dev": true,
1443 | "license": "MIT",
1444 | "dependencies": {
1445 | "call-bind-apply-helpers": "^1.0.0",
1446 | "es-define-property": "^1.0.0",
1447 | "get-intrinsic": "^1.2.4",
1448 | "set-function-length": "^1.2.2"
1449 | },
1450 | "engines": {
1451 | "node": ">= 0.4"
1452 | },
1453 | "funding": {
1454 | "url": "https://github.com/sponsors/ljharb"
1455 | }
1456 | },
1457 | "node_modules/call-bind-apply-helpers": {
1458 | "version": "1.0.1",
1459 | "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz",
1460 | "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==",
1461 | "dev": true,
1462 | "license": "MIT",
1463 | "dependencies": {
1464 | "es-errors": "^1.3.0",
1465 | "function-bind": "^1.1.2"
1466 | },
1467 | "engines": {
1468 | "node": ">= 0.4"
1469 | }
1470 | },
1471 | "node_modules/call-bound": {
1472 | "version": "1.0.3",
1473 | "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz",
1474 | "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==",
1475 | "dev": true,
1476 | "license": "MIT",
1477 | "dependencies": {
1478 | "call-bind-apply-helpers": "^1.0.1",
1479 | "get-intrinsic": "^1.2.6"
1480 | },
1481 | "engines": {
1482 | "node": ">= 0.4"
1483 | },
1484 | "funding": {
1485 | "url": "https://github.com/sponsors/ljharb"
1486 | }
1487 | },
1488 | "node_modules/callsites": {
1489 | "version": "3.1.0",
1490 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1491 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1492 | "dev": true,
1493 | "license": "MIT",
1494 | "engines": {
1495 | "node": ">=6"
1496 | }
1497 | },
1498 | "node_modules/chalk": {
1499 | "version": "4.1.2",
1500 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
1501 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1502 | "dev": true,
1503 | "license": "MIT",
1504 | "dependencies": {
1505 | "ansi-styles": "^4.1.0",
1506 | "supports-color": "^7.1.0"
1507 | },
1508 | "engines": {
1509 | "node": ">=10"
1510 | },
1511 | "funding": {
1512 | "url": "https://github.com/chalk/chalk?sponsor=1"
1513 | }
1514 | },
1515 | "node_modules/color-convert": {
1516 | "version": "2.0.1",
1517 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1518 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1519 | "dev": true,
1520 | "license": "MIT",
1521 | "dependencies": {
1522 | "color-name": "~1.1.4"
1523 | },
1524 | "engines": {
1525 | "node": ">=7.0.0"
1526 | }
1527 | },
1528 | "node_modules/color-name": {
1529 | "version": "1.1.4",
1530 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1531 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1532 | "dev": true,
1533 | "license": "MIT"
1534 | },
1535 | "node_modules/concat-map": {
1536 | "version": "0.0.1",
1537 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1538 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1539 | "dev": true,
1540 | "license": "MIT"
1541 | },
1542 | "node_modules/cross-spawn": {
1543 | "version": "7.0.6",
1544 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
1545 | "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
1546 | "dev": true,
1547 | "license": "MIT",
1548 | "dependencies": {
1549 | "path-key": "^3.1.0",
1550 | "shebang-command": "^2.0.0",
1551 | "which": "^2.0.1"
1552 | },
1553 | "engines": {
1554 | "node": ">= 8"
1555 | }
1556 | },
1557 | "node_modules/csstype": {
1558 | "version": "3.1.3",
1559 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
1560 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
1561 | "dev": true,
1562 | "license": "MIT"
1563 | },
1564 | "node_modules/data-view-buffer": {
1565 | "version": "1.0.2",
1566 | "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.2.tgz",
1567 | "integrity": "sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==",
1568 | "dev": true,
1569 | "license": "MIT",
1570 | "dependencies": {
1571 | "call-bound": "^1.0.3",
1572 | "es-errors": "^1.3.0",
1573 | "is-data-view": "^1.0.2"
1574 | },
1575 | "engines": {
1576 | "node": ">= 0.4"
1577 | },
1578 | "funding": {
1579 | "url": "https://github.com/sponsors/ljharb"
1580 | }
1581 | },
1582 | "node_modules/data-view-byte-length": {
1583 | "version": "1.0.2",
1584 | "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.2.tgz",
1585 | "integrity": "sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==",
1586 | "dev": true,
1587 | "license": "MIT",
1588 | "dependencies": {
1589 | "call-bound": "^1.0.3",
1590 | "es-errors": "^1.3.0",
1591 | "is-data-view": "^1.0.2"
1592 | },
1593 | "engines": {
1594 | "node": ">= 0.4"
1595 | },
1596 | "funding": {
1597 | "url": "https://github.com/sponsors/inspect-js"
1598 | }
1599 | },
1600 | "node_modules/data-view-byte-offset": {
1601 | "version": "1.0.1",
1602 | "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.1.tgz",
1603 | "integrity": "sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==",
1604 | "dev": true,
1605 | "license": "MIT",
1606 | "dependencies": {
1607 | "call-bound": "^1.0.2",
1608 | "es-errors": "^1.3.0",
1609 | "is-data-view": "^1.0.1"
1610 | },
1611 | "engines": {
1612 | "node": ">= 0.4"
1613 | },
1614 | "funding": {
1615 | "url": "https://github.com/sponsors/ljharb"
1616 | }
1617 | },
1618 | "node_modules/debug": {
1619 | "version": "4.4.0",
1620 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz",
1621 | "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==",
1622 | "dev": true,
1623 | "license": "MIT",
1624 | "dependencies": {
1625 | "ms": "^2.1.3"
1626 | },
1627 | "engines": {
1628 | "node": ">=6.0"
1629 | },
1630 | "peerDependenciesMeta": {
1631 | "supports-color": {
1632 | "optional": true
1633 | }
1634 | }
1635 | },
1636 | "node_modules/deep-is": {
1637 | "version": "0.1.4",
1638 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1639 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1640 | "dev": true,
1641 | "license": "MIT"
1642 | },
1643 | "node_modules/define-data-property": {
1644 | "version": "1.1.4",
1645 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz",
1646 | "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==",
1647 | "dev": true,
1648 | "license": "MIT",
1649 | "dependencies": {
1650 | "es-define-property": "^1.0.0",
1651 | "es-errors": "^1.3.0",
1652 | "gopd": "^1.0.1"
1653 | },
1654 | "engines": {
1655 | "node": ">= 0.4"
1656 | },
1657 | "funding": {
1658 | "url": "https://github.com/sponsors/ljharb"
1659 | }
1660 | },
1661 | "node_modules/define-properties": {
1662 | "version": "1.2.1",
1663 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz",
1664 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==",
1665 | "dev": true,
1666 | "license": "MIT",
1667 | "dependencies": {
1668 | "define-data-property": "^1.0.1",
1669 | "has-property-descriptors": "^1.0.0",
1670 | "object-keys": "^1.1.1"
1671 | },
1672 | "engines": {
1673 | "node": ">= 0.4"
1674 | },
1675 | "funding": {
1676 | "url": "https://github.com/sponsors/ljharb"
1677 | }
1678 | },
1679 | "node_modules/doctrine": {
1680 | "version": "2.1.0",
1681 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
1682 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
1683 | "dev": true,
1684 | "license": "Apache-2.0",
1685 | "dependencies": {
1686 | "esutils": "^2.0.2"
1687 | },
1688 | "engines": {
1689 | "node": ">=0.10.0"
1690 | }
1691 | },
1692 | "node_modules/dunder-proto": {
1693 | "version": "1.0.1",
1694 | "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz",
1695 | "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==",
1696 | "dev": true,
1697 | "license": "MIT",
1698 | "dependencies": {
1699 | "call-bind-apply-helpers": "^1.0.1",
1700 | "es-errors": "^1.3.0",
1701 | "gopd": "^1.2.0"
1702 | },
1703 | "engines": {
1704 | "node": ">= 0.4"
1705 | }
1706 | },
1707 | "node_modules/es-abstract": {
1708 | "version": "1.23.9",
1709 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.9.tgz",
1710 | "integrity": "sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==",
1711 | "dev": true,
1712 | "license": "MIT",
1713 | "dependencies": {
1714 | "array-buffer-byte-length": "^1.0.2",
1715 | "arraybuffer.prototype.slice": "^1.0.4",
1716 | "available-typed-arrays": "^1.0.7",
1717 | "call-bind": "^1.0.8",
1718 | "call-bound": "^1.0.3",
1719 | "data-view-buffer": "^1.0.2",
1720 | "data-view-byte-length": "^1.0.2",
1721 | "data-view-byte-offset": "^1.0.1",
1722 | "es-define-property": "^1.0.1",
1723 | "es-errors": "^1.3.0",
1724 | "es-object-atoms": "^1.0.0",
1725 | "es-set-tostringtag": "^2.1.0",
1726 | "es-to-primitive": "^1.3.0",
1727 | "function.prototype.name": "^1.1.8",
1728 | "get-intrinsic": "^1.2.7",
1729 | "get-proto": "^1.0.0",
1730 | "get-symbol-description": "^1.1.0",
1731 | "globalthis": "^1.0.4",
1732 | "gopd": "^1.2.0",
1733 | "has-property-descriptors": "^1.0.2",
1734 | "has-proto": "^1.2.0",
1735 | "has-symbols": "^1.1.0",
1736 | "hasown": "^2.0.2",
1737 | "internal-slot": "^1.1.0",
1738 | "is-array-buffer": "^3.0.5",
1739 | "is-callable": "^1.2.7",
1740 | "is-data-view": "^1.0.2",
1741 | "is-regex": "^1.2.1",
1742 | "is-shared-array-buffer": "^1.0.4",
1743 | "is-string": "^1.1.1",
1744 | "is-typed-array": "^1.1.15",
1745 | "is-weakref": "^1.1.0",
1746 | "math-intrinsics": "^1.1.0",
1747 | "object-inspect": "^1.13.3",
1748 | "object-keys": "^1.1.1",
1749 | "object.assign": "^4.1.7",
1750 | "own-keys": "^1.0.1",
1751 | "regexp.prototype.flags": "^1.5.3",
1752 | "safe-array-concat": "^1.1.3",
1753 | "safe-push-apply": "^1.0.0",
1754 | "safe-regex-test": "^1.1.0",
1755 | "set-proto": "^1.0.0",
1756 | "string.prototype.trim": "^1.2.10",
1757 | "string.prototype.trimend": "^1.0.9",
1758 | "string.prototype.trimstart": "^1.0.8",
1759 | "typed-array-buffer": "^1.0.3",
1760 | "typed-array-byte-length": "^1.0.3",
1761 | "typed-array-byte-offset": "^1.0.4",
1762 | "typed-array-length": "^1.0.7",
1763 | "unbox-primitive": "^1.1.0",
1764 | "which-typed-array": "^1.1.18"
1765 | },
1766 | "engines": {
1767 | "node": ">= 0.4"
1768 | },
1769 | "funding": {
1770 | "url": "https://github.com/sponsors/ljharb"
1771 | }
1772 | },
1773 | "node_modules/es-define-property": {
1774 | "version": "1.0.1",
1775 | "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz",
1776 | "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==",
1777 | "dev": true,
1778 | "license": "MIT",
1779 | "engines": {
1780 | "node": ">= 0.4"
1781 | }
1782 | },
1783 | "node_modules/es-errors": {
1784 | "version": "1.3.0",
1785 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz",
1786 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==",
1787 | "dev": true,
1788 | "license": "MIT",
1789 | "engines": {
1790 | "node": ">= 0.4"
1791 | }
1792 | },
1793 | "node_modules/es-iterator-helpers": {
1794 | "version": "1.2.1",
1795 | "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.2.1.tgz",
1796 | "integrity": "sha512-uDn+FE1yrDzyC0pCo961B2IHbdM8y/ACZsKD4dG6WqrjV53BADjwa7D+1aom2rsNVfLyDgU/eigvlJGJ08OQ4w==",
1797 | "dev": true,
1798 | "license": "MIT",
1799 | "dependencies": {
1800 | "call-bind": "^1.0.8",
1801 | "call-bound": "^1.0.3",
1802 | "define-properties": "^1.2.1",
1803 | "es-abstract": "^1.23.6",
1804 | "es-errors": "^1.3.0",
1805 | "es-set-tostringtag": "^2.0.3",
1806 | "function-bind": "^1.1.2",
1807 | "get-intrinsic": "^1.2.6",
1808 | "globalthis": "^1.0.4",
1809 | "gopd": "^1.2.0",
1810 | "has-property-descriptors": "^1.0.2",
1811 | "has-proto": "^1.2.0",
1812 | "has-symbols": "^1.1.0",
1813 | "internal-slot": "^1.1.0",
1814 | "iterator.prototype": "^1.1.4",
1815 | "safe-array-concat": "^1.1.3"
1816 | },
1817 | "engines": {
1818 | "node": ">= 0.4"
1819 | }
1820 | },
1821 | "node_modules/es-object-atoms": {
1822 | "version": "1.0.0",
1823 | "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz",
1824 | "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==",
1825 | "dev": true,
1826 | "license": "MIT",
1827 | "dependencies": {
1828 | "es-errors": "^1.3.0"
1829 | },
1830 | "engines": {
1831 | "node": ">= 0.4"
1832 | }
1833 | },
1834 | "node_modules/es-set-tostringtag": {
1835 | "version": "2.1.0",
1836 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz",
1837 | "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==",
1838 | "dev": true,
1839 | "license": "MIT",
1840 | "dependencies": {
1841 | "es-errors": "^1.3.0",
1842 | "get-intrinsic": "^1.2.6",
1843 | "has-tostringtag": "^1.0.2",
1844 | "hasown": "^2.0.2"
1845 | },
1846 | "engines": {
1847 | "node": ">= 0.4"
1848 | }
1849 | },
1850 | "node_modules/es-shim-unscopables": {
1851 | "version": "1.0.2",
1852 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz",
1853 | "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==",
1854 | "dev": true,
1855 | "license": "MIT",
1856 | "dependencies": {
1857 | "hasown": "^2.0.0"
1858 | }
1859 | },
1860 | "node_modules/es-to-primitive": {
1861 | "version": "1.3.0",
1862 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.3.0.tgz",
1863 | "integrity": "sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==",
1864 | "dev": true,
1865 | "license": "MIT",
1866 | "dependencies": {
1867 | "is-callable": "^1.2.7",
1868 | "is-date-object": "^1.0.5",
1869 | "is-symbol": "^1.0.4"
1870 | },
1871 | "engines": {
1872 | "node": ">= 0.4"
1873 | },
1874 | "funding": {
1875 | "url": "https://github.com/sponsors/ljharb"
1876 | }
1877 | },
1878 | "node_modules/esbuild": {
1879 | "version": "0.24.2",
1880 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz",
1881 | "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==",
1882 | "dev": true,
1883 | "hasInstallScript": true,
1884 | "license": "MIT",
1885 | "bin": {
1886 | "esbuild": "bin/esbuild"
1887 | },
1888 | "engines": {
1889 | "node": ">=18"
1890 | },
1891 | "optionalDependencies": {
1892 | "@esbuild/aix-ppc64": "0.24.2",
1893 | "@esbuild/android-arm": "0.24.2",
1894 | "@esbuild/android-arm64": "0.24.2",
1895 | "@esbuild/android-x64": "0.24.2",
1896 | "@esbuild/darwin-arm64": "0.24.2",
1897 | "@esbuild/darwin-x64": "0.24.2",
1898 | "@esbuild/freebsd-arm64": "0.24.2",
1899 | "@esbuild/freebsd-x64": "0.24.2",
1900 | "@esbuild/linux-arm": "0.24.2",
1901 | "@esbuild/linux-arm64": "0.24.2",
1902 | "@esbuild/linux-ia32": "0.24.2",
1903 | "@esbuild/linux-loong64": "0.24.2",
1904 | "@esbuild/linux-mips64el": "0.24.2",
1905 | "@esbuild/linux-ppc64": "0.24.2",
1906 | "@esbuild/linux-riscv64": "0.24.2",
1907 | "@esbuild/linux-s390x": "0.24.2",
1908 | "@esbuild/linux-x64": "0.24.2",
1909 | "@esbuild/netbsd-arm64": "0.24.2",
1910 | "@esbuild/netbsd-x64": "0.24.2",
1911 | "@esbuild/openbsd-arm64": "0.24.2",
1912 | "@esbuild/openbsd-x64": "0.24.2",
1913 | "@esbuild/sunos-x64": "0.24.2",
1914 | "@esbuild/win32-arm64": "0.24.2",
1915 | "@esbuild/win32-ia32": "0.24.2",
1916 | "@esbuild/win32-x64": "0.24.2"
1917 | }
1918 | },
1919 | "node_modules/escape-string-regexp": {
1920 | "version": "4.0.0",
1921 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1922 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1923 | "dev": true,
1924 | "license": "MIT",
1925 | "engines": {
1926 | "node": ">=10"
1927 | },
1928 | "funding": {
1929 | "url": "https://github.com/sponsors/sindresorhus"
1930 | }
1931 | },
1932 | "node_modules/eslint": {
1933 | "version": "9.17.0",
1934 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.17.0.tgz",
1935 | "integrity": "sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==",
1936 | "dev": true,
1937 | "license": "MIT",
1938 | "dependencies": {
1939 | "@eslint-community/eslint-utils": "^4.2.0",
1940 | "@eslint-community/regexpp": "^4.12.1",
1941 | "@eslint/config-array": "^0.19.0",
1942 | "@eslint/core": "^0.9.0",
1943 | "@eslint/eslintrc": "^3.2.0",
1944 | "@eslint/js": "9.17.0",
1945 | "@eslint/plugin-kit": "^0.2.3",
1946 | "@humanfs/node": "^0.16.6",
1947 | "@humanwhocodes/module-importer": "^1.0.1",
1948 | "@humanwhocodes/retry": "^0.4.1",
1949 | "@types/estree": "^1.0.6",
1950 | "@types/json-schema": "^7.0.15",
1951 | "ajv": "^6.12.4",
1952 | "chalk": "^4.0.0",
1953 | "cross-spawn": "^7.0.6",
1954 | "debug": "^4.3.2",
1955 | "escape-string-regexp": "^4.0.0",
1956 | "eslint-scope": "^8.2.0",
1957 | "eslint-visitor-keys": "^4.2.0",
1958 | "espree": "^10.3.0",
1959 | "esquery": "^1.5.0",
1960 | "esutils": "^2.0.2",
1961 | "fast-deep-equal": "^3.1.3",
1962 | "file-entry-cache": "^8.0.0",
1963 | "find-up": "^5.0.0",
1964 | "glob-parent": "^6.0.2",
1965 | "ignore": "^5.2.0",
1966 | "imurmurhash": "^0.1.4",
1967 | "is-glob": "^4.0.0",
1968 | "json-stable-stringify-without-jsonify": "^1.0.1",
1969 | "lodash.merge": "^4.6.2",
1970 | "minimatch": "^3.1.2",
1971 | "natural-compare": "^1.4.0",
1972 | "optionator": "^0.9.3"
1973 | },
1974 | "bin": {
1975 | "eslint": "bin/eslint.js"
1976 | },
1977 | "engines": {
1978 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1979 | },
1980 | "funding": {
1981 | "url": "https://eslint.org/donate"
1982 | },
1983 | "peerDependencies": {
1984 | "jiti": "*"
1985 | },
1986 | "peerDependenciesMeta": {
1987 | "jiti": {
1988 | "optional": true
1989 | }
1990 | }
1991 | },
1992 | "node_modules/eslint-plugin-react": {
1993 | "version": "7.37.3",
1994 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.37.3.tgz",
1995 | "integrity": "sha512-DomWuTQPFYZwF/7c9W2fkKkStqZmBd3uugfqBYLdkZ3Hii23WzZuOLUskGxB8qkSKqftxEeGL1TB2kMhrce0jA==",
1996 | "dev": true,
1997 | "license": "MIT",
1998 | "dependencies": {
1999 | "array-includes": "^3.1.8",
2000 | "array.prototype.findlast": "^1.2.5",
2001 | "array.prototype.flatmap": "^1.3.3",
2002 | "array.prototype.tosorted": "^1.1.4",
2003 | "doctrine": "^2.1.0",
2004 | "es-iterator-helpers": "^1.2.1",
2005 | "estraverse": "^5.3.0",
2006 | "hasown": "^2.0.2",
2007 | "jsx-ast-utils": "^2.4.1 || ^3.0.0",
2008 | "minimatch": "^3.1.2",
2009 | "object.entries": "^1.1.8",
2010 | "object.fromentries": "^2.0.8",
2011 | "object.values": "^1.2.1",
2012 | "prop-types": "^15.8.1",
2013 | "resolve": "^2.0.0-next.5",
2014 | "semver": "^6.3.1",
2015 | "string.prototype.matchall": "^4.0.12",
2016 | "string.prototype.repeat": "^1.0.0"
2017 | },
2018 | "engines": {
2019 | "node": ">=4"
2020 | },
2021 | "peerDependencies": {
2022 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7"
2023 | }
2024 | },
2025 | "node_modules/eslint-plugin-react-hooks": {
2026 | "version": "5.1.0",
2027 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0.tgz",
2028 | "integrity": "sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==",
2029 | "dev": true,
2030 | "license": "MIT",
2031 | "engines": {
2032 | "node": ">=10"
2033 | },
2034 | "peerDependencies": {
2035 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
2036 | }
2037 | },
2038 | "node_modules/eslint-plugin-react-refresh": {
2039 | "version": "0.4.16",
2040 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.16.tgz",
2041 | "integrity": "sha512-slterMlxAhov/DZO8NScf6mEeMBBXodFUolijDvrtTxyezyLoTQaa73FyYus/VbTdftd8wBgBxPMRk3poleXNQ==",
2042 | "dev": true,
2043 | "license": "MIT",
2044 | "peerDependencies": {
2045 | "eslint": ">=8.40"
2046 | }
2047 | },
2048 | "node_modules/eslint-scope": {
2049 | "version": "8.2.0",
2050 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.2.0.tgz",
2051 | "integrity": "sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==",
2052 | "dev": true,
2053 | "license": "BSD-2-Clause",
2054 | "dependencies": {
2055 | "esrecurse": "^4.3.0",
2056 | "estraverse": "^5.2.0"
2057 | },
2058 | "engines": {
2059 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2060 | },
2061 | "funding": {
2062 | "url": "https://opencollective.com/eslint"
2063 | }
2064 | },
2065 | "node_modules/eslint-visitor-keys": {
2066 | "version": "4.2.0",
2067 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz",
2068 | "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==",
2069 | "dev": true,
2070 | "license": "Apache-2.0",
2071 | "engines": {
2072 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2073 | },
2074 | "funding": {
2075 | "url": "https://opencollective.com/eslint"
2076 | }
2077 | },
2078 | "node_modules/espree": {
2079 | "version": "10.3.0",
2080 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz",
2081 | "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==",
2082 | "dev": true,
2083 | "license": "BSD-2-Clause",
2084 | "dependencies": {
2085 | "acorn": "^8.14.0",
2086 | "acorn-jsx": "^5.3.2",
2087 | "eslint-visitor-keys": "^4.2.0"
2088 | },
2089 | "engines": {
2090 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2091 | },
2092 | "funding": {
2093 | "url": "https://opencollective.com/eslint"
2094 | }
2095 | },
2096 | "node_modules/esquery": {
2097 | "version": "1.6.0",
2098 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
2099 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
2100 | "dev": true,
2101 | "license": "BSD-3-Clause",
2102 | "dependencies": {
2103 | "estraverse": "^5.1.0"
2104 | },
2105 | "engines": {
2106 | "node": ">=0.10"
2107 | }
2108 | },
2109 | "node_modules/esrecurse": {
2110 | "version": "4.3.0",
2111 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
2112 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
2113 | "dev": true,
2114 | "license": "BSD-2-Clause",
2115 | "dependencies": {
2116 | "estraverse": "^5.2.0"
2117 | },
2118 | "engines": {
2119 | "node": ">=4.0"
2120 | }
2121 | },
2122 | "node_modules/estraverse": {
2123 | "version": "5.3.0",
2124 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
2125 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
2126 | "dev": true,
2127 | "license": "BSD-2-Clause",
2128 | "engines": {
2129 | "node": ">=4.0"
2130 | }
2131 | },
2132 | "node_modules/esutils": {
2133 | "version": "2.0.3",
2134 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
2135 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
2136 | "dev": true,
2137 | "license": "BSD-2-Clause",
2138 | "engines": {
2139 | "node": ">=0.10.0"
2140 | }
2141 | },
2142 | "node_modules/fast-deep-equal": {
2143 | "version": "3.1.3",
2144 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
2145 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
2146 | "dev": true,
2147 | "license": "MIT"
2148 | },
2149 | "node_modules/fast-json-stable-stringify": {
2150 | "version": "2.1.0",
2151 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
2152 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
2153 | "dev": true,
2154 | "license": "MIT"
2155 | },
2156 | "node_modules/fast-levenshtein": {
2157 | "version": "2.0.6",
2158 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
2159 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
2160 | "dev": true,
2161 | "license": "MIT"
2162 | },
2163 | "node_modules/file-entry-cache": {
2164 | "version": "8.0.0",
2165 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
2166 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
2167 | "dev": true,
2168 | "license": "MIT",
2169 | "dependencies": {
2170 | "flat-cache": "^4.0.0"
2171 | },
2172 | "engines": {
2173 | "node": ">=16.0.0"
2174 | }
2175 | },
2176 | "node_modules/find-up": {
2177 | "version": "5.0.0",
2178 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
2179 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
2180 | "dev": true,
2181 | "license": "MIT",
2182 | "dependencies": {
2183 | "locate-path": "^6.0.0",
2184 | "path-exists": "^4.0.0"
2185 | },
2186 | "engines": {
2187 | "node": ">=10"
2188 | },
2189 | "funding": {
2190 | "url": "https://github.com/sponsors/sindresorhus"
2191 | }
2192 | },
2193 | "node_modules/flat-cache": {
2194 | "version": "4.0.1",
2195 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
2196 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
2197 | "dev": true,
2198 | "license": "MIT",
2199 | "dependencies": {
2200 | "flatted": "^3.2.9",
2201 | "keyv": "^4.5.4"
2202 | },
2203 | "engines": {
2204 | "node": ">=16"
2205 | }
2206 | },
2207 | "node_modules/flatted": {
2208 | "version": "3.3.2",
2209 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz",
2210 | "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==",
2211 | "dev": true,
2212 | "license": "ISC"
2213 | },
2214 | "node_modules/for-each": {
2215 | "version": "0.3.3",
2216 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
2217 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
2218 | "dev": true,
2219 | "license": "MIT",
2220 | "dependencies": {
2221 | "is-callable": "^1.1.3"
2222 | }
2223 | },
2224 | "node_modules/fsevents": {
2225 | "version": "2.3.3",
2226 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2227 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2228 | "dev": true,
2229 | "hasInstallScript": true,
2230 | "license": "MIT",
2231 | "optional": true,
2232 | "os": [
2233 | "darwin"
2234 | ],
2235 | "engines": {
2236 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2237 | }
2238 | },
2239 | "node_modules/function-bind": {
2240 | "version": "1.1.2",
2241 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz",
2242 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==",
2243 | "dev": true,
2244 | "license": "MIT",
2245 | "funding": {
2246 | "url": "https://github.com/sponsors/ljharb"
2247 | }
2248 | },
2249 | "node_modules/function.prototype.name": {
2250 | "version": "1.1.8",
2251 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.8.tgz",
2252 | "integrity": "sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==",
2253 | "dev": true,
2254 | "license": "MIT",
2255 | "dependencies": {
2256 | "call-bind": "^1.0.8",
2257 | "call-bound": "^1.0.3",
2258 | "define-properties": "^1.2.1",
2259 | "functions-have-names": "^1.2.3",
2260 | "hasown": "^2.0.2",
2261 | "is-callable": "^1.2.7"
2262 | },
2263 | "engines": {
2264 | "node": ">= 0.4"
2265 | },
2266 | "funding": {
2267 | "url": "https://github.com/sponsors/ljharb"
2268 | }
2269 | },
2270 | "node_modules/functions-have-names": {
2271 | "version": "1.2.3",
2272 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
2273 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
2274 | "dev": true,
2275 | "license": "MIT",
2276 | "funding": {
2277 | "url": "https://github.com/sponsors/ljharb"
2278 | }
2279 | },
2280 | "node_modules/get-intrinsic": {
2281 | "version": "1.2.7",
2282 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz",
2283 | "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==",
2284 | "dev": true,
2285 | "license": "MIT",
2286 | "dependencies": {
2287 | "call-bind-apply-helpers": "^1.0.1",
2288 | "es-define-property": "^1.0.1",
2289 | "es-errors": "^1.3.0",
2290 | "es-object-atoms": "^1.0.0",
2291 | "function-bind": "^1.1.2",
2292 | "get-proto": "^1.0.0",
2293 | "gopd": "^1.2.0",
2294 | "has-symbols": "^1.1.0",
2295 | "hasown": "^2.0.2",
2296 | "math-intrinsics": "^1.1.0"
2297 | },
2298 | "engines": {
2299 | "node": ">= 0.4"
2300 | },
2301 | "funding": {
2302 | "url": "https://github.com/sponsors/ljharb"
2303 | }
2304 | },
2305 | "node_modules/get-proto": {
2306 | "version": "1.0.1",
2307 | "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz",
2308 | "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==",
2309 | "dev": true,
2310 | "license": "MIT",
2311 | "dependencies": {
2312 | "dunder-proto": "^1.0.1",
2313 | "es-object-atoms": "^1.0.0"
2314 | },
2315 | "engines": {
2316 | "node": ">= 0.4"
2317 | }
2318 | },
2319 | "node_modules/get-symbol-description": {
2320 | "version": "1.1.0",
2321 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.1.0.tgz",
2322 | "integrity": "sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==",
2323 | "dev": true,
2324 | "license": "MIT",
2325 | "dependencies": {
2326 | "call-bound": "^1.0.3",
2327 | "es-errors": "^1.3.0",
2328 | "get-intrinsic": "^1.2.6"
2329 | },
2330 | "engines": {
2331 | "node": ">= 0.4"
2332 | },
2333 | "funding": {
2334 | "url": "https://github.com/sponsors/ljharb"
2335 | }
2336 | },
2337 | "node_modules/glob-parent": {
2338 | "version": "6.0.2",
2339 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
2340 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
2341 | "dev": true,
2342 | "license": "ISC",
2343 | "dependencies": {
2344 | "is-glob": "^4.0.3"
2345 | },
2346 | "engines": {
2347 | "node": ">=10.13.0"
2348 | }
2349 | },
2350 | "node_modules/globals": {
2351 | "version": "15.14.0",
2352 | "resolved": "https://registry.npmjs.org/globals/-/globals-15.14.0.tgz",
2353 | "integrity": "sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==",
2354 | "dev": true,
2355 | "license": "MIT",
2356 | "engines": {
2357 | "node": ">=18"
2358 | },
2359 | "funding": {
2360 | "url": "https://github.com/sponsors/sindresorhus"
2361 | }
2362 | },
2363 | "node_modules/globalthis": {
2364 | "version": "1.0.4",
2365 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.4.tgz",
2366 | "integrity": "sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==",
2367 | "dev": true,
2368 | "license": "MIT",
2369 | "dependencies": {
2370 | "define-properties": "^1.2.1",
2371 | "gopd": "^1.0.1"
2372 | },
2373 | "engines": {
2374 | "node": ">= 0.4"
2375 | },
2376 | "funding": {
2377 | "url": "https://github.com/sponsors/ljharb"
2378 | }
2379 | },
2380 | "node_modules/gopd": {
2381 | "version": "1.2.0",
2382 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz",
2383 | "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==",
2384 | "dev": true,
2385 | "license": "MIT",
2386 | "engines": {
2387 | "node": ">= 0.4"
2388 | },
2389 | "funding": {
2390 | "url": "https://github.com/sponsors/ljharb"
2391 | }
2392 | },
2393 | "node_modules/has-bigints": {
2394 | "version": "1.1.0",
2395 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.1.0.tgz",
2396 | "integrity": "sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==",
2397 | "dev": true,
2398 | "license": "MIT",
2399 | "engines": {
2400 | "node": ">= 0.4"
2401 | },
2402 | "funding": {
2403 | "url": "https://github.com/sponsors/ljharb"
2404 | }
2405 | },
2406 | "node_modules/has-flag": {
2407 | "version": "4.0.0",
2408 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2409 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2410 | "dev": true,
2411 | "license": "MIT",
2412 | "engines": {
2413 | "node": ">=8"
2414 | }
2415 | },
2416 | "node_modules/has-property-descriptors": {
2417 | "version": "1.0.2",
2418 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz",
2419 | "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==",
2420 | "dev": true,
2421 | "license": "MIT",
2422 | "dependencies": {
2423 | "es-define-property": "^1.0.0"
2424 | },
2425 | "funding": {
2426 | "url": "https://github.com/sponsors/ljharb"
2427 | }
2428 | },
2429 | "node_modules/has-proto": {
2430 | "version": "1.2.0",
2431 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.2.0.tgz",
2432 | "integrity": "sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==",
2433 | "dev": true,
2434 | "license": "MIT",
2435 | "dependencies": {
2436 | "dunder-proto": "^1.0.0"
2437 | },
2438 | "engines": {
2439 | "node": ">= 0.4"
2440 | },
2441 | "funding": {
2442 | "url": "https://github.com/sponsors/ljharb"
2443 | }
2444 | },
2445 | "node_modules/has-symbols": {
2446 | "version": "1.1.0",
2447 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz",
2448 | "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==",
2449 | "dev": true,
2450 | "license": "MIT",
2451 | "engines": {
2452 | "node": ">= 0.4"
2453 | },
2454 | "funding": {
2455 | "url": "https://github.com/sponsors/ljharb"
2456 | }
2457 | },
2458 | "node_modules/has-tostringtag": {
2459 | "version": "1.0.2",
2460 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz",
2461 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==",
2462 | "dev": true,
2463 | "license": "MIT",
2464 | "dependencies": {
2465 | "has-symbols": "^1.0.3"
2466 | },
2467 | "engines": {
2468 | "node": ">= 0.4"
2469 | },
2470 | "funding": {
2471 | "url": "https://github.com/sponsors/ljharb"
2472 | }
2473 | },
2474 | "node_modules/hasown": {
2475 | "version": "2.0.2",
2476 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz",
2477 | "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==",
2478 | "dev": true,
2479 | "license": "MIT",
2480 | "dependencies": {
2481 | "function-bind": "^1.1.2"
2482 | },
2483 | "engines": {
2484 | "node": ">= 0.4"
2485 | }
2486 | },
2487 | "node_modules/ignore": {
2488 | "version": "5.3.2",
2489 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
2490 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
2491 | "dev": true,
2492 | "license": "MIT",
2493 | "engines": {
2494 | "node": ">= 4"
2495 | }
2496 | },
2497 | "node_modules/import-fresh": {
2498 | "version": "3.3.0",
2499 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
2500 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
2501 | "dev": true,
2502 | "license": "MIT",
2503 | "dependencies": {
2504 | "parent-module": "^1.0.0",
2505 | "resolve-from": "^4.0.0"
2506 | },
2507 | "engines": {
2508 | "node": ">=6"
2509 | },
2510 | "funding": {
2511 | "url": "https://github.com/sponsors/sindresorhus"
2512 | }
2513 | },
2514 | "node_modules/imurmurhash": {
2515 | "version": "0.1.4",
2516 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2517 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2518 | "dev": true,
2519 | "license": "MIT",
2520 | "engines": {
2521 | "node": ">=0.8.19"
2522 | }
2523 | },
2524 | "node_modules/internal-slot": {
2525 | "version": "1.1.0",
2526 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.1.0.tgz",
2527 | "integrity": "sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==",
2528 | "dev": true,
2529 | "license": "MIT",
2530 | "dependencies": {
2531 | "es-errors": "^1.3.0",
2532 | "hasown": "^2.0.2",
2533 | "side-channel": "^1.1.0"
2534 | },
2535 | "engines": {
2536 | "node": ">= 0.4"
2537 | }
2538 | },
2539 | "node_modules/is-array-buffer": {
2540 | "version": "3.0.5",
2541 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.5.tgz",
2542 | "integrity": "sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==",
2543 | "dev": true,
2544 | "license": "MIT",
2545 | "dependencies": {
2546 | "call-bind": "^1.0.8",
2547 | "call-bound": "^1.0.3",
2548 | "get-intrinsic": "^1.2.6"
2549 | },
2550 | "engines": {
2551 | "node": ">= 0.4"
2552 | },
2553 | "funding": {
2554 | "url": "https://github.com/sponsors/ljharb"
2555 | }
2556 | },
2557 | "node_modules/is-async-function": {
2558 | "version": "2.1.0",
2559 | "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.1.0.tgz",
2560 | "integrity": "sha512-GExz9MtyhlZyXYLxzlJRj5WUCE661zhDa1Yna52CN57AJsymh+DvXXjyveSioqSRdxvUrdKdvqB1b5cVKsNpWQ==",
2561 | "dev": true,
2562 | "license": "MIT",
2563 | "dependencies": {
2564 | "call-bound": "^1.0.3",
2565 | "get-proto": "^1.0.1",
2566 | "has-tostringtag": "^1.0.2",
2567 | "safe-regex-test": "^1.1.0"
2568 | },
2569 | "engines": {
2570 | "node": ">= 0.4"
2571 | },
2572 | "funding": {
2573 | "url": "https://github.com/sponsors/ljharb"
2574 | }
2575 | },
2576 | "node_modules/is-bigint": {
2577 | "version": "1.1.0",
2578 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.1.0.tgz",
2579 | "integrity": "sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==",
2580 | "dev": true,
2581 | "license": "MIT",
2582 | "dependencies": {
2583 | "has-bigints": "^1.0.2"
2584 | },
2585 | "engines": {
2586 | "node": ">= 0.4"
2587 | },
2588 | "funding": {
2589 | "url": "https://github.com/sponsors/ljharb"
2590 | }
2591 | },
2592 | "node_modules/is-boolean-object": {
2593 | "version": "1.2.1",
2594 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.2.1.tgz",
2595 | "integrity": "sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==",
2596 | "dev": true,
2597 | "license": "MIT",
2598 | "dependencies": {
2599 | "call-bound": "^1.0.2",
2600 | "has-tostringtag": "^1.0.2"
2601 | },
2602 | "engines": {
2603 | "node": ">= 0.4"
2604 | },
2605 | "funding": {
2606 | "url": "https://github.com/sponsors/ljharb"
2607 | }
2608 | },
2609 | "node_modules/is-callable": {
2610 | "version": "1.2.7",
2611 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
2612 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
2613 | "dev": true,
2614 | "license": "MIT",
2615 | "engines": {
2616 | "node": ">= 0.4"
2617 | },
2618 | "funding": {
2619 | "url": "https://github.com/sponsors/ljharb"
2620 | }
2621 | },
2622 | "node_modules/is-core-module": {
2623 | "version": "2.16.1",
2624 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
2625 | "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==",
2626 | "dev": true,
2627 | "license": "MIT",
2628 | "dependencies": {
2629 | "hasown": "^2.0.2"
2630 | },
2631 | "engines": {
2632 | "node": ">= 0.4"
2633 | },
2634 | "funding": {
2635 | "url": "https://github.com/sponsors/ljharb"
2636 | }
2637 | },
2638 | "node_modules/is-data-view": {
2639 | "version": "1.0.2",
2640 | "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.2.tgz",
2641 | "integrity": "sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==",
2642 | "dev": true,
2643 | "license": "MIT",
2644 | "dependencies": {
2645 | "call-bound": "^1.0.2",
2646 | "get-intrinsic": "^1.2.6",
2647 | "is-typed-array": "^1.1.13"
2648 | },
2649 | "engines": {
2650 | "node": ">= 0.4"
2651 | },
2652 | "funding": {
2653 | "url": "https://github.com/sponsors/ljharb"
2654 | }
2655 | },
2656 | "node_modules/is-date-object": {
2657 | "version": "1.1.0",
2658 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.1.0.tgz",
2659 | "integrity": "sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==",
2660 | "dev": true,
2661 | "license": "MIT",
2662 | "dependencies": {
2663 | "call-bound": "^1.0.2",
2664 | "has-tostringtag": "^1.0.2"
2665 | },
2666 | "engines": {
2667 | "node": ">= 0.4"
2668 | },
2669 | "funding": {
2670 | "url": "https://github.com/sponsors/ljharb"
2671 | }
2672 | },
2673 | "node_modules/is-extglob": {
2674 | "version": "2.1.1",
2675 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2676 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2677 | "dev": true,
2678 | "license": "MIT",
2679 | "engines": {
2680 | "node": ">=0.10.0"
2681 | }
2682 | },
2683 | "node_modules/is-finalizationregistry": {
2684 | "version": "1.1.1",
2685 | "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.1.1.tgz",
2686 | "integrity": "sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==",
2687 | "dev": true,
2688 | "license": "MIT",
2689 | "dependencies": {
2690 | "call-bound": "^1.0.3"
2691 | },
2692 | "engines": {
2693 | "node": ">= 0.4"
2694 | },
2695 | "funding": {
2696 | "url": "https://github.com/sponsors/ljharb"
2697 | }
2698 | },
2699 | "node_modules/is-generator-function": {
2700 | "version": "1.1.0",
2701 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.1.0.tgz",
2702 | "integrity": "sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==",
2703 | "dev": true,
2704 | "license": "MIT",
2705 | "dependencies": {
2706 | "call-bound": "^1.0.3",
2707 | "get-proto": "^1.0.0",
2708 | "has-tostringtag": "^1.0.2",
2709 | "safe-regex-test": "^1.1.0"
2710 | },
2711 | "engines": {
2712 | "node": ">= 0.4"
2713 | },
2714 | "funding": {
2715 | "url": "https://github.com/sponsors/ljharb"
2716 | }
2717 | },
2718 | "node_modules/is-glob": {
2719 | "version": "4.0.3",
2720 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2721 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2722 | "dev": true,
2723 | "license": "MIT",
2724 | "dependencies": {
2725 | "is-extglob": "^2.1.1"
2726 | },
2727 | "engines": {
2728 | "node": ">=0.10.0"
2729 | }
2730 | },
2731 | "node_modules/is-map": {
2732 | "version": "2.0.3",
2733 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.3.tgz",
2734 | "integrity": "sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==",
2735 | "dev": true,
2736 | "license": "MIT",
2737 | "engines": {
2738 | "node": ">= 0.4"
2739 | },
2740 | "funding": {
2741 | "url": "https://github.com/sponsors/ljharb"
2742 | }
2743 | },
2744 | "node_modules/is-number-object": {
2745 | "version": "1.1.1",
2746 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz",
2747 | "integrity": "sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==",
2748 | "dev": true,
2749 | "license": "MIT",
2750 | "dependencies": {
2751 | "call-bound": "^1.0.3",
2752 | "has-tostringtag": "^1.0.2"
2753 | },
2754 | "engines": {
2755 | "node": ">= 0.4"
2756 | },
2757 | "funding": {
2758 | "url": "https://github.com/sponsors/ljharb"
2759 | }
2760 | },
2761 | "node_modules/is-regex": {
2762 | "version": "1.2.1",
2763 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.2.1.tgz",
2764 | "integrity": "sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==",
2765 | "dev": true,
2766 | "license": "MIT",
2767 | "dependencies": {
2768 | "call-bound": "^1.0.2",
2769 | "gopd": "^1.2.0",
2770 | "has-tostringtag": "^1.0.2",
2771 | "hasown": "^2.0.2"
2772 | },
2773 | "engines": {
2774 | "node": ">= 0.4"
2775 | },
2776 | "funding": {
2777 | "url": "https://github.com/sponsors/ljharb"
2778 | }
2779 | },
2780 | "node_modules/is-set": {
2781 | "version": "2.0.3",
2782 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.3.tgz",
2783 | "integrity": "sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==",
2784 | "dev": true,
2785 | "license": "MIT",
2786 | "engines": {
2787 | "node": ">= 0.4"
2788 | },
2789 | "funding": {
2790 | "url": "https://github.com/sponsors/ljharb"
2791 | }
2792 | },
2793 | "node_modules/is-shared-array-buffer": {
2794 | "version": "1.0.4",
2795 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.4.tgz",
2796 | "integrity": "sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==",
2797 | "dev": true,
2798 | "license": "MIT",
2799 | "dependencies": {
2800 | "call-bound": "^1.0.3"
2801 | },
2802 | "engines": {
2803 | "node": ">= 0.4"
2804 | },
2805 | "funding": {
2806 | "url": "https://github.com/sponsors/ljharb"
2807 | }
2808 | },
2809 | "node_modules/is-string": {
2810 | "version": "1.1.1",
2811 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.1.1.tgz",
2812 | "integrity": "sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==",
2813 | "dev": true,
2814 | "license": "MIT",
2815 | "dependencies": {
2816 | "call-bound": "^1.0.3",
2817 | "has-tostringtag": "^1.0.2"
2818 | },
2819 | "engines": {
2820 | "node": ">= 0.4"
2821 | },
2822 | "funding": {
2823 | "url": "https://github.com/sponsors/ljharb"
2824 | }
2825 | },
2826 | "node_modules/is-symbol": {
2827 | "version": "1.1.1",
2828 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.1.1.tgz",
2829 | "integrity": "sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==",
2830 | "dev": true,
2831 | "license": "MIT",
2832 | "dependencies": {
2833 | "call-bound": "^1.0.2",
2834 | "has-symbols": "^1.1.0",
2835 | "safe-regex-test": "^1.1.0"
2836 | },
2837 | "engines": {
2838 | "node": ">= 0.4"
2839 | },
2840 | "funding": {
2841 | "url": "https://github.com/sponsors/ljharb"
2842 | }
2843 | },
2844 | "node_modules/is-typed-array": {
2845 | "version": "1.1.15",
2846 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.15.tgz",
2847 | "integrity": "sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==",
2848 | "dev": true,
2849 | "license": "MIT",
2850 | "dependencies": {
2851 | "which-typed-array": "^1.1.16"
2852 | },
2853 | "engines": {
2854 | "node": ">= 0.4"
2855 | },
2856 | "funding": {
2857 | "url": "https://github.com/sponsors/ljharb"
2858 | }
2859 | },
2860 | "node_modules/is-weakmap": {
2861 | "version": "2.0.2",
2862 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.2.tgz",
2863 | "integrity": "sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==",
2864 | "dev": true,
2865 | "license": "MIT",
2866 | "engines": {
2867 | "node": ">= 0.4"
2868 | },
2869 | "funding": {
2870 | "url": "https://github.com/sponsors/ljharb"
2871 | }
2872 | },
2873 | "node_modules/is-weakref": {
2874 | "version": "1.1.0",
2875 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.1.0.tgz",
2876 | "integrity": "sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==",
2877 | "dev": true,
2878 | "license": "MIT",
2879 | "dependencies": {
2880 | "call-bound": "^1.0.2"
2881 | },
2882 | "engines": {
2883 | "node": ">= 0.4"
2884 | },
2885 | "funding": {
2886 | "url": "https://github.com/sponsors/ljharb"
2887 | }
2888 | },
2889 | "node_modules/is-weakset": {
2890 | "version": "2.0.4",
2891 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.4.tgz",
2892 | "integrity": "sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==",
2893 | "dev": true,
2894 | "license": "MIT",
2895 | "dependencies": {
2896 | "call-bound": "^1.0.3",
2897 | "get-intrinsic": "^1.2.6"
2898 | },
2899 | "engines": {
2900 | "node": ">= 0.4"
2901 | },
2902 | "funding": {
2903 | "url": "https://github.com/sponsors/ljharb"
2904 | }
2905 | },
2906 | "node_modules/isarray": {
2907 | "version": "2.0.5",
2908 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
2909 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==",
2910 | "dev": true,
2911 | "license": "MIT"
2912 | },
2913 | "node_modules/isexe": {
2914 | "version": "2.0.0",
2915 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2916 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2917 | "dev": true,
2918 | "license": "ISC"
2919 | },
2920 | "node_modules/iterator.prototype": {
2921 | "version": "1.1.5",
2922 | "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.5.tgz",
2923 | "integrity": "sha512-H0dkQoCa3b2VEeKQBOxFph+JAbcrQdE7KC0UkqwpLmv2EC4P41QXP+rqo9wYodACiG5/WM5s9oDApTU8utwj9g==",
2924 | "dev": true,
2925 | "license": "MIT",
2926 | "dependencies": {
2927 | "define-data-property": "^1.1.4",
2928 | "es-object-atoms": "^1.0.0",
2929 | "get-intrinsic": "^1.2.6",
2930 | "get-proto": "^1.0.0",
2931 | "has-symbols": "^1.1.0",
2932 | "set-function-name": "^2.0.2"
2933 | },
2934 | "engines": {
2935 | "node": ">= 0.4"
2936 | }
2937 | },
2938 | "node_modules/js-tokens": {
2939 | "version": "4.0.0",
2940 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2941 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2942 | "license": "MIT"
2943 | },
2944 | "node_modules/js-yaml": {
2945 | "version": "4.1.0",
2946 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
2947 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
2948 | "dev": true,
2949 | "license": "MIT",
2950 | "dependencies": {
2951 | "argparse": "^2.0.1"
2952 | },
2953 | "bin": {
2954 | "js-yaml": "bin/js-yaml.js"
2955 | }
2956 | },
2957 | "node_modules/json-buffer": {
2958 | "version": "3.0.1",
2959 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
2960 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
2961 | "dev": true,
2962 | "license": "MIT"
2963 | },
2964 | "node_modules/json-schema-traverse": {
2965 | "version": "0.4.1",
2966 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2967 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
2968 | "dev": true,
2969 | "license": "MIT"
2970 | },
2971 | "node_modules/json-stable-stringify-without-jsonify": {
2972 | "version": "1.0.1",
2973 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
2974 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
2975 | "dev": true,
2976 | "license": "MIT"
2977 | },
2978 | "node_modules/jsx-ast-utils": {
2979 | "version": "3.3.5",
2980 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz",
2981 | "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==",
2982 | "dev": true,
2983 | "license": "MIT",
2984 | "dependencies": {
2985 | "array-includes": "^3.1.6",
2986 | "array.prototype.flat": "^1.3.1",
2987 | "object.assign": "^4.1.4",
2988 | "object.values": "^1.1.6"
2989 | },
2990 | "engines": {
2991 | "node": ">=4.0"
2992 | }
2993 | },
2994 | "node_modules/keyv": {
2995 | "version": "4.5.4",
2996 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
2997 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
2998 | "dev": true,
2999 | "license": "MIT",
3000 | "dependencies": {
3001 | "json-buffer": "3.0.1"
3002 | }
3003 | },
3004 | "node_modules/levn": {
3005 | "version": "0.4.1",
3006 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
3007 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
3008 | "dev": true,
3009 | "license": "MIT",
3010 | "dependencies": {
3011 | "prelude-ls": "^1.2.1",
3012 | "type-check": "~0.4.0"
3013 | },
3014 | "engines": {
3015 | "node": ">= 0.8.0"
3016 | }
3017 | },
3018 | "node_modules/locate-path": {
3019 | "version": "6.0.0",
3020 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
3021 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
3022 | "dev": true,
3023 | "license": "MIT",
3024 | "dependencies": {
3025 | "p-locate": "^5.0.0"
3026 | },
3027 | "engines": {
3028 | "node": ">=10"
3029 | },
3030 | "funding": {
3031 | "url": "https://github.com/sponsors/sindresorhus"
3032 | }
3033 | },
3034 | "node_modules/lodash.merge": {
3035 | "version": "4.6.2",
3036 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
3037 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
3038 | "dev": true,
3039 | "license": "MIT"
3040 | },
3041 | "node_modules/loose-envify": {
3042 | "version": "1.4.0",
3043 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
3044 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
3045 | "license": "MIT",
3046 | "dependencies": {
3047 | "js-tokens": "^3.0.0 || ^4.0.0"
3048 | },
3049 | "bin": {
3050 | "loose-envify": "cli.js"
3051 | }
3052 | },
3053 | "node_modules/math-intrinsics": {
3054 | "version": "1.1.0",
3055 | "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz",
3056 | "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==",
3057 | "dev": true,
3058 | "license": "MIT",
3059 | "engines": {
3060 | "node": ">= 0.4"
3061 | }
3062 | },
3063 | "node_modules/minimatch": {
3064 | "version": "3.1.2",
3065 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
3066 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
3067 | "dev": true,
3068 | "license": "ISC",
3069 | "dependencies": {
3070 | "brace-expansion": "^1.1.7"
3071 | },
3072 | "engines": {
3073 | "node": "*"
3074 | }
3075 | },
3076 | "node_modules/ms": {
3077 | "version": "2.1.3",
3078 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3079 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3080 | "dev": true,
3081 | "license": "MIT"
3082 | },
3083 | "node_modules/nanoid": {
3084 | "version": "3.3.8",
3085 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz",
3086 | "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==",
3087 | "dev": true,
3088 | "funding": [
3089 | {
3090 | "type": "github",
3091 | "url": "https://github.com/sponsors/ai"
3092 | }
3093 | ],
3094 | "license": "MIT",
3095 | "bin": {
3096 | "nanoid": "bin/nanoid.cjs"
3097 | },
3098 | "engines": {
3099 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3100 | }
3101 | },
3102 | "node_modules/natural-compare": {
3103 | "version": "1.4.0",
3104 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
3105 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
3106 | "dev": true,
3107 | "license": "MIT"
3108 | },
3109 | "node_modules/object-assign": {
3110 | "version": "4.1.1",
3111 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
3112 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
3113 | "dev": true,
3114 | "license": "MIT",
3115 | "engines": {
3116 | "node": ">=0.10.0"
3117 | }
3118 | },
3119 | "node_modules/object-inspect": {
3120 | "version": "1.13.3",
3121 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz",
3122 | "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==",
3123 | "dev": true,
3124 | "license": "MIT",
3125 | "engines": {
3126 | "node": ">= 0.4"
3127 | },
3128 | "funding": {
3129 | "url": "https://github.com/sponsors/ljharb"
3130 | }
3131 | },
3132 | "node_modules/object-keys": {
3133 | "version": "1.1.1",
3134 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
3135 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
3136 | "dev": true,
3137 | "license": "MIT",
3138 | "engines": {
3139 | "node": ">= 0.4"
3140 | }
3141 | },
3142 | "node_modules/object.assign": {
3143 | "version": "4.1.7",
3144 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.7.tgz",
3145 | "integrity": "sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==",
3146 | "dev": true,
3147 | "license": "MIT",
3148 | "dependencies": {
3149 | "call-bind": "^1.0.8",
3150 | "call-bound": "^1.0.3",
3151 | "define-properties": "^1.2.1",
3152 | "es-object-atoms": "^1.0.0",
3153 | "has-symbols": "^1.1.0",
3154 | "object-keys": "^1.1.1"
3155 | },
3156 | "engines": {
3157 | "node": ">= 0.4"
3158 | },
3159 | "funding": {
3160 | "url": "https://github.com/sponsors/ljharb"
3161 | }
3162 | },
3163 | "node_modules/object.entries": {
3164 | "version": "1.1.8",
3165 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.8.tgz",
3166 | "integrity": "sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==",
3167 | "dev": true,
3168 | "license": "MIT",
3169 | "dependencies": {
3170 | "call-bind": "^1.0.7",
3171 | "define-properties": "^1.2.1",
3172 | "es-object-atoms": "^1.0.0"
3173 | },
3174 | "engines": {
3175 | "node": ">= 0.4"
3176 | }
3177 | },
3178 | "node_modules/object.fromentries": {
3179 | "version": "2.0.8",
3180 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.8.tgz",
3181 | "integrity": "sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==",
3182 | "dev": true,
3183 | "license": "MIT",
3184 | "dependencies": {
3185 | "call-bind": "^1.0.7",
3186 | "define-properties": "^1.2.1",
3187 | "es-abstract": "^1.23.2",
3188 | "es-object-atoms": "^1.0.0"
3189 | },
3190 | "engines": {
3191 | "node": ">= 0.4"
3192 | },
3193 | "funding": {
3194 | "url": "https://github.com/sponsors/ljharb"
3195 | }
3196 | },
3197 | "node_modules/object.values": {
3198 | "version": "1.2.1",
3199 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.2.1.tgz",
3200 | "integrity": "sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==",
3201 | "dev": true,
3202 | "license": "MIT",
3203 | "dependencies": {
3204 | "call-bind": "^1.0.8",
3205 | "call-bound": "^1.0.3",
3206 | "define-properties": "^1.2.1",
3207 | "es-object-atoms": "^1.0.0"
3208 | },
3209 | "engines": {
3210 | "node": ">= 0.4"
3211 | },
3212 | "funding": {
3213 | "url": "https://github.com/sponsors/ljharb"
3214 | }
3215 | },
3216 | "node_modules/optionator": {
3217 | "version": "0.9.4",
3218 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
3219 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
3220 | "dev": true,
3221 | "license": "MIT",
3222 | "dependencies": {
3223 | "deep-is": "^0.1.3",
3224 | "fast-levenshtein": "^2.0.6",
3225 | "levn": "^0.4.1",
3226 | "prelude-ls": "^1.2.1",
3227 | "type-check": "^0.4.0",
3228 | "word-wrap": "^1.2.5"
3229 | },
3230 | "engines": {
3231 | "node": ">= 0.8.0"
3232 | }
3233 | },
3234 | "node_modules/own-keys": {
3235 | "version": "1.0.1",
3236 | "resolved": "https://registry.npmjs.org/own-keys/-/own-keys-1.0.1.tgz",
3237 | "integrity": "sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==",
3238 | "dev": true,
3239 | "license": "MIT",
3240 | "dependencies": {
3241 | "get-intrinsic": "^1.2.6",
3242 | "object-keys": "^1.1.1",
3243 | "safe-push-apply": "^1.0.0"
3244 | },
3245 | "engines": {
3246 | "node": ">= 0.4"
3247 | },
3248 | "funding": {
3249 | "url": "https://github.com/sponsors/ljharb"
3250 | }
3251 | },
3252 | "node_modules/p-limit": {
3253 | "version": "3.1.0",
3254 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
3255 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
3256 | "dev": true,
3257 | "license": "MIT",
3258 | "dependencies": {
3259 | "yocto-queue": "^0.1.0"
3260 | },
3261 | "engines": {
3262 | "node": ">=10"
3263 | },
3264 | "funding": {
3265 | "url": "https://github.com/sponsors/sindresorhus"
3266 | }
3267 | },
3268 | "node_modules/p-locate": {
3269 | "version": "5.0.0",
3270 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
3271 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
3272 | "dev": true,
3273 | "license": "MIT",
3274 | "dependencies": {
3275 | "p-limit": "^3.0.2"
3276 | },
3277 | "engines": {
3278 | "node": ">=10"
3279 | },
3280 | "funding": {
3281 | "url": "https://github.com/sponsors/sindresorhus"
3282 | }
3283 | },
3284 | "node_modules/parent-module": {
3285 | "version": "1.0.1",
3286 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
3287 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
3288 | "dev": true,
3289 | "license": "MIT",
3290 | "dependencies": {
3291 | "callsites": "^3.0.0"
3292 | },
3293 | "engines": {
3294 | "node": ">=6"
3295 | }
3296 | },
3297 | "node_modules/path-exists": {
3298 | "version": "4.0.0",
3299 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
3300 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
3301 | "dev": true,
3302 | "license": "MIT",
3303 | "engines": {
3304 | "node": ">=8"
3305 | }
3306 | },
3307 | "node_modules/path-key": {
3308 | "version": "3.1.1",
3309 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
3310 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3311 | "dev": true,
3312 | "license": "MIT",
3313 | "engines": {
3314 | "node": ">=8"
3315 | }
3316 | },
3317 | "node_modules/path-parse": {
3318 | "version": "1.0.7",
3319 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
3320 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==",
3321 | "dev": true,
3322 | "license": "MIT"
3323 | },
3324 | "node_modules/picocolors": {
3325 | "version": "1.1.1",
3326 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3327 | "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3328 | "dev": true,
3329 | "license": "ISC"
3330 | },
3331 | "node_modules/possible-typed-array-names": {
3332 | "version": "1.0.0",
3333 | "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz",
3334 | "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==",
3335 | "dev": true,
3336 | "license": "MIT",
3337 | "engines": {
3338 | "node": ">= 0.4"
3339 | }
3340 | },
3341 | "node_modules/postcss": {
3342 | "version": "8.4.49",
3343 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.49.tgz",
3344 | "integrity": "sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==",
3345 | "dev": true,
3346 | "funding": [
3347 | {
3348 | "type": "opencollective",
3349 | "url": "https://opencollective.com/postcss/"
3350 | },
3351 | {
3352 | "type": "tidelift",
3353 | "url": "https://tidelift.com/funding/github/npm/postcss"
3354 | },
3355 | {
3356 | "type": "github",
3357 | "url": "https://github.com/sponsors/ai"
3358 | }
3359 | ],
3360 | "license": "MIT",
3361 | "dependencies": {
3362 | "nanoid": "^3.3.7",
3363 | "picocolors": "^1.1.1",
3364 | "source-map-js": "^1.2.1"
3365 | },
3366 | "engines": {
3367 | "node": "^10 || ^12 || >=14"
3368 | }
3369 | },
3370 | "node_modules/prelude-ls": {
3371 | "version": "1.2.1",
3372 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
3373 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
3374 | "dev": true,
3375 | "license": "MIT",
3376 | "engines": {
3377 | "node": ">= 0.8.0"
3378 | }
3379 | },
3380 | "node_modules/prop-types": {
3381 | "version": "15.8.1",
3382 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
3383 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
3384 | "dev": true,
3385 | "license": "MIT",
3386 | "dependencies": {
3387 | "loose-envify": "^1.4.0",
3388 | "object-assign": "^4.1.1",
3389 | "react-is": "^16.13.1"
3390 | }
3391 | },
3392 | "node_modules/punycode": {
3393 | "version": "2.3.1",
3394 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
3395 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
3396 | "dev": true,
3397 | "license": "MIT",
3398 | "engines": {
3399 | "node": ">=6"
3400 | }
3401 | },
3402 | "node_modules/react": {
3403 | "version": "18.3.1",
3404 | "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
3405 | "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
3406 | "license": "MIT",
3407 | "dependencies": {
3408 | "loose-envify": "^1.1.0"
3409 | },
3410 | "engines": {
3411 | "node": ">=0.10.0"
3412 | }
3413 | },
3414 | "node_modules/react-dom": {
3415 | "version": "18.3.1",
3416 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
3417 | "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
3418 | "license": "MIT",
3419 | "dependencies": {
3420 | "loose-envify": "^1.1.0",
3421 | "scheduler": "^0.23.2"
3422 | },
3423 | "peerDependencies": {
3424 | "react": "^18.3.1"
3425 | }
3426 | },
3427 | "node_modules/react-is": {
3428 | "version": "16.13.1",
3429 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
3430 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==",
3431 | "dev": true,
3432 | "license": "MIT"
3433 | },
3434 | "node_modules/reflect.getprototypeof": {
3435 | "version": "1.0.10",
3436 | "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz",
3437 | "integrity": "sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==",
3438 | "dev": true,
3439 | "license": "MIT",
3440 | "dependencies": {
3441 | "call-bind": "^1.0.8",
3442 | "define-properties": "^1.2.1",
3443 | "es-abstract": "^1.23.9",
3444 | "es-errors": "^1.3.0",
3445 | "es-object-atoms": "^1.0.0",
3446 | "get-intrinsic": "^1.2.7",
3447 | "get-proto": "^1.0.1",
3448 | "which-builtin-type": "^1.2.1"
3449 | },
3450 | "engines": {
3451 | "node": ">= 0.4"
3452 | },
3453 | "funding": {
3454 | "url": "https://github.com/sponsors/ljharb"
3455 | }
3456 | },
3457 | "node_modules/regexp.prototype.flags": {
3458 | "version": "1.5.4",
3459 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.4.tgz",
3460 | "integrity": "sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==",
3461 | "dev": true,
3462 | "license": "MIT",
3463 | "dependencies": {
3464 | "call-bind": "^1.0.8",
3465 | "define-properties": "^1.2.1",
3466 | "es-errors": "^1.3.0",
3467 | "get-proto": "^1.0.1",
3468 | "gopd": "^1.2.0",
3469 | "set-function-name": "^2.0.2"
3470 | },
3471 | "engines": {
3472 | "node": ">= 0.4"
3473 | },
3474 | "funding": {
3475 | "url": "https://github.com/sponsors/ljharb"
3476 | }
3477 | },
3478 | "node_modules/resolve": {
3479 | "version": "2.0.0-next.5",
3480 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz",
3481 | "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==",
3482 | "dev": true,
3483 | "license": "MIT",
3484 | "dependencies": {
3485 | "is-core-module": "^2.13.0",
3486 | "path-parse": "^1.0.7",
3487 | "supports-preserve-symlinks-flag": "^1.0.0"
3488 | },
3489 | "bin": {
3490 | "resolve": "bin/resolve"
3491 | },
3492 | "funding": {
3493 | "url": "https://github.com/sponsors/ljharb"
3494 | }
3495 | },
3496 | "node_modules/resolve-from": {
3497 | "version": "4.0.0",
3498 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3499 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3500 | "dev": true,
3501 | "license": "MIT",
3502 | "engines": {
3503 | "node": ">=4"
3504 | }
3505 | },
3506 | "node_modules/rollup": {
3507 | "version": "4.29.1",
3508 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.29.1.tgz",
3509 | "integrity": "sha512-RaJ45M/kmJUzSWDs1Nnd5DdV4eerC98idtUOVr6FfKcgxqvjwHmxc5upLF9qZU9EpsVzzhleFahrT3shLuJzIw==",
3510 | "dev": true,
3511 | "license": "MIT",
3512 | "dependencies": {
3513 | "@types/estree": "1.0.6"
3514 | },
3515 | "bin": {
3516 | "rollup": "dist/bin/rollup"
3517 | },
3518 | "engines": {
3519 | "node": ">=18.0.0",
3520 | "npm": ">=8.0.0"
3521 | },
3522 | "optionalDependencies": {
3523 | "@rollup/rollup-android-arm-eabi": "4.29.1",
3524 | "@rollup/rollup-android-arm64": "4.29.1",
3525 | "@rollup/rollup-darwin-arm64": "4.29.1",
3526 | "@rollup/rollup-darwin-x64": "4.29.1",
3527 | "@rollup/rollup-freebsd-arm64": "4.29.1",
3528 | "@rollup/rollup-freebsd-x64": "4.29.1",
3529 | "@rollup/rollup-linux-arm-gnueabihf": "4.29.1",
3530 | "@rollup/rollup-linux-arm-musleabihf": "4.29.1",
3531 | "@rollup/rollup-linux-arm64-gnu": "4.29.1",
3532 | "@rollup/rollup-linux-arm64-musl": "4.29.1",
3533 | "@rollup/rollup-linux-loongarch64-gnu": "4.29.1",
3534 | "@rollup/rollup-linux-powerpc64le-gnu": "4.29.1",
3535 | "@rollup/rollup-linux-riscv64-gnu": "4.29.1",
3536 | "@rollup/rollup-linux-s390x-gnu": "4.29.1",
3537 | "@rollup/rollup-linux-x64-gnu": "4.29.1",
3538 | "@rollup/rollup-linux-x64-musl": "4.29.1",
3539 | "@rollup/rollup-win32-arm64-msvc": "4.29.1",
3540 | "@rollup/rollup-win32-ia32-msvc": "4.29.1",
3541 | "@rollup/rollup-win32-x64-msvc": "4.29.1",
3542 | "fsevents": "~2.3.2"
3543 | }
3544 | },
3545 | "node_modules/safe-array-concat": {
3546 | "version": "1.1.3",
3547 | "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz",
3548 | "integrity": "sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==",
3549 | "dev": true,
3550 | "license": "MIT",
3551 | "dependencies": {
3552 | "call-bind": "^1.0.8",
3553 | "call-bound": "^1.0.2",
3554 | "get-intrinsic": "^1.2.6",
3555 | "has-symbols": "^1.1.0",
3556 | "isarray": "^2.0.5"
3557 | },
3558 | "engines": {
3559 | "node": ">=0.4"
3560 | },
3561 | "funding": {
3562 | "url": "https://github.com/sponsors/ljharb"
3563 | }
3564 | },
3565 | "node_modules/safe-push-apply": {
3566 | "version": "1.0.0",
3567 | "resolved": "https://registry.npmjs.org/safe-push-apply/-/safe-push-apply-1.0.0.tgz",
3568 | "integrity": "sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==",
3569 | "dev": true,
3570 | "license": "MIT",
3571 | "dependencies": {
3572 | "es-errors": "^1.3.0",
3573 | "isarray": "^2.0.5"
3574 | },
3575 | "engines": {
3576 | "node": ">= 0.4"
3577 | },
3578 | "funding": {
3579 | "url": "https://github.com/sponsors/ljharb"
3580 | }
3581 | },
3582 | "node_modules/safe-regex-test": {
3583 | "version": "1.1.0",
3584 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.1.0.tgz",
3585 | "integrity": "sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==",
3586 | "dev": true,
3587 | "license": "MIT",
3588 | "dependencies": {
3589 | "call-bound": "^1.0.2",
3590 | "es-errors": "^1.3.0",
3591 | "is-regex": "^1.2.1"
3592 | },
3593 | "engines": {
3594 | "node": ">= 0.4"
3595 | },
3596 | "funding": {
3597 | "url": "https://github.com/sponsors/ljharb"
3598 | }
3599 | },
3600 | "node_modules/scheduler": {
3601 | "version": "0.23.2",
3602 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
3603 | "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
3604 | "license": "MIT",
3605 | "dependencies": {
3606 | "loose-envify": "^1.1.0"
3607 | }
3608 | },
3609 | "node_modules/semver": {
3610 | "version": "6.3.1",
3611 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
3612 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
3613 | "dev": true,
3614 | "license": "ISC",
3615 | "bin": {
3616 | "semver": "bin/semver.js"
3617 | }
3618 | },
3619 | "node_modules/set-function-length": {
3620 | "version": "1.2.2",
3621 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz",
3622 | "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==",
3623 | "dev": true,
3624 | "license": "MIT",
3625 | "dependencies": {
3626 | "define-data-property": "^1.1.4",
3627 | "es-errors": "^1.3.0",
3628 | "function-bind": "^1.1.2",
3629 | "get-intrinsic": "^1.2.4",
3630 | "gopd": "^1.0.1",
3631 | "has-property-descriptors": "^1.0.2"
3632 | },
3633 | "engines": {
3634 | "node": ">= 0.4"
3635 | }
3636 | },
3637 | "node_modules/set-function-name": {
3638 | "version": "2.0.2",
3639 | "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.2.tgz",
3640 | "integrity": "sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==",
3641 | "dev": true,
3642 | "license": "MIT",
3643 | "dependencies": {
3644 | "define-data-property": "^1.1.4",
3645 | "es-errors": "^1.3.0",
3646 | "functions-have-names": "^1.2.3",
3647 | "has-property-descriptors": "^1.0.2"
3648 | },
3649 | "engines": {
3650 | "node": ">= 0.4"
3651 | }
3652 | },
3653 | "node_modules/set-proto": {
3654 | "version": "1.0.0",
3655 | "resolved": "https://registry.npmjs.org/set-proto/-/set-proto-1.0.0.tgz",
3656 | "integrity": "sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==",
3657 | "dev": true,
3658 | "license": "MIT",
3659 | "dependencies": {
3660 | "dunder-proto": "^1.0.1",
3661 | "es-errors": "^1.3.0",
3662 | "es-object-atoms": "^1.0.0"
3663 | },
3664 | "engines": {
3665 | "node": ">= 0.4"
3666 | }
3667 | },
3668 | "node_modules/shebang-command": {
3669 | "version": "2.0.0",
3670 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3671 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3672 | "dev": true,
3673 | "license": "MIT",
3674 | "dependencies": {
3675 | "shebang-regex": "^3.0.0"
3676 | },
3677 | "engines": {
3678 | "node": ">=8"
3679 | }
3680 | },
3681 | "node_modules/shebang-regex": {
3682 | "version": "3.0.0",
3683 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3684 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3685 | "dev": true,
3686 | "license": "MIT",
3687 | "engines": {
3688 | "node": ">=8"
3689 | }
3690 | },
3691 | "node_modules/side-channel": {
3692 | "version": "1.1.0",
3693 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz",
3694 | "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==",
3695 | "dev": true,
3696 | "license": "MIT",
3697 | "dependencies": {
3698 | "es-errors": "^1.3.0",
3699 | "object-inspect": "^1.13.3",
3700 | "side-channel-list": "^1.0.0",
3701 | "side-channel-map": "^1.0.1",
3702 | "side-channel-weakmap": "^1.0.2"
3703 | },
3704 | "engines": {
3705 | "node": ">= 0.4"
3706 | },
3707 | "funding": {
3708 | "url": "https://github.com/sponsors/ljharb"
3709 | }
3710 | },
3711 | "node_modules/side-channel-list": {
3712 | "version": "1.0.0",
3713 | "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz",
3714 | "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==",
3715 | "dev": true,
3716 | "license": "MIT",
3717 | "dependencies": {
3718 | "es-errors": "^1.3.0",
3719 | "object-inspect": "^1.13.3"
3720 | },
3721 | "engines": {
3722 | "node": ">= 0.4"
3723 | },
3724 | "funding": {
3725 | "url": "https://github.com/sponsors/ljharb"
3726 | }
3727 | },
3728 | "node_modules/side-channel-map": {
3729 | "version": "1.0.1",
3730 | "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz",
3731 | "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==",
3732 | "dev": true,
3733 | "license": "MIT",
3734 | "dependencies": {
3735 | "call-bound": "^1.0.2",
3736 | "es-errors": "^1.3.0",
3737 | "get-intrinsic": "^1.2.5",
3738 | "object-inspect": "^1.13.3"
3739 | },
3740 | "engines": {
3741 | "node": ">= 0.4"
3742 | },
3743 | "funding": {
3744 | "url": "https://github.com/sponsors/ljharb"
3745 | }
3746 | },
3747 | "node_modules/side-channel-weakmap": {
3748 | "version": "1.0.2",
3749 | "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz",
3750 | "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==",
3751 | "dev": true,
3752 | "license": "MIT",
3753 | "dependencies": {
3754 | "call-bound": "^1.0.2",
3755 | "es-errors": "^1.3.0",
3756 | "get-intrinsic": "^1.2.5",
3757 | "object-inspect": "^1.13.3",
3758 | "side-channel-map": "^1.0.1"
3759 | },
3760 | "engines": {
3761 | "node": ">= 0.4"
3762 | },
3763 | "funding": {
3764 | "url": "https://github.com/sponsors/ljharb"
3765 | }
3766 | },
3767 | "node_modules/source-map-js": {
3768 | "version": "1.2.1",
3769 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
3770 | "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
3771 | "dev": true,
3772 | "license": "BSD-3-Clause",
3773 | "engines": {
3774 | "node": ">=0.10.0"
3775 | }
3776 | },
3777 | "node_modules/string.prototype.matchall": {
3778 | "version": "4.0.12",
3779 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.12.tgz",
3780 | "integrity": "sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==",
3781 | "dev": true,
3782 | "license": "MIT",
3783 | "dependencies": {
3784 | "call-bind": "^1.0.8",
3785 | "call-bound": "^1.0.3",
3786 | "define-properties": "^1.2.1",
3787 | "es-abstract": "^1.23.6",
3788 | "es-errors": "^1.3.0",
3789 | "es-object-atoms": "^1.0.0",
3790 | "get-intrinsic": "^1.2.6",
3791 | "gopd": "^1.2.0",
3792 | "has-symbols": "^1.1.0",
3793 | "internal-slot": "^1.1.0",
3794 | "regexp.prototype.flags": "^1.5.3",
3795 | "set-function-name": "^2.0.2",
3796 | "side-channel": "^1.1.0"
3797 | },
3798 | "engines": {
3799 | "node": ">= 0.4"
3800 | },
3801 | "funding": {
3802 | "url": "https://github.com/sponsors/ljharb"
3803 | }
3804 | },
3805 | "node_modules/string.prototype.repeat": {
3806 | "version": "1.0.0",
3807 | "resolved": "https://registry.npmjs.org/string.prototype.repeat/-/string.prototype.repeat-1.0.0.tgz",
3808 | "integrity": "sha512-0u/TldDbKD8bFCQ/4f5+mNRrXwZ8hg2w7ZR8wa16e8z9XpePWl3eGEcUD0OXpEH/VJH/2G3gjUtR3ZOiBe2S/w==",
3809 | "dev": true,
3810 | "license": "MIT",
3811 | "dependencies": {
3812 | "define-properties": "^1.1.3",
3813 | "es-abstract": "^1.17.5"
3814 | }
3815 | },
3816 | "node_modules/string.prototype.trim": {
3817 | "version": "1.2.10",
3818 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.10.tgz",
3819 | "integrity": "sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==",
3820 | "dev": true,
3821 | "license": "MIT",
3822 | "dependencies": {
3823 | "call-bind": "^1.0.8",
3824 | "call-bound": "^1.0.2",
3825 | "define-data-property": "^1.1.4",
3826 | "define-properties": "^1.2.1",
3827 | "es-abstract": "^1.23.5",
3828 | "es-object-atoms": "^1.0.0",
3829 | "has-property-descriptors": "^1.0.2"
3830 | },
3831 | "engines": {
3832 | "node": ">= 0.4"
3833 | },
3834 | "funding": {
3835 | "url": "https://github.com/sponsors/ljharb"
3836 | }
3837 | },
3838 | "node_modules/string.prototype.trimend": {
3839 | "version": "1.0.9",
3840 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.9.tgz",
3841 | "integrity": "sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==",
3842 | "dev": true,
3843 | "license": "MIT",
3844 | "dependencies": {
3845 | "call-bind": "^1.0.8",
3846 | "call-bound": "^1.0.2",
3847 | "define-properties": "^1.2.1",
3848 | "es-object-atoms": "^1.0.0"
3849 | },
3850 | "engines": {
3851 | "node": ">= 0.4"
3852 | },
3853 | "funding": {
3854 | "url": "https://github.com/sponsors/ljharb"
3855 | }
3856 | },
3857 | "node_modules/string.prototype.trimstart": {
3858 | "version": "1.0.8",
3859 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz",
3860 | "integrity": "sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==",
3861 | "dev": true,
3862 | "license": "MIT",
3863 | "dependencies": {
3864 | "call-bind": "^1.0.7",
3865 | "define-properties": "^1.2.1",
3866 | "es-object-atoms": "^1.0.0"
3867 | },
3868 | "engines": {
3869 | "node": ">= 0.4"
3870 | },
3871 | "funding": {
3872 | "url": "https://github.com/sponsors/ljharb"
3873 | }
3874 | },
3875 | "node_modules/strip-json-comments": {
3876 | "version": "3.1.1",
3877 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
3878 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
3879 | "dev": true,
3880 | "license": "MIT",
3881 | "engines": {
3882 | "node": ">=8"
3883 | },
3884 | "funding": {
3885 | "url": "https://github.com/sponsors/sindresorhus"
3886 | }
3887 | },
3888 | "node_modules/supports-color": {
3889 | "version": "7.2.0",
3890 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
3891 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
3892 | "dev": true,
3893 | "license": "MIT",
3894 | "dependencies": {
3895 | "has-flag": "^4.0.0"
3896 | },
3897 | "engines": {
3898 | "node": ">=8"
3899 | }
3900 | },
3901 | "node_modules/supports-preserve-symlinks-flag": {
3902 | "version": "1.0.0",
3903 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
3904 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
3905 | "dev": true,
3906 | "license": "MIT",
3907 | "engines": {
3908 | "node": ">= 0.4"
3909 | },
3910 | "funding": {
3911 | "url": "https://github.com/sponsors/ljharb"
3912 | }
3913 | },
3914 | "node_modules/type-check": {
3915 | "version": "0.4.0",
3916 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
3917 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
3918 | "dev": true,
3919 | "license": "MIT",
3920 | "dependencies": {
3921 | "prelude-ls": "^1.2.1"
3922 | },
3923 | "engines": {
3924 | "node": ">= 0.8.0"
3925 | }
3926 | },
3927 | "node_modules/typed-array-buffer": {
3928 | "version": "1.0.3",
3929 | "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.3.tgz",
3930 | "integrity": "sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==",
3931 | "dev": true,
3932 | "license": "MIT",
3933 | "dependencies": {
3934 | "call-bound": "^1.0.3",
3935 | "es-errors": "^1.3.0",
3936 | "is-typed-array": "^1.1.14"
3937 | },
3938 | "engines": {
3939 | "node": ">= 0.4"
3940 | }
3941 | },
3942 | "node_modules/typed-array-byte-length": {
3943 | "version": "1.0.3",
3944 | "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.3.tgz",
3945 | "integrity": "sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==",
3946 | "dev": true,
3947 | "license": "MIT",
3948 | "dependencies": {
3949 | "call-bind": "^1.0.8",
3950 | "for-each": "^0.3.3",
3951 | "gopd": "^1.2.0",
3952 | "has-proto": "^1.2.0",
3953 | "is-typed-array": "^1.1.14"
3954 | },
3955 | "engines": {
3956 | "node": ">= 0.4"
3957 | },
3958 | "funding": {
3959 | "url": "https://github.com/sponsors/ljharb"
3960 | }
3961 | },
3962 | "node_modules/typed-array-byte-offset": {
3963 | "version": "1.0.4",
3964 | "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.4.tgz",
3965 | "integrity": "sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==",
3966 | "dev": true,
3967 | "license": "MIT",
3968 | "dependencies": {
3969 | "available-typed-arrays": "^1.0.7",
3970 | "call-bind": "^1.0.8",
3971 | "for-each": "^0.3.3",
3972 | "gopd": "^1.2.0",
3973 | "has-proto": "^1.2.0",
3974 | "is-typed-array": "^1.1.15",
3975 | "reflect.getprototypeof": "^1.0.9"
3976 | },
3977 | "engines": {
3978 | "node": ">= 0.4"
3979 | },
3980 | "funding": {
3981 | "url": "https://github.com/sponsors/ljharb"
3982 | }
3983 | },
3984 | "node_modules/typed-array-length": {
3985 | "version": "1.0.7",
3986 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.7.tgz",
3987 | "integrity": "sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==",
3988 | "dev": true,
3989 | "license": "MIT",
3990 | "dependencies": {
3991 | "call-bind": "^1.0.7",
3992 | "for-each": "^0.3.3",
3993 | "gopd": "^1.0.1",
3994 | "is-typed-array": "^1.1.13",
3995 | "possible-typed-array-names": "^1.0.0",
3996 | "reflect.getprototypeof": "^1.0.6"
3997 | },
3998 | "engines": {
3999 | "node": ">= 0.4"
4000 | },
4001 | "funding": {
4002 | "url": "https://github.com/sponsors/ljharb"
4003 | }
4004 | },
4005 | "node_modules/unbox-primitive": {
4006 | "version": "1.1.0",
4007 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.1.0.tgz",
4008 | "integrity": "sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==",
4009 | "dev": true,
4010 | "license": "MIT",
4011 | "dependencies": {
4012 | "call-bound": "^1.0.3",
4013 | "has-bigints": "^1.0.2",
4014 | "has-symbols": "^1.1.0",
4015 | "which-boxed-primitive": "^1.1.1"
4016 | },
4017 | "engines": {
4018 | "node": ">= 0.4"
4019 | },
4020 | "funding": {
4021 | "url": "https://github.com/sponsors/ljharb"
4022 | }
4023 | },
4024 | "node_modules/uri-js": {
4025 | "version": "4.4.1",
4026 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
4027 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
4028 | "dev": true,
4029 | "license": "BSD-2-Clause",
4030 | "dependencies": {
4031 | "punycode": "^2.1.0"
4032 | }
4033 | },
4034 | "node_modules/vite": {
4035 | "version": "6.0.7",
4036 | "resolved": "https://registry.npmjs.org/vite/-/vite-6.0.7.tgz",
4037 | "integrity": "sha512-RDt8r/7qx9940f8FcOIAH9PTViRrghKaK2K1jY3RaAURrEUbm9Du1mJ72G+jlhtG3WwodnfzY8ORQZbBavZEAQ==",
4038 | "dev": true,
4039 | "license": "MIT",
4040 | "dependencies": {
4041 | "esbuild": "^0.24.2",
4042 | "postcss": "^8.4.49",
4043 | "rollup": "^4.23.0"
4044 | },
4045 | "bin": {
4046 | "vite": "bin/vite.js"
4047 | },
4048 | "engines": {
4049 | "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
4050 | },
4051 | "funding": {
4052 | "url": "https://github.com/vitejs/vite?sponsor=1"
4053 | },
4054 | "optionalDependencies": {
4055 | "fsevents": "~2.3.3"
4056 | },
4057 | "peerDependencies": {
4058 | "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
4059 | "jiti": ">=1.21.0",
4060 | "less": "*",
4061 | "lightningcss": "^1.21.0",
4062 | "sass": "*",
4063 | "sass-embedded": "*",
4064 | "stylus": "*",
4065 | "sugarss": "*",
4066 | "terser": "^5.16.0",
4067 | "tsx": "^4.8.1",
4068 | "yaml": "^2.4.2"
4069 | },
4070 | "peerDependenciesMeta": {
4071 | "@types/node": {
4072 | "optional": true
4073 | },
4074 | "jiti": {
4075 | "optional": true
4076 | },
4077 | "less": {
4078 | "optional": true
4079 | },
4080 | "lightningcss": {
4081 | "optional": true
4082 | },
4083 | "sass": {
4084 | "optional": true
4085 | },
4086 | "sass-embedded": {
4087 | "optional": true
4088 | },
4089 | "stylus": {
4090 | "optional": true
4091 | },
4092 | "sugarss": {
4093 | "optional": true
4094 | },
4095 | "terser": {
4096 | "optional": true
4097 | },
4098 | "tsx": {
4099 | "optional": true
4100 | },
4101 | "yaml": {
4102 | "optional": true
4103 | }
4104 | }
4105 | },
4106 | "node_modules/which": {
4107 | "version": "2.0.2",
4108 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
4109 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
4110 | "dev": true,
4111 | "license": "ISC",
4112 | "dependencies": {
4113 | "isexe": "^2.0.0"
4114 | },
4115 | "bin": {
4116 | "node-which": "bin/node-which"
4117 | },
4118 | "engines": {
4119 | "node": ">= 8"
4120 | }
4121 | },
4122 | "node_modules/which-boxed-primitive": {
4123 | "version": "1.1.1",
4124 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.1.1.tgz",
4125 | "integrity": "sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==",
4126 | "dev": true,
4127 | "license": "MIT",
4128 | "dependencies": {
4129 | "is-bigint": "^1.1.0",
4130 | "is-boolean-object": "^1.2.1",
4131 | "is-number-object": "^1.1.1",
4132 | "is-string": "^1.1.1",
4133 | "is-symbol": "^1.1.1"
4134 | },
4135 | "engines": {
4136 | "node": ">= 0.4"
4137 | },
4138 | "funding": {
4139 | "url": "https://github.com/sponsors/ljharb"
4140 | }
4141 | },
4142 | "node_modules/which-builtin-type": {
4143 | "version": "1.2.1",
4144 | "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.2.1.tgz",
4145 | "integrity": "sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==",
4146 | "dev": true,
4147 | "license": "MIT",
4148 | "dependencies": {
4149 | "call-bound": "^1.0.2",
4150 | "function.prototype.name": "^1.1.6",
4151 | "has-tostringtag": "^1.0.2",
4152 | "is-async-function": "^2.0.0",
4153 | "is-date-object": "^1.1.0",
4154 | "is-finalizationregistry": "^1.1.0",
4155 | "is-generator-function": "^1.0.10",
4156 | "is-regex": "^1.2.1",
4157 | "is-weakref": "^1.0.2",
4158 | "isarray": "^2.0.5",
4159 | "which-boxed-primitive": "^1.1.0",
4160 | "which-collection": "^1.0.2",
4161 | "which-typed-array": "^1.1.16"
4162 | },
4163 | "engines": {
4164 | "node": ">= 0.4"
4165 | },
4166 | "funding": {
4167 | "url": "https://github.com/sponsors/ljharb"
4168 | }
4169 | },
4170 | "node_modules/which-collection": {
4171 | "version": "1.0.2",
4172 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.2.tgz",
4173 | "integrity": "sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==",
4174 | "dev": true,
4175 | "license": "MIT",
4176 | "dependencies": {
4177 | "is-map": "^2.0.3",
4178 | "is-set": "^2.0.3",
4179 | "is-weakmap": "^2.0.2",
4180 | "is-weakset": "^2.0.3"
4181 | },
4182 | "engines": {
4183 | "node": ">= 0.4"
4184 | },
4185 | "funding": {
4186 | "url": "https://github.com/sponsors/ljharb"
4187 | }
4188 | },
4189 | "node_modules/which-typed-array": {
4190 | "version": "1.1.18",
4191 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.18.tgz",
4192 | "integrity": "sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==",
4193 | "dev": true,
4194 | "license": "MIT",
4195 | "dependencies": {
4196 | "available-typed-arrays": "^1.0.7",
4197 | "call-bind": "^1.0.8",
4198 | "call-bound": "^1.0.3",
4199 | "for-each": "^0.3.3",
4200 | "gopd": "^1.2.0",
4201 | "has-tostringtag": "^1.0.2"
4202 | },
4203 | "engines": {
4204 | "node": ">= 0.4"
4205 | },
4206 | "funding": {
4207 | "url": "https://github.com/sponsors/ljharb"
4208 | }
4209 | },
4210 | "node_modules/word-wrap": {
4211 | "version": "1.2.5",
4212 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
4213 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
4214 | "dev": true,
4215 | "license": "MIT",
4216 | "engines": {
4217 | "node": ">=0.10.0"
4218 | }
4219 | },
4220 | "node_modules/yocto-queue": {
4221 | "version": "0.1.0",
4222 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
4223 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
4224 | "dev": true,
4225 | "license": "MIT",
4226 | "engines": {
4227 | "node": ">=10"
4228 | },
4229 | "funding": {
4230 | "url": "https://github.com/sponsors/sindresorhus"
4231 | }
4232 | }
4233 | }
4234 | }
4235 |
--------------------------------------------------------------------------------
/react-code/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-code",
3 | "private": true,
4 | "version": "0.0.0",
5 | "type": "module",
6 | "scripts": {
7 | "dev": "vite",
8 | "build": "vite build",
9 | "lint": "eslint .",
10 | "preview": "vite preview"
11 | },
12 | "dependencies": {
13 | "react": "^18.3.1",
14 | "react-dom": "^18.3.1"
15 | },
16 | "devDependencies": {
17 | "@eslint/js": "^9.17.0",
18 | "@types/react": "^18.3.18",
19 | "@types/react-dom": "^18.3.5",
20 | "@vitejs/plugin-react-swc": "^3.5.0",
21 | "eslint": "^9.17.0",
22 | "eslint-plugin-react": "^7.37.2",
23 | "eslint-plugin-react-hooks": "^5.0.0",
24 | "eslint-plugin-react-refresh": "^0.4.16",
25 | "globals": "^15.14.0",
26 | "vite": "^6.0.5"
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/react-code/src/App.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/react-code/src/App.css
--------------------------------------------------------------------------------
/react-code/src/App.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/react-code/src/App.jsx
--------------------------------------------------------------------------------
/react-code/src/index.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/all-my-frontend-mini-projects/qr-code-page_frontend/050c793d34e4953fefa4377d62a582a52c9c9e80/react-code/src/index.css
--------------------------------------------------------------------------------
/react-code/src/main.jsx:
--------------------------------------------------------------------------------
1 | import { StrictMode } from 'react'
2 | import { createRoot } from 'react-dom/client'
3 | import './index.css'
4 | import App from './App.jsx'
5 |
6 | createRoot(document.getElementById('root')).render(
7 |
8 |
9 | ,
10 | )
11 |
--------------------------------------------------------------------------------
/react-code/vite.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite'
2 | import react from '@vitejs/plugin-react-swc'
3 |
4 | // https://vite.dev/config/
5 | export default defineConfig({
6 | plugins: [react()],
7 | })
8 |
--------------------------------------------------------------------------------
/style-guide.md:
--------------------------------------------------------------------------------
1 | # Front-end Style Guide
2 |
3 | ## Layout
4 |
5 | The designs were created to the following widths:
6 |
7 | - Mobile: 375px
8 | - Desktop: 1440px
9 |
10 | ## Colors
11 |
12 | - White: hsl(0, 0%, 100%)
13 | - Light gray: hsl(212, 45%, 89%)
14 | - Grayish blue: hsl(220, 15%, 55%)
15 | - Dark blue: hsl(218, 44%, 22%)
16 |
17 | ## Typography
18 |
19 | ### Body Copy
20 |
21 | - Font size (paragraph): 15px
22 |
23 | ### Font
24 |
25 | - Family: [Outfit](https://fonts.google.com/specimen/Outfit)
26 | - Weights: 400, 700
27 |
--------------------------------------------------------------------------------
/style.css:
--------------------------------------------------------------------------------
1 | @import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
2 |
3 | * {
4 | margin: 0;
5 | padding: 0;
6 | box-sizing: border-box;
7 | }
8 |
9 | body {
10 | align-items: center;
11 | background-color: hsl(212, 45%, 89%);
12 | display: flex;
13 | font-family: "Outfit", serif;
14 | justify-content: center;
15 | height: 100%;
16 | min-height: 100vh;
17 | overflow: hidden;
18 | width: 100%;
19 | }
20 |
21 | .card {
22 | background-color: white;
23 | border-radius: 15px;
24 | box-shadow: 0 10px 40px hsl(220, 15%, 55%);
25 | padding: 4%;
26 | top: 25%;
27 | display: flex;
28 | flex-direction: column;
29 | text-align: center;
30 | align-items: center;
31 | justify-content: center;
32 | width: 375px;
33 | }
34 |
35 | img {
36 | border-radius: 15px;
37 | height: 345px;
38 | width: 345px;
39 | }
40 |
41 | h1 {
42 | color: hsl(218, 44%, 22%);
43 | font-weight: 700;
44 | }
45 |
46 | p {
47 | color: hsl(220, 15%, 55%);
48 | font-size: 15px;
49 | font-weight: 400;
50 | padding: 15px;
51 | }
52 |
53 | .attribution {
54 | font-size: 11px;
55 | text-align: center;
56 | }
57 |
58 | .attribution a {
59 | color: hsl(228, 45%, 44%);
60 | text-decoration: underlined;
61 | }
62 |
--------------------------------------------------------------------------------