├── .gitignore
├── README.md
├── app
├── .env
├── __init__.py
├── config.py
├── crud.py
├── database.py
├── main.py
├── models.py
└── schemas.py
├── frontend
├── README.md
├── eslint.config.js
├── index.html
├── package-lock.json
├── package.json
├── public
│ └── vite.svg
├── src
│ ├── App.css
│ ├── App.tsx
│ ├── assets
│ │ └── react.svg
│ ├── components
│ │ └── ContactList.tsx
│ ├── main.tsx
│ └── vite-env.d.ts
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.node.json
└── vite.config.ts
└── requirements.txt
/.gitignore:
--------------------------------------------------------------------------------
1 | # Django #
2 | *.log
3 | *.pot
4 | *.pyc
5 | __pycache__
6 | db.sqlite3
7 | media
8 |
9 | # Backup files #
10 | *.bak
11 |
12 | # If you are using PyCharm #
13 | # User-specific stuff
14 | .idea/**/workspace.xml
15 | .idea/**/tasks.xml
16 | .idea/**/usage.statistics.xml
17 | .idea/**/dictionaries
18 | .idea/**/shelf
19 |
20 | # AWS User-specific
21 | .idea/**/aws.xml
22 |
23 | # Generated files
24 | .idea/**/contentModel.xml
25 |
26 | # Sensitive or high-churn files
27 | .idea/**/dataSources/
28 | .idea/**/dataSources.ids
29 | .idea/**/dataSources.local.xml
30 | .idea/**/sqlDataSources.xml
31 | .idea/**/dynamic.xml
32 | .idea/**/uiDesigner.xml
33 | .idea/**/dbnavigator.xml
34 |
35 | # Gradle
36 | .idea/**/gradle.xml
37 | .idea/**/libraries
38 |
39 | # File-based project format
40 | *.iws
41 |
42 | # IntelliJ
43 | out/
44 |
45 | # JIRA plugin
46 | atlassian-ide-plugin.xml
47 |
48 | # Python #
49 | *.py[cod]
50 | *$py.class
51 |
52 | # Distribution / packaging
53 | .Python build/
54 | develop-eggs/
55 | dist/
56 | downloads/
57 | eggs/
58 | .eggs/
59 | lib/
60 | lib64/
61 | parts/
62 | sdist/
63 | var/
64 | wheels/
65 | *.egg-info/
66 | .installed.cfg
67 | *.egg
68 | *.manifest
69 | *.spec
70 |
71 | # Installer logs
72 | pip-log.txt
73 | pip-delete-this-directory.txt
74 |
75 | # Unit test / coverage reports
76 | htmlcov/
77 | .tox/
78 | .coverage
79 | .coverage.*
80 | .cache
81 | .pytest_cache/
82 | nosetests.xml
83 | coverage.xml
84 | *.cover
85 | .hypothesis/
86 |
87 | # Jupyter Notebook
88 | .ipynb_checkpoints
89 |
90 | # pyenv
91 | .python-version
92 |
93 | # celery
94 | celerybeat-schedule.*
95 |
96 | # SageMath parsed files
97 | *.sage.py
98 |
99 | # Environments
100 | .venv
101 | env/
102 | venv/
103 | ENV/
104 | env.bak/
105 | venv.bak/
106 |
107 | # mkdocs documentation
108 | /site
109 |
110 | # mypy
111 | .mypy_cache/
112 |
113 | # Sublime Text #
114 | *.tmlanguage.cache
115 | *.tmPreferences.cache
116 | *.stTheme.cache
117 | *.sublime-workspace
118 | *.sublime-project
119 |
120 | # sftp configuration file
121 | sftp-config.json
122 |
123 | # Package control specific files Package
124 | Control.last-run
125 | Control.ca-list
126 | Control.ca-bundle
127 | Control.system-ca-bundle
128 | GitHub.sublime-settings
129 |
130 | # Visual Studio Code #
131 | .vscode/*
132 | !.vscode/settings.json
133 | !.vscode/tasks.json
134 | !.vscode/launch.json
135 | !.vscode/extensions.json
136 | .history
137 |
138 | # Logs
139 | logs
140 | *.log
141 | npm-debug.log*
142 | yarn-debug.log*
143 | yarn-error.log*
144 | pnpm-debug.log*
145 | lerna-debug.log*
146 |
147 | node_modules
148 | dist
149 | dist-ssr
150 | *.local
151 |
152 | # Editor directories and files
153 | .vscode/*
154 | !.vscode/extensions.json
155 | .idea
156 | .DS_Store
157 | *.suo
158 | *.ntvs*
159 | *.njsproj
160 | *.sln
161 | *.sw?
162 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
Simple To Do App
2 |
3 | 
4 |
5 | with React(TSX) | FastAPI | PostgreSQL
6 |
7 |
8 |
9 | 💻 Built with
10 |
11 | Technologies used in the project:
12 |
13 | * Python
14 | * FastAPI
15 | * PostgreSQL
16 | * React
17 | * HTML5
18 | * CSS3
19 |
--------------------------------------------------------------------------------
/app/.env:
--------------------------------------------------------------------------------
1 | DATABASE_URL=postgresql://postgres:mypassword@localhost:5432/mydatabase
--------------------------------------------------------------------------------
/app/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/TheHormat/React__FastAPI__PostgreSQL/c31c27330cdb53902e97c1eacdbb395f817bf58c/app/__init__.py
--------------------------------------------------------------------------------
/app/config.py:
--------------------------------------------------------------------------------
1 | from dotenv import load_dotenv
2 | from pydantic_settings import BaseSettings
3 |
4 | load_dotenv()
5 |
6 | class Settings(BaseSettings):
7 | database_url: str
8 |
9 | class Config:
10 | env_file = ".env"
11 |
12 | settings = Settings()
13 |
14 | print("Database URL from Settings:", settings.database_url)
--------------------------------------------------------------------------------
/app/crud.py:
--------------------------------------------------------------------------------
1 | from sqlalchemy.orm import Session
2 | from . import models, schemas
3 |
4 | def create_contact(db: Session, contact: schemas.ContactCreate):
5 | db_contact = models.Contact(**contact.dict())
6 | db.add(db_contact)
7 | db.commit()
8 | db.refresh(db_contact)
9 | return db_contact
10 |
11 | def get_contacts(db: Session, skip: int = 0, limit: int = 10):
12 | return db.query(models.Contact).offset(skip).limit(limit).all()
--------------------------------------------------------------------------------
/app/database.py:
--------------------------------------------------------------------------------
1 | from sqlalchemy import create_engine
2 | from sqlalchemy.ext.declarative import declarative_base
3 | from sqlalchemy.orm import sessionmaker
4 | from .config import settings
5 |
6 | SQLALCHEMY_DATABASE_URL = settings.database_url
7 |
8 | engine = create_engine(SQLALCHEMY_DATABASE_URL)
9 | SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=engine)
10 | Base = declarative_base()
11 |
12 | def get_db():
13 | db = SessionLocal()
14 | try:
15 | yield db
16 | finally:
17 | db.close()
18 |
--------------------------------------------------------------------------------
/app/main.py:
--------------------------------------------------------------------------------
1 | from fastapi.middleware.cors import CORSMiddleware
2 | from fastapi import FastAPI, Depends, HTTPException
3 | from sqlalchemy.orm import Session
4 | from . import crud, models, schemas
5 | from .database import engine, get_db
6 |
7 | models.Base.metadata.create_all(bind=engine)
8 |
9 | app = FastAPI()
10 |
11 |
12 | # CORS confg
13 | app.add_middleware(
14 | CORSMiddleware,
15 | allow_origins=["*"],
16 | allow_credentials=True,
17 | allow_methods=["*"],
18 | allow_headers=["*"],
19 | )
20 |
21 | @app.post("/contacts/", response_model=schemas.Contact)
22 | def create_contact(contact: schemas.ContactCreate, db: Session = Depends(get_db)):
23 | return crud.create_contact(db=db, contact=contact)
24 |
25 | @app.get("/contacts/", response_model=list[schemas.Contact])
26 | def read_contacts(skip: int = 0, limit: int = 10, db: Session = Depends(get_db)):
27 | contacts = crud.get_contacts(db, skip=skip, limit=limit)
28 | return contacts
29 |
30 | @app.delete("/contacts/{contact_id}", response_model=schemas.Contact)
31 | def delete_contact(contact_id: int, db: Session = Depends(get_db)):
32 | contact = db.query(models.Contact).filter(models.Contact.id == contact_id).first()
33 | if contact is None:
34 | raise HTTPException(status_code=404, detail="Contact not found")
35 | db.delete(contact)
36 | db.commit()
37 | return contact
--------------------------------------------------------------------------------
/app/models.py:
--------------------------------------------------------------------------------
1 | from sqlalchemy import Column, Integer, String
2 | from .database import Base
3 |
4 | class Contact(Base):
5 | __tablename__ = "contacts"
6 |
7 | id = Column(Integer, primary_key=True, index=True)
8 | username = Column(String, index=True)
9 | email = Column(String, unique=True, index=True)
10 | message = Column(String)
--------------------------------------------------------------------------------
/app/schemas.py:
--------------------------------------------------------------------------------
1 | from pydantic import BaseModel, EmailStr
2 |
3 | class ContactCreate(BaseModel):
4 | username: str
5 | email: EmailStr
6 | message: str
7 |
8 | class Contact(BaseModel):
9 | id: int
10 | username: str
11 | email: EmailStr
12 | message: str
13 |
14 | class Config:
15 | from_attributes = True
--------------------------------------------------------------------------------
/frontend/README.md:
--------------------------------------------------------------------------------
1 | # React + TypeScript + Vite
2 |
3 | This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4 |
5 | Currently, two official plugins are available:
6 |
7 | - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
8 | - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9 |
10 | ## Expanding the ESLint configuration
11 |
12 | If you are developing a production application, we recommend updating the configuration to enable type aware lint rules:
13 |
14 | - Configure the top-level `parserOptions` property like this:
15 |
16 | ```js
17 | export default tseslint.config({
18 | languageOptions: {
19 | // other options...
20 | parserOptions: {
21 | project: ['./tsconfig.node.json', './tsconfig.app.json'],
22 | tsconfigRootDir: import.meta.dirname,
23 | },
24 | },
25 | })
26 | ```
27 |
28 | - Replace `tseslint.configs.recommended` to `tseslint.configs.recommendedTypeChecked` or `tseslint.configs.strictTypeChecked`
29 | - Optionally add `...tseslint.configs.stylisticTypeChecked`
30 | - Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and update the config:
31 |
32 | ```js
33 | // eslint.config.js
34 | import react from 'eslint-plugin-react'
35 |
36 | export default tseslint.config({
37 | // Set the react version
38 | settings: { react: { version: '18.3' } },
39 | plugins: {
40 | // Add the react plugin
41 | react,
42 | },
43 | rules: {
44 | // other rules...
45 | // Enable its recommended rules
46 | ...react.configs.recommended.rules,
47 | ...react.configs['jsx-runtime'].rules,
48 | },
49 | })
50 | ```
51 |
--------------------------------------------------------------------------------
/frontend/eslint.config.js:
--------------------------------------------------------------------------------
1 | import js from '@eslint/js'
2 | import globals from 'globals'
3 | import reactHooks from 'eslint-plugin-react-hooks'
4 | import reactRefresh from 'eslint-plugin-react-refresh'
5 | import tseslint from 'typescript-eslint'
6 |
7 | export default tseslint.config(
8 | { ignores: ['dist'] },
9 | {
10 | extends: [js.configs.recommended, ...tseslint.configs.recommended],
11 | files: ['**/*.{ts,tsx}'],
12 | languageOptions: {
13 | ecmaVersion: 2020,
14 | globals: globals.browser,
15 | },
16 | plugins: {
17 | 'react-hooks': reactHooks,
18 | 'react-refresh': reactRefresh,
19 | },
20 | rules: {
21 | ...reactHooks.configs.recommended.rules,
22 | 'react-refresh/only-export-components': [
23 | 'warn',
24 | { allowConstantExport: true },
25 | ],
26 | },
27 | },
28 | )
29 |
--------------------------------------------------------------------------------
/frontend/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | React.tsx | FastAPI | PostgreSQL
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/frontend/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "vite-project",
3 | "version": "0.0.0",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "vite-project",
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.9.0",
16 | "@types/react": "^18.3.3",
17 | "@types/react-dom": "^18.3.0",
18 | "@vitejs/plugin-react-swc": "^3.5.0",
19 | "eslint": "^9.9.0",
20 | "eslint-plugin-react-hooks": "^5.1.0-rc.0",
21 | "eslint-plugin-react-refresh": "^0.4.9",
22 | "globals": "^15.9.0",
23 | "typescript": "^5.5.3",
24 | "typescript-eslint": "^8.0.1",
25 | "vite": "^5.4.1"
26 | }
27 | },
28 | "node_modules/@esbuild/aix-ppc64": {
29 | "version": "0.21.5",
30 | "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz",
31 | "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==",
32 | "cpu": [
33 | "ppc64"
34 | ],
35 | "dev": true,
36 | "license": "MIT",
37 | "optional": true,
38 | "os": [
39 | "aix"
40 | ],
41 | "engines": {
42 | "node": ">=12"
43 | }
44 | },
45 | "node_modules/@esbuild/android-arm": {
46 | "version": "0.21.5",
47 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz",
48 | "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==",
49 | "cpu": [
50 | "arm"
51 | ],
52 | "dev": true,
53 | "license": "MIT",
54 | "optional": true,
55 | "os": [
56 | "android"
57 | ],
58 | "engines": {
59 | "node": ">=12"
60 | }
61 | },
62 | "node_modules/@esbuild/android-arm64": {
63 | "version": "0.21.5",
64 | "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz",
65 | "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==",
66 | "cpu": [
67 | "arm64"
68 | ],
69 | "dev": true,
70 | "license": "MIT",
71 | "optional": true,
72 | "os": [
73 | "android"
74 | ],
75 | "engines": {
76 | "node": ">=12"
77 | }
78 | },
79 | "node_modules/@esbuild/android-x64": {
80 | "version": "0.21.5",
81 | "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz",
82 | "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==",
83 | "cpu": [
84 | "x64"
85 | ],
86 | "dev": true,
87 | "license": "MIT",
88 | "optional": true,
89 | "os": [
90 | "android"
91 | ],
92 | "engines": {
93 | "node": ">=12"
94 | }
95 | },
96 | "node_modules/@esbuild/darwin-arm64": {
97 | "version": "0.21.5",
98 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz",
99 | "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==",
100 | "cpu": [
101 | "arm64"
102 | ],
103 | "dev": true,
104 | "license": "MIT",
105 | "optional": true,
106 | "os": [
107 | "darwin"
108 | ],
109 | "engines": {
110 | "node": ">=12"
111 | }
112 | },
113 | "node_modules/@esbuild/darwin-x64": {
114 | "version": "0.21.5",
115 | "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz",
116 | "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==",
117 | "cpu": [
118 | "x64"
119 | ],
120 | "dev": true,
121 | "license": "MIT",
122 | "optional": true,
123 | "os": [
124 | "darwin"
125 | ],
126 | "engines": {
127 | "node": ">=12"
128 | }
129 | },
130 | "node_modules/@esbuild/freebsd-arm64": {
131 | "version": "0.21.5",
132 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz",
133 | "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==",
134 | "cpu": [
135 | "arm64"
136 | ],
137 | "dev": true,
138 | "license": "MIT",
139 | "optional": true,
140 | "os": [
141 | "freebsd"
142 | ],
143 | "engines": {
144 | "node": ">=12"
145 | }
146 | },
147 | "node_modules/@esbuild/freebsd-x64": {
148 | "version": "0.21.5",
149 | "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz",
150 | "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==",
151 | "cpu": [
152 | "x64"
153 | ],
154 | "dev": true,
155 | "license": "MIT",
156 | "optional": true,
157 | "os": [
158 | "freebsd"
159 | ],
160 | "engines": {
161 | "node": ">=12"
162 | }
163 | },
164 | "node_modules/@esbuild/linux-arm": {
165 | "version": "0.21.5",
166 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz",
167 | "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==",
168 | "cpu": [
169 | "arm"
170 | ],
171 | "dev": true,
172 | "license": "MIT",
173 | "optional": true,
174 | "os": [
175 | "linux"
176 | ],
177 | "engines": {
178 | "node": ">=12"
179 | }
180 | },
181 | "node_modules/@esbuild/linux-arm64": {
182 | "version": "0.21.5",
183 | "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz",
184 | "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==",
185 | "cpu": [
186 | "arm64"
187 | ],
188 | "dev": true,
189 | "license": "MIT",
190 | "optional": true,
191 | "os": [
192 | "linux"
193 | ],
194 | "engines": {
195 | "node": ">=12"
196 | }
197 | },
198 | "node_modules/@esbuild/linux-ia32": {
199 | "version": "0.21.5",
200 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz",
201 | "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==",
202 | "cpu": [
203 | "ia32"
204 | ],
205 | "dev": true,
206 | "license": "MIT",
207 | "optional": true,
208 | "os": [
209 | "linux"
210 | ],
211 | "engines": {
212 | "node": ">=12"
213 | }
214 | },
215 | "node_modules/@esbuild/linux-loong64": {
216 | "version": "0.21.5",
217 | "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz",
218 | "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==",
219 | "cpu": [
220 | "loong64"
221 | ],
222 | "dev": true,
223 | "license": "MIT",
224 | "optional": true,
225 | "os": [
226 | "linux"
227 | ],
228 | "engines": {
229 | "node": ">=12"
230 | }
231 | },
232 | "node_modules/@esbuild/linux-mips64el": {
233 | "version": "0.21.5",
234 | "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz",
235 | "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==",
236 | "cpu": [
237 | "mips64el"
238 | ],
239 | "dev": true,
240 | "license": "MIT",
241 | "optional": true,
242 | "os": [
243 | "linux"
244 | ],
245 | "engines": {
246 | "node": ">=12"
247 | }
248 | },
249 | "node_modules/@esbuild/linux-ppc64": {
250 | "version": "0.21.5",
251 | "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz",
252 | "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==",
253 | "cpu": [
254 | "ppc64"
255 | ],
256 | "dev": true,
257 | "license": "MIT",
258 | "optional": true,
259 | "os": [
260 | "linux"
261 | ],
262 | "engines": {
263 | "node": ">=12"
264 | }
265 | },
266 | "node_modules/@esbuild/linux-riscv64": {
267 | "version": "0.21.5",
268 | "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz",
269 | "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==",
270 | "cpu": [
271 | "riscv64"
272 | ],
273 | "dev": true,
274 | "license": "MIT",
275 | "optional": true,
276 | "os": [
277 | "linux"
278 | ],
279 | "engines": {
280 | "node": ">=12"
281 | }
282 | },
283 | "node_modules/@esbuild/linux-s390x": {
284 | "version": "0.21.5",
285 | "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz",
286 | "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==",
287 | "cpu": [
288 | "s390x"
289 | ],
290 | "dev": true,
291 | "license": "MIT",
292 | "optional": true,
293 | "os": [
294 | "linux"
295 | ],
296 | "engines": {
297 | "node": ">=12"
298 | }
299 | },
300 | "node_modules/@esbuild/linux-x64": {
301 | "version": "0.21.5",
302 | "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz",
303 | "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==",
304 | "cpu": [
305 | "x64"
306 | ],
307 | "dev": true,
308 | "license": "MIT",
309 | "optional": true,
310 | "os": [
311 | "linux"
312 | ],
313 | "engines": {
314 | "node": ">=12"
315 | }
316 | },
317 | "node_modules/@esbuild/netbsd-x64": {
318 | "version": "0.21.5",
319 | "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz",
320 | "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==",
321 | "cpu": [
322 | "x64"
323 | ],
324 | "dev": true,
325 | "license": "MIT",
326 | "optional": true,
327 | "os": [
328 | "netbsd"
329 | ],
330 | "engines": {
331 | "node": ">=12"
332 | }
333 | },
334 | "node_modules/@esbuild/openbsd-x64": {
335 | "version": "0.21.5",
336 | "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz",
337 | "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==",
338 | "cpu": [
339 | "x64"
340 | ],
341 | "dev": true,
342 | "license": "MIT",
343 | "optional": true,
344 | "os": [
345 | "openbsd"
346 | ],
347 | "engines": {
348 | "node": ">=12"
349 | }
350 | },
351 | "node_modules/@esbuild/sunos-x64": {
352 | "version": "0.21.5",
353 | "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz",
354 | "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==",
355 | "cpu": [
356 | "x64"
357 | ],
358 | "dev": true,
359 | "license": "MIT",
360 | "optional": true,
361 | "os": [
362 | "sunos"
363 | ],
364 | "engines": {
365 | "node": ">=12"
366 | }
367 | },
368 | "node_modules/@esbuild/win32-arm64": {
369 | "version": "0.21.5",
370 | "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz",
371 | "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==",
372 | "cpu": [
373 | "arm64"
374 | ],
375 | "dev": true,
376 | "license": "MIT",
377 | "optional": true,
378 | "os": [
379 | "win32"
380 | ],
381 | "engines": {
382 | "node": ">=12"
383 | }
384 | },
385 | "node_modules/@esbuild/win32-ia32": {
386 | "version": "0.21.5",
387 | "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz",
388 | "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==",
389 | "cpu": [
390 | "ia32"
391 | ],
392 | "dev": true,
393 | "license": "MIT",
394 | "optional": true,
395 | "os": [
396 | "win32"
397 | ],
398 | "engines": {
399 | "node": ">=12"
400 | }
401 | },
402 | "node_modules/@esbuild/win32-x64": {
403 | "version": "0.21.5",
404 | "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz",
405 | "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==",
406 | "cpu": [
407 | "x64"
408 | ],
409 | "dev": true,
410 | "license": "MIT",
411 | "optional": true,
412 | "os": [
413 | "win32"
414 | ],
415 | "engines": {
416 | "node": ">=12"
417 | }
418 | },
419 | "node_modules/@eslint-community/eslint-utils": {
420 | "version": "4.4.0",
421 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
422 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
423 | "dev": true,
424 | "license": "MIT",
425 | "dependencies": {
426 | "eslint-visitor-keys": "^3.3.0"
427 | },
428 | "engines": {
429 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
430 | },
431 | "peerDependencies": {
432 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
433 | }
434 | },
435 | "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
436 | "version": "3.4.3",
437 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
438 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
439 | "dev": true,
440 | "license": "Apache-2.0",
441 | "engines": {
442 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
443 | },
444 | "funding": {
445 | "url": "https://opencollective.com/eslint"
446 | }
447 | },
448 | "node_modules/@eslint-community/regexpp": {
449 | "version": "4.11.0",
450 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz",
451 | "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==",
452 | "dev": true,
453 | "license": "MIT",
454 | "engines": {
455 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
456 | }
457 | },
458 | "node_modules/@eslint/config-array": {
459 | "version": "0.17.1",
460 | "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.17.1.tgz",
461 | "integrity": "sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA==",
462 | "dev": true,
463 | "license": "Apache-2.0",
464 | "dependencies": {
465 | "@eslint/object-schema": "^2.1.4",
466 | "debug": "^4.3.1",
467 | "minimatch": "^3.1.2"
468 | },
469 | "engines": {
470 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
471 | }
472 | },
473 | "node_modules/@eslint/eslintrc": {
474 | "version": "3.1.0",
475 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz",
476 | "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==",
477 | "dev": true,
478 | "license": "MIT",
479 | "dependencies": {
480 | "ajv": "^6.12.4",
481 | "debug": "^4.3.2",
482 | "espree": "^10.0.1",
483 | "globals": "^14.0.0",
484 | "ignore": "^5.2.0",
485 | "import-fresh": "^3.2.1",
486 | "js-yaml": "^4.1.0",
487 | "minimatch": "^3.1.2",
488 | "strip-json-comments": "^3.1.1"
489 | },
490 | "engines": {
491 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
492 | },
493 | "funding": {
494 | "url": "https://opencollective.com/eslint"
495 | }
496 | },
497 | "node_modules/@eslint/eslintrc/node_modules/globals": {
498 | "version": "14.0.0",
499 | "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
500 | "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
501 | "dev": true,
502 | "license": "MIT",
503 | "engines": {
504 | "node": ">=18"
505 | },
506 | "funding": {
507 | "url": "https://github.com/sponsors/sindresorhus"
508 | }
509 | },
510 | "node_modules/@eslint/js": {
511 | "version": "9.9.0",
512 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.9.0.tgz",
513 | "integrity": "sha512-hhetes6ZHP3BlXLxmd8K2SNgkhNSi+UcecbnwWKwpP7kyi/uC75DJ1lOOBO3xrC4jyojtGE3YxKZPHfk4yrgug==",
514 | "dev": true,
515 | "license": "MIT",
516 | "engines": {
517 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
518 | }
519 | },
520 | "node_modules/@eslint/object-schema": {
521 | "version": "2.1.4",
522 | "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz",
523 | "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==",
524 | "dev": true,
525 | "license": "Apache-2.0",
526 | "engines": {
527 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
528 | }
529 | },
530 | "node_modules/@humanwhocodes/module-importer": {
531 | "version": "1.0.1",
532 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
533 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
534 | "dev": true,
535 | "license": "Apache-2.0",
536 | "engines": {
537 | "node": ">=12.22"
538 | },
539 | "funding": {
540 | "type": "github",
541 | "url": "https://github.com/sponsors/nzakas"
542 | }
543 | },
544 | "node_modules/@humanwhocodes/retry": {
545 | "version": "0.3.0",
546 | "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.0.tgz",
547 | "integrity": "sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew==",
548 | "dev": true,
549 | "license": "Apache-2.0",
550 | "engines": {
551 | "node": ">=18.18"
552 | },
553 | "funding": {
554 | "type": "github",
555 | "url": "https://github.com/sponsors/nzakas"
556 | }
557 | },
558 | "node_modules/@nodelib/fs.scandir": {
559 | "version": "2.1.5",
560 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
561 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
562 | "dev": true,
563 | "license": "MIT",
564 | "dependencies": {
565 | "@nodelib/fs.stat": "2.0.5",
566 | "run-parallel": "^1.1.9"
567 | },
568 | "engines": {
569 | "node": ">= 8"
570 | }
571 | },
572 | "node_modules/@nodelib/fs.stat": {
573 | "version": "2.0.5",
574 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
575 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
576 | "dev": true,
577 | "license": "MIT",
578 | "engines": {
579 | "node": ">= 8"
580 | }
581 | },
582 | "node_modules/@nodelib/fs.walk": {
583 | "version": "1.2.8",
584 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
585 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
586 | "dev": true,
587 | "license": "MIT",
588 | "dependencies": {
589 | "@nodelib/fs.scandir": "2.1.5",
590 | "fastq": "^1.6.0"
591 | },
592 | "engines": {
593 | "node": ">= 8"
594 | }
595 | },
596 | "node_modules/@rollup/rollup-android-arm-eabi": {
597 | "version": "4.20.0",
598 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.20.0.tgz",
599 | "integrity": "sha512-TSpWzflCc4VGAUJZlPpgAJE1+V60MePDQnBd7PPkpuEmOy8i87aL6tinFGKBFKuEDikYpig72QzdT3QPYIi+oA==",
600 | "cpu": [
601 | "arm"
602 | ],
603 | "dev": true,
604 | "license": "MIT",
605 | "optional": true,
606 | "os": [
607 | "android"
608 | ]
609 | },
610 | "node_modules/@rollup/rollup-android-arm64": {
611 | "version": "4.20.0",
612 | "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.20.0.tgz",
613 | "integrity": "sha512-u00Ro/nok7oGzVuh/FMYfNoGqxU5CPWz1mxV85S2w9LxHR8OoMQBuSk+3BKVIDYgkpeOET5yXkx90OYFc+ytpQ==",
614 | "cpu": [
615 | "arm64"
616 | ],
617 | "dev": true,
618 | "license": "MIT",
619 | "optional": true,
620 | "os": [
621 | "android"
622 | ]
623 | },
624 | "node_modules/@rollup/rollup-darwin-arm64": {
625 | "version": "4.20.0",
626 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.20.0.tgz",
627 | "integrity": "sha512-uFVfvzvsdGtlSLuL0ZlvPJvl6ZmrH4CBwLGEFPe7hUmf7htGAN+aXo43R/V6LATyxlKVC/m6UsLb7jbG+LG39Q==",
628 | "cpu": [
629 | "arm64"
630 | ],
631 | "dev": true,
632 | "license": "MIT",
633 | "optional": true,
634 | "os": [
635 | "darwin"
636 | ]
637 | },
638 | "node_modules/@rollup/rollup-darwin-x64": {
639 | "version": "4.20.0",
640 | "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.20.0.tgz",
641 | "integrity": "sha512-xbrMDdlev53vNXexEa6l0LffojxhqDTBeL+VUxuuIXys4x6xyvbKq5XqTXBCEUA8ty8iEJblHvFaWRJTk/icAQ==",
642 | "cpu": [
643 | "x64"
644 | ],
645 | "dev": true,
646 | "license": "MIT",
647 | "optional": true,
648 | "os": [
649 | "darwin"
650 | ]
651 | },
652 | "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
653 | "version": "4.20.0",
654 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.20.0.tgz",
655 | "integrity": "sha512-jMYvxZwGmoHFBTbr12Xc6wOdc2xA5tF5F2q6t7Rcfab68TT0n+r7dgawD4qhPEvasDsVpQi+MgDzj2faOLsZjA==",
656 | "cpu": [
657 | "arm"
658 | ],
659 | "dev": true,
660 | "license": "MIT",
661 | "optional": true,
662 | "os": [
663 | "linux"
664 | ]
665 | },
666 | "node_modules/@rollup/rollup-linux-arm-musleabihf": {
667 | "version": "4.20.0",
668 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.20.0.tgz",
669 | "integrity": "sha512-1asSTl4HKuIHIB1GcdFHNNZhxAYEdqML/MW4QmPS4G0ivbEcBr1JKlFLKsIRqjSwOBkdItn3/ZDlyvZ/N6KPlw==",
670 | "cpu": [
671 | "arm"
672 | ],
673 | "dev": true,
674 | "license": "MIT",
675 | "optional": true,
676 | "os": [
677 | "linux"
678 | ]
679 | },
680 | "node_modules/@rollup/rollup-linux-arm64-gnu": {
681 | "version": "4.20.0",
682 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.20.0.tgz",
683 | "integrity": "sha512-COBb8Bkx56KldOYJfMf6wKeYJrtJ9vEgBRAOkfw6Ens0tnmzPqvlpjZiLgkhg6cA3DGzCmLmmd319pmHvKWWlQ==",
684 | "cpu": [
685 | "arm64"
686 | ],
687 | "dev": true,
688 | "license": "MIT",
689 | "optional": true,
690 | "os": [
691 | "linux"
692 | ]
693 | },
694 | "node_modules/@rollup/rollup-linux-arm64-musl": {
695 | "version": "4.20.0",
696 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.20.0.tgz",
697 | "integrity": "sha512-+it+mBSyMslVQa8wSPvBx53fYuZK/oLTu5RJoXogjk6x7Q7sz1GNRsXWjn6SwyJm8E/oMjNVwPhmNdIjwP135Q==",
698 | "cpu": [
699 | "arm64"
700 | ],
701 | "dev": true,
702 | "license": "MIT",
703 | "optional": true,
704 | "os": [
705 | "linux"
706 | ]
707 | },
708 | "node_modules/@rollup/rollup-linux-powerpc64le-gnu": {
709 | "version": "4.20.0",
710 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.20.0.tgz",
711 | "integrity": "sha512-yAMvqhPfGKsAxHN8I4+jE0CpLWD8cv4z7CK7BMmhjDuz606Q2tFKkWRY8bHR9JQXYcoLfopo5TTqzxgPUjUMfw==",
712 | "cpu": [
713 | "ppc64"
714 | ],
715 | "dev": true,
716 | "license": "MIT",
717 | "optional": true,
718 | "os": [
719 | "linux"
720 | ]
721 | },
722 | "node_modules/@rollup/rollup-linux-riscv64-gnu": {
723 | "version": "4.20.0",
724 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.20.0.tgz",
725 | "integrity": "sha512-qmuxFpfmi/2SUkAw95TtNq/w/I7Gpjurx609OOOV7U4vhvUhBcftcmXwl3rqAek+ADBwSjIC4IVNLiszoj3dPA==",
726 | "cpu": [
727 | "riscv64"
728 | ],
729 | "dev": true,
730 | "license": "MIT",
731 | "optional": true,
732 | "os": [
733 | "linux"
734 | ]
735 | },
736 | "node_modules/@rollup/rollup-linux-s390x-gnu": {
737 | "version": "4.20.0",
738 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.20.0.tgz",
739 | "integrity": "sha512-I0BtGXddHSHjV1mqTNkgUZLnS3WtsqebAXv11D5BZE/gfw5KoyXSAXVqyJximQXNvNzUo4GKlCK/dIwXlz+jlg==",
740 | "cpu": [
741 | "s390x"
742 | ],
743 | "dev": true,
744 | "license": "MIT",
745 | "optional": true,
746 | "os": [
747 | "linux"
748 | ]
749 | },
750 | "node_modules/@rollup/rollup-linux-x64-gnu": {
751 | "version": "4.20.0",
752 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.20.0.tgz",
753 | "integrity": "sha512-y+eoL2I3iphUg9tN9GB6ku1FA8kOfmF4oUEWhztDJ4KXJy1agk/9+pejOuZkNFhRwHAOxMsBPLbXPd6mJiCwew==",
754 | "cpu": [
755 | "x64"
756 | ],
757 | "dev": true,
758 | "license": "MIT",
759 | "optional": true,
760 | "os": [
761 | "linux"
762 | ]
763 | },
764 | "node_modules/@rollup/rollup-linux-x64-musl": {
765 | "version": "4.20.0",
766 | "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.20.0.tgz",
767 | "integrity": "sha512-hM3nhW40kBNYUkZb/r9k2FKK+/MnKglX7UYd4ZUy5DJs8/sMsIbqWK2piZtVGE3kcXVNj3B2IrUYROJMMCikNg==",
768 | "cpu": [
769 | "x64"
770 | ],
771 | "dev": true,
772 | "license": "MIT",
773 | "optional": true,
774 | "os": [
775 | "linux"
776 | ]
777 | },
778 | "node_modules/@rollup/rollup-win32-arm64-msvc": {
779 | "version": "4.20.0",
780 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.20.0.tgz",
781 | "integrity": "sha512-psegMvP+Ik/Bg7QRJbv8w8PAytPA7Uo8fpFjXyCRHWm6Nt42L+JtoqH8eDQ5hRP7/XW2UiIriy1Z46jf0Oa1kA==",
782 | "cpu": [
783 | "arm64"
784 | ],
785 | "dev": true,
786 | "license": "MIT",
787 | "optional": true,
788 | "os": [
789 | "win32"
790 | ]
791 | },
792 | "node_modules/@rollup/rollup-win32-ia32-msvc": {
793 | "version": "4.20.0",
794 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.20.0.tgz",
795 | "integrity": "sha512-GabekH3w4lgAJpVxkk7hUzUf2hICSQO0a/BLFA11/RMxQT92MabKAqyubzDZmMOC/hcJNlc+rrypzNzYl4Dx7A==",
796 | "cpu": [
797 | "ia32"
798 | ],
799 | "dev": true,
800 | "license": "MIT",
801 | "optional": true,
802 | "os": [
803 | "win32"
804 | ]
805 | },
806 | "node_modules/@rollup/rollup-win32-x64-msvc": {
807 | "version": "4.20.0",
808 | "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.20.0.tgz",
809 | "integrity": "sha512-aJ1EJSuTdGnM6qbVC4B5DSmozPTqIag9fSzXRNNo+humQLG89XpPgdt16Ia56ORD7s+H8Pmyx44uczDQ0yDzpg==",
810 | "cpu": [
811 | "x64"
812 | ],
813 | "dev": true,
814 | "license": "MIT",
815 | "optional": true,
816 | "os": [
817 | "win32"
818 | ]
819 | },
820 | "node_modules/@swc/core": {
821 | "version": "1.7.11",
822 | "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.7.11.tgz",
823 | "integrity": "sha512-AB+qc45UrJrDfbhPKcUXk+9z/NmFfYYwJT6G7/iur0fCse9kXjx45gi40+u/O2zgarG/30/zV6E3ps8fUvjh7g==",
824 | "dev": true,
825 | "hasInstallScript": true,
826 | "license": "Apache-2.0",
827 | "dependencies": {
828 | "@swc/counter": "^0.1.3",
829 | "@swc/types": "^0.1.12"
830 | },
831 | "engines": {
832 | "node": ">=10"
833 | },
834 | "funding": {
835 | "type": "opencollective",
836 | "url": "https://opencollective.com/swc"
837 | },
838 | "optionalDependencies": {
839 | "@swc/core-darwin-arm64": "1.7.11",
840 | "@swc/core-darwin-x64": "1.7.11",
841 | "@swc/core-linux-arm-gnueabihf": "1.7.11",
842 | "@swc/core-linux-arm64-gnu": "1.7.11",
843 | "@swc/core-linux-arm64-musl": "1.7.11",
844 | "@swc/core-linux-x64-gnu": "1.7.11",
845 | "@swc/core-linux-x64-musl": "1.7.11",
846 | "@swc/core-win32-arm64-msvc": "1.7.11",
847 | "@swc/core-win32-ia32-msvc": "1.7.11",
848 | "@swc/core-win32-x64-msvc": "1.7.11"
849 | },
850 | "peerDependencies": {
851 | "@swc/helpers": "*"
852 | },
853 | "peerDependenciesMeta": {
854 | "@swc/helpers": {
855 | "optional": true
856 | }
857 | }
858 | },
859 | "node_modules/@swc/core-darwin-arm64": {
860 | "version": "1.7.11",
861 | "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.7.11.tgz",
862 | "integrity": "sha512-HRQv4qIeMBPThZ6Y/4yYW52rGsS6yrpusvuxLGyoFo45Y0y12/V2yXkOIA/0HIQyrqoUAxn1k4zQXpPaPNCmnw==",
863 | "cpu": [
864 | "arm64"
865 | ],
866 | "dev": true,
867 | "license": "Apache-2.0 AND MIT",
868 | "optional": true,
869 | "os": [
870 | "darwin"
871 | ],
872 | "engines": {
873 | "node": ">=10"
874 | }
875 | },
876 | "node_modules/@swc/core-darwin-x64": {
877 | "version": "1.7.11",
878 | "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.7.11.tgz",
879 | "integrity": "sha512-vtMQj0F3oYwDu5yhO7SKDRg1XekRSi6/TbzHAbBXv+dBhlGGvcZZynT1H90EVFTv+7w7Sh+lOFvRv5Z4ZTcxow==",
880 | "cpu": [
881 | "x64"
882 | ],
883 | "dev": true,
884 | "license": "Apache-2.0 AND MIT",
885 | "optional": true,
886 | "os": [
887 | "darwin"
888 | ],
889 | "engines": {
890 | "node": ">=10"
891 | }
892 | },
893 | "node_modules/@swc/core-linux-arm-gnueabihf": {
894 | "version": "1.7.11",
895 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.7.11.tgz",
896 | "integrity": "sha512-mHtzWKxhtyreI4CSxs+3+ENv8t/Qo35WFoYG66qHEgJz/Z2Lh6jv1E+MYgHdYwnpQHgHbdvAco7HsBu/Dt6xXw==",
897 | "cpu": [
898 | "arm"
899 | ],
900 | "dev": true,
901 | "license": "Apache-2.0",
902 | "optional": true,
903 | "os": [
904 | "linux"
905 | ],
906 | "engines": {
907 | "node": ">=10"
908 | }
909 | },
910 | "node_modules/@swc/core-linux-arm64-gnu": {
911 | "version": "1.7.11",
912 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.7.11.tgz",
913 | "integrity": "sha512-FRwe/x0GfXSQjGP2lIk+NO0pUFS/lI/RorCLBPiK808EVE9JTbh9DKCc/4Bbb4jgScAjNkrFCUVObQYl3YKmpA==",
914 | "cpu": [
915 | "arm64"
916 | ],
917 | "dev": true,
918 | "license": "Apache-2.0 AND MIT",
919 | "optional": true,
920 | "os": [
921 | "linux"
922 | ],
923 | "engines": {
924 | "node": ">=10"
925 | }
926 | },
927 | "node_modules/@swc/core-linux-arm64-musl": {
928 | "version": "1.7.11",
929 | "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.7.11.tgz",
930 | "integrity": "sha512-GY/rs0+GUq14Gbnza90KOrQd/9yHd5qQMii5jcSWcUCT5A8QTa8kiicsM2NxZeTJ69xlKmT7sLod5l99lki/2A==",
931 | "cpu": [
932 | "arm64"
933 | ],
934 | "dev": true,
935 | "license": "Apache-2.0 AND MIT",
936 | "optional": true,
937 | "os": [
938 | "linux"
939 | ],
940 | "engines": {
941 | "node": ">=10"
942 | }
943 | },
944 | "node_modules/@swc/core-linux-x64-gnu": {
945 | "version": "1.7.11",
946 | "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.7.11.tgz",
947 | "integrity": "sha512-QDkGRwSPmp2RBOlSs503IUXlWYlny8DyznTT0QuK0ML2RpDFlXWU94K/EZhS0RBEUkMY/W51OacM8P8aS/dkCg==",
948 | "cpu": [
949 | "x64"
950 | ],
951 | "dev": true,
952 | "license": "Apache-2.0 AND MIT",
953 | "optional": true,
954 | "os": [
955 | "linux"
956 | ],
957 | "engines": {
958 | "node": ">=10"
959 | }
960 | },
961 | "node_modules/@swc/core-linux-x64-musl": {
962 | "version": "1.7.11",
963 | "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.7.11.tgz",
964 | "integrity": "sha512-SBEfKrXy6zQ6ksnyxw1FaCftrIH4fLfA81xNnKb7x/6iblv7Ko6H0aK3P5C86jyqF/82+ONl9C7ImGkUFQADig==",
965 | "cpu": [
966 | "x64"
967 | ],
968 | "dev": true,
969 | "license": "Apache-2.0 AND MIT",
970 | "optional": true,
971 | "os": [
972 | "linux"
973 | ],
974 | "engines": {
975 | "node": ">=10"
976 | }
977 | },
978 | "node_modules/@swc/core-win32-arm64-msvc": {
979 | "version": "1.7.11",
980 | "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.7.11.tgz",
981 | "integrity": "sha512-a2Y4xxEsLLYHJN7sMnw9+YQJDi3M1BxEr9hklfopPuGGnYLFNnx5CypH1l9ReijEfWjIAHNi7pq3m023lzW1Hg==",
982 | "cpu": [
983 | "arm64"
984 | ],
985 | "dev": true,
986 | "license": "Apache-2.0 AND MIT",
987 | "optional": true,
988 | "os": [
989 | "win32"
990 | ],
991 | "engines": {
992 | "node": ">=10"
993 | }
994 | },
995 | "node_modules/@swc/core-win32-ia32-msvc": {
996 | "version": "1.7.11",
997 | "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.7.11.tgz",
998 | "integrity": "sha512-ZbZFMwZO+j8ulhegJ7EhJ/QVZPoQ5qc30ylJQSxizizTJaen71Q7/13lXWc6ksuCKvg6dUKrp/TPgoxOOtSrFA==",
999 | "cpu": [
1000 | "ia32"
1001 | ],
1002 | "dev": true,
1003 | "license": "Apache-2.0 AND MIT",
1004 | "optional": true,
1005 | "os": [
1006 | "win32"
1007 | ],
1008 | "engines": {
1009 | "node": ">=10"
1010 | }
1011 | },
1012 | "node_modules/@swc/core-win32-x64-msvc": {
1013 | "version": "1.7.11",
1014 | "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.7.11.tgz",
1015 | "integrity": "sha512-IUohZedSJyDu/ReEBG/mqX6uG29uA7zZ9z6dIAF+p6eFxjXmh9MuHryyM+H8ebUyoq/Ad3rL+rUCksnuYNnI0w==",
1016 | "cpu": [
1017 | "x64"
1018 | ],
1019 | "dev": true,
1020 | "license": "Apache-2.0 AND MIT",
1021 | "optional": true,
1022 | "os": [
1023 | "win32"
1024 | ],
1025 | "engines": {
1026 | "node": ">=10"
1027 | }
1028 | },
1029 | "node_modules/@swc/counter": {
1030 | "version": "0.1.3",
1031 | "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz",
1032 | "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==",
1033 | "dev": true,
1034 | "license": "Apache-2.0"
1035 | },
1036 | "node_modules/@swc/types": {
1037 | "version": "0.1.12",
1038 | "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.12.tgz",
1039 | "integrity": "sha512-wBJA+SdtkbFhHjTMYH+dEH1y4VpfGdAc2Kw/LK09i9bXd/K6j6PkDcFCEzb6iVfZMkPRrl/q0e3toqTAJdkIVA==",
1040 | "dev": true,
1041 | "license": "Apache-2.0",
1042 | "dependencies": {
1043 | "@swc/counter": "^0.1.3"
1044 | }
1045 | },
1046 | "node_modules/@types/estree": {
1047 | "version": "1.0.5",
1048 | "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz",
1049 | "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==",
1050 | "dev": true,
1051 | "license": "MIT"
1052 | },
1053 | "node_modules/@types/prop-types": {
1054 | "version": "15.7.12",
1055 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.12.tgz",
1056 | "integrity": "sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==",
1057 | "dev": true,
1058 | "license": "MIT"
1059 | },
1060 | "node_modules/@types/react": {
1061 | "version": "18.3.3",
1062 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.3.tgz",
1063 | "integrity": "sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==",
1064 | "dev": true,
1065 | "license": "MIT",
1066 | "dependencies": {
1067 | "@types/prop-types": "*",
1068 | "csstype": "^3.0.2"
1069 | }
1070 | },
1071 | "node_modules/@types/react-dom": {
1072 | "version": "18.3.0",
1073 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.0.tgz",
1074 | "integrity": "sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==",
1075 | "dev": true,
1076 | "license": "MIT",
1077 | "dependencies": {
1078 | "@types/react": "*"
1079 | }
1080 | },
1081 | "node_modules/@typescript-eslint/eslint-plugin": {
1082 | "version": "8.1.0",
1083 | "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.1.0.tgz",
1084 | "integrity": "sha512-LlNBaHFCEBPHyD4pZXb35mzjGkuGKXU5eeCA1SxvHfiRES0E82dOounfVpL4DCqYvJEKab0bZIA0gCRpdLKkCw==",
1085 | "dev": true,
1086 | "license": "MIT",
1087 | "dependencies": {
1088 | "@eslint-community/regexpp": "^4.10.0",
1089 | "@typescript-eslint/scope-manager": "8.1.0",
1090 | "@typescript-eslint/type-utils": "8.1.0",
1091 | "@typescript-eslint/utils": "8.1.0",
1092 | "@typescript-eslint/visitor-keys": "8.1.0",
1093 | "graphemer": "^1.4.0",
1094 | "ignore": "^5.3.1",
1095 | "natural-compare": "^1.4.0",
1096 | "ts-api-utils": "^1.3.0"
1097 | },
1098 | "engines": {
1099 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1100 | },
1101 | "funding": {
1102 | "type": "opencollective",
1103 | "url": "https://opencollective.com/typescript-eslint"
1104 | },
1105 | "peerDependencies": {
1106 | "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0",
1107 | "eslint": "^8.57.0 || ^9.0.0"
1108 | },
1109 | "peerDependenciesMeta": {
1110 | "typescript": {
1111 | "optional": true
1112 | }
1113 | }
1114 | },
1115 | "node_modules/@typescript-eslint/parser": {
1116 | "version": "8.1.0",
1117 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.1.0.tgz",
1118 | "integrity": "sha512-U7iTAtGgJk6DPX9wIWPPOlt1gO57097G06gIcl0N0EEnNw8RGD62c+2/DiP/zL7KrkqnnqF7gtFGR7YgzPllTA==",
1119 | "dev": true,
1120 | "license": "BSD-2-Clause",
1121 | "dependencies": {
1122 | "@typescript-eslint/scope-manager": "8.1.0",
1123 | "@typescript-eslint/types": "8.1.0",
1124 | "@typescript-eslint/typescript-estree": "8.1.0",
1125 | "@typescript-eslint/visitor-keys": "8.1.0",
1126 | "debug": "^4.3.4"
1127 | },
1128 | "engines": {
1129 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1130 | },
1131 | "funding": {
1132 | "type": "opencollective",
1133 | "url": "https://opencollective.com/typescript-eslint"
1134 | },
1135 | "peerDependencies": {
1136 | "eslint": "^8.57.0 || ^9.0.0"
1137 | },
1138 | "peerDependenciesMeta": {
1139 | "typescript": {
1140 | "optional": true
1141 | }
1142 | }
1143 | },
1144 | "node_modules/@typescript-eslint/scope-manager": {
1145 | "version": "8.1.0",
1146 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.1.0.tgz",
1147 | "integrity": "sha512-DsuOZQji687sQUjm4N6c9xABJa7fjvfIdjqpSIIVOgaENf2jFXiM9hIBZOL3hb6DHK9Nvd2d7zZnoMLf9e0OtQ==",
1148 | "dev": true,
1149 | "license": "MIT",
1150 | "dependencies": {
1151 | "@typescript-eslint/types": "8.1.0",
1152 | "@typescript-eslint/visitor-keys": "8.1.0"
1153 | },
1154 | "engines": {
1155 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1156 | },
1157 | "funding": {
1158 | "type": "opencollective",
1159 | "url": "https://opencollective.com/typescript-eslint"
1160 | }
1161 | },
1162 | "node_modules/@typescript-eslint/type-utils": {
1163 | "version": "8.1.0",
1164 | "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.1.0.tgz",
1165 | "integrity": "sha512-oLYvTxljVvsMnldfl6jIKxTaU7ok7km0KDrwOt1RHYu6nxlhN3TIx8k5Q52L6wR33nOwDgM7VwW1fT1qMNfFIA==",
1166 | "dev": true,
1167 | "license": "MIT",
1168 | "dependencies": {
1169 | "@typescript-eslint/typescript-estree": "8.1.0",
1170 | "@typescript-eslint/utils": "8.1.0",
1171 | "debug": "^4.3.4",
1172 | "ts-api-utils": "^1.3.0"
1173 | },
1174 | "engines": {
1175 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1176 | },
1177 | "funding": {
1178 | "type": "opencollective",
1179 | "url": "https://opencollective.com/typescript-eslint"
1180 | },
1181 | "peerDependenciesMeta": {
1182 | "typescript": {
1183 | "optional": true
1184 | }
1185 | }
1186 | },
1187 | "node_modules/@typescript-eslint/types": {
1188 | "version": "8.1.0",
1189 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.1.0.tgz",
1190 | "integrity": "sha512-q2/Bxa0gMOu/2/AKALI0tCKbG2zppccnRIRCW6BaaTlRVaPKft4oVYPp7WOPpcnsgbr0qROAVCVKCvIQ0tbWog==",
1191 | "dev": true,
1192 | "license": "MIT",
1193 | "engines": {
1194 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1195 | },
1196 | "funding": {
1197 | "type": "opencollective",
1198 | "url": "https://opencollective.com/typescript-eslint"
1199 | }
1200 | },
1201 | "node_modules/@typescript-eslint/typescript-estree": {
1202 | "version": "8.1.0",
1203 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.1.0.tgz",
1204 | "integrity": "sha512-NTHhmufocEkMiAord/g++gWKb0Fr34e9AExBRdqgWdVBaKoei2dIyYKD9Q0jBnvfbEA5zaf8plUFMUH6kQ0vGg==",
1205 | "dev": true,
1206 | "license": "BSD-2-Clause",
1207 | "dependencies": {
1208 | "@typescript-eslint/types": "8.1.0",
1209 | "@typescript-eslint/visitor-keys": "8.1.0",
1210 | "debug": "^4.3.4",
1211 | "globby": "^11.1.0",
1212 | "is-glob": "^4.0.3",
1213 | "minimatch": "^9.0.4",
1214 | "semver": "^7.6.0",
1215 | "ts-api-utils": "^1.3.0"
1216 | },
1217 | "engines": {
1218 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1219 | },
1220 | "funding": {
1221 | "type": "opencollective",
1222 | "url": "https://opencollective.com/typescript-eslint"
1223 | },
1224 | "peerDependenciesMeta": {
1225 | "typescript": {
1226 | "optional": true
1227 | }
1228 | }
1229 | },
1230 | "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": {
1231 | "version": "2.0.1",
1232 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
1233 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
1234 | "dev": true,
1235 | "license": "MIT",
1236 | "dependencies": {
1237 | "balanced-match": "^1.0.0"
1238 | }
1239 | },
1240 | "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": {
1241 | "version": "9.0.5",
1242 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz",
1243 | "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==",
1244 | "dev": true,
1245 | "license": "ISC",
1246 | "dependencies": {
1247 | "brace-expansion": "^2.0.1"
1248 | },
1249 | "engines": {
1250 | "node": ">=16 || 14 >=14.17"
1251 | },
1252 | "funding": {
1253 | "url": "https://github.com/sponsors/isaacs"
1254 | }
1255 | },
1256 | "node_modules/@typescript-eslint/utils": {
1257 | "version": "8.1.0",
1258 | "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.1.0.tgz",
1259 | "integrity": "sha512-ypRueFNKTIFwqPeJBfeIpxZ895PQhNyH4YID6js0UoBImWYoSjBsahUn9KMiJXh94uOjVBgHD9AmkyPsPnFwJA==",
1260 | "dev": true,
1261 | "license": "MIT",
1262 | "dependencies": {
1263 | "@eslint-community/eslint-utils": "^4.4.0",
1264 | "@typescript-eslint/scope-manager": "8.1.0",
1265 | "@typescript-eslint/types": "8.1.0",
1266 | "@typescript-eslint/typescript-estree": "8.1.0"
1267 | },
1268 | "engines": {
1269 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1270 | },
1271 | "funding": {
1272 | "type": "opencollective",
1273 | "url": "https://opencollective.com/typescript-eslint"
1274 | },
1275 | "peerDependencies": {
1276 | "eslint": "^8.57.0 || ^9.0.0"
1277 | }
1278 | },
1279 | "node_modules/@typescript-eslint/visitor-keys": {
1280 | "version": "8.1.0",
1281 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.1.0.tgz",
1282 | "integrity": "sha512-ba0lNI19awqZ5ZNKh6wCModMwoZs457StTebQ0q1NP58zSi2F6MOZRXwfKZy+jB78JNJ/WH8GSh2IQNzXX8Nag==",
1283 | "dev": true,
1284 | "license": "MIT",
1285 | "dependencies": {
1286 | "@typescript-eslint/types": "8.1.0",
1287 | "eslint-visitor-keys": "^3.4.3"
1288 | },
1289 | "engines": {
1290 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1291 | },
1292 | "funding": {
1293 | "type": "opencollective",
1294 | "url": "https://opencollective.com/typescript-eslint"
1295 | }
1296 | },
1297 | "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": {
1298 | "version": "3.4.3",
1299 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
1300 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
1301 | "dev": true,
1302 | "license": "Apache-2.0",
1303 | "engines": {
1304 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1305 | },
1306 | "funding": {
1307 | "url": "https://opencollective.com/eslint"
1308 | }
1309 | },
1310 | "node_modules/@vitejs/plugin-react-swc": {
1311 | "version": "3.7.0",
1312 | "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.7.0.tgz",
1313 | "integrity": "sha512-yrknSb3Dci6svCd/qhHqhFPDSw0QtjumcqdKMoNNzmOl5lMXTTiqzjWtG4Qask2HdvvzaNgSunbQGet8/GrKdA==",
1314 | "dev": true,
1315 | "license": "MIT",
1316 | "dependencies": {
1317 | "@swc/core": "^1.5.7"
1318 | },
1319 | "peerDependencies": {
1320 | "vite": "^4 || ^5"
1321 | }
1322 | },
1323 | "node_modules/acorn": {
1324 | "version": "8.12.1",
1325 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz",
1326 | "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==",
1327 | "dev": true,
1328 | "license": "MIT",
1329 | "bin": {
1330 | "acorn": "bin/acorn"
1331 | },
1332 | "engines": {
1333 | "node": ">=0.4.0"
1334 | }
1335 | },
1336 | "node_modules/acorn-jsx": {
1337 | "version": "5.3.2",
1338 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1339 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1340 | "dev": true,
1341 | "license": "MIT",
1342 | "peerDependencies": {
1343 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1344 | }
1345 | },
1346 | "node_modules/ajv": {
1347 | "version": "6.12.6",
1348 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
1349 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
1350 | "dev": true,
1351 | "license": "MIT",
1352 | "dependencies": {
1353 | "fast-deep-equal": "^3.1.1",
1354 | "fast-json-stable-stringify": "^2.0.0",
1355 | "json-schema-traverse": "^0.4.1",
1356 | "uri-js": "^4.2.2"
1357 | },
1358 | "funding": {
1359 | "type": "github",
1360 | "url": "https://github.com/sponsors/epoberezkin"
1361 | }
1362 | },
1363 | "node_modules/ansi-regex": {
1364 | "version": "5.0.1",
1365 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1366 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1367 | "dev": true,
1368 | "license": "MIT",
1369 | "engines": {
1370 | "node": ">=8"
1371 | }
1372 | },
1373 | "node_modules/ansi-styles": {
1374 | "version": "4.3.0",
1375 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1376 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1377 | "dev": true,
1378 | "license": "MIT",
1379 | "dependencies": {
1380 | "color-convert": "^2.0.1"
1381 | },
1382 | "engines": {
1383 | "node": ">=8"
1384 | },
1385 | "funding": {
1386 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1387 | }
1388 | },
1389 | "node_modules/argparse": {
1390 | "version": "2.0.1",
1391 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
1392 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
1393 | "dev": true,
1394 | "license": "Python-2.0"
1395 | },
1396 | "node_modules/array-union": {
1397 | "version": "2.1.0",
1398 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
1399 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
1400 | "dev": true,
1401 | "license": "MIT",
1402 | "engines": {
1403 | "node": ">=8"
1404 | }
1405 | },
1406 | "node_modules/balanced-match": {
1407 | "version": "1.0.2",
1408 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
1409 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1410 | "dev": true,
1411 | "license": "MIT"
1412 | },
1413 | "node_modules/brace-expansion": {
1414 | "version": "1.1.11",
1415 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
1416 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
1417 | "dev": true,
1418 | "license": "MIT",
1419 | "dependencies": {
1420 | "balanced-match": "^1.0.0",
1421 | "concat-map": "0.0.1"
1422 | }
1423 | },
1424 | "node_modules/braces": {
1425 | "version": "3.0.3",
1426 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz",
1427 | "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==",
1428 | "dev": true,
1429 | "license": "MIT",
1430 | "dependencies": {
1431 | "fill-range": "^7.1.1"
1432 | },
1433 | "engines": {
1434 | "node": ">=8"
1435 | }
1436 | },
1437 | "node_modules/callsites": {
1438 | "version": "3.1.0",
1439 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
1440 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
1441 | "dev": true,
1442 | "license": "MIT",
1443 | "engines": {
1444 | "node": ">=6"
1445 | }
1446 | },
1447 | "node_modules/chalk": {
1448 | "version": "4.1.2",
1449 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
1450 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1451 | "dev": true,
1452 | "license": "MIT",
1453 | "dependencies": {
1454 | "ansi-styles": "^4.1.0",
1455 | "supports-color": "^7.1.0"
1456 | },
1457 | "engines": {
1458 | "node": ">=10"
1459 | },
1460 | "funding": {
1461 | "url": "https://github.com/chalk/chalk?sponsor=1"
1462 | }
1463 | },
1464 | "node_modules/color-convert": {
1465 | "version": "2.0.1",
1466 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1467 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1468 | "dev": true,
1469 | "license": "MIT",
1470 | "dependencies": {
1471 | "color-name": "~1.1.4"
1472 | },
1473 | "engines": {
1474 | "node": ">=7.0.0"
1475 | }
1476 | },
1477 | "node_modules/color-name": {
1478 | "version": "1.1.4",
1479 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1480 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1481 | "dev": true,
1482 | "license": "MIT"
1483 | },
1484 | "node_modules/concat-map": {
1485 | "version": "0.0.1",
1486 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1487 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1488 | "dev": true,
1489 | "license": "MIT"
1490 | },
1491 | "node_modules/cross-spawn": {
1492 | "version": "7.0.3",
1493 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
1494 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
1495 | "dev": true,
1496 | "license": "MIT",
1497 | "dependencies": {
1498 | "path-key": "^3.1.0",
1499 | "shebang-command": "^2.0.0",
1500 | "which": "^2.0.1"
1501 | },
1502 | "engines": {
1503 | "node": ">= 8"
1504 | }
1505 | },
1506 | "node_modules/csstype": {
1507 | "version": "3.1.3",
1508 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
1509 | "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
1510 | "dev": true,
1511 | "license": "MIT"
1512 | },
1513 | "node_modules/debug": {
1514 | "version": "4.3.6",
1515 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz",
1516 | "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==",
1517 | "dev": true,
1518 | "license": "MIT",
1519 | "dependencies": {
1520 | "ms": "2.1.2"
1521 | },
1522 | "engines": {
1523 | "node": ">=6.0"
1524 | },
1525 | "peerDependenciesMeta": {
1526 | "supports-color": {
1527 | "optional": true
1528 | }
1529 | }
1530 | },
1531 | "node_modules/deep-is": {
1532 | "version": "0.1.4",
1533 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1534 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
1535 | "dev": true,
1536 | "license": "MIT"
1537 | },
1538 | "node_modules/dir-glob": {
1539 | "version": "3.0.1",
1540 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
1541 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
1542 | "dev": true,
1543 | "license": "MIT",
1544 | "dependencies": {
1545 | "path-type": "^4.0.0"
1546 | },
1547 | "engines": {
1548 | "node": ">=8"
1549 | }
1550 | },
1551 | "node_modules/esbuild": {
1552 | "version": "0.21.5",
1553 | "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz",
1554 | "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==",
1555 | "dev": true,
1556 | "hasInstallScript": true,
1557 | "license": "MIT",
1558 | "bin": {
1559 | "esbuild": "bin/esbuild"
1560 | },
1561 | "engines": {
1562 | "node": ">=12"
1563 | },
1564 | "optionalDependencies": {
1565 | "@esbuild/aix-ppc64": "0.21.5",
1566 | "@esbuild/android-arm": "0.21.5",
1567 | "@esbuild/android-arm64": "0.21.5",
1568 | "@esbuild/android-x64": "0.21.5",
1569 | "@esbuild/darwin-arm64": "0.21.5",
1570 | "@esbuild/darwin-x64": "0.21.5",
1571 | "@esbuild/freebsd-arm64": "0.21.5",
1572 | "@esbuild/freebsd-x64": "0.21.5",
1573 | "@esbuild/linux-arm": "0.21.5",
1574 | "@esbuild/linux-arm64": "0.21.5",
1575 | "@esbuild/linux-ia32": "0.21.5",
1576 | "@esbuild/linux-loong64": "0.21.5",
1577 | "@esbuild/linux-mips64el": "0.21.5",
1578 | "@esbuild/linux-ppc64": "0.21.5",
1579 | "@esbuild/linux-riscv64": "0.21.5",
1580 | "@esbuild/linux-s390x": "0.21.5",
1581 | "@esbuild/linux-x64": "0.21.5",
1582 | "@esbuild/netbsd-x64": "0.21.5",
1583 | "@esbuild/openbsd-x64": "0.21.5",
1584 | "@esbuild/sunos-x64": "0.21.5",
1585 | "@esbuild/win32-arm64": "0.21.5",
1586 | "@esbuild/win32-ia32": "0.21.5",
1587 | "@esbuild/win32-x64": "0.21.5"
1588 | }
1589 | },
1590 | "node_modules/escape-string-regexp": {
1591 | "version": "4.0.0",
1592 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1593 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1594 | "dev": true,
1595 | "license": "MIT",
1596 | "engines": {
1597 | "node": ">=10"
1598 | },
1599 | "funding": {
1600 | "url": "https://github.com/sponsors/sindresorhus"
1601 | }
1602 | },
1603 | "node_modules/eslint": {
1604 | "version": "9.9.0",
1605 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.9.0.tgz",
1606 | "integrity": "sha512-JfiKJrbx0506OEerjK2Y1QlldtBxkAlLxT5OEcRF8uaQ86noDe2k31Vw9rnSWv+MXZHj7OOUV/dA0AhdLFcyvA==",
1607 | "dev": true,
1608 | "license": "MIT",
1609 | "dependencies": {
1610 | "@eslint-community/eslint-utils": "^4.2.0",
1611 | "@eslint-community/regexpp": "^4.11.0",
1612 | "@eslint/config-array": "^0.17.1",
1613 | "@eslint/eslintrc": "^3.1.0",
1614 | "@eslint/js": "9.9.0",
1615 | "@humanwhocodes/module-importer": "^1.0.1",
1616 | "@humanwhocodes/retry": "^0.3.0",
1617 | "@nodelib/fs.walk": "^1.2.8",
1618 | "ajv": "^6.12.4",
1619 | "chalk": "^4.0.0",
1620 | "cross-spawn": "^7.0.2",
1621 | "debug": "^4.3.2",
1622 | "escape-string-regexp": "^4.0.0",
1623 | "eslint-scope": "^8.0.2",
1624 | "eslint-visitor-keys": "^4.0.0",
1625 | "espree": "^10.1.0",
1626 | "esquery": "^1.5.0",
1627 | "esutils": "^2.0.2",
1628 | "fast-deep-equal": "^3.1.3",
1629 | "file-entry-cache": "^8.0.0",
1630 | "find-up": "^5.0.0",
1631 | "glob-parent": "^6.0.2",
1632 | "ignore": "^5.2.0",
1633 | "imurmurhash": "^0.1.4",
1634 | "is-glob": "^4.0.0",
1635 | "is-path-inside": "^3.0.3",
1636 | "json-stable-stringify-without-jsonify": "^1.0.1",
1637 | "levn": "^0.4.1",
1638 | "lodash.merge": "^4.6.2",
1639 | "minimatch": "^3.1.2",
1640 | "natural-compare": "^1.4.0",
1641 | "optionator": "^0.9.3",
1642 | "strip-ansi": "^6.0.1",
1643 | "text-table": "^0.2.0"
1644 | },
1645 | "bin": {
1646 | "eslint": "bin/eslint.js"
1647 | },
1648 | "engines": {
1649 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1650 | },
1651 | "funding": {
1652 | "url": "https://eslint.org/donate"
1653 | },
1654 | "peerDependencies": {
1655 | "jiti": "*"
1656 | },
1657 | "peerDependenciesMeta": {
1658 | "jiti": {
1659 | "optional": true
1660 | }
1661 | }
1662 | },
1663 | "node_modules/eslint-plugin-react-hooks": {
1664 | "version": "5.1.0-rc-fb9a90fa48-20240614",
1665 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0-rc-fb9a90fa48-20240614.tgz",
1666 | "integrity": "sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w==",
1667 | "dev": true,
1668 | "license": "MIT",
1669 | "engines": {
1670 | "node": ">=10"
1671 | },
1672 | "peerDependencies": {
1673 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
1674 | }
1675 | },
1676 | "node_modules/eslint-plugin-react-refresh": {
1677 | "version": "0.4.9",
1678 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.9.tgz",
1679 | "integrity": "sha512-QK49YrBAo5CLNLseZ7sZgvgTy21E6NEw22eZqc4teZfH8pxV3yXc9XXOYfUI6JNpw7mfHNkAeWtBxrTyykB6HA==",
1680 | "dev": true,
1681 | "license": "MIT",
1682 | "peerDependencies": {
1683 | "eslint": ">=7"
1684 | }
1685 | },
1686 | "node_modules/eslint-scope": {
1687 | "version": "8.0.2",
1688 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.0.2.tgz",
1689 | "integrity": "sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA==",
1690 | "dev": true,
1691 | "license": "BSD-2-Clause",
1692 | "dependencies": {
1693 | "esrecurse": "^4.3.0",
1694 | "estraverse": "^5.2.0"
1695 | },
1696 | "engines": {
1697 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1698 | },
1699 | "funding": {
1700 | "url": "https://opencollective.com/eslint"
1701 | }
1702 | },
1703 | "node_modules/eslint-visitor-keys": {
1704 | "version": "4.0.0",
1705 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz",
1706 | "integrity": "sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw==",
1707 | "dev": true,
1708 | "license": "Apache-2.0",
1709 | "engines": {
1710 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1711 | },
1712 | "funding": {
1713 | "url": "https://opencollective.com/eslint"
1714 | }
1715 | },
1716 | "node_modules/espree": {
1717 | "version": "10.1.0",
1718 | "resolved": "https://registry.npmjs.org/espree/-/espree-10.1.0.tgz",
1719 | "integrity": "sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA==",
1720 | "dev": true,
1721 | "license": "BSD-2-Clause",
1722 | "dependencies": {
1723 | "acorn": "^8.12.0",
1724 | "acorn-jsx": "^5.3.2",
1725 | "eslint-visitor-keys": "^4.0.0"
1726 | },
1727 | "engines": {
1728 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
1729 | },
1730 | "funding": {
1731 | "url": "https://opencollective.com/eslint"
1732 | }
1733 | },
1734 | "node_modules/esquery": {
1735 | "version": "1.6.0",
1736 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
1737 | "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
1738 | "dev": true,
1739 | "license": "BSD-3-Clause",
1740 | "dependencies": {
1741 | "estraverse": "^5.1.0"
1742 | },
1743 | "engines": {
1744 | "node": ">=0.10"
1745 | }
1746 | },
1747 | "node_modules/esrecurse": {
1748 | "version": "4.3.0",
1749 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1750 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1751 | "dev": true,
1752 | "license": "BSD-2-Clause",
1753 | "dependencies": {
1754 | "estraverse": "^5.2.0"
1755 | },
1756 | "engines": {
1757 | "node": ">=4.0"
1758 | }
1759 | },
1760 | "node_modules/estraverse": {
1761 | "version": "5.3.0",
1762 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1763 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1764 | "dev": true,
1765 | "license": "BSD-2-Clause",
1766 | "engines": {
1767 | "node": ">=4.0"
1768 | }
1769 | },
1770 | "node_modules/esutils": {
1771 | "version": "2.0.3",
1772 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1773 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1774 | "dev": true,
1775 | "license": "BSD-2-Clause",
1776 | "engines": {
1777 | "node": ">=0.10.0"
1778 | }
1779 | },
1780 | "node_modules/fast-deep-equal": {
1781 | "version": "3.1.3",
1782 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1783 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
1784 | "dev": true,
1785 | "license": "MIT"
1786 | },
1787 | "node_modules/fast-glob": {
1788 | "version": "3.3.2",
1789 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz",
1790 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==",
1791 | "dev": true,
1792 | "license": "MIT",
1793 | "dependencies": {
1794 | "@nodelib/fs.stat": "^2.0.2",
1795 | "@nodelib/fs.walk": "^1.2.3",
1796 | "glob-parent": "^5.1.2",
1797 | "merge2": "^1.3.0",
1798 | "micromatch": "^4.0.4"
1799 | },
1800 | "engines": {
1801 | "node": ">=8.6.0"
1802 | }
1803 | },
1804 | "node_modules/fast-glob/node_modules/glob-parent": {
1805 | "version": "5.1.2",
1806 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1807 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1808 | "dev": true,
1809 | "license": "ISC",
1810 | "dependencies": {
1811 | "is-glob": "^4.0.1"
1812 | },
1813 | "engines": {
1814 | "node": ">= 6"
1815 | }
1816 | },
1817 | "node_modules/fast-json-stable-stringify": {
1818 | "version": "2.1.0",
1819 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1820 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
1821 | "dev": true,
1822 | "license": "MIT"
1823 | },
1824 | "node_modules/fast-levenshtein": {
1825 | "version": "2.0.6",
1826 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1827 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
1828 | "dev": true,
1829 | "license": "MIT"
1830 | },
1831 | "node_modules/fastq": {
1832 | "version": "1.17.1",
1833 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz",
1834 | "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==",
1835 | "dev": true,
1836 | "license": "ISC",
1837 | "dependencies": {
1838 | "reusify": "^1.0.4"
1839 | }
1840 | },
1841 | "node_modules/file-entry-cache": {
1842 | "version": "8.0.0",
1843 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
1844 | "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
1845 | "dev": true,
1846 | "license": "MIT",
1847 | "dependencies": {
1848 | "flat-cache": "^4.0.0"
1849 | },
1850 | "engines": {
1851 | "node": ">=16.0.0"
1852 | }
1853 | },
1854 | "node_modules/fill-range": {
1855 | "version": "7.1.1",
1856 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz",
1857 | "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==",
1858 | "dev": true,
1859 | "license": "MIT",
1860 | "dependencies": {
1861 | "to-regex-range": "^5.0.1"
1862 | },
1863 | "engines": {
1864 | "node": ">=8"
1865 | }
1866 | },
1867 | "node_modules/find-up": {
1868 | "version": "5.0.0",
1869 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1870 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1871 | "dev": true,
1872 | "license": "MIT",
1873 | "dependencies": {
1874 | "locate-path": "^6.0.0",
1875 | "path-exists": "^4.0.0"
1876 | },
1877 | "engines": {
1878 | "node": ">=10"
1879 | },
1880 | "funding": {
1881 | "url": "https://github.com/sponsors/sindresorhus"
1882 | }
1883 | },
1884 | "node_modules/flat-cache": {
1885 | "version": "4.0.1",
1886 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
1887 | "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
1888 | "dev": true,
1889 | "license": "MIT",
1890 | "dependencies": {
1891 | "flatted": "^3.2.9",
1892 | "keyv": "^4.5.4"
1893 | },
1894 | "engines": {
1895 | "node": ">=16"
1896 | }
1897 | },
1898 | "node_modules/flatted": {
1899 | "version": "3.3.1",
1900 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz",
1901 | "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==",
1902 | "dev": true,
1903 | "license": "ISC"
1904 | },
1905 | "node_modules/fsevents": {
1906 | "version": "2.3.3",
1907 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
1908 | "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
1909 | "dev": true,
1910 | "hasInstallScript": true,
1911 | "license": "MIT",
1912 | "optional": true,
1913 | "os": [
1914 | "darwin"
1915 | ],
1916 | "engines": {
1917 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1918 | }
1919 | },
1920 | "node_modules/glob-parent": {
1921 | "version": "6.0.2",
1922 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
1923 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
1924 | "dev": true,
1925 | "license": "ISC",
1926 | "dependencies": {
1927 | "is-glob": "^4.0.3"
1928 | },
1929 | "engines": {
1930 | "node": ">=10.13.0"
1931 | }
1932 | },
1933 | "node_modules/globals": {
1934 | "version": "15.9.0",
1935 | "resolved": "https://registry.npmjs.org/globals/-/globals-15.9.0.tgz",
1936 | "integrity": "sha512-SmSKyLLKFbSr6rptvP8izbyxJL4ILwqO9Jg23UA0sDlGlu58V59D1//I3vlc0KJphVdUR7vMjHIplYnzBxorQA==",
1937 | "dev": true,
1938 | "license": "MIT",
1939 | "engines": {
1940 | "node": ">=18"
1941 | },
1942 | "funding": {
1943 | "url": "https://github.com/sponsors/sindresorhus"
1944 | }
1945 | },
1946 | "node_modules/globby": {
1947 | "version": "11.1.0",
1948 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
1949 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
1950 | "dev": true,
1951 | "license": "MIT",
1952 | "dependencies": {
1953 | "array-union": "^2.1.0",
1954 | "dir-glob": "^3.0.1",
1955 | "fast-glob": "^3.2.9",
1956 | "ignore": "^5.2.0",
1957 | "merge2": "^1.4.1",
1958 | "slash": "^3.0.0"
1959 | },
1960 | "engines": {
1961 | "node": ">=10"
1962 | },
1963 | "funding": {
1964 | "url": "https://github.com/sponsors/sindresorhus"
1965 | }
1966 | },
1967 | "node_modules/graphemer": {
1968 | "version": "1.4.0",
1969 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
1970 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==",
1971 | "dev": true,
1972 | "license": "MIT"
1973 | },
1974 | "node_modules/has-flag": {
1975 | "version": "4.0.0",
1976 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
1977 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
1978 | "dev": true,
1979 | "license": "MIT",
1980 | "engines": {
1981 | "node": ">=8"
1982 | }
1983 | },
1984 | "node_modules/ignore": {
1985 | "version": "5.3.2",
1986 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
1987 | "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
1988 | "dev": true,
1989 | "license": "MIT",
1990 | "engines": {
1991 | "node": ">= 4"
1992 | }
1993 | },
1994 | "node_modules/import-fresh": {
1995 | "version": "3.3.0",
1996 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
1997 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
1998 | "dev": true,
1999 | "license": "MIT",
2000 | "dependencies": {
2001 | "parent-module": "^1.0.0",
2002 | "resolve-from": "^4.0.0"
2003 | },
2004 | "engines": {
2005 | "node": ">=6"
2006 | },
2007 | "funding": {
2008 | "url": "https://github.com/sponsors/sindresorhus"
2009 | }
2010 | },
2011 | "node_modules/imurmurhash": {
2012 | "version": "0.1.4",
2013 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2014 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2015 | "dev": true,
2016 | "license": "MIT",
2017 | "engines": {
2018 | "node": ">=0.8.19"
2019 | }
2020 | },
2021 | "node_modules/is-extglob": {
2022 | "version": "2.1.1",
2023 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2024 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2025 | "dev": true,
2026 | "license": "MIT",
2027 | "engines": {
2028 | "node": ">=0.10.0"
2029 | }
2030 | },
2031 | "node_modules/is-glob": {
2032 | "version": "4.0.3",
2033 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2034 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2035 | "dev": true,
2036 | "license": "MIT",
2037 | "dependencies": {
2038 | "is-extglob": "^2.1.1"
2039 | },
2040 | "engines": {
2041 | "node": ">=0.10.0"
2042 | }
2043 | },
2044 | "node_modules/is-number": {
2045 | "version": "7.0.0",
2046 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2047 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2048 | "dev": true,
2049 | "license": "MIT",
2050 | "engines": {
2051 | "node": ">=0.12.0"
2052 | }
2053 | },
2054 | "node_modules/is-path-inside": {
2055 | "version": "3.0.3",
2056 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
2057 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
2058 | "dev": true,
2059 | "license": "MIT",
2060 | "engines": {
2061 | "node": ">=8"
2062 | }
2063 | },
2064 | "node_modules/isexe": {
2065 | "version": "2.0.0",
2066 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2067 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
2068 | "dev": true,
2069 | "license": "ISC"
2070 | },
2071 | "node_modules/js-tokens": {
2072 | "version": "4.0.0",
2073 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2074 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2075 | "license": "MIT"
2076 | },
2077 | "node_modules/js-yaml": {
2078 | "version": "4.1.0",
2079 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
2080 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
2081 | "dev": true,
2082 | "license": "MIT",
2083 | "dependencies": {
2084 | "argparse": "^2.0.1"
2085 | },
2086 | "bin": {
2087 | "js-yaml": "bin/js-yaml.js"
2088 | }
2089 | },
2090 | "node_modules/json-buffer": {
2091 | "version": "3.0.1",
2092 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
2093 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
2094 | "dev": true,
2095 | "license": "MIT"
2096 | },
2097 | "node_modules/json-schema-traverse": {
2098 | "version": "0.4.1",
2099 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2100 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
2101 | "dev": true,
2102 | "license": "MIT"
2103 | },
2104 | "node_modules/json-stable-stringify-without-jsonify": {
2105 | "version": "1.0.1",
2106 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
2107 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
2108 | "dev": true,
2109 | "license": "MIT"
2110 | },
2111 | "node_modules/keyv": {
2112 | "version": "4.5.4",
2113 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
2114 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
2115 | "dev": true,
2116 | "license": "MIT",
2117 | "dependencies": {
2118 | "json-buffer": "3.0.1"
2119 | }
2120 | },
2121 | "node_modules/levn": {
2122 | "version": "0.4.1",
2123 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
2124 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
2125 | "dev": true,
2126 | "license": "MIT",
2127 | "dependencies": {
2128 | "prelude-ls": "^1.2.1",
2129 | "type-check": "~0.4.0"
2130 | },
2131 | "engines": {
2132 | "node": ">= 0.8.0"
2133 | }
2134 | },
2135 | "node_modules/locate-path": {
2136 | "version": "6.0.0",
2137 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
2138 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2139 | "dev": true,
2140 | "license": "MIT",
2141 | "dependencies": {
2142 | "p-locate": "^5.0.0"
2143 | },
2144 | "engines": {
2145 | "node": ">=10"
2146 | },
2147 | "funding": {
2148 | "url": "https://github.com/sponsors/sindresorhus"
2149 | }
2150 | },
2151 | "node_modules/lodash.merge": {
2152 | "version": "4.6.2",
2153 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
2154 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
2155 | "dev": true,
2156 | "license": "MIT"
2157 | },
2158 | "node_modules/loose-envify": {
2159 | "version": "1.4.0",
2160 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
2161 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
2162 | "license": "MIT",
2163 | "dependencies": {
2164 | "js-tokens": "^3.0.0 || ^4.0.0"
2165 | },
2166 | "bin": {
2167 | "loose-envify": "cli.js"
2168 | }
2169 | },
2170 | "node_modules/merge2": {
2171 | "version": "1.4.1",
2172 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
2173 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
2174 | "dev": true,
2175 | "license": "MIT",
2176 | "engines": {
2177 | "node": ">= 8"
2178 | }
2179 | },
2180 | "node_modules/micromatch": {
2181 | "version": "4.0.7",
2182 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.7.tgz",
2183 | "integrity": "sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==",
2184 | "dev": true,
2185 | "license": "MIT",
2186 | "dependencies": {
2187 | "braces": "^3.0.3",
2188 | "picomatch": "^2.3.1"
2189 | },
2190 | "engines": {
2191 | "node": ">=8.6"
2192 | }
2193 | },
2194 | "node_modules/minimatch": {
2195 | "version": "3.1.2",
2196 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2197 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2198 | "dev": true,
2199 | "license": "ISC",
2200 | "dependencies": {
2201 | "brace-expansion": "^1.1.7"
2202 | },
2203 | "engines": {
2204 | "node": "*"
2205 | }
2206 | },
2207 | "node_modules/ms": {
2208 | "version": "2.1.2",
2209 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
2210 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==",
2211 | "dev": true,
2212 | "license": "MIT"
2213 | },
2214 | "node_modules/nanoid": {
2215 | "version": "3.3.7",
2216 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz",
2217 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==",
2218 | "dev": true,
2219 | "funding": [
2220 | {
2221 | "type": "github",
2222 | "url": "https://github.com/sponsors/ai"
2223 | }
2224 | ],
2225 | "license": "MIT",
2226 | "bin": {
2227 | "nanoid": "bin/nanoid.cjs"
2228 | },
2229 | "engines": {
2230 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2231 | }
2232 | },
2233 | "node_modules/natural-compare": {
2234 | "version": "1.4.0",
2235 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
2236 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
2237 | "dev": true,
2238 | "license": "MIT"
2239 | },
2240 | "node_modules/optionator": {
2241 | "version": "0.9.4",
2242 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
2243 | "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
2244 | "dev": true,
2245 | "license": "MIT",
2246 | "dependencies": {
2247 | "deep-is": "^0.1.3",
2248 | "fast-levenshtein": "^2.0.6",
2249 | "levn": "^0.4.1",
2250 | "prelude-ls": "^1.2.1",
2251 | "type-check": "^0.4.0",
2252 | "word-wrap": "^1.2.5"
2253 | },
2254 | "engines": {
2255 | "node": ">= 0.8.0"
2256 | }
2257 | },
2258 | "node_modules/p-limit": {
2259 | "version": "3.1.0",
2260 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
2261 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
2262 | "dev": true,
2263 | "license": "MIT",
2264 | "dependencies": {
2265 | "yocto-queue": "^0.1.0"
2266 | },
2267 | "engines": {
2268 | "node": ">=10"
2269 | },
2270 | "funding": {
2271 | "url": "https://github.com/sponsors/sindresorhus"
2272 | }
2273 | },
2274 | "node_modules/p-locate": {
2275 | "version": "5.0.0",
2276 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
2277 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
2278 | "dev": true,
2279 | "license": "MIT",
2280 | "dependencies": {
2281 | "p-limit": "^3.0.2"
2282 | },
2283 | "engines": {
2284 | "node": ">=10"
2285 | },
2286 | "funding": {
2287 | "url": "https://github.com/sponsors/sindresorhus"
2288 | }
2289 | },
2290 | "node_modules/parent-module": {
2291 | "version": "1.0.1",
2292 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
2293 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
2294 | "dev": true,
2295 | "license": "MIT",
2296 | "dependencies": {
2297 | "callsites": "^3.0.0"
2298 | },
2299 | "engines": {
2300 | "node": ">=6"
2301 | }
2302 | },
2303 | "node_modules/path-exists": {
2304 | "version": "4.0.0",
2305 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
2306 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
2307 | "dev": true,
2308 | "license": "MIT",
2309 | "engines": {
2310 | "node": ">=8"
2311 | }
2312 | },
2313 | "node_modules/path-key": {
2314 | "version": "3.1.1",
2315 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
2316 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
2317 | "dev": true,
2318 | "license": "MIT",
2319 | "engines": {
2320 | "node": ">=8"
2321 | }
2322 | },
2323 | "node_modules/path-type": {
2324 | "version": "4.0.0",
2325 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
2326 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
2327 | "dev": true,
2328 | "license": "MIT",
2329 | "engines": {
2330 | "node": ">=8"
2331 | }
2332 | },
2333 | "node_modules/picocolors": {
2334 | "version": "1.0.1",
2335 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.1.tgz",
2336 | "integrity": "sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==",
2337 | "dev": true,
2338 | "license": "ISC"
2339 | },
2340 | "node_modules/picomatch": {
2341 | "version": "2.3.1",
2342 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
2343 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
2344 | "dev": true,
2345 | "license": "MIT",
2346 | "engines": {
2347 | "node": ">=8.6"
2348 | },
2349 | "funding": {
2350 | "url": "https://github.com/sponsors/jonschlinkert"
2351 | }
2352 | },
2353 | "node_modules/postcss": {
2354 | "version": "8.4.41",
2355 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.41.tgz",
2356 | "integrity": "sha512-TesUflQ0WKZqAvg52PWL6kHgLKP6xB6heTOdoYM0Wt2UHyxNa4K25EZZMgKns3BH1RLVbZCREPpLY0rhnNoHVQ==",
2357 | "dev": true,
2358 | "funding": [
2359 | {
2360 | "type": "opencollective",
2361 | "url": "https://opencollective.com/postcss/"
2362 | },
2363 | {
2364 | "type": "tidelift",
2365 | "url": "https://tidelift.com/funding/github/npm/postcss"
2366 | },
2367 | {
2368 | "type": "github",
2369 | "url": "https://github.com/sponsors/ai"
2370 | }
2371 | ],
2372 | "license": "MIT",
2373 | "dependencies": {
2374 | "nanoid": "^3.3.7",
2375 | "picocolors": "^1.0.1",
2376 | "source-map-js": "^1.2.0"
2377 | },
2378 | "engines": {
2379 | "node": "^10 || ^12 || >=14"
2380 | }
2381 | },
2382 | "node_modules/prelude-ls": {
2383 | "version": "1.2.1",
2384 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
2385 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
2386 | "dev": true,
2387 | "license": "MIT",
2388 | "engines": {
2389 | "node": ">= 0.8.0"
2390 | }
2391 | },
2392 | "node_modules/punycode": {
2393 | "version": "2.3.1",
2394 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
2395 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
2396 | "dev": true,
2397 | "license": "MIT",
2398 | "engines": {
2399 | "node": ">=6"
2400 | }
2401 | },
2402 | "node_modules/queue-microtask": {
2403 | "version": "1.2.3",
2404 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
2405 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
2406 | "dev": true,
2407 | "funding": [
2408 | {
2409 | "type": "github",
2410 | "url": "https://github.com/sponsors/feross"
2411 | },
2412 | {
2413 | "type": "patreon",
2414 | "url": "https://www.patreon.com/feross"
2415 | },
2416 | {
2417 | "type": "consulting",
2418 | "url": "https://feross.org/support"
2419 | }
2420 | ],
2421 | "license": "MIT"
2422 | },
2423 | "node_modules/react": {
2424 | "version": "18.3.1",
2425 | "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz",
2426 | "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==",
2427 | "license": "MIT",
2428 | "dependencies": {
2429 | "loose-envify": "^1.1.0"
2430 | },
2431 | "engines": {
2432 | "node": ">=0.10.0"
2433 | }
2434 | },
2435 | "node_modules/react-dom": {
2436 | "version": "18.3.1",
2437 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz",
2438 | "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==",
2439 | "license": "MIT",
2440 | "dependencies": {
2441 | "loose-envify": "^1.1.0",
2442 | "scheduler": "^0.23.2"
2443 | },
2444 | "peerDependencies": {
2445 | "react": "^18.3.1"
2446 | }
2447 | },
2448 | "node_modules/resolve-from": {
2449 | "version": "4.0.0",
2450 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
2451 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
2452 | "dev": true,
2453 | "license": "MIT",
2454 | "engines": {
2455 | "node": ">=4"
2456 | }
2457 | },
2458 | "node_modules/reusify": {
2459 | "version": "1.0.4",
2460 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
2461 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
2462 | "dev": true,
2463 | "license": "MIT",
2464 | "engines": {
2465 | "iojs": ">=1.0.0",
2466 | "node": ">=0.10.0"
2467 | }
2468 | },
2469 | "node_modules/rollup": {
2470 | "version": "4.20.0",
2471 | "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.20.0.tgz",
2472 | "integrity": "sha512-6rbWBChcnSGzIlXeIdNIZTopKYad8ZG8ajhl78lGRLsI2rX8IkaotQhVas2Ma+GPxJav19wrSzvRvuiv0YKzWw==",
2473 | "dev": true,
2474 | "license": "MIT",
2475 | "dependencies": {
2476 | "@types/estree": "1.0.5"
2477 | },
2478 | "bin": {
2479 | "rollup": "dist/bin/rollup"
2480 | },
2481 | "engines": {
2482 | "node": ">=18.0.0",
2483 | "npm": ">=8.0.0"
2484 | },
2485 | "optionalDependencies": {
2486 | "@rollup/rollup-android-arm-eabi": "4.20.0",
2487 | "@rollup/rollup-android-arm64": "4.20.0",
2488 | "@rollup/rollup-darwin-arm64": "4.20.0",
2489 | "@rollup/rollup-darwin-x64": "4.20.0",
2490 | "@rollup/rollup-linux-arm-gnueabihf": "4.20.0",
2491 | "@rollup/rollup-linux-arm-musleabihf": "4.20.0",
2492 | "@rollup/rollup-linux-arm64-gnu": "4.20.0",
2493 | "@rollup/rollup-linux-arm64-musl": "4.20.0",
2494 | "@rollup/rollup-linux-powerpc64le-gnu": "4.20.0",
2495 | "@rollup/rollup-linux-riscv64-gnu": "4.20.0",
2496 | "@rollup/rollup-linux-s390x-gnu": "4.20.0",
2497 | "@rollup/rollup-linux-x64-gnu": "4.20.0",
2498 | "@rollup/rollup-linux-x64-musl": "4.20.0",
2499 | "@rollup/rollup-win32-arm64-msvc": "4.20.0",
2500 | "@rollup/rollup-win32-ia32-msvc": "4.20.0",
2501 | "@rollup/rollup-win32-x64-msvc": "4.20.0",
2502 | "fsevents": "~2.3.2"
2503 | }
2504 | },
2505 | "node_modules/run-parallel": {
2506 | "version": "1.2.0",
2507 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
2508 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
2509 | "dev": true,
2510 | "funding": [
2511 | {
2512 | "type": "github",
2513 | "url": "https://github.com/sponsors/feross"
2514 | },
2515 | {
2516 | "type": "patreon",
2517 | "url": "https://www.patreon.com/feross"
2518 | },
2519 | {
2520 | "type": "consulting",
2521 | "url": "https://feross.org/support"
2522 | }
2523 | ],
2524 | "license": "MIT",
2525 | "dependencies": {
2526 | "queue-microtask": "^1.2.2"
2527 | }
2528 | },
2529 | "node_modules/scheduler": {
2530 | "version": "0.23.2",
2531 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz",
2532 | "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==",
2533 | "license": "MIT",
2534 | "dependencies": {
2535 | "loose-envify": "^1.1.0"
2536 | }
2537 | },
2538 | "node_modules/semver": {
2539 | "version": "7.6.3",
2540 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz",
2541 | "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==",
2542 | "dev": true,
2543 | "license": "ISC",
2544 | "bin": {
2545 | "semver": "bin/semver.js"
2546 | },
2547 | "engines": {
2548 | "node": ">=10"
2549 | }
2550 | },
2551 | "node_modules/shebang-command": {
2552 | "version": "2.0.0",
2553 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
2554 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
2555 | "dev": true,
2556 | "license": "MIT",
2557 | "dependencies": {
2558 | "shebang-regex": "^3.0.0"
2559 | },
2560 | "engines": {
2561 | "node": ">=8"
2562 | }
2563 | },
2564 | "node_modules/shebang-regex": {
2565 | "version": "3.0.0",
2566 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
2567 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
2568 | "dev": true,
2569 | "license": "MIT",
2570 | "engines": {
2571 | "node": ">=8"
2572 | }
2573 | },
2574 | "node_modules/slash": {
2575 | "version": "3.0.0",
2576 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
2577 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
2578 | "dev": true,
2579 | "license": "MIT",
2580 | "engines": {
2581 | "node": ">=8"
2582 | }
2583 | },
2584 | "node_modules/source-map-js": {
2585 | "version": "1.2.0",
2586 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz",
2587 | "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==",
2588 | "dev": true,
2589 | "license": "BSD-3-Clause",
2590 | "engines": {
2591 | "node": ">=0.10.0"
2592 | }
2593 | },
2594 | "node_modules/strip-ansi": {
2595 | "version": "6.0.1",
2596 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
2597 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
2598 | "dev": true,
2599 | "license": "MIT",
2600 | "dependencies": {
2601 | "ansi-regex": "^5.0.1"
2602 | },
2603 | "engines": {
2604 | "node": ">=8"
2605 | }
2606 | },
2607 | "node_modules/strip-json-comments": {
2608 | "version": "3.1.1",
2609 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
2610 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
2611 | "dev": true,
2612 | "license": "MIT",
2613 | "engines": {
2614 | "node": ">=8"
2615 | },
2616 | "funding": {
2617 | "url": "https://github.com/sponsors/sindresorhus"
2618 | }
2619 | },
2620 | "node_modules/supports-color": {
2621 | "version": "7.2.0",
2622 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
2623 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
2624 | "dev": true,
2625 | "license": "MIT",
2626 | "dependencies": {
2627 | "has-flag": "^4.0.0"
2628 | },
2629 | "engines": {
2630 | "node": ">=8"
2631 | }
2632 | },
2633 | "node_modules/text-table": {
2634 | "version": "0.2.0",
2635 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
2636 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==",
2637 | "dev": true,
2638 | "license": "MIT"
2639 | },
2640 | "node_modules/to-regex-range": {
2641 | "version": "5.0.1",
2642 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
2643 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
2644 | "dev": true,
2645 | "license": "MIT",
2646 | "dependencies": {
2647 | "is-number": "^7.0.0"
2648 | },
2649 | "engines": {
2650 | "node": ">=8.0"
2651 | }
2652 | },
2653 | "node_modules/ts-api-utils": {
2654 | "version": "1.3.0",
2655 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz",
2656 | "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==",
2657 | "dev": true,
2658 | "license": "MIT",
2659 | "engines": {
2660 | "node": ">=16"
2661 | },
2662 | "peerDependencies": {
2663 | "typescript": ">=4.2.0"
2664 | }
2665 | },
2666 | "node_modules/type-check": {
2667 | "version": "0.4.0",
2668 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
2669 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
2670 | "dev": true,
2671 | "license": "MIT",
2672 | "dependencies": {
2673 | "prelude-ls": "^1.2.1"
2674 | },
2675 | "engines": {
2676 | "node": ">= 0.8.0"
2677 | }
2678 | },
2679 | "node_modules/typescript": {
2680 | "version": "5.5.4",
2681 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.5.4.tgz",
2682 | "integrity": "sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==",
2683 | "dev": true,
2684 | "license": "Apache-2.0",
2685 | "bin": {
2686 | "tsc": "bin/tsc",
2687 | "tsserver": "bin/tsserver"
2688 | },
2689 | "engines": {
2690 | "node": ">=14.17"
2691 | }
2692 | },
2693 | "node_modules/typescript-eslint": {
2694 | "version": "8.1.0",
2695 | "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.1.0.tgz",
2696 | "integrity": "sha512-prB2U3jXPJLpo1iVLN338Lvolh6OrcCZO+9Yv6AR+tvegPPptYCDBIHiEEUdqRi8gAv2bXNKfMUrgAd2ejn/ow==",
2697 | "dev": true,
2698 | "license": "MIT",
2699 | "dependencies": {
2700 | "@typescript-eslint/eslint-plugin": "8.1.0",
2701 | "@typescript-eslint/parser": "8.1.0",
2702 | "@typescript-eslint/utils": "8.1.0"
2703 | },
2704 | "engines": {
2705 | "node": "^18.18.0 || ^20.9.0 || >=21.1.0"
2706 | },
2707 | "funding": {
2708 | "type": "opencollective",
2709 | "url": "https://opencollective.com/typescript-eslint"
2710 | },
2711 | "peerDependenciesMeta": {
2712 | "typescript": {
2713 | "optional": true
2714 | }
2715 | }
2716 | },
2717 | "node_modules/uri-js": {
2718 | "version": "4.4.1",
2719 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
2720 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
2721 | "dev": true,
2722 | "license": "BSD-2-Clause",
2723 | "dependencies": {
2724 | "punycode": "^2.1.0"
2725 | }
2726 | },
2727 | "node_modules/vite": {
2728 | "version": "5.4.1",
2729 | "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.1.tgz",
2730 | "integrity": "sha512-1oE6yuNXssjrZdblI9AfBbHCC41nnyoVoEZxQnID6yvQZAFBzxxkqoFLtHUMkYunL8hwOLEjgTuxpkRxvba3kA==",
2731 | "dev": true,
2732 | "license": "MIT",
2733 | "dependencies": {
2734 | "esbuild": "^0.21.3",
2735 | "postcss": "^8.4.41",
2736 | "rollup": "^4.13.0"
2737 | },
2738 | "bin": {
2739 | "vite": "bin/vite.js"
2740 | },
2741 | "engines": {
2742 | "node": "^18.0.0 || >=20.0.0"
2743 | },
2744 | "funding": {
2745 | "url": "https://github.com/vitejs/vite?sponsor=1"
2746 | },
2747 | "optionalDependencies": {
2748 | "fsevents": "~2.3.3"
2749 | },
2750 | "peerDependencies": {
2751 | "@types/node": "^18.0.0 || >=20.0.0",
2752 | "less": "*",
2753 | "lightningcss": "^1.21.0",
2754 | "sass": "*",
2755 | "sass-embedded": "*",
2756 | "stylus": "*",
2757 | "sugarss": "*",
2758 | "terser": "^5.4.0"
2759 | },
2760 | "peerDependenciesMeta": {
2761 | "@types/node": {
2762 | "optional": true
2763 | },
2764 | "less": {
2765 | "optional": true
2766 | },
2767 | "lightningcss": {
2768 | "optional": true
2769 | },
2770 | "sass": {
2771 | "optional": true
2772 | },
2773 | "sass-embedded": {
2774 | "optional": true
2775 | },
2776 | "stylus": {
2777 | "optional": true
2778 | },
2779 | "sugarss": {
2780 | "optional": true
2781 | },
2782 | "terser": {
2783 | "optional": true
2784 | }
2785 | }
2786 | },
2787 | "node_modules/which": {
2788 | "version": "2.0.2",
2789 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
2790 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
2791 | "dev": true,
2792 | "license": "ISC",
2793 | "dependencies": {
2794 | "isexe": "^2.0.0"
2795 | },
2796 | "bin": {
2797 | "node-which": "bin/node-which"
2798 | },
2799 | "engines": {
2800 | "node": ">= 8"
2801 | }
2802 | },
2803 | "node_modules/word-wrap": {
2804 | "version": "1.2.5",
2805 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
2806 | "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
2807 | "dev": true,
2808 | "license": "MIT",
2809 | "engines": {
2810 | "node": ">=0.10.0"
2811 | }
2812 | },
2813 | "node_modules/yocto-queue": {
2814 | "version": "0.1.0",
2815 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
2816 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
2817 | "dev": true,
2818 | "license": "MIT",
2819 | "engines": {
2820 | "node": ">=10"
2821 | },
2822 | "funding": {
2823 | "url": "https://github.com/sponsors/sindresorhus"
2824 | }
2825 | }
2826 | }
2827 | }
2828 |
--------------------------------------------------------------------------------
/frontend/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "vite-project",
3 | "private": true,
4 | "version": "0.0.0",
5 | "type": "module",
6 | "scripts": {
7 | "dev": "vite",
8 | "build": "tsc -b && 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.9.0",
18 | "@types/react": "^18.3.3",
19 | "@types/react-dom": "^18.3.0",
20 | "@vitejs/plugin-react-swc": "^3.5.0",
21 | "eslint": "^9.9.0",
22 | "eslint-plugin-react-hooks": "^5.1.0-rc.0",
23 | "eslint-plugin-react-refresh": "^0.4.9",
24 | "globals": "^15.9.0",
25 | "typescript": "^5.5.3",
26 | "typescript-eslint": "^8.0.1",
27 | "vite": "^5.4.1"
28 | }
29 | }
30 |
--------------------------------------------------------------------------------
/frontend/public/vite.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/App.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
2 |
3 | * {
4 | margin: 0;
5 | padding: 0;
6 | box-sizing: border-box;
7 | text-decoration: none;
8 | list-style: none;
9 | font-family: "Montserrat", sans-serif;
10 | }
11 |
12 | i {
13 | cursor: pointer;
14 | color: red;
15 | }
16 |
17 | .App {
18 | width: 1400px;
19 | max-width: 95%;
20 | margin: 0 auto;
21 | text-align: center;
22 | font-size: 16px;
23 | display: flex;
24 | justify-content: space-between;
25 | align-items: flex-start;
26 | }
27 |
28 | .App h2 {
29 | margin: 20px 0px;
30 | }
31 |
32 | .contact__form label {
33 | width: 100px;
34 | text-align: right;
35 | margin-right: 10px;
36 | }
37 |
38 | .contact__form div {
39 | margin: 10px;
40 | font-size: 20px;
41 | }
42 |
43 | .contact__form input[type="text"],
44 | .contact__form input[type="email"],
45 | .contact__form textarea {
46 | width: 400px;
47 | border-radius: 8px;
48 | border: 1px solid black;
49 | padding: 10px;
50 | }
51 |
52 | .contact__form textarea {
53 | resize: none;
54 | height: 150px;
55 | }
56 |
57 | .contact__form div {
58 | display: flex;
59 | justify-content: center;
60 | align-items: top;
61 | gap: 10px;
62 | }
63 |
64 | .contact__form div.button__container {
65 | display: flex;
66 | justify-content: flex-end;
67 | }
68 |
69 | .contact__form button {
70 | padding: 10px 20px;
71 | background-color: black;
72 | color: white;
73 | border: none;
74 | border-radius: 8px;
75 | cursor: pointer;
76 | font-size: 20px;
77 | }
78 |
79 | /* Contact Table */
80 | .contact__table {
81 | margin: 0 auto;
82 | }
83 |
84 | .contact__table th,
85 | td {
86 | border: 1px solid black;
87 | padding: 10px;
88 | }
--------------------------------------------------------------------------------
/frontend/src/App.tsx:
--------------------------------------------------------------------------------
1 | import { useEffect, useState } from "react";
2 | import "./App.css";
3 | import ContactList from "./components/ContactList";
4 |
5 | interface Contact {
6 | id: number;
7 | username: string;
8 | email: string;
9 | message: string;
10 | }
11 |
12 | function App() {
13 | const [contacts, setContacts] = useState([]);
14 |
15 | const fetchContacts = async () => {
16 | try {
17 | const response = await fetch("http://127.0.0.1:8000/contacts/");
18 | if (response.ok) {
19 | const data = await response.json();
20 | setContacts(data);
21 | } else {
22 | console.error("An error occurred while retrieving data");
23 | }
24 | } catch (error) {
25 | console.error("An error occurred:", error);
26 | }
27 | };
28 |
29 | const handleAddContact = async (newContact: Omit) => {
30 | try {
31 | const response = await fetch("http://127.0.0.1:8000/contacts/", {
32 | method: "POST",
33 | headers: {
34 | "Content-Type": "application/json",
35 | },
36 | body: JSON.stringify(newContact),
37 | });
38 |
39 | if (response.ok) {
40 | alert("Message sent successfully!");
41 | fetchContacts();
42 | } else {
43 | alert("Message could not be sent. Please try again.");
44 | }
45 | } catch (error) {
46 | console.error("Error:", error);
47 | alert("An error has occurred. Please try again.");
48 | }
49 | };
50 |
51 | useEffect(() => {
52 | fetchContacts();
53 | }, []);
54 |
55 | const handleDeleteContact = async (id: number) => {
56 | const contactToDelete = contacts.find((contact) => contact.id === id);
57 |
58 | if (!contactToDelete) {
59 | alert("Contact not found!");
60 | return;
61 | }
62 |
63 | try {
64 | const response = await fetch(`http://127.0.0.1:8000/contacts/${id}`, {
65 | method: "DELETE",
66 | });
67 |
68 | if (response.ok) {
69 | alert(`${contactToDelete.username} named user successfully deleted!`);
70 | fetchContacts();
71 | } else {
72 | alert(
73 | `${contactToDelete.username} named user could not be deleted. Please try again.`
74 | );
75 | }
76 | } catch (error) {
77 | console.error("An error occurred:", error);
78 | alert("An error occurred. Please try again.");
79 | }
80 | };
81 |
82 | return (
83 |
84 |
85 |
Contact Form
86 |
116 |
117 |
118 |
119 |
120 |
121 |
122 | );
123 | }
124 |
125 | export default App;
126 |
--------------------------------------------------------------------------------
/frontend/src/assets/react.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/frontend/src/components/ContactList.tsx:
--------------------------------------------------------------------------------
1 | interface Contact {
2 | id: number;
3 | username: string;
4 | email: string;
5 | message: string;
6 | }
7 |
8 | interface ContactListProps {
9 | contacts: Contact[];
10 | onDelete: (id: number) => void;
11 | }
12 |
13 | function ContactList({ contacts, onDelete }: ContactListProps) {
14 | return (
15 |
16 |
Contact Lists
17 |
18 |
19 |
20 | ID |
21 | Name |
22 | Email |
23 | Message |
24 | Delete |
25 |
26 |
27 |
28 | {contacts.map((contact) => (
29 |
30 | {contact.id} |
31 | {contact.username} |
32 | {contact.email} |
33 | {contact.message} |
34 |
35 | onDelete(contact.id)}
37 | className="fa-solid fa-trash"
38 | >
39 | |
40 |
41 | ))}
42 |
43 |
44 |
45 | );
46 | }
47 |
48 | export default ContactList;
49 |
--------------------------------------------------------------------------------
/frontend/src/main.tsx:
--------------------------------------------------------------------------------
1 | import { StrictMode } from 'react'
2 | import { createRoot } from 'react-dom/client'
3 | import App from './App.tsx'
4 |
5 | createRoot(document.getElementById('root')!).render(
6 |
7 |
8 | ,
9 | )
10 |
--------------------------------------------------------------------------------
/frontend/src/vite-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 |
--------------------------------------------------------------------------------
/frontend/tsconfig.app.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2020",
4 | "useDefineForClassFields": true,
5 | "lib": ["ES2020", "DOM", "DOM.Iterable"],
6 | "module": "ESNext",
7 | "skipLibCheck": true,
8 |
9 | /* Bundler mode */
10 | "moduleResolution": "bundler",
11 | "allowImportingTsExtensions": true,
12 | "isolatedModules": true,
13 | "moduleDetection": "force",
14 | "noEmit": true,
15 | "jsx": "react-jsx",
16 |
17 | /* Linting */
18 | "strict": true,
19 | "noUnusedLocals": true,
20 | "noUnusedParameters": true,
21 | "noFallthroughCasesInSwitch": true
22 | },
23 | "include": ["src"]
24 | }
25 |
--------------------------------------------------------------------------------
/frontend/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "files": [],
3 | "references": [
4 | { "path": "./tsconfig.app.json" },
5 | { "path": "./tsconfig.node.json" }
6 | ]
7 | }
8 |
--------------------------------------------------------------------------------
/frontend/tsconfig.node.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "ES2022",
4 | "lib": ["ES2023"],
5 | "module": "ESNext",
6 | "skipLibCheck": true,
7 |
8 | /* Bundler mode */
9 | "moduleResolution": "bundler",
10 | "allowImportingTsExtensions": true,
11 | "isolatedModules": true,
12 | "moduleDetection": "force",
13 | "noEmit": true,
14 |
15 | /* Linting */
16 | "strict": true,
17 | "noUnusedLocals": true,
18 | "noUnusedParameters": true,
19 | "noFallthroughCasesInSwitch": true
20 | },
21 | "include": ["vite.config.ts"]
22 | }
23 |
--------------------------------------------------------------------------------
/frontend/vite.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite'
2 | import react from '@vitejs/plugin-react-swc'
3 |
4 | // https://vitejs.dev/config/
5 | export default defineConfig({
6 | plugins: [react()],
7 | })
8 |
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | annotated-types==0.7.0
2 | anyio==4.4.0
3 | click==8.1.7
4 | dnspython==2.6.1
5 | email_validator==2.2.0
6 | fastapi==0.112.1
7 | h11==0.14.0
8 | idna==3.7
9 | psycopg2==2.9.9
10 | psycopg2-binary==2.9.9
11 | pydantic==2.8.2
12 | pydantic-settings==2.4.0
13 | pydantic_core==2.20.1
14 | python-dotenv==1.0.1
15 | sniffio==1.3.1
16 | SQLAlchemy==2.0.32
17 | starlette==0.38.2
18 | typing_extensions==4.12.2
19 | uvicorn==0.30.6
20 |
--------------------------------------------------------------------------------