Commit
·
8427d6e
0
Parent(s):
project structure
Browse files- backend/Dockerfile +13 -0
- backend/main.py +20 -0
- docker-compose.yml +19 -0
- frontend/.gitignore +24 -0
- frontend/Dockerfile +13 -0
- frontend/README.md +12 -0
- frontend/eslint.config.js +29 -0
- frontend/index.html +13 -0
- frontend/package-lock.json +2814 -0
- frontend/package.json +27 -0
- frontend/public/vite.svg +1 -0
- frontend/src/App.css +42 -0
- frontend/src/App.jsx +35 -0
- frontend/src/assets/react.svg +1 -0
- frontend/src/index.css +68 -0
- frontend/src/main.jsx +10 -0
- frontend/vite.config.js +7 -0
- poetry.lock +739 -0
- pyproject.toml +18 -0
backend/Dockerfile
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM python:3.11-slim
|
2 |
+
|
3 |
+
WORKDIR /app
|
4 |
+
|
5 |
+
RUN pip install poetry
|
6 |
+
|
7 |
+
COPY pyproject.toml poetry.lock ./
|
8 |
+
|
9 |
+
RUN poetry install --no-root
|
10 |
+
|
11 |
+
COPY ./backend .
|
12 |
+
|
13 |
+
CMD ["poetry", "run", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|
backend/main.py
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from fastapi import FastAPI
|
2 |
+
from fastapi.middleware.cors import CORSMiddleware
|
3 |
+
|
4 |
+
|
5 |
+
app = FastAPI(title="AI Hedge Fund API")
|
6 |
+
|
7 |
+
app.add_middleware(
|
8 |
+
CORSMiddleware,
|
9 |
+
allow_origins=["*"],
|
10 |
+
allow_credentials=True,
|
11 |
+
allow_methods=["*"],
|
12 |
+
allow_headers=["*"],
|
13 |
+
)
|
14 |
+
|
15 |
+
|
16 |
+
|
17 |
+
@app.get("/")
|
18 |
+
def read_root():
|
19 |
+
"""This function runs when someone visits the main URL."""
|
20 |
+
return {"status": "ok", "message": "Welcome to the API!"}
|
docker-compose.yml
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
services:
|
2 |
+
backend:
|
3 |
+
build:
|
4 |
+
context: .
|
5 |
+
dockerfile: ./backend/Dockerfile
|
6 |
+
ports:
|
7 |
+
- "8000:8000"
|
8 |
+
volumes:
|
9 |
+
- ./backend:/app
|
10 |
+
|
11 |
+
frontend:
|
12 |
+
build:
|
13 |
+
context: .
|
14 |
+
dockerfile: ./frontend/Dockerfile
|
15 |
+
ports:
|
16 |
+
- "5173:5173"
|
17 |
+
volumes:
|
18 |
+
- ./frontend:/app
|
19 |
+
- /app/node_modules
|
frontend/.gitignore
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Logs
|
2 |
+
logs
|
3 |
+
*.log
|
4 |
+
npm-debug.log*
|
5 |
+
yarn-debug.log*
|
6 |
+
yarn-error.log*
|
7 |
+
pnpm-debug.log*
|
8 |
+
lerna-debug.log*
|
9 |
+
|
10 |
+
node_modules
|
11 |
+
dist
|
12 |
+
dist-ssr
|
13 |
+
*.local
|
14 |
+
|
15 |
+
# Editor directories and files
|
16 |
+
.vscode/*
|
17 |
+
!.vscode/extensions.json
|
18 |
+
.idea
|
19 |
+
.DS_Store
|
20 |
+
*.suo
|
21 |
+
*.ntvs*
|
22 |
+
*.njsproj
|
23 |
+
*.sln
|
24 |
+
*.sw?
|
frontend/Dockerfile
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM node:20-alpine
|
2 |
+
|
3 |
+
WORKDIR /app
|
4 |
+
|
5 |
+
COPY ./frontend/package*.json ./
|
6 |
+
|
7 |
+
RUN npm install
|
8 |
+
|
9 |
+
COPY ./frontend .
|
10 |
+
|
11 |
+
EXPOSE 5173
|
12 |
+
|
13 |
+
CMD ["npm", "run", "dev", "--", "--host"]
|
frontend/README.md
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# React + 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) uses [Babel](https://babeljs.io/) for Fast Refresh
|
8 |
+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/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 using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
|
frontend/eslint.config.js
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 { defineConfig, globalIgnores } from 'eslint/config'
|
6 |
+
|
7 |
+
export default defineConfig([
|
8 |
+
globalIgnores(['dist']),
|
9 |
+
{
|
10 |
+
files: ['**/*.{js,jsx}'],
|
11 |
+
extends: [
|
12 |
+
js.configs.recommended,
|
13 |
+
reactHooks.configs['recommended-latest'],
|
14 |
+
reactRefresh.configs.vite,
|
15 |
+
],
|
16 |
+
languageOptions: {
|
17 |
+
ecmaVersion: 2020,
|
18 |
+
globals: globals.browser,
|
19 |
+
parserOptions: {
|
20 |
+
ecmaVersion: 'latest',
|
21 |
+
ecmaFeatures: { jsx: true },
|
22 |
+
sourceType: 'module',
|
23 |
+
},
|
24 |
+
},
|
25 |
+
rules: {
|
26 |
+
'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
|
27 |
+
},
|
28 |
+
},
|
29 |
+
])
|
frontend/index.html
ADDED
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!doctype html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8" />
|
5 |
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
+
<title>Vite + React</title>
|
8 |
+
</head>
|
9 |
+
<body>
|
10 |
+
<div id="root"></div>
|
11 |
+
<script type="module" src="/src/main.jsx"></script>
|
12 |
+
</body>
|
13 |
+
</html>
|
frontend/package-lock.json
ADDED
@@ -0,0 +1,2814 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "frontend",
|
3 |
+
"version": "0.0.0",
|
4 |
+
"lockfileVersion": 3,
|
5 |
+
"requires": true,
|
6 |
+
"packages": {
|
7 |
+
"": {
|
8 |
+
"name": "frontend",
|
9 |
+
"version": "0.0.0",
|
10 |
+
"dependencies": {
|
11 |
+
"react": "^19.1.1",
|
12 |
+
"react-dom": "^19.1.1"
|
13 |
+
},
|
14 |
+
"devDependencies": {
|
15 |
+
"@eslint/js": "^9.33.0",
|
16 |
+
"@types/react": "^19.1.10",
|
17 |
+
"@types/react-dom": "^19.1.7",
|
18 |
+
"@vitejs/plugin-react": "^5.0.0",
|
19 |
+
"eslint": "^9.33.0",
|
20 |
+
"eslint-plugin-react-hooks": "^5.2.0",
|
21 |
+
"eslint-plugin-react-refresh": "^0.4.20",
|
22 |
+
"globals": "^16.3.0",
|
23 |
+
"vite": "^7.1.2"
|
24 |
+
}
|
25 |
+
},
|
26 |
+
"node_modules/@ampproject/remapping": {
|
27 |
+
"version": "2.3.0",
|
28 |
+
"resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz",
|
29 |
+
"integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==",
|
30 |
+
"dev": true,
|
31 |
+
"license": "Apache-2.0",
|
32 |
+
"dependencies": {
|
33 |
+
"@jridgewell/gen-mapping": "^0.3.5",
|
34 |
+
"@jridgewell/trace-mapping": "^0.3.24"
|
35 |
+
},
|
36 |
+
"engines": {
|
37 |
+
"node": ">=6.0.0"
|
38 |
+
}
|
39 |
+
},
|
40 |
+
"node_modules/@babel/code-frame": {
|
41 |
+
"version": "7.27.1",
|
42 |
+
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
|
43 |
+
"integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
|
44 |
+
"dev": true,
|
45 |
+
"license": "MIT",
|
46 |
+
"dependencies": {
|
47 |
+
"@babel/helper-validator-identifier": "^7.27.1",
|
48 |
+
"js-tokens": "^4.0.0",
|
49 |
+
"picocolors": "^1.1.1"
|
50 |
+
},
|
51 |
+
"engines": {
|
52 |
+
"node": ">=6.9.0"
|
53 |
+
}
|
54 |
+
},
|
55 |
+
"node_modules/@babel/compat-data": {
|
56 |
+
"version": "7.28.0",
|
57 |
+
"resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.0.tgz",
|
58 |
+
"integrity": "sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==",
|
59 |
+
"dev": true,
|
60 |
+
"license": "MIT",
|
61 |
+
"engines": {
|
62 |
+
"node": ">=6.9.0"
|
63 |
+
}
|
64 |
+
},
|
65 |
+
"node_modules/@babel/core": {
|
66 |
+
"version": "7.28.3",
|
67 |
+
"resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.3.tgz",
|
68 |
+
"integrity": "sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==",
|
69 |
+
"dev": true,
|
70 |
+
"license": "MIT",
|
71 |
+
"dependencies": {
|
72 |
+
"@ampproject/remapping": "^2.2.0",
|
73 |
+
"@babel/code-frame": "^7.27.1",
|
74 |
+
"@babel/generator": "^7.28.3",
|
75 |
+
"@babel/helper-compilation-targets": "^7.27.2",
|
76 |
+
"@babel/helper-module-transforms": "^7.28.3",
|
77 |
+
"@babel/helpers": "^7.28.3",
|
78 |
+
"@babel/parser": "^7.28.3",
|
79 |
+
"@babel/template": "^7.27.2",
|
80 |
+
"@babel/traverse": "^7.28.3",
|
81 |
+
"@babel/types": "^7.28.2",
|
82 |
+
"convert-source-map": "^2.0.0",
|
83 |
+
"debug": "^4.1.0",
|
84 |
+
"gensync": "^1.0.0-beta.2",
|
85 |
+
"json5": "^2.2.3",
|
86 |
+
"semver": "^6.3.1"
|
87 |
+
},
|
88 |
+
"engines": {
|
89 |
+
"node": ">=6.9.0"
|
90 |
+
},
|
91 |
+
"funding": {
|
92 |
+
"type": "opencollective",
|
93 |
+
"url": "https://opencollective.com/babel"
|
94 |
+
}
|
95 |
+
},
|
96 |
+
"node_modules/@babel/generator": {
|
97 |
+
"version": "7.28.3",
|
98 |
+
"resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.3.tgz",
|
99 |
+
"integrity": "sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==",
|
100 |
+
"dev": true,
|
101 |
+
"license": "MIT",
|
102 |
+
"dependencies": {
|
103 |
+
"@babel/parser": "^7.28.3",
|
104 |
+
"@babel/types": "^7.28.2",
|
105 |
+
"@jridgewell/gen-mapping": "^0.3.12",
|
106 |
+
"@jridgewell/trace-mapping": "^0.3.28",
|
107 |
+
"jsesc": "^3.0.2"
|
108 |
+
},
|
109 |
+
"engines": {
|
110 |
+
"node": ">=6.9.0"
|
111 |
+
}
|
112 |
+
},
|
113 |
+
"node_modules/@babel/helper-compilation-targets": {
|
114 |
+
"version": "7.27.2",
|
115 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz",
|
116 |
+
"integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==",
|
117 |
+
"dev": true,
|
118 |
+
"license": "MIT",
|
119 |
+
"dependencies": {
|
120 |
+
"@babel/compat-data": "^7.27.2",
|
121 |
+
"@babel/helper-validator-option": "^7.27.1",
|
122 |
+
"browserslist": "^4.24.0",
|
123 |
+
"lru-cache": "^5.1.1",
|
124 |
+
"semver": "^6.3.1"
|
125 |
+
},
|
126 |
+
"engines": {
|
127 |
+
"node": ">=6.9.0"
|
128 |
+
}
|
129 |
+
},
|
130 |
+
"node_modules/@babel/helper-globals": {
|
131 |
+
"version": "7.28.0",
|
132 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz",
|
133 |
+
"integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==",
|
134 |
+
"dev": true,
|
135 |
+
"license": "MIT",
|
136 |
+
"engines": {
|
137 |
+
"node": ">=6.9.0"
|
138 |
+
}
|
139 |
+
},
|
140 |
+
"node_modules/@babel/helper-module-imports": {
|
141 |
+
"version": "7.27.1",
|
142 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz",
|
143 |
+
"integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==",
|
144 |
+
"dev": true,
|
145 |
+
"license": "MIT",
|
146 |
+
"dependencies": {
|
147 |
+
"@babel/traverse": "^7.27.1",
|
148 |
+
"@babel/types": "^7.27.1"
|
149 |
+
},
|
150 |
+
"engines": {
|
151 |
+
"node": ">=6.9.0"
|
152 |
+
}
|
153 |
+
},
|
154 |
+
"node_modules/@babel/helper-module-transforms": {
|
155 |
+
"version": "7.28.3",
|
156 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz",
|
157 |
+
"integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==",
|
158 |
+
"dev": true,
|
159 |
+
"license": "MIT",
|
160 |
+
"dependencies": {
|
161 |
+
"@babel/helper-module-imports": "^7.27.1",
|
162 |
+
"@babel/helper-validator-identifier": "^7.27.1",
|
163 |
+
"@babel/traverse": "^7.28.3"
|
164 |
+
},
|
165 |
+
"engines": {
|
166 |
+
"node": ">=6.9.0"
|
167 |
+
},
|
168 |
+
"peerDependencies": {
|
169 |
+
"@babel/core": "^7.0.0"
|
170 |
+
}
|
171 |
+
},
|
172 |
+
"node_modules/@babel/helper-plugin-utils": {
|
173 |
+
"version": "7.27.1",
|
174 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz",
|
175 |
+
"integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==",
|
176 |
+
"dev": true,
|
177 |
+
"license": "MIT",
|
178 |
+
"engines": {
|
179 |
+
"node": ">=6.9.0"
|
180 |
+
}
|
181 |
+
},
|
182 |
+
"node_modules/@babel/helper-string-parser": {
|
183 |
+
"version": "7.27.1",
|
184 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
|
185 |
+
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
|
186 |
+
"dev": true,
|
187 |
+
"license": "MIT",
|
188 |
+
"engines": {
|
189 |
+
"node": ">=6.9.0"
|
190 |
+
}
|
191 |
+
},
|
192 |
+
"node_modules/@babel/helper-validator-identifier": {
|
193 |
+
"version": "7.27.1",
|
194 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
|
195 |
+
"integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
|
196 |
+
"dev": true,
|
197 |
+
"license": "MIT",
|
198 |
+
"engines": {
|
199 |
+
"node": ">=6.9.0"
|
200 |
+
}
|
201 |
+
},
|
202 |
+
"node_modules/@babel/helper-validator-option": {
|
203 |
+
"version": "7.27.1",
|
204 |
+
"resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz",
|
205 |
+
"integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==",
|
206 |
+
"dev": true,
|
207 |
+
"license": "MIT",
|
208 |
+
"engines": {
|
209 |
+
"node": ">=6.9.0"
|
210 |
+
}
|
211 |
+
},
|
212 |
+
"node_modules/@babel/helpers": {
|
213 |
+
"version": "7.28.3",
|
214 |
+
"resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.3.tgz",
|
215 |
+
"integrity": "sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==",
|
216 |
+
"dev": true,
|
217 |
+
"license": "MIT",
|
218 |
+
"dependencies": {
|
219 |
+
"@babel/template": "^7.27.2",
|
220 |
+
"@babel/types": "^7.28.2"
|
221 |
+
},
|
222 |
+
"engines": {
|
223 |
+
"node": ">=6.9.0"
|
224 |
+
}
|
225 |
+
},
|
226 |
+
"node_modules/@babel/parser": {
|
227 |
+
"version": "7.28.3",
|
228 |
+
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.3.tgz",
|
229 |
+
"integrity": "sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==",
|
230 |
+
"dev": true,
|
231 |
+
"license": "MIT",
|
232 |
+
"dependencies": {
|
233 |
+
"@babel/types": "^7.28.2"
|
234 |
+
},
|
235 |
+
"bin": {
|
236 |
+
"parser": "bin/babel-parser.js"
|
237 |
+
},
|
238 |
+
"engines": {
|
239 |
+
"node": ">=6.0.0"
|
240 |
+
}
|
241 |
+
},
|
242 |
+
"node_modules/@babel/plugin-transform-react-jsx-self": {
|
243 |
+
"version": "7.27.1",
|
244 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz",
|
245 |
+
"integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==",
|
246 |
+
"dev": true,
|
247 |
+
"license": "MIT",
|
248 |
+
"dependencies": {
|
249 |
+
"@babel/helper-plugin-utils": "^7.27.1"
|
250 |
+
},
|
251 |
+
"engines": {
|
252 |
+
"node": ">=6.9.0"
|
253 |
+
},
|
254 |
+
"peerDependencies": {
|
255 |
+
"@babel/core": "^7.0.0-0"
|
256 |
+
}
|
257 |
+
},
|
258 |
+
"node_modules/@babel/plugin-transform-react-jsx-source": {
|
259 |
+
"version": "7.27.1",
|
260 |
+
"resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz",
|
261 |
+
"integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==",
|
262 |
+
"dev": true,
|
263 |
+
"license": "MIT",
|
264 |
+
"dependencies": {
|
265 |
+
"@babel/helper-plugin-utils": "^7.27.1"
|
266 |
+
},
|
267 |
+
"engines": {
|
268 |
+
"node": ">=6.9.0"
|
269 |
+
},
|
270 |
+
"peerDependencies": {
|
271 |
+
"@babel/core": "^7.0.0-0"
|
272 |
+
}
|
273 |
+
},
|
274 |
+
"node_modules/@babel/template": {
|
275 |
+
"version": "7.27.2",
|
276 |
+
"resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz",
|
277 |
+
"integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==",
|
278 |
+
"dev": true,
|
279 |
+
"license": "MIT",
|
280 |
+
"dependencies": {
|
281 |
+
"@babel/code-frame": "^7.27.1",
|
282 |
+
"@babel/parser": "^7.27.2",
|
283 |
+
"@babel/types": "^7.27.1"
|
284 |
+
},
|
285 |
+
"engines": {
|
286 |
+
"node": ">=6.9.0"
|
287 |
+
}
|
288 |
+
},
|
289 |
+
"node_modules/@babel/traverse": {
|
290 |
+
"version": "7.28.3",
|
291 |
+
"resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.3.tgz",
|
292 |
+
"integrity": "sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==",
|
293 |
+
"dev": true,
|
294 |
+
"license": "MIT",
|
295 |
+
"dependencies": {
|
296 |
+
"@babel/code-frame": "^7.27.1",
|
297 |
+
"@babel/generator": "^7.28.3",
|
298 |
+
"@babel/helper-globals": "^7.28.0",
|
299 |
+
"@babel/parser": "^7.28.3",
|
300 |
+
"@babel/template": "^7.27.2",
|
301 |
+
"@babel/types": "^7.28.2",
|
302 |
+
"debug": "^4.3.1"
|
303 |
+
},
|
304 |
+
"engines": {
|
305 |
+
"node": ">=6.9.0"
|
306 |
+
}
|
307 |
+
},
|
308 |
+
"node_modules/@babel/types": {
|
309 |
+
"version": "7.28.2",
|
310 |
+
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.2.tgz",
|
311 |
+
"integrity": "sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==",
|
312 |
+
"dev": true,
|
313 |
+
"license": "MIT",
|
314 |
+
"dependencies": {
|
315 |
+
"@babel/helper-string-parser": "^7.27.1",
|
316 |
+
"@babel/helper-validator-identifier": "^7.27.1"
|
317 |
+
},
|
318 |
+
"engines": {
|
319 |
+
"node": ">=6.9.0"
|
320 |
+
}
|
321 |
+
},
|
322 |
+
"node_modules/@esbuild/aix-ppc64": {
|
323 |
+
"version": "0.25.9",
|
324 |
+
"resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.9.tgz",
|
325 |
+
"integrity": "sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==",
|
326 |
+
"cpu": [
|
327 |
+
"ppc64"
|
328 |
+
],
|
329 |
+
"dev": true,
|
330 |
+
"license": "MIT",
|
331 |
+
"optional": true,
|
332 |
+
"os": [
|
333 |
+
"aix"
|
334 |
+
],
|
335 |
+
"engines": {
|
336 |
+
"node": ">=18"
|
337 |
+
}
|
338 |
+
},
|
339 |
+
"node_modules/@esbuild/android-arm": {
|
340 |
+
"version": "0.25.9",
|
341 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.9.tgz",
|
342 |
+
"integrity": "sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==",
|
343 |
+
"cpu": [
|
344 |
+
"arm"
|
345 |
+
],
|
346 |
+
"dev": true,
|
347 |
+
"license": "MIT",
|
348 |
+
"optional": true,
|
349 |
+
"os": [
|
350 |
+
"android"
|
351 |
+
],
|
352 |
+
"engines": {
|
353 |
+
"node": ">=18"
|
354 |
+
}
|
355 |
+
},
|
356 |
+
"node_modules/@esbuild/android-arm64": {
|
357 |
+
"version": "0.25.9",
|
358 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.9.tgz",
|
359 |
+
"integrity": "sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==",
|
360 |
+
"cpu": [
|
361 |
+
"arm64"
|
362 |
+
],
|
363 |
+
"dev": true,
|
364 |
+
"license": "MIT",
|
365 |
+
"optional": true,
|
366 |
+
"os": [
|
367 |
+
"android"
|
368 |
+
],
|
369 |
+
"engines": {
|
370 |
+
"node": ">=18"
|
371 |
+
}
|
372 |
+
},
|
373 |
+
"node_modules/@esbuild/android-x64": {
|
374 |
+
"version": "0.25.9",
|
375 |
+
"resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.9.tgz",
|
376 |
+
"integrity": "sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==",
|
377 |
+
"cpu": [
|
378 |
+
"x64"
|
379 |
+
],
|
380 |
+
"dev": true,
|
381 |
+
"license": "MIT",
|
382 |
+
"optional": true,
|
383 |
+
"os": [
|
384 |
+
"android"
|
385 |
+
],
|
386 |
+
"engines": {
|
387 |
+
"node": ">=18"
|
388 |
+
}
|
389 |
+
},
|
390 |
+
"node_modules/@esbuild/darwin-arm64": {
|
391 |
+
"version": "0.25.9",
|
392 |
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.9.tgz",
|
393 |
+
"integrity": "sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==",
|
394 |
+
"cpu": [
|
395 |
+
"arm64"
|
396 |
+
],
|
397 |
+
"dev": true,
|
398 |
+
"license": "MIT",
|
399 |
+
"optional": true,
|
400 |
+
"os": [
|
401 |
+
"darwin"
|
402 |
+
],
|
403 |
+
"engines": {
|
404 |
+
"node": ">=18"
|
405 |
+
}
|
406 |
+
},
|
407 |
+
"node_modules/@esbuild/darwin-x64": {
|
408 |
+
"version": "0.25.9",
|
409 |
+
"resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.9.tgz",
|
410 |
+
"integrity": "sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==",
|
411 |
+
"cpu": [
|
412 |
+
"x64"
|
413 |
+
],
|
414 |
+
"dev": true,
|
415 |
+
"license": "MIT",
|
416 |
+
"optional": true,
|
417 |
+
"os": [
|
418 |
+
"darwin"
|
419 |
+
],
|
420 |
+
"engines": {
|
421 |
+
"node": ">=18"
|
422 |
+
}
|
423 |
+
},
|
424 |
+
"node_modules/@esbuild/freebsd-arm64": {
|
425 |
+
"version": "0.25.9",
|
426 |
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.9.tgz",
|
427 |
+
"integrity": "sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==",
|
428 |
+
"cpu": [
|
429 |
+
"arm64"
|
430 |
+
],
|
431 |
+
"dev": true,
|
432 |
+
"license": "MIT",
|
433 |
+
"optional": true,
|
434 |
+
"os": [
|
435 |
+
"freebsd"
|
436 |
+
],
|
437 |
+
"engines": {
|
438 |
+
"node": ">=18"
|
439 |
+
}
|
440 |
+
},
|
441 |
+
"node_modules/@esbuild/freebsd-x64": {
|
442 |
+
"version": "0.25.9",
|
443 |
+
"resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.9.tgz",
|
444 |
+
"integrity": "sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==",
|
445 |
+
"cpu": [
|
446 |
+
"x64"
|
447 |
+
],
|
448 |
+
"dev": true,
|
449 |
+
"license": "MIT",
|
450 |
+
"optional": true,
|
451 |
+
"os": [
|
452 |
+
"freebsd"
|
453 |
+
],
|
454 |
+
"engines": {
|
455 |
+
"node": ">=18"
|
456 |
+
}
|
457 |
+
},
|
458 |
+
"node_modules/@esbuild/linux-arm": {
|
459 |
+
"version": "0.25.9",
|
460 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.9.tgz",
|
461 |
+
"integrity": "sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==",
|
462 |
+
"cpu": [
|
463 |
+
"arm"
|
464 |
+
],
|
465 |
+
"dev": true,
|
466 |
+
"license": "MIT",
|
467 |
+
"optional": true,
|
468 |
+
"os": [
|
469 |
+
"linux"
|
470 |
+
],
|
471 |
+
"engines": {
|
472 |
+
"node": ">=18"
|
473 |
+
}
|
474 |
+
},
|
475 |
+
"node_modules/@esbuild/linux-arm64": {
|
476 |
+
"version": "0.25.9",
|
477 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.9.tgz",
|
478 |
+
"integrity": "sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==",
|
479 |
+
"cpu": [
|
480 |
+
"arm64"
|
481 |
+
],
|
482 |
+
"dev": true,
|
483 |
+
"license": "MIT",
|
484 |
+
"optional": true,
|
485 |
+
"os": [
|
486 |
+
"linux"
|
487 |
+
],
|
488 |
+
"engines": {
|
489 |
+
"node": ">=18"
|
490 |
+
}
|
491 |
+
},
|
492 |
+
"node_modules/@esbuild/linux-ia32": {
|
493 |
+
"version": "0.25.9",
|
494 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.9.tgz",
|
495 |
+
"integrity": "sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==",
|
496 |
+
"cpu": [
|
497 |
+
"ia32"
|
498 |
+
],
|
499 |
+
"dev": true,
|
500 |
+
"license": "MIT",
|
501 |
+
"optional": true,
|
502 |
+
"os": [
|
503 |
+
"linux"
|
504 |
+
],
|
505 |
+
"engines": {
|
506 |
+
"node": ">=18"
|
507 |
+
}
|
508 |
+
},
|
509 |
+
"node_modules/@esbuild/linux-loong64": {
|
510 |
+
"version": "0.25.9",
|
511 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.9.tgz",
|
512 |
+
"integrity": "sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==",
|
513 |
+
"cpu": [
|
514 |
+
"loong64"
|
515 |
+
],
|
516 |
+
"dev": true,
|
517 |
+
"license": "MIT",
|
518 |
+
"optional": true,
|
519 |
+
"os": [
|
520 |
+
"linux"
|
521 |
+
],
|
522 |
+
"engines": {
|
523 |
+
"node": ">=18"
|
524 |
+
}
|
525 |
+
},
|
526 |
+
"node_modules/@esbuild/linux-mips64el": {
|
527 |
+
"version": "0.25.9",
|
528 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.9.tgz",
|
529 |
+
"integrity": "sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==",
|
530 |
+
"cpu": [
|
531 |
+
"mips64el"
|
532 |
+
],
|
533 |
+
"dev": true,
|
534 |
+
"license": "MIT",
|
535 |
+
"optional": true,
|
536 |
+
"os": [
|
537 |
+
"linux"
|
538 |
+
],
|
539 |
+
"engines": {
|
540 |
+
"node": ">=18"
|
541 |
+
}
|
542 |
+
},
|
543 |
+
"node_modules/@esbuild/linux-ppc64": {
|
544 |
+
"version": "0.25.9",
|
545 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.9.tgz",
|
546 |
+
"integrity": "sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==",
|
547 |
+
"cpu": [
|
548 |
+
"ppc64"
|
549 |
+
],
|
550 |
+
"dev": true,
|
551 |
+
"license": "MIT",
|
552 |
+
"optional": true,
|
553 |
+
"os": [
|
554 |
+
"linux"
|
555 |
+
],
|
556 |
+
"engines": {
|
557 |
+
"node": ">=18"
|
558 |
+
}
|
559 |
+
},
|
560 |
+
"node_modules/@esbuild/linux-riscv64": {
|
561 |
+
"version": "0.25.9",
|
562 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.9.tgz",
|
563 |
+
"integrity": "sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==",
|
564 |
+
"cpu": [
|
565 |
+
"riscv64"
|
566 |
+
],
|
567 |
+
"dev": true,
|
568 |
+
"license": "MIT",
|
569 |
+
"optional": true,
|
570 |
+
"os": [
|
571 |
+
"linux"
|
572 |
+
],
|
573 |
+
"engines": {
|
574 |
+
"node": ">=18"
|
575 |
+
}
|
576 |
+
},
|
577 |
+
"node_modules/@esbuild/linux-s390x": {
|
578 |
+
"version": "0.25.9",
|
579 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.9.tgz",
|
580 |
+
"integrity": "sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==",
|
581 |
+
"cpu": [
|
582 |
+
"s390x"
|
583 |
+
],
|
584 |
+
"dev": true,
|
585 |
+
"license": "MIT",
|
586 |
+
"optional": true,
|
587 |
+
"os": [
|
588 |
+
"linux"
|
589 |
+
],
|
590 |
+
"engines": {
|
591 |
+
"node": ">=18"
|
592 |
+
}
|
593 |
+
},
|
594 |
+
"node_modules/@esbuild/linux-x64": {
|
595 |
+
"version": "0.25.9",
|
596 |
+
"resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.9.tgz",
|
597 |
+
"integrity": "sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==",
|
598 |
+
"cpu": [
|
599 |
+
"x64"
|
600 |
+
],
|
601 |
+
"dev": true,
|
602 |
+
"license": "MIT",
|
603 |
+
"optional": true,
|
604 |
+
"os": [
|
605 |
+
"linux"
|
606 |
+
],
|
607 |
+
"engines": {
|
608 |
+
"node": ">=18"
|
609 |
+
}
|
610 |
+
},
|
611 |
+
"node_modules/@esbuild/netbsd-arm64": {
|
612 |
+
"version": "0.25.9",
|
613 |
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.9.tgz",
|
614 |
+
"integrity": "sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==",
|
615 |
+
"cpu": [
|
616 |
+
"arm64"
|
617 |
+
],
|
618 |
+
"dev": true,
|
619 |
+
"license": "MIT",
|
620 |
+
"optional": true,
|
621 |
+
"os": [
|
622 |
+
"netbsd"
|
623 |
+
],
|
624 |
+
"engines": {
|
625 |
+
"node": ">=18"
|
626 |
+
}
|
627 |
+
},
|
628 |
+
"node_modules/@esbuild/netbsd-x64": {
|
629 |
+
"version": "0.25.9",
|
630 |
+
"resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.9.tgz",
|
631 |
+
"integrity": "sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==",
|
632 |
+
"cpu": [
|
633 |
+
"x64"
|
634 |
+
],
|
635 |
+
"dev": true,
|
636 |
+
"license": "MIT",
|
637 |
+
"optional": true,
|
638 |
+
"os": [
|
639 |
+
"netbsd"
|
640 |
+
],
|
641 |
+
"engines": {
|
642 |
+
"node": ">=18"
|
643 |
+
}
|
644 |
+
},
|
645 |
+
"node_modules/@esbuild/openbsd-arm64": {
|
646 |
+
"version": "0.25.9",
|
647 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.9.tgz",
|
648 |
+
"integrity": "sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==",
|
649 |
+
"cpu": [
|
650 |
+
"arm64"
|
651 |
+
],
|
652 |
+
"dev": true,
|
653 |
+
"license": "MIT",
|
654 |
+
"optional": true,
|
655 |
+
"os": [
|
656 |
+
"openbsd"
|
657 |
+
],
|
658 |
+
"engines": {
|
659 |
+
"node": ">=18"
|
660 |
+
}
|
661 |
+
},
|
662 |
+
"node_modules/@esbuild/openbsd-x64": {
|
663 |
+
"version": "0.25.9",
|
664 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.9.tgz",
|
665 |
+
"integrity": "sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==",
|
666 |
+
"cpu": [
|
667 |
+
"x64"
|
668 |
+
],
|
669 |
+
"dev": true,
|
670 |
+
"license": "MIT",
|
671 |
+
"optional": true,
|
672 |
+
"os": [
|
673 |
+
"openbsd"
|
674 |
+
],
|
675 |
+
"engines": {
|
676 |
+
"node": ">=18"
|
677 |
+
}
|
678 |
+
},
|
679 |
+
"node_modules/@esbuild/openharmony-arm64": {
|
680 |
+
"version": "0.25.9",
|
681 |
+
"resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.9.tgz",
|
682 |
+
"integrity": "sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==",
|
683 |
+
"cpu": [
|
684 |
+
"arm64"
|
685 |
+
],
|
686 |
+
"dev": true,
|
687 |
+
"license": "MIT",
|
688 |
+
"optional": true,
|
689 |
+
"os": [
|
690 |
+
"openharmony"
|
691 |
+
],
|
692 |
+
"engines": {
|
693 |
+
"node": ">=18"
|
694 |
+
}
|
695 |
+
},
|
696 |
+
"node_modules/@esbuild/sunos-x64": {
|
697 |
+
"version": "0.25.9",
|
698 |
+
"resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.9.tgz",
|
699 |
+
"integrity": "sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==",
|
700 |
+
"cpu": [
|
701 |
+
"x64"
|
702 |
+
],
|
703 |
+
"dev": true,
|
704 |
+
"license": "MIT",
|
705 |
+
"optional": true,
|
706 |
+
"os": [
|
707 |
+
"sunos"
|
708 |
+
],
|
709 |
+
"engines": {
|
710 |
+
"node": ">=18"
|
711 |
+
}
|
712 |
+
},
|
713 |
+
"node_modules/@esbuild/win32-arm64": {
|
714 |
+
"version": "0.25.9",
|
715 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.9.tgz",
|
716 |
+
"integrity": "sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==",
|
717 |
+
"cpu": [
|
718 |
+
"arm64"
|
719 |
+
],
|
720 |
+
"dev": true,
|
721 |
+
"license": "MIT",
|
722 |
+
"optional": true,
|
723 |
+
"os": [
|
724 |
+
"win32"
|
725 |
+
],
|
726 |
+
"engines": {
|
727 |
+
"node": ">=18"
|
728 |
+
}
|
729 |
+
},
|
730 |
+
"node_modules/@esbuild/win32-ia32": {
|
731 |
+
"version": "0.25.9",
|
732 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.9.tgz",
|
733 |
+
"integrity": "sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==",
|
734 |
+
"cpu": [
|
735 |
+
"ia32"
|
736 |
+
],
|
737 |
+
"dev": true,
|
738 |
+
"license": "MIT",
|
739 |
+
"optional": true,
|
740 |
+
"os": [
|
741 |
+
"win32"
|
742 |
+
],
|
743 |
+
"engines": {
|
744 |
+
"node": ">=18"
|
745 |
+
}
|
746 |
+
},
|
747 |
+
"node_modules/@esbuild/win32-x64": {
|
748 |
+
"version": "0.25.9",
|
749 |
+
"resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.9.tgz",
|
750 |
+
"integrity": "sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==",
|
751 |
+
"cpu": [
|
752 |
+
"x64"
|
753 |
+
],
|
754 |
+
"dev": true,
|
755 |
+
"license": "MIT",
|
756 |
+
"optional": true,
|
757 |
+
"os": [
|
758 |
+
"win32"
|
759 |
+
],
|
760 |
+
"engines": {
|
761 |
+
"node": ">=18"
|
762 |
+
}
|
763 |
+
},
|
764 |
+
"node_modules/@eslint-community/eslint-utils": {
|
765 |
+
"version": "4.7.0",
|
766 |
+
"resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.7.0.tgz",
|
767 |
+
"integrity": "sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==",
|
768 |
+
"dev": true,
|
769 |
+
"license": "MIT",
|
770 |
+
"dependencies": {
|
771 |
+
"eslint-visitor-keys": "^3.4.3"
|
772 |
+
},
|
773 |
+
"engines": {
|
774 |
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
775 |
+
},
|
776 |
+
"funding": {
|
777 |
+
"url": "https://opencollective.com/eslint"
|
778 |
+
},
|
779 |
+
"peerDependencies": {
|
780 |
+
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
|
781 |
+
}
|
782 |
+
},
|
783 |
+
"node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": {
|
784 |
+
"version": "3.4.3",
|
785 |
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz",
|
786 |
+
"integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==",
|
787 |
+
"dev": true,
|
788 |
+
"license": "Apache-2.0",
|
789 |
+
"engines": {
|
790 |
+
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
791 |
+
},
|
792 |
+
"funding": {
|
793 |
+
"url": "https://opencollective.com/eslint"
|
794 |
+
}
|
795 |
+
},
|
796 |
+
"node_modules/@eslint-community/regexpp": {
|
797 |
+
"version": "4.12.1",
|
798 |
+
"resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz",
|
799 |
+
"integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==",
|
800 |
+
"dev": true,
|
801 |
+
"license": "MIT",
|
802 |
+
"engines": {
|
803 |
+
"node": "^12.0.0 || ^14.0.0 || >=16.0.0"
|
804 |
+
}
|
805 |
+
},
|
806 |
+
"node_modules/@eslint/config-array": {
|
807 |
+
"version": "0.21.0",
|
808 |
+
"resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.21.0.tgz",
|
809 |
+
"integrity": "sha512-ENIdc4iLu0d93HeYirvKmrzshzofPw6VkZRKQGe9Nv46ZnWUzcF1xV01dcvEg/1wXUR61OmmlSfyeyO7EvjLxQ==",
|
810 |
+
"dev": true,
|
811 |
+
"license": "Apache-2.0",
|
812 |
+
"dependencies": {
|
813 |
+
"@eslint/object-schema": "^2.1.6",
|
814 |
+
"debug": "^4.3.1",
|
815 |
+
"minimatch": "^3.1.2"
|
816 |
+
},
|
817 |
+
"engines": {
|
818 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
819 |
+
}
|
820 |
+
},
|
821 |
+
"node_modules/@eslint/config-helpers": {
|
822 |
+
"version": "0.3.1",
|
823 |
+
"resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.3.1.tgz",
|
824 |
+
"integrity": "sha512-xR93k9WhrDYpXHORXpxVL5oHj3Era7wo6k/Wd8/IsQNnZUTzkGS29lyn3nAT05v6ltUuTFVCCYDEGfy2Or/sPA==",
|
825 |
+
"dev": true,
|
826 |
+
"license": "Apache-2.0",
|
827 |
+
"engines": {
|
828 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
829 |
+
}
|
830 |
+
},
|
831 |
+
"node_modules/@eslint/core": {
|
832 |
+
"version": "0.15.2",
|
833 |
+
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz",
|
834 |
+
"integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==",
|
835 |
+
"dev": true,
|
836 |
+
"license": "Apache-2.0",
|
837 |
+
"dependencies": {
|
838 |
+
"@types/json-schema": "^7.0.15"
|
839 |
+
},
|
840 |
+
"engines": {
|
841 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
842 |
+
}
|
843 |
+
},
|
844 |
+
"node_modules/@eslint/eslintrc": {
|
845 |
+
"version": "3.3.1",
|
846 |
+
"resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz",
|
847 |
+
"integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==",
|
848 |
+
"dev": true,
|
849 |
+
"license": "MIT",
|
850 |
+
"dependencies": {
|
851 |
+
"ajv": "^6.12.4",
|
852 |
+
"debug": "^4.3.2",
|
853 |
+
"espree": "^10.0.1",
|
854 |
+
"globals": "^14.0.0",
|
855 |
+
"ignore": "^5.2.0",
|
856 |
+
"import-fresh": "^3.2.1",
|
857 |
+
"js-yaml": "^4.1.0",
|
858 |
+
"minimatch": "^3.1.2",
|
859 |
+
"strip-json-comments": "^3.1.1"
|
860 |
+
},
|
861 |
+
"engines": {
|
862 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
863 |
+
},
|
864 |
+
"funding": {
|
865 |
+
"url": "https://opencollective.com/eslint"
|
866 |
+
}
|
867 |
+
},
|
868 |
+
"node_modules/@eslint/eslintrc/node_modules/globals": {
|
869 |
+
"version": "14.0.0",
|
870 |
+
"resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz",
|
871 |
+
"integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==",
|
872 |
+
"dev": true,
|
873 |
+
"license": "MIT",
|
874 |
+
"engines": {
|
875 |
+
"node": ">=18"
|
876 |
+
},
|
877 |
+
"funding": {
|
878 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
879 |
+
}
|
880 |
+
},
|
881 |
+
"node_modules/@eslint/js": {
|
882 |
+
"version": "9.34.0",
|
883 |
+
"resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.34.0.tgz",
|
884 |
+
"integrity": "sha512-EoyvqQnBNsV1CWaEJ559rxXL4c8V92gxirbawSmVUOWXlsRxxQXl6LmCpdUblgxgSkDIqKnhzba2SjRTI/A5Rw==",
|
885 |
+
"dev": true,
|
886 |
+
"license": "MIT",
|
887 |
+
"engines": {
|
888 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
889 |
+
},
|
890 |
+
"funding": {
|
891 |
+
"url": "https://eslint.org/donate"
|
892 |
+
}
|
893 |
+
},
|
894 |
+
"node_modules/@eslint/object-schema": {
|
895 |
+
"version": "2.1.6",
|
896 |
+
"resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz",
|
897 |
+
"integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==",
|
898 |
+
"dev": true,
|
899 |
+
"license": "Apache-2.0",
|
900 |
+
"engines": {
|
901 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
902 |
+
}
|
903 |
+
},
|
904 |
+
"node_modules/@eslint/plugin-kit": {
|
905 |
+
"version": "0.3.5",
|
906 |
+
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz",
|
907 |
+
"integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==",
|
908 |
+
"dev": true,
|
909 |
+
"license": "Apache-2.0",
|
910 |
+
"dependencies": {
|
911 |
+
"@eslint/core": "^0.15.2",
|
912 |
+
"levn": "^0.4.1"
|
913 |
+
},
|
914 |
+
"engines": {
|
915 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
916 |
+
}
|
917 |
+
},
|
918 |
+
"node_modules/@humanfs/core": {
|
919 |
+
"version": "0.19.1",
|
920 |
+
"resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz",
|
921 |
+
"integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==",
|
922 |
+
"dev": true,
|
923 |
+
"license": "Apache-2.0",
|
924 |
+
"engines": {
|
925 |
+
"node": ">=18.18.0"
|
926 |
+
}
|
927 |
+
},
|
928 |
+
"node_modules/@humanfs/node": {
|
929 |
+
"version": "0.16.6",
|
930 |
+
"resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz",
|
931 |
+
"integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==",
|
932 |
+
"dev": true,
|
933 |
+
"license": "Apache-2.0",
|
934 |
+
"dependencies": {
|
935 |
+
"@humanfs/core": "^0.19.1",
|
936 |
+
"@humanwhocodes/retry": "^0.3.0"
|
937 |
+
},
|
938 |
+
"engines": {
|
939 |
+
"node": ">=18.18.0"
|
940 |
+
}
|
941 |
+
},
|
942 |
+
"node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": {
|
943 |
+
"version": "0.3.1",
|
944 |
+
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz",
|
945 |
+
"integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==",
|
946 |
+
"dev": true,
|
947 |
+
"license": "Apache-2.0",
|
948 |
+
"engines": {
|
949 |
+
"node": ">=18.18"
|
950 |
+
},
|
951 |
+
"funding": {
|
952 |
+
"type": "github",
|
953 |
+
"url": "https://github.com/sponsors/nzakas"
|
954 |
+
}
|
955 |
+
},
|
956 |
+
"node_modules/@humanwhocodes/module-importer": {
|
957 |
+
"version": "1.0.1",
|
958 |
+
"resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
|
959 |
+
"integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
|
960 |
+
"dev": true,
|
961 |
+
"license": "Apache-2.0",
|
962 |
+
"engines": {
|
963 |
+
"node": ">=12.22"
|
964 |
+
},
|
965 |
+
"funding": {
|
966 |
+
"type": "github",
|
967 |
+
"url": "https://github.com/sponsors/nzakas"
|
968 |
+
}
|
969 |
+
},
|
970 |
+
"node_modules/@humanwhocodes/retry": {
|
971 |
+
"version": "0.4.3",
|
972 |
+
"resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.3.tgz",
|
973 |
+
"integrity": "sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==",
|
974 |
+
"dev": true,
|
975 |
+
"license": "Apache-2.0",
|
976 |
+
"engines": {
|
977 |
+
"node": ">=18.18"
|
978 |
+
},
|
979 |
+
"funding": {
|
980 |
+
"type": "github",
|
981 |
+
"url": "https://github.com/sponsors/nzakas"
|
982 |
+
}
|
983 |
+
},
|
984 |
+
"node_modules/@jridgewell/gen-mapping": {
|
985 |
+
"version": "0.3.13",
|
986 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
|
987 |
+
"integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
|
988 |
+
"dev": true,
|
989 |
+
"license": "MIT",
|
990 |
+
"dependencies": {
|
991 |
+
"@jridgewell/sourcemap-codec": "^1.5.0",
|
992 |
+
"@jridgewell/trace-mapping": "^0.3.24"
|
993 |
+
}
|
994 |
+
},
|
995 |
+
"node_modules/@jridgewell/resolve-uri": {
|
996 |
+
"version": "3.1.2",
|
997 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
|
998 |
+
"integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
|
999 |
+
"dev": true,
|
1000 |
+
"license": "MIT",
|
1001 |
+
"engines": {
|
1002 |
+
"node": ">=6.0.0"
|
1003 |
+
}
|
1004 |
+
},
|
1005 |
+
"node_modules/@jridgewell/sourcemap-codec": {
|
1006 |
+
"version": "1.5.5",
|
1007 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
|
1008 |
+
"integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
|
1009 |
+
"dev": true,
|
1010 |
+
"license": "MIT"
|
1011 |
+
},
|
1012 |
+
"node_modules/@jridgewell/trace-mapping": {
|
1013 |
+
"version": "0.3.30",
|
1014 |
+
"resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.30.tgz",
|
1015 |
+
"integrity": "sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==",
|
1016 |
+
"dev": true,
|
1017 |
+
"license": "MIT",
|
1018 |
+
"dependencies": {
|
1019 |
+
"@jridgewell/resolve-uri": "^3.1.0",
|
1020 |
+
"@jridgewell/sourcemap-codec": "^1.4.14"
|
1021 |
+
}
|
1022 |
+
},
|
1023 |
+
"node_modules/@rolldown/pluginutils": {
|
1024 |
+
"version": "1.0.0-beta.34",
|
1025 |
+
"resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.34.tgz",
|
1026 |
+
"integrity": "sha512-LyAREkZHP5pMom7c24meKmJCdhf2hEyvam2q0unr3or9ydwDL+DJ8chTF6Av/RFPb3rH8UFBdMzO5MxTZW97oA==",
|
1027 |
+
"dev": true,
|
1028 |
+
"license": "MIT"
|
1029 |
+
},
|
1030 |
+
"node_modules/@rollup/rollup-android-arm-eabi": {
|
1031 |
+
"version": "4.50.0",
|
1032 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.50.0.tgz",
|
1033 |
+
"integrity": "sha512-lVgpeQyy4fWN5QYebtW4buT/4kn4p4IJ+kDNB4uYNT5b8c8DLJDg6titg20NIg7E8RWwdWZORW6vUFfrLyG3KQ==",
|
1034 |
+
"cpu": [
|
1035 |
+
"arm"
|
1036 |
+
],
|
1037 |
+
"dev": true,
|
1038 |
+
"license": "MIT",
|
1039 |
+
"optional": true,
|
1040 |
+
"os": [
|
1041 |
+
"android"
|
1042 |
+
]
|
1043 |
+
},
|
1044 |
+
"node_modules/@rollup/rollup-android-arm64": {
|
1045 |
+
"version": "4.50.0",
|
1046 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.50.0.tgz",
|
1047 |
+
"integrity": "sha512-2O73dR4Dc9bp+wSYhviP6sDziurB5/HCym7xILKifWdE9UsOe2FtNcM+I4xZjKrfLJnq5UR8k9riB87gauiQtw==",
|
1048 |
+
"cpu": [
|
1049 |
+
"arm64"
|
1050 |
+
],
|
1051 |
+
"dev": true,
|
1052 |
+
"license": "MIT",
|
1053 |
+
"optional": true,
|
1054 |
+
"os": [
|
1055 |
+
"android"
|
1056 |
+
]
|
1057 |
+
},
|
1058 |
+
"node_modules/@rollup/rollup-darwin-arm64": {
|
1059 |
+
"version": "4.50.0",
|
1060 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.50.0.tgz",
|
1061 |
+
"integrity": "sha512-vwSXQN8T4sKf1RHr1F0s98Pf8UPz7pS6P3LG9NSmuw0TVh7EmaE+5Ny7hJOZ0M2yuTctEsHHRTMi2wuHkdS6Hg==",
|
1062 |
+
"cpu": [
|
1063 |
+
"arm64"
|
1064 |
+
],
|
1065 |
+
"dev": true,
|
1066 |
+
"license": "MIT",
|
1067 |
+
"optional": true,
|
1068 |
+
"os": [
|
1069 |
+
"darwin"
|
1070 |
+
]
|
1071 |
+
},
|
1072 |
+
"node_modules/@rollup/rollup-darwin-x64": {
|
1073 |
+
"version": "4.50.0",
|
1074 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.50.0.tgz",
|
1075 |
+
"integrity": "sha512-cQp/WG8HE7BCGyFVuzUg0FNmupxC+EPZEwWu2FCGGw5WDT1o2/YlENbm5e9SMvfDFR6FRhVCBePLqj0o8MN7Vw==",
|
1076 |
+
"cpu": [
|
1077 |
+
"x64"
|
1078 |
+
],
|
1079 |
+
"dev": true,
|
1080 |
+
"license": "MIT",
|
1081 |
+
"optional": true,
|
1082 |
+
"os": [
|
1083 |
+
"darwin"
|
1084 |
+
]
|
1085 |
+
},
|
1086 |
+
"node_modules/@rollup/rollup-freebsd-arm64": {
|
1087 |
+
"version": "4.50.0",
|
1088 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.50.0.tgz",
|
1089 |
+
"integrity": "sha512-UR1uTJFU/p801DvvBbtDD7z9mQL8J80xB0bR7DqW7UGQHRm/OaKzp4is7sQSdbt2pjjSS72eAtRh43hNduTnnQ==",
|
1090 |
+
"cpu": [
|
1091 |
+
"arm64"
|
1092 |
+
],
|
1093 |
+
"dev": true,
|
1094 |
+
"license": "MIT",
|
1095 |
+
"optional": true,
|
1096 |
+
"os": [
|
1097 |
+
"freebsd"
|
1098 |
+
]
|
1099 |
+
},
|
1100 |
+
"node_modules/@rollup/rollup-freebsd-x64": {
|
1101 |
+
"version": "4.50.0",
|
1102 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.50.0.tgz",
|
1103 |
+
"integrity": "sha512-G/DKyS6PK0dD0+VEzH/6n/hWDNPDZSMBmqsElWnCRGrYOb2jC0VSupp7UAHHQ4+QILwkxSMaYIbQ72dktp8pKA==",
|
1104 |
+
"cpu": [
|
1105 |
+
"x64"
|
1106 |
+
],
|
1107 |
+
"dev": true,
|
1108 |
+
"license": "MIT",
|
1109 |
+
"optional": true,
|
1110 |
+
"os": [
|
1111 |
+
"freebsd"
|
1112 |
+
]
|
1113 |
+
},
|
1114 |
+
"node_modules/@rollup/rollup-linux-arm-gnueabihf": {
|
1115 |
+
"version": "4.50.0",
|
1116 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.50.0.tgz",
|
1117 |
+
"integrity": "sha512-u72Mzc6jyJwKjJbZZcIYmd9bumJu7KNmHYdue43vT1rXPm2rITwmPWF0mmPzLm9/vJWxIRbao/jrQmxTO0Sm9w==",
|
1118 |
+
"cpu": [
|
1119 |
+
"arm"
|
1120 |
+
],
|
1121 |
+
"dev": true,
|
1122 |
+
"license": "MIT",
|
1123 |
+
"optional": true,
|
1124 |
+
"os": [
|
1125 |
+
"linux"
|
1126 |
+
]
|
1127 |
+
},
|
1128 |
+
"node_modules/@rollup/rollup-linux-arm-musleabihf": {
|
1129 |
+
"version": "4.50.0",
|
1130 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.50.0.tgz",
|
1131 |
+
"integrity": "sha512-S4UefYdV0tnynDJV1mdkNawp0E5Qm2MtSs330IyHgaccOFrwqsvgigUD29uT+B/70PDY1eQ3t40+xf6wIvXJyg==",
|
1132 |
+
"cpu": [
|
1133 |
+
"arm"
|
1134 |
+
],
|
1135 |
+
"dev": true,
|
1136 |
+
"license": "MIT",
|
1137 |
+
"optional": true,
|
1138 |
+
"os": [
|
1139 |
+
"linux"
|
1140 |
+
]
|
1141 |
+
},
|
1142 |
+
"node_modules/@rollup/rollup-linux-arm64-gnu": {
|
1143 |
+
"version": "4.50.0",
|
1144 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.50.0.tgz",
|
1145 |
+
"integrity": "sha512-1EhkSvUQXJsIhk4msxP5nNAUWoB4MFDHhtc4gAYvnqoHlaL9V3F37pNHabndawsfy/Tp7BPiy/aSa6XBYbaD1g==",
|
1146 |
+
"cpu": [
|
1147 |
+
"arm64"
|
1148 |
+
],
|
1149 |
+
"dev": true,
|
1150 |
+
"license": "MIT",
|
1151 |
+
"optional": true,
|
1152 |
+
"os": [
|
1153 |
+
"linux"
|
1154 |
+
]
|
1155 |
+
},
|
1156 |
+
"node_modules/@rollup/rollup-linux-arm64-musl": {
|
1157 |
+
"version": "4.50.0",
|
1158 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.50.0.tgz",
|
1159 |
+
"integrity": "sha512-EtBDIZuDtVg75xIPIK1l5vCXNNCIRM0OBPUG+tbApDuJAy9mKago6QxX+tfMzbCI6tXEhMuZuN1+CU8iDW+0UQ==",
|
1160 |
+
"cpu": [
|
1161 |
+
"arm64"
|
1162 |
+
],
|
1163 |
+
"dev": true,
|
1164 |
+
"license": "MIT",
|
1165 |
+
"optional": true,
|
1166 |
+
"os": [
|
1167 |
+
"linux"
|
1168 |
+
]
|
1169 |
+
},
|
1170 |
+
"node_modules/@rollup/rollup-linux-loongarch64-gnu": {
|
1171 |
+
"version": "4.50.0",
|
1172 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.50.0.tgz",
|
1173 |
+
"integrity": "sha512-BGYSwJdMP0hT5CCmljuSNx7+k+0upweM2M4YGfFBjnFSZMHOLYR0gEEj/dxyYJ6Zc6AiSeaBY8dWOa11GF/ppQ==",
|
1174 |
+
"cpu": [
|
1175 |
+
"loong64"
|
1176 |
+
],
|
1177 |
+
"dev": true,
|
1178 |
+
"license": "MIT",
|
1179 |
+
"optional": true,
|
1180 |
+
"os": [
|
1181 |
+
"linux"
|
1182 |
+
]
|
1183 |
+
},
|
1184 |
+
"node_modules/@rollup/rollup-linux-ppc64-gnu": {
|
1185 |
+
"version": "4.50.0",
|
1186 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.50.0.tgz",
|
1187 |
+
"integrity": "sha512-I1gSMzkVe1KzAxKAroCJL30hA4DqSi+wGc5gviD0y3IL/VkvcnAqwBf4RHXHyvH66YVHxpKO8ojrgc4SrWAnLg==",
|
1188 |
+
"cpu": [
|
1189 |
+
"ppc64"
|
1190 |
+
],
|
1191 |
+
"dev": true,
|
1192 |
+
"license": "MIT",
|
1193 |
+
"optional": true,
|
1194 |
+
"os": [
|
1195 |
+
"linux"
|
1196 |
+
]
|
1197 |
+
},
|
1198 |
+
"node_modules/@rollup/rollup-linux-riscv64-gnu": {
|
1199 |
+
"version": "4.50.0",
|
1200 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.50.0.tgz",
|
1201 |
+
"integrity": "sha512-bSbWlY3jZo7molh4tc5dKfeSxkqnf48UsLqYbUhnkdnfgZjgufLS/NTA8PcP/dnvct5CCdNkABJ56CbclMRYCA==",
|
1202 |
+
"cpu": [
|
1203 |
+
"riscv64"
|
1204 |
+
],
|
1205 |
+
"dev": true,
|
1206 |
+
"license": "MIT",
|
1207 |
+
"optional": true,
|
1208 |
+
"os": [
|
1209 |
+
"linux"
|
1210 |
+
]
|
1211 |
+
},
|
1212 |
+
"node_modules/@rollup/rollup-linux-riscv64-musl": {
|
1213 |
+
"version": "4.50.0",
|
1214 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.50.0.tgz",
|
1215 |
+
"integrity": "sha512-LSXSGumSURzEQLT2e4sFqFOv3LWZsEF8FK7AAv9zHZNDdMnUPYH3t8ZlaeYYZyTXnsob3htwTKeWtBIkPV27iQ==",
|
1216 |
+
"cpu": [
|
1217 |
+
"riscv64"
|
1218 |
+
],
|
1219 |
+
"dev": true,
|
1220 |
+
"license": "MIT",
|
1221 |
+
"optional": true,
|
1222 |
+
"os": [
|
1223 |
+
"linux"
|
1224 |
+
]
|
1225 |
+
},
|
1226 |
+
"node_modules/@rollup/rollup-linux-s390x-gnu": {
|
1227 |
+
"version": "4.50.0",
|
1228 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.50.0.tgz",
|
1229 |
+
"integrity": "sha512-CxRKyakfDrsLXiCyucVfVWVoaPA4oFSpPpDwlMcDFQvrv3XY6KEzMtMZrA+e/goC8xxp2WSOxHQubP8fPmmjOQ==",
|
1230 |
+
"cpu": [
|
1231 |
+
"s390x"
|
1232 |
+
],
|
1233 |
+
"dev": true,
|
1234 |
+
"license": "MIT",
|
1235 |
+
"optional": true,
|
1236 |
+
"os": [
|
1237 |
+
"linux"
|
1238 |
+
]
|
1239 |
+
},
|
1240 |
+
"node_modules/@rollup/rollup-linux-x64-gnu": {
|
1241 |
+
"version": "4.50.0",
|
1242 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.50.0.tgz",
|
1243 |
+
"integrity": "sha512-8PrJJA7/VU8ToHVEPu14FzuSAqVKyo5gg/J8xUerMbyNkWkO9j2ExBho/68RnJsMGNJq4zH114iAttgm7BZVkA==",
|
1244 |
+
"cpu": [
|
1245 |
+
"x64"
|
1246 |
+
],
|
1247 |
+
"dev": true,
|
1248 |
+
"license": "MIT",
|
1249 |
+
"optional": true,
|
1250 |
+
"os": [
|
1251 |
+
"linux"
|
1252 |
+
]
|
1253 |
+
},
|
1254 |
+
"node_modules/@rollup/rollup-linux-x64-musl": {
|
1255 |
+
"version": "4.50.0",
|
1256 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.50.0.tgz",
|
1257 |
+
"integrity": "sha512-SkE6YQp+CzpyOrbw7Oc4MgXFvTw2UIBElvAvLCo230pyxOLmYwRPwZ/L5lBe/VW/qT1ZgND9wJfOsdy0XptRvw==",
|
1258 |
+
"cpu": [
|
1259 |
+
"x64"
|
1260 |
+
],
|
1261 |
+
"dev": true,
|
1262 |
+
"license": "MIT",
|
1263 |
+
"optional": true,
|
1264 |
+
"os": [
|
1265 |
+
"linux"
|
1266 |
+
]
|
1267 |
+
},
|
1268 |
+
"node_modules/@rollup/rollup-openharmony-arm64": {
|
1269 |
+
"version": "4.50.0",
|
1270 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.50.0.tgz",
|
1271 |
+
"integrity": "sha512-PZkNLPfvXeIOgJWA804zjSFH7fARBBCpCXxgkGDRjjAhRLOR8o0IGS01ykh5GYfod4c2yiiREuDM8iZ+pVsT+Q==",
|
1272 |
+
"cpu": [
|
1273 |
+
"arm64"
|
1274 |
+
],
|
1275 |
+
"dev": true,
|
1276 |
+
"license": "MIT",
|
1277 |
+
"optional": true,
|
1278 |
+
"os": [
|
1279 |
+
"openharmony"
|
1280 |
+
]
|
1281 |
+
},
|
1282 |
+
"node_modules/@rollup/rollup-win32-arm64-msvc": {
|
1283 |
+
"version": "4.50.0",
|
1284 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.50.0.tgz",
|
1285 |
+
"integrity": "sha512-q7cIIdFvWQoaCbLDUyUc8YfR3Jh2xx3unO8Dn6/TTogKjfwrax9SyfmGGK6cQhKtjePI7jRfd7iRYcxYs93esg==",
|
1286 |
+
"cpu": [
|
1287 |
+
"arm64"
|
1288 |
+
],
|
1289 |
+
"dev": true,
|
1290 |
+
"license": "MIT",
|
1291 |
+
"optional": true,
|
1292 |
+
"os": [
|
1293 |
+
"win32"
|
1294 |
+
]
|
1295 |
+
},
|
1296 |
+
"node_modules/@rollup/rollup-win32-ia32-msvc": {
|
1297 |
+
"version": "4.50.0",
|
1298 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.50.0.tgz",
|
1299 |
+
"integrity": "sha512-XzNOVg/YnDOmFdDKcxxK410PrcbcqZkBmz+0FicpW5jtjKQxcW1BZJEQOF0NJa6JO7CZhett8GEtRN/wYLYJuw==",
|
1300 |
+
"cpu": [
|
1301 |
+
"ia32"
|
1302 |
+
],
|
1303 |
+
"dev": true,
|
1304 |
+
"license": "MIT",
|
1305 |
+
"optional": true,
|
1306 |
+
"os": [
|
1307 |
+
"win32"
|
1308 |
+
]
|
1309 |
+
},
|
1310 |
+
"node_modules/@rollup/rollup-win32-x64-msvc": {
|
1311 |
+
"version": "4.50.0",
|
1312 |
+
"resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.50.0.tgz",
|
1313 |
+
"integrity": "sha512-xMmiWRR8sp72Zqwjgtf3QbZfF1wdh8X2ABu3EaozvZcyHJeU0r+XAnXdKgs4cCAp6ORoYoCygipYP1mjmbjrsg==",
|
1314 |
+
"cpu": [
|
1315 |
+
"x64"
|
1316 |
+
],
|
1317 |
+
"dev": true,
|
1318 |
+
"license": "MIT",
|
1319 |
+
"optional": true,
|
1320 |
+
"os": [
|
1321 |
+
"win32"
|
1322 |
+
]
|
1323 |
+
},
|
1324 |
+
"node_modules/@types/babel__core": {
|
1325 |
+
"version": "7.20.5",
|
1326 |
+
"resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
|
1327 |
+
"integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==",
|
1328 |
+
"dev": true,
|
1329 |
+
"license": "MIT",
|
1330 |
+
"dependencies": {
|
1331 |
+
"@babel/parser": "^7.20.7",
|
1332 |
+
"@babel/types": "^7.20.7",
|
1333 |
+
"@types/babel__generator": "*",
|
1334 |
+
"@types/babel__template": "*",
|
1335 |
+
"@types/babel__traverse": "*"
|
1336 |
+
}
|
1337 |
+
},
|
1338 |
+
"node_modules/@types/babel__generator": {
|
1339 |
+
"version": "7.27.0",
|
1340 |
+
"resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz",
|
1341 |
+
"integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==",
|
1342 |
+
"dev": true,
|
1343 |
+
"license": "MIT",
|
1344 |
+
"dependencies": {
|
1345 |
+
"@babel/types": "^7.0.0"
|
1346 |
+
}
|
1347 |
+
},
|
1348 |
+
"node_modules/@types/babel__template": {
|
1349 |
+
"version": "7.4.4",
|
1350 |
+
"resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz",
|
1351 |
+
"integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==",
|
1352 |
+
"dev": true,
|
1353 |
+
"license": "MIT",
|
1354 |
+
"dependencies": {
|
1355 |
+
"@babel/parser": "^7.1.0",
|
1356 |
+
"@babel/types": "^7.0.0"
|
1357 |
+
}
|
1358 |
+
},
|
1359 |
+
"node_modules/@types/babel__traverse": {
|
1360 |
+
"version": "7.28.0",
|
1361 |
+
"resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz",
|
1362 |
+
"integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==",
|
1363 |
+
"dev": true,
|
1364 |
+
"license": "MIT",
|
1365 |
+
"dependencies": {
|
1366 |
+
"@babel/types": "^7.28.2"
|
1367 |
+
}
|
1368 |
+
},
|
1369 |
+
"node_modules/@types/estree": {
|
1370 |
+
"version": "1.0.8",
|
1371 |
+
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
|
1372 |
+
"integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
|
1373 |
+
"dev": true,
|
1374 |
+
"license": "MIT"
|
1375 |
+
},
|
1376 |
+
"node_modules/@types/json-schema": {
|
1377 |
+
"version": "7.0.15",
|
1378 |
+
"resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz",
|
1379 |
+
"integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==",
|
1380 |
+
"dev": true,
|
1381 |
+
"license": "MIT"
|
1382 |
+
},
|
1383 |
+
"node_modules/@types/react": {
|
1384 |
+
"version": "19.1.12",
|
1385 |
+
"resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.12.tgz",
|
1386 |
+
"integrity": "sha512-cMoR+FoAf/Jyq6+Df2/Z41jISvGZZ2eTlnsaJRptmZ76Caldwy1odD4xTr/gNV9VLj0AWgg/nmkevIyUfIIq5w==",
|
1387 |
+
"dev": true,
|
1388 |
+
"license": "MIT",
|
1389 |
+
"dependencies": {
|
1390 |
+
"csstype": "^3.0.2"
|
1391 |
+
}
|
1392 |
+
},
|
1393 |
+
"node_modules/@types/react-dom": {
|
1394 |
+
"version": "19.1.9",
|
1395 |
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.1.9.tgz",
|
1396 |
+
"integrity": "sha512-qXRuZaOsAdXKFyOhRBg6Lqqc0yay13vN7KrIg4L7N4aaHN68ma9OK3NE1BoDFgFOTfM7zg+3/8+2n8rLUH3OKQ==",
|
1397 |
+
"dev": true,
|
1398 |
+
"license": "MIT",
|
1399 |
+
"peerDependencies": {
|
1400 |
+
"@types/react": "^19.0.0"
|
1401 |
+
}
|
1402 |
+
},
|
1403 |
+
"node_modules/@vitejs/plugin-react": {
|
1404 |
+
"version": "5.0.2",
|
1405 |
+
"resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-5.0.2.tgz",
|
1406 |
+
"integrity": "sha512-tmyFgixPZCx2+e6VO9TNITWcCQl8+Nl/E8YbAyPVv85QCc7/A3JrdfG2A8gIzvVhWuzMOVrFW1aReaNxrI6tbw==",
|
1407 |
+
"dev": true,
|
1408 |
+
"license": "MIT",
|
1409 |
+
"dependencies": {
|
1410 |
+
"@babel/core": "^7.28.3",
|
1411 |
+
"@babel/plugin-transform-react-jsx-self": "^7.27.1",
|
1412 |
+
"@babel/plugin-transform-react-jsx-source": "^7.27.1",
|
1413 |
+
"@rolldown/pluginutils": "1.0.0-beta.34",
|
1414 |
+
"@types/babel__core": "^7.20.5",
|
1415 |
+
"react-refresh": "^0.17.0"
|
1416 |
+
},
|
1417 |
+
"engines": {
|
1418 |
+
"node": "^20.19.0 || >=22.12.0"
|
1419 |
+
},
|
1420 |
+
"peerDependencies": {
|
1421 |
+
"vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
|
1422 |
+
}
|
1423 |
+
},
|
1424 |
+
"node_modules/acorn": {
|
1425 |
+
"version": "8.15.0",
|
1426 |
+
"resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
|
1427 |
+
"integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
|
1428 |
+
"dev": true,
|
1429 |
+
"license": "MIT",
|
1430 |
+
"bin": {
|
1431 |
+
"acorn": "bin/acorn"
|
1432 |
+
},
|
1433 |
+
"engines": {
|
1434 |
+
"node": ">=0.4.0"
|
1435 |
+
}
|
1436 |
+
},
|
1437 |
+
"node_modules/acorn-jsx": {
|
1438 |
+
"version": "5.3.2",
|
1439 |
+
"resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
|
1440 |
+
"integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
|
1441 |
+
"dev": true,
|
1442 |
+
"license": "MIT",
|
1443 |
+
"peerDependencies": {
|
1444 |
+
"acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
|
1445 |
+
}
|
1446 |
+
},
|
1447 |
+
"node_modules/ajv": {
|
1448 |
+
"version": "6.12.6",
|
1449 |
+
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
|
1450 |
+
"integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
|
1451 |
+
"dev": true,
|
1452 |
+
"license": "MIT",
|
1453 |
+
"dependencies": {
|
1454 |
+
"fast-deep-equal": "^3.1.1",
|
1455 |
+
"fast-json-stable-stringify": "^2.0.0",
|
1456 |
+
"json-schema-traverse": "^0.4.1",
|
1457 |
+
"uri-js": "^4.2.2"
|
1458 |
+
},
|
1459 |
+
"funding": {
|
1460 |
+
"type": "github",
|
1461 |
+
"url": "https://github.com/sponsors/epoberezkin"
|
1462 |
+
}
|
1463 |
+
},
|
1464 |
+
"node_modules/ansi-styles": {
|
1465 |
+
"version": "4.3.0",
|
1466 |
+
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
|
1467 |
+
"integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
|
1468 |
+
"dev": true,
|
1469 |
+
"license": "MIT",
|
1470 |
+
"dependencies": {
|
1471 |
+
"color-convert": "^2.0.1"
|
1472 |
+
},
|
1473 |
+
"engines": {
|
1474 |
+
"node": ">=8"
|
1475 |
+
},
|
1476 |
+
"funding": {
|
1477 |
+
"url": "https://github.com/chalk/ansi-styles?sponsor=1"
|
1478 |
+
}
|
1479 |
+
},
|
1480 |
+
"node_modules/argparse": {
|
1481 |
+
"version": "2.0.1",
|
1482 |
+
"resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
|
1483 |
+
"integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==",
|
1484 |
+
"dev": true,
|
1485 |
+
"license": "Python-2.0"
|
1486 |
+
},
|
1487 |
+
"node_modules/balanced-match": {
|
1488 |
+
"version": "1.0.2",
|
1489 |
+
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
|
1490 |
+
"integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
|
1491 |
+
"dev": true,
|
1492 |
+
"license": "MIT"
|
1493 |
+
},
|
1494 |
+
"node_modules/brace-expansion": {
|
1495 |
+
"version": "1.1.12",
|
1496 |
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz",
|
1497 |
+
"integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==",
|
1498 |
+
"dev": true,
|
1499 |
+
"license": "MIT",
|
1500 |
+
"dependencies": {
|
1501 |
+
"balanced-match": "^1.0.0",
|
1502 |
+
"concat-map": "0.0.1"
|
1503 |
+
}
|
1504 |
+
},
|
1505 |
+
"node_modules/browserslist": {
|
1506 |
+
"version": "4.25.4",
|
1507 |
+
"resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.25.4.tgz",
|
1508 |
+
"integrity": "sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==",
|
1509 |
+
"dev": true,
|
1510 |
+
"funding": [
|
1511 |
+
{
|
1512 |
+
"type": "opencollective",
|
1513 |
+
"url": "https://opencollective.com/browserslist"
|
1514 |
+
},
|
1515 |
+
{
|
1516 |
+
"type": "tidelift",
|
1517 |
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
1518 |
+
},
|
1519 |
+
{
|
1520 |
+
"type": "github",
|
1521 |
+
"url": "https://github.com/sponsors/ai"
|
1522 |
+
}
|
1523 |
+
],
|
1524 |
+
"license": "MIT",
|
1525 |
+
"dependencies": {
|
1526 |
+
"caniuse-lite": "^1.0.30001737",
|
1527 |
+
"electron-to-chromium": "^1.5.211",
|
1528 |
+
"node-releases": "^2.0.19",
|
1529 |
+
"update-browserslist-db": "^1.1.3"
|
1530 |
+
},
|
1531 |
+
"bin": {
|
1532 |
+
"browserslist": "cli.js"
|
1533 |
+
},
|
1534 |
+
"engines": {
|
1535 |
+
"node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
|
1536 |
+
}
|
1537 |
+
},
|
1538 |
+
"node_modules/callsites": {
|
1539 |
+
"version": "3.1.0",
|
1540 |
+
"resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
|
1541 |
+
"integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
|
1542 |
+
"dev": true,
|
1543 |
+
"license": "MIT",
|
1544 |
+
"engines": {
|
1545 |
+
"node": ">=6"
|
1546 |
+
}
|
1547 |
+
},
|
1548 |
+
"node_modules/caniuse-lite": {
|
1549 |
+
"version": "1.0.30001739",
|
1550 |
+
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001739.tgz",
|
1551 |
+
"integrity": "sha512-y+j60d6ulelrNSwpPyrHdl+9mJnQzHBr08xm48Qno0nSk4h3Qojh+ziv2qE6rXf4k3tadF4o1J/1tAbVm1NtnA==",
|
1552 |
+
"dev": true,
|
1553 |
+
"funding": [
|
1554 |
+
{
|
1555 |
+
"type": "opencollective",
|
1556 |
+
"url": "https://opencollective.com/browserslist"
|
1557 |
+
},
|
1558 |
+
{
|
1559 |
+
"type": "tidelift",
|
1560 |
+
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
1561 |
+
},
|
1562 |
+
{
|
1563 |
+
"type": "github",
|
1564 |
+
"url": "https://github.com/sponsors/ai"
|
1565 |
+
}
|
1566 |
+
],
|
1567 |
+
"license": "CC-BY-4.0"
|
1568 |
+
},
|
1569 |
+
"node_modules/chalk": {
|
1570 |
+
"version": "4.1.2",
|
1571 |
+
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
|
1572 |
+
"integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
|
1573 |
+
"dev": true,
|
1574 |
+
"license": "MIT",
|
1575 |
+
"dependencies": {
|
1576 |
+
"ansi-styles": "^4.1.0",
|
1577 |
+
"supports-color": "^7.1.0"
|
1578 |
+
},
|
1579 |
+
"engines": {
|
1580 |
+
"node": ">=10"
|
1581 |
+
},
|
1582 |
+
"funding": {
|
1583 |
+
"url": "https://github.com/chalk/chalk?sponsor=1"
|
1584 |
+
}
|
1585 |
+
},
|
1586 |
+
"node_modules/color-convert": {
|
1587 |
+
"version": "2.0.1",
|
1588 |
+
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
|
1589 |
+
"integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
|
1590 |
+
"dev": true,
|
1591 |
+
"license": "MIT",
|
1592 |
+
"dependencies": {
|
1593 |
+
"color-name": "~1.1.4"
|
1594 |
+
},
|
1595 |
+
"engines": {
|
1596 |
+
"node": ">=7.0.0"
|
1597 |
+
}
|
1598 |
+
},
|
1599 |
+
"node_modules/color-name": {
|
1600 |
+
"version": "1.1.4",
|
1601 |
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
|
1602 |
+
"integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
|
1603 |
+
"dev": true,
|
1604 |
+
"license": "MIT"
|
1605 |
+
},
|
1606 |
+
"node_modules/concat-map": {
|
1607 |
+
"version": "0.0.1",
|
1608 |
+
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
1609 |
+
"integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
|
1610 |
+
"dev": true,
|
1611 |
+
"license": "MIT"
|
1612 |
+
},
|
1613 |
+
"node_modules/convert-source-map": {
|
1614 |
+
"version": "2.0.0",
|
1615 |
+
"resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz",
|
1616 |
+
"integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==",
|
1617 |
+
"dev": true,
|
1618 |
+
"license": "MIT"
|
1619 |
+
},
|
1620 |
+
"node_modules/cross-spawn": {
|
1621 |
+
"version": "7.0.6",
|
1622 |
+
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz",
|
1623 |
+
"integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==",
|
1624 |
+
"dev": true,
|
1625 |
+
"license": "MIT",
|
1626 |
+
"dependencies": {
|
1627 |
+
"path-key": "^3.1.0",
|
1628 |
+
"shebang-command": "^2.0.0",
|
1629 |
+
"which": "^2.0.1"
|
1630 |
+
},
|
1631 |
+
"engines": {
|
1632 |
+
"node": ">= 8"
|
1633 |
+
}
|
1634 |
+
},
|
1635 |
+
"node_modules/csstype": {
|
1636 |
+
"version": "3.1.3",
|
1637 |
+
"resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
|
1638 |
+
"integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
|
1639 |
+
"dev": true,
|
1640 |
+
"license": "MIT"
|
1641 |
+
},
|
1642 |
+
"node_modules/debug": {
|
1643 |
+
"version": "4.4.1",
|
1644 |
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz",
|
1645 |
+
"integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==",
|
1646 |
+
"dev": true,
|
1647 |
+
"license": "MIT",
|
1648 |
+
"dependencies": {
|
1649 |
+
"ms": "^2.1.3"
|
1650 |
+
},
|
1651 |
+
"engines": {
|
1652 |
+
"node": ">=6.0"
|
1653 |
+
},
|
1654 |
+
"peerDependenciesMeta": {
|
1655 |
+
"supports-color": {
|
1656 |
+
"optional": true
|
1657 |
+
}
|
1658 |
+
}
|
1659 |
+
},
|
1660 |
+
"node_modules/deep-is": {
|
1661 |
+
"version": "0.1.4",
|
1662 |
+
"resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
|
1663 |
+
"integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==",
|
1664 |
+
"dev": true,
|
1665 |
+
"license": "MIT"
|
1666 |
+
},
|
1667 |
+
"node_modules/electron-to-chromium": {
|
1668 |
+
"version": "1.5.211",
|
1669 |
+
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.211.tgz",
|
1670 |
+
"integrity": "sha512-IGBvimJkotaLzFnwIVgW9/UD/AOJ2tByUmeOrtqBfACSbAw5b1G0XpvdaieKyc7ULmbwXVx+4e4Be8pOPBrYkw==",
|
1671 |
+
"dev": true,
|
1672 |
+
"license": "ISC"
|
1673 |
+
},
|
1674 |
+
"node_modules/esbuild": {
|
1675 |
+
"version": "0.25.9",
|
1676 |
+
"resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.9.tgz",
|
1677 |
+
"integrity": "sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==",
|
1678 |
+
"dev": true,
|
1679 |
+
"hasInstallScript": true,
|
1680 |
+
"license": "MIT",
|
1681 |
+
"bin": {
|
1682 |
+
"esbuild": "bin/esbuild"
|
1683 |
+
},
|
1684 |
+
"engines": {
|
1685 |
+
"node": ">=18"
|
1686 |
+
},
|
1687 |
+
"optionalDependencies": {
|
1688 |
+
"@esbuild/aix-ppc64": "0.25.9",
|
1689 |
+
"@esbuild/android-arm": "0.25.9",
|
1690 |
+
"@esbuild/android-arm64": "0.25.9",
|
1691 |
+
"@esbuild/android-x64": "0.25.9",
|
1692 |
+
"@esbuild/darwin-arm64": "0.25.9",
|
1693 |
+
"@esbuild/darwin-x64": "0.25.9",
|
1694 |
+
"@esbuild/freebsd-arm64": "0.25.9",
|
1695 |
+
"@esbuild/freebsd-x64": "0.25.9",
|
1696 |
+
"@esbuild/linux-arm": "0.25.9",
|
1697 |
+
"@esbuild/linux-arm64": "0.25.9",
|
1698 |
+
"@esbuild/linux-ia32": "0.25.9",
|
1699 |
+
"@esbuild/linux-loong64": "0.25.9",
|
1700 |
+
"@esbuild/linux-mips64el": "0.25.9",
|
1701 |
+
"@esbuild/linux-ppc64": "0.25.9",
|
1702 |
+
"@esbuild/linux-riscv64": "0.25.9",
|
1703 |
+
"@esbuild/linux-s390x": "0.25.9",
|
1704 |
+
"@esbuild/linux-x64": "0.25.9",
|
1705 |
+
"@esbuild/netbsd-arm64": "0.25.9",
|
1706 |
+
"@esbuild/netbsd-x64": "0.25.9",
|
1707 |
+
"@esbuild/openbsd-arm64": "0.25.9",
|
1708 |
+
"@esbuild/openbsd-x64": "0.25.9",
|
1709 |
+
"@esbuild/openharmony-arm64": "0.25.9",
|
1710 |
+
"@esbuild/sunos-x64": "0.25.9",
|
1711 |
+
"@esbuild/win32-arm64": "0.25.9",
|
1712 |
+
"@esbuild/win32-ia32": "0.25.9",
|
1713 |
+
"@esbuild/win32-x64": "0.25.9"
|
1714 |
+
}
|
1715 |
+
},
|
1716 |
+
"node_modules/escalade": {
|
1717 |
+
"version": "3.2.0",
|
1718 |
+
"resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
|
1719 |
+
"integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
|
1720 |
+
"dev": true,
|
1721 |
+
"license": "MIT",
|
1722 |
+
"engines": {
|
1723 |
+
"node": ">=6"
|
1724 |
+
}
|
1725 |
+
},
|
1726 |
+
"node_modules/escape-string-regexp": {
|
1727 |
+
"version": "4.0.0",
|
1728 |
+
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
|
1729 |
+
"integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
|
1730 |
+
"dev": true,
|
1731 |
+
"license": "MIT",
|
1732 |
+
"engines": {
|
1733 |
+
"node": ">=10"
|
1734 |
+
},
|
1735 |
+
"funding": {
|
1736 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
1737 |
+
}
|
1738 |
+
},
|
1739 |
+
"node_modules/eslint": {
|
1740 |
+
"version": "9.34.0",
|
1741 |
+
"resolved": "https://registry.npmjs.org/eslint/-/eslint-9.34.0.tgz",
|
1742 |
+
"integrity": "sha512-RNCHRX5EwdrESy3Jc9o8ie8Bog+PeYvvSR8sDGoZxNFTvZ4dlxUB3WzQ3bQMztFrSRODGrLLj8g6OFuGY/aiQg==",
|
1743 |
+
"dev": true,
|
1744 |
+
"license": "MIT",
|
1745 |
+
"dependencies": {
|
1746 |
+
"@eslint-community/eslint-utils": "^4.2.0",
|
1747 |
+
"@eslint-community/regexpp": "^4.12.1",
|
1748 |
+
"@eslint/config-array": "^0.21.0",
|
1749 |
+
"@eslint/config-helpers": "^0.3.1",
|
1750 |
+
"@eslint/core": "^0.15.2",
|
1751 |
+
"@eslint/eslintrc": "^3.3.1",
|
1752 |
+
"@eslint/js": "9.34.0",
|
1753 |
+
"@eslint/plugin-kit": "^0.3.5",
|
1754 |
+
"@humanfs/node": "^0.16.6",
|
1755 |
+
"@humanwhocodes/module-importer": "^1.0.1",
|
1756 |
+
"@humanwhocodes/retry": "^0.4.2",
|
1757 |
+
"@types/estree": "^1.0.6",
|
1758 |
+
"@types/json-schema": "^7.0.15",
|
1759 |
+
"ajv": "^6.12.4",
|
1760 |
+
"chalk": "^4.0.0",
|
1761 |
+
"cross-spawn": "^7.0.6",
|
1762 |
+
"debug": "^4.3.2",
|
1763 |
+
"escape-string-regexp": "^4.0.0",
|
1764 |
+
"eslint-scope": "^8.4.0",
|
1765 |
+
"eslint-visitor-keys": "^4.2.1",
|
1766 |
+
"espree": "^10.4.0",
|
1767 |
+
"esquery": "^1.5.0",
|
1768 |
+
"esutils": "^2.0.2",
|
1769 |
+
"fast-deep-equal": "^3.1.3",
|
1770 |
+
"file-entry-cache": "^8.0.0",
|
1771 |
+
"find-up": "^5.0.0",
|
1772 |
+
"glob-parent": "^6.0.2",
|
1773 |
+
"ignore": "^5.2.0",
|
1774 |
+
"imurmurhash": "^0.1.4",
|
1775 |
+
"is-glob": "^4.0.0",
|
1776 |
+
"json-stable-stringify-without-jsonify": "^1.0.1",
|
1777 |
+
"lodash.merge": "^4.6.2",
|
1778 |
+
"minimatch": "^3.1.2",
|
1779 |
+
"natural-compare": "^1.4.0",
|
1780 |
+
"optionator": "^0.9.3"
|
1781 |
+
},
|
1782 |
+
"bin": {
|
1783 |
+
"eslint": "bin/eslint.js"
|
1784 |
+
},
|
1785 |
+
"engines": {
|
1786 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
1787 |
+
},
|
1788 |
+
"funding": {
|
1789 |
+
"url": "https://eslint.org/donate"
|
1790 |
+
},
|
1791 |
+
"peerDependencies": {
|
1792 |
+
"jiti": "*"
|
1793 |
+
},
|
1794 |
+
"peerDependenciesMeta": {
|
1795 |
+
"jiti": {
|
1796 |
+
"optional": true
|
1797 |
+
}
|
1798 |
+
}
|
1799 |
+
},
|
1800 |
+
"node_modules/eslint-plugin-react-hooks": {
|
1801 |
+
"version": "5.2.0",
|
1802 |
+
"resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.2.0.tgz",
|
1803 |
+
"integrity": "sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==",
|
1804 |
+
"dev": true,
|
1805 |
+
"license": "MIT",
|
1806 |
+
"engines": {
|
1807 |
+
"node": ">=10"
|
1808 |
+
},
|
1809 |
+
"peerDependencies": {
|
1810 |
+
"eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0"
|
1811 |
+
}
|
1812 |
+
},
|
1813 |
+
"node_modules/eslint-plugin-react-refresh": {
|
1814 |
+
"version": "0.4.20",
|
1815 |
+
"resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.20.tgz",
|
1816 |
+
"integrity": "sha512-XpbHQ2q5gUF8BGOX4dHe+71qoirYMhApEPZ7sfhF/dNnOF1UXnCMGZf79SFTBO7Bz5YEIT4TMieSlJBWhP9WBA==",
|
1817 |
+
"dev": true,
|
1818 |
+
"license": "MIT",
|
1819 |
+
"peerDependencies": {
|
1820 |
+
"eslint": ">=8.40"
|
1821 |
+
}
|
1822 |
+
},
|
1823 |
+
"node_modules/eslint-scope": {
|
1824 |
+
"version": "8.4.0",
|
1825 |
+
"resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.4.0.tgz",
|
1826 |
+
"integrity": "sha512-sNXOfKCn74rt8RICKMvJS7XKV/Xk9kA7DyJr8mJik3S7Cwgy3qlkkmyS2uQB3jiJg6VNdZd/pDBJu0nvG2NlTg==",
|
1827 |
+
"dev": true,
|
1828 |
+
"license": "BSD-2-Clause",
|
1829 |
+
"dependencies": {
|
1830 |
+
"esrecurse": "^4.3.0",
|
1831 |
+
"estraverse": "^5.2.0"
|
1832 |
+
},
|
1833 |
+
"engines": {
|
1834 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
1835 |
+
},
|
1836 |
+
"funding": {
|
1837 |
+
"url": "https://opencollective.com/eslint"
|
1838 |
+
}
|
1839 |
+
},
|
1840 |
+
"node_modules/eslint-visitor-keys": {
|
1841 |
+
"version": "4.2.1",
|
1842 |
+
"resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.1.tgz",
|
1843 |
+
"integrity": "sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==",
|
1844 |
+
"dev": true,
|
1845 |
+
"license": "Apache-2.0",
|
1846 |
+
"engines": {
|
1847 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
1848 |
+
},
|
1849 |
+
"funding": {
|
1850 |
+
"url": "https://opencollective.com/eslint"
|
1851 |
+
}
|
1852 |
+
},
|
1853 |
+
"node_modules/espree": {
|
1854 |
+
"version": "10.4.0",
|
1855 |
+
"resolved": "https://registry.npmjs.org/espree/-/espree-10.4.0.tgz",
|
1856 |
+
"integrity": "sha512-j6PAQ2uUr79PZhBjP5C5fhl8e39FmRnOjsD5lGnWrFU8i2G776tBK7+nP8KuQUTTyAZUwfQqXAgrVH5MbH9CYQ==",
|
1857 |
+
"dev": true,
|
1858 |
+
"license": "BSD-2-Clause",
|
1859 |
+
"dependencies": {
|
1860 |
+
"acorn": "^8.15.0",
|
1861 |
+
"acorn-jsx": "^5.3.2",
|
1862 |
+
"eslint-visitor-keys": "^4.2.1"
|
1863 |
+
},
|
1864 |
+
"engines": {
|
1865 |
+
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
|
1866 |
+
},
|
1867 |
+
"funding": {
|
1868 |
+
"url": "https://opencollective.com/eslint"
|
1869 |
+
}
|
1870 |
+
},
|
1871 |
+
"node_modules/esquery": {
|
1872 |
+
"version": "1.6.0",
|
1873 |
+
"resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz",
|
1874 |
+
"integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==",
|
1875 |
+
"dev": true,
|
1876 |
+
"license": "BSD-3-Clause",
|
1877 |
+
"dependencies": {
|
1878 |
+
"estraverse": "^5.1.0"
|
1879 |
+
},
|
1880 |
+
"engines": {
|
1881 |
+
"node": ">=0.10"
|
1882 |
+
}
|
1883 |
+
},
|
1884 |
+
"node_modules/esrecurse": {
|
1885 |
+
"version": "4.3.0",
|
1886 |
+
"resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
|
1887 |
+
"integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
|
1888 |
+
"dev": true,
|
1889 |
+
"license": "BSD-2-Clause",
|
1890 |
+
"dependencies": {
|
1891 |
+
"estraverse": "^5.2.0"
|
1892 |
+
},
|
1893 |
+
"engines": {
|
1894 |
+
"node": ">=4.0"
|
1895 |
+
}
|
1896 |
+
},
|
1897 |
+
"node_modules/estraverse": {
|
1898 |
+
"version": "5.3.0",
|
1899 |
+
"resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
|
1900 |
+
"integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
|
1901 |
+
"dev": true,
|
1902 |
+
"license": "BSD-2-Clause",
|
1903 |
+
"engines": {
|
1904 |
+
"node": ">=4.0"
|
1905 |
+
}
|
1906 |
+
},
|
1907 |
+
"node_modules/esutils": {
|
1908 |
+
"version": "2.0.3",
|
1909 |
+
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
|
1910 |
+
"integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
|
1911 |
+
"dev": true,
|
1912 |
+
"license": "BSD-2-Clause",
|
1913 |
+
"engines": {
|
1914 |
+
"node": ">=0.10.0"
|
1915 |
+
}
|
1916 |
+
},
|
1917 |
+
"node_modules/fast-deep-equal": {
|
1918 |
+
"version": "3.1.3",
|
1919 |
+
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
1920 |
+
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==",
|
1921 |
+
"dev": true,
|
1922 |
+
"license": "MIT"
|
1923 |
+
},
|
1924 |
+
"node_modules/fast-json-stable-stringify": {
|
1925 |
+
"version": "2.1.0",
|
1926 |
+
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
1927 |
+
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==",
|
1928 |
+
"dev": true,
|
1929 |
+
"license": "MIT"
|
1930 |
+
},
|
1931 |
+
"node_modules/fast-levenshtein": {
|
1932 |
+
"version": "2.0.6",
|
1933 |
+
"resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
|
1934 |
+
"integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==",
|
1935 |
+
"dev": true,
|
1936 |
+
"license": "MIT"
|
1937 |
+
},
|
1938 |
+
"node_modules/fdir": {
|
1939 |
+
"version": "6.5.0",
|
1940 |
+
"resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz",
|
1941 |
+
"integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==",
|
1942 |
+
"dev": true,
|
1943 |
+
"license": "MIT",
|
1944 |
+
"engines": {
|
1945 |
+
"node": ">=12.0.0"
|
1946 |
+
},
|
1947 |
+
"peerDependencies": {
|
1948 |
+
"picomatch": "^3 || ^4"
|
1949 |
+
},
|
1950 |
+
"peerDependenciesMeta": {
|
1951 |
+
"picomatch": {
|
1952 |
+
"optional": true
|
1953 |
+
}
|
1954 |
+
}
|
1955 |
+
},
|
1956 |
+
"node_modules/file-entry-cache": {
|
1957 |
+
"version": "8.0.0",
|
1958 |
+
"resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz",
|
1959 |
+
"integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==",
|
1960 |
+
"dev": true,
|
1961 |
+
"license": "MIT",
|
1962 |
+
"dependencies": {
|
1963 |
+
"flat-cache": "^4.0.0"
|
1964 |
+
},
|
1965 |
+
"engines": {
|
1966 |
+
"node": ">=16.0.0"
|
1967 |
+
}
|
1968 |
+
},
|
1969 |
+
"node_modules/find-up": {
|
1970 |
+
"version": "5.0.0",
|
1971 |
+
"resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
|
1972 |
+
"integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
|
1973 |
+
"dev": true,
|
1974 |
+
"license": "MIT",
|
1975 |
+
"dependencies": {
|
1976 |
+
"locate-path": "^6.0.0",
|
1977 |
+
"path-exists": "^4.0.0"
|
1978 |
+
},
|
1979 |
+
"engines": {
|
1980 |
+
"node": ">=10"
|
1981 |
+
},
|
1982 |
+
"funding": {
|
1983 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
1984 |
+
}
|
1985 |
+
},
|
1986 |
+
"node_modules/flat-cache": {
|
1987 |
+
"version": "4.0.1",
|
1988 |
+
"resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz",
|
1989 |
+
"integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==",
|
1990 |
+
"dev": true,
|
1991 |
+
"license": "MIT",
|
1992 |
+
"dependencies": {
|
1993 |
+
"flatted": "^3.2.9",
|
1994 |
+
"keyv": "^4.5.4"
|
1995 |
+
},
|
1996 |
+
"engines": {
|
1997 |
+
"node": ">=16"
|
1998 |
+
}
|
1999 |
+
},
|
2000 |
+
"node_modules/flatted": {
|
2001 |
+
"version": "3.3.3",
|
2002 |
+
"resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz",
|
2003 |
+
"integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==",
|
2004 |
+
"dev": true,
|
2005 |
+
"license": "ISC"
|
2006 |
+
},
|
2007 |
+
"node_modules/fsevents": {
|
2008 |
+
"version": "2.3.3",
|
2009 |
+
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
2010 |
+
"integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
|
2011 |
+
"dev": true,
|
2012 |
+
"hasInstallScript": true,
|
2013 |
+
"license": "MIT",
|
2014 |
+
"optional": true,
|
2015 |
+
"os": [
|
2016 |
+
"darwin"
|
2017 |
+
],
|
2018 |
+
"engines": {
|
2019 |
+
"node": "^8.16.0 || ^10.6.0 || >=11.0.0"
|
2020 |
+
}
|
2021 |
+
},
|
2022 |
+
"node_modules/gensync": {
|
2023 |
+
"version": "1.0.0-beta.2",
|
2024 |
+
"resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz",
|
2025 |
+
"integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==",
|
2026 |
+
"dev": true,
|
2027 |
+
"license": "MIT",
|
2028 |
+
"engines": {
|
2029 |
+
"node": ">=6.9.0"
|
2030 |
+
}
|
2031 |
+
},
|
2032 |
+
"node_modules/glob-parent": {
|
2033 |
+
"version": "6.0.2",
|
2034 |
+
"resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
|
2035 |
+
"integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
|
2036 |
+
"dev": true,
|
2037 |
+
"license": "ISC",
|
2038 |
+
"dependencies": {
|
2039 |
+
"is-glob": "^4.0.3"
|
2040 |
+
},
|
2041 |
+
"engines": {
|
2042 |
+
"node": ">=10.13.0"
|
2043 |
+
}
|
2044 |
+
},
|
2045 |
+
"node_modules/globals": {
|
2046 |
+
"version": "16.3.0",
|
2047 |
+
"resolved": "https://registry.npmjs.org/globals/-/globals-16.3.0.tgz",
|
2048 |
+
"integrity": "sha512-bqWEnJ1Nt3neqx2q5SFfGS8r/ahumIakg3HcwtNlrVlwXIeNumWn/c7Pn/wKzGhf6SaW6H6uWXLqC30STCMchQ==",
|
2049 |
+
"dev": true,
|
2050 |
+
"license": "MIT",
|
2051 |
+
"engines": {
|
2052 |
+
"node": ">=18"
|
2053 |
+
},
|
2054 |
+
"funding": {
|
2055 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
2056 |
+
}
|
2057 |
+
},
|
2058 |
+
"node_modules/has-flag": {
|
2059 |
+
"version": "4.0.0",
|
2060 |
+
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
|
2061 |
+
"integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
|
2062 |
+
"dev": true,
|
2063 |
+
"license": "MIT",
|
2064 |
+
"engines": {
|
2065 |
+
"node": ">=8"
|
2066 |
+
}
|
2067 |
+
},
|
2068 |
+
"node_modules/ignore": {
|
2069 |
+
"version": "5.3.2",
|
2070 |
+
"resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz",
|
2071 |
+
"integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==",
|
2072 |
+
"dev": true,
|
2073 |
+
"license": "MIT",
|
2074 |
+
"engines": {
|
2075 |
+
"node": ">= 4"
|
2076 |
+
}
|
2077 |
+
},
|
2078 |
+
"node_modules/import-fresh": {
|
2079 |
+
"version": "3.3.1",
|
2080 |
+
"resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz",
|
2081 |
+
"integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==",
|
2082 |
+
"dev": true,
|
2083 |
+
"license": "MIT",
|
2084 |
+
"dependencies": {
|
2085 |
+
"parent-module": "^1.0.0",
|
2086 |
+
"resolve-from": "^4.0.0"
|
2087 |
+
},
|
2088 |
+
"engines": {
|
2089 |
+
"node": ">=6"
|
2090 |
+
},
|
2091 |
+
"funding": {
|
2092 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
2093 |
+
}
|
2094 |
+
},
|
2095 |
+
"node_modules/imurmurhash": {
|
2096 |
+
"version": "0.1.4",
|
2097 |
+
"resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
|
2098 |
+
"integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
|
2099 |
+
"dev": true,
|
2100 |
+
"license": "MIT",
|
2101 |
+
"engines": {
|
2102 |
+
"node": ">=0.8.19"
|
2103 |
+
}
|
2104 |
+
},
|
2105 |
+
"node_modules/is-extglob": {
|
2106 |
+
"version": "2.1.1",
|
2107 |
+
"resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
|
2108 |
+
"integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
|
2109 |
+
"dev": true,
|
2110 |
+
"license": "MIT",
|
2111 |
+
"engines": {
|
2112 |
+
"node": ">=0.10.0"
|
2113 |
+
}
|
2114 |
+
},
|
2115 |
+
"node_modules/is-glob": {
|
2116 |
+
"version": "4.0.3",
|
2117 |
+
"resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
|
2118 |
+
"integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
|
2119 |
+
"dev": true,
|
2120 |
+
"license": "MIT",
|
2121 |
+
"dependencies": {
|
2122 |
+
"is-extglob": "^2.1.1"
|
2123 |
+
},
|
2124 |
+
"engines": {
|
2125 |
+
"node": ">=0.10.0"
|
2126 |
+
}
|
2127 |
+
},
|
2128 |
+
"node_modules/isexe": {
|
2129 |
+
"version": "2.0.0",
|
2130 |
+
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
2131 |
+
"integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==",
|
2132 |
+
"dev": true,
|
2133 |
+
"license": "ISC"
|
2134 |
+
},
|
2135 |
+
"node_modules/js-tokens": {
|
2136 |
+
"version": "4.0.0",
|
2137 |
+
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
2138 |
+
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
2139 |
+
"dev": true,
|
2140 |
+
"license": "MIT"
|
2141 |
+
},
|
2142 |
+
"node_modules/js-yaml": {
|
2143 |
+
"version": "4.1.0",
|
2144 |
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
|
2145 |
+
"integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
|
2146 |
+
"dev": true,
|
2147 |
+
"license": "MIT",
|
2148 |
+
"dependencies": {
|
2149 |
+
"argparse": "^2.0.1"
|
2150 |
+
},
|
2151 |
+
"bin": {
|
2152 |
+
"js-yaml": "bin/js-yaml.js"
|
2153 |
+
}
|
2154 |
+
},
|
2155 |
+
"node_modules/jsesc": {
|
2156 |
+
"version": "3.1.0",
|
2157 |
+
"resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz",
|
2158 |
+
"integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==",
|
2159 |
+
"dev": true,
|
2160 |
+
"license": "MIT",
|
2161 |
+
"bin": {
|
2162 |
+
"jsesc": "bin/jsesc"
|
2163 |
+
},
|
2164 |
+
"engines": {
|
2165 |
+
"node": ">=6"
|
2166 |
+
}
|
2167 |
+
},
|
2168 |
+
"node_modules/json-buffer": {
|
2169 |
+
"version": "3.0.1",
|
2170 |
+
"resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz",
|
2171 |
+
"integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==",
|
2172 |
+
"dev": true,
|
2173 |
+
"license": "MIT"
|
2174 |
+
},
|
2175 |
+
"node_modules/json-schema-traverse": {
|
2176 |
+
"version": "0.4.1",
|
2177 |
+
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
2178 |
+
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==",
|
2179 |
+
"dev": true,
|
2180 |
+
"license": "MIT"
|
2181 |
+
},
|
2182 |
+
"node_modules/json-stable-stringify-without-jsonify": {
|
2183 |
+
"version": "1.0.1",
|
2184 |
+
"resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
|
2185 |
+
"integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==",
|
2186 |
+
"dev": true,
|
2187 |
+
"license": "MIT"
|
2188 |
+
},
|
2189 |
+
"node_modules/json5": {
|
2190 |
+
"version": "2.2.3",
|
2191 |
+
"resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz",
|
2192 |
+
"integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==",
|
2193 |
+
"dev": true,
|
2194 |
+
"license": "MIT",
|
2195 |
+
"bin": {
|
2196 |
+
"json5": "lib/cli.js"
|
2197 |
+
},
|
2198 |
+
"engines": {
|
2199 |
+
"node": ">=6"
|
2200 |
+
}
|
2201 |
+
},
|
2202 |
+
"node_modules/keyv": {
|
2203 |
+
"version": "4.5.4",
|
2204 |
+
"resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz",
|
2205 |
+
"integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==",
|
2206 |
+
"dev": true,
|
2207 |
+
"license": "MIT",
|
2208 |
+
"dependencies": {
|
2209 |
+
"json-buffer": "3.0.1"
|
2210 |
+
}
|
2211 |
+
},
|
2212 |
+
"node_modules/levn": {
|
2213 |
+
"version": "0.4.1",
|
2214 |
+
"resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
|
2215 |
+
"integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
|
2216 |
+
"dev": true,
|
2217 |
+
"license": "MIT",
|
2218 |
+
"dependencies": {
|
2219 |
+
"prelude-ls": "^1.2.1",
|
2220 |
+
"type-check": "~0.4.0"
|
2221 |
+
},
|
2222 |
+
"engines": {
|
2223 |
+
"node": ">= 0.8.0"
|
2224 |
+
}
|
2225 |
+
},
|
2226 |
+
"node_modules/locate-path": {
|
2227 |
+
"version": "6.0.0",
|
2228 |
+
"resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
|
2229 |
+
"integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
|
2230 |
+
"dev": true,
|
2231 |
+
"license": "MIT",
|
2232 |
+
"dependencies": {
|
2233 |
+
"p-locate": "^5.0.0"
|
2234 |
+
},
|
2235 |
+
"engines": {
|
2236 |
+
"node": ">=10"
|
2237 |
+
},
|
2238 |
+
"funding": {
|
2239 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
2240 |
+
}
|
2241 |
+
},
|
2242 |
+
"node_modules/lodash.merge": {
|
2243 |
+
"version": "4.6.2",
|
2244 |
+
"resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
|
2245 |
+
"integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==",
|
2246 |
+
"dev": true,
|
2247 |
+
"license": "MIT"
|
2248 |
+
},
|
2249 |
+
"node_modules/lru-cache": {
|
2250 |
+
"version": "5.1.1",
|
2251 |
+
"resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
|
2252 |
+
"integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==",
|
2253 |
+
"dev": true,
|
2254 |
+
"license": "ISC",
|
2255 |
+
"dependencies": {
|
2256 |
+
"yallist": "^3.0.2"
|
2257 |
+
}
|
2258 |
+
},
|
2259 |
+
"node_modules/minimatch": {
|
2260 |
+
"version": "3.1.2",
|
2261 |
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
|
2262 |
+
"integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
|
2263 |
+
"dev": true,
|
2264 |
+
"license": "ISC",
|
2265 |
+
"dependencies": {
|
2266 |
+
"brace-expansion": "^1.1.7"
|
2267 |
+
},
|
2268 |
+
"engines": {
|
2269 |
+
"node": "*"
|
2270 |
+
}
|
2271 |
+
},
|
2272 |
+
"node_modules/ms": {
|
2273 |
+
"version": "2.1.3",
|
2274 |
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
2275 |
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
2276 |
+
"dev": true,
|
2277 |
+
"license": "MIT"
|
2278 |
+
},
|
2279 |
+
"node_modules/nanoid": {
|
2280 |
+
"version": "3.3.11",
|
2281 |
+
"resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
|
2282 |
+
"integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
|
2283 |
+
"dev": true,
|
2284 |
+
"funding": [
|
2285 |
+
{
|
2286 |
+
"type": "github",
|
2287 |
+
"url": "https://github.com/sponsors/ai"
|
2288 |
+
}
|
2289 |
+
],
|
2290 |
+
"license": "MIT",
|
2291 |
+
"bin": {
|
2292 |
+
"nanoid": "bin/nanoid.cjs"
|
2293 |
+
},
|
2294 |
+
"engines": {
|
2295 |
+
"node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
|
2296 |
+
}
|
2297 |
+
},
|
2298 |
+
"node_modules/natural-compare": {
|
2299 |
+
"version": "1.4.0",
|
2300 |
+
"resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
|
2301 |
+
"integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==",
|
2302 |
+
"dev": true,
|
2303 |
+
"license": "MIT"
|
2304 |
+
},
|
2305 |
+
"node_modules/node-releases": {
|
2306 |
+
"version": "2.0.19",
|
2307 |
+
"resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz",
|
2308 |
+
"integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==",
|
2309 |
+
"dev": true,
|
2310 |
+
"license": "MIT"
|
2311 |
+
},
|
2312 |
+
"node_modules/optionator": {
|
2313 |
+
"version": "0.9.4",
|
2314 |
+
"resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz",
|
2315 |
+
"integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==",
|
2316 |
+
"dev": true,
|
2317 |
+
"license": "MIT",
|
2318 |
+
"dependencies": {
|
2319 |
+
"deep-is": "^0.1.3",
|
2320 |
+
"fast-levenshtein": "^2.0.6",
|
2321 |
+
"levn": "^0.4.1",
|
2322 |
+
"prelude-ls": "^1.2.1",
|
2323 |
+
"type-check": "^0.4.0",
|
2324 |
+
"word-wrap": "^1.2.5"
|
2325 |
+
},
|
2326 |
+
"engines": {
|
2327 |
+
"node": ">= 0.8.0"
|
2328 |
+
}
|
2329 |
+
},
|
2330 |
+
"node_modules/p-limit": {
|
2331 |
+
"version": "3.1.0",
|
2332 |
+
"resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
|
2333 |
+
"integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
|
2334 |
+
"dev": true,
|
2335 |
+
"license": "MIT",
|
2336 |
+
"dependencies": {
|
2337 |
+
"yocto-queue": "^0.1.0"
|
2338 |
+
},
|
2339 |
+
"engines": {
|
2340 |
+
"node": ">=10"
|
2341 |
+
},
|
2342 |
+
"funding": {
|
2343 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
2344 |
+
}
|
2345 |
+
},
|
2346 |
+
"node_modules/p-locate": {
|
2347 |
+
"version": "5.0.0",
|
2348 |
+
"resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
|
2349 |
+
"integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
|
2350 |
+
"dev": true,
|
2351 |
+
"license": "MIT",
|
2352 |
+
"dependencies": {
|
2353 |
+
"p-limit": "^3.0.2"
|
2354 |
+
},
|
2355 |
+
"engines": {
|
2356 |
+
"node": ">=10"
|
2357 |
+
},
|
2358 |
+
"funding": {
|
2359 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
2360 |
+
}
|
2361 |
+
},
|
2362 |
+
"node_modules/parent-module": {
|
2363 |
+
"version": "1.0.1",
|
2364 |
+
"resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
|
2365 |
+
"integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
|
2366 |
+
"dev": true,
|
2367 |
+
"license": "MIT",
|
2368 |
+
"dependencies": {
|
2369 |
+
"callsites": "^3.0.0"
|
2370 |
+
},
|
2371 |
+
"engines": {
|
2372 |
+
"node": ">=6"
|
2373 |
+
}
|
2374 |
+
},
|
2375 |
+
"node_modules/path-exists": {
|
2376 |
+
"version": "4.0.0",
|
2377 |
+
"resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
|
2378 |
+
"integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
|
2379 |
+
"dev": true,
|
2380 |
+
"license": "MIT",
|
2381 |
+
"engines": {
|
2382 |
+
"node": ">=8"
|
2383 |
+
}
|
2384 |
+
},
|
2385 |
+
"node_modules/path-key": {
|
2386 |
+
"version": "3.1.1",
|
2387 |
+
"resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
|
2388 |
+
"integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
|
2389 |
+
"dev": true,
|
2390 |
+
"license": "MIT",
|
2391 |
+
"engines": {
|
2392 |
+
"node": ">=8"
|
2393 |
+
}
|
2394 |
+
},
|
2395 |
+
"node_modules/picocolors": {
|
2396 |
+
"version": "1.1.1",
|
2397 |
+
"resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
|
2398 |
+
"integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
|
2399 |
+
"dev": true,
|
2400 |
+
"license": "ISC"
|
2401 |
+
},
|
2402 |
+
"node_modules/picomatch": {
|
2403 |
+
"version": "4.0.3",
|
2404 |
+
"resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz",
|
2405 |
+
"integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==",
|
2406 |
+
"dev": true,
|
2407 |
+
"license": "MIT",
|
2408 |
+
"engines": {
|
2409 |
+
"node": ">=12"
|
2410 |
+
},
|
2411 |
+
"funding": {
|
2412 |
+
"url": "https://github.com/sponsors/jonschlinkert"
|
2413 |
+
}
|
2414 |
+
},
|
2415 |
+
"node_modules/postcss": {
|
2416 |
+
"version": "8.5.6",
|
2417 |
+
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
|
2418 |
+
"integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
|
2419 |
+
"dev": true,
|
2420 |
+
"funding": [
|
2421 |
+
{
|
2422 |
+
"type": "opencollective",
|
2423 |
+
"url": "https://opencollective.com/postcss/"
|
2424 |
+
},
|
2425 |
+
{
|
2426 |
+
"type": "tidelift",
|
2427 |
+
"url": "https://tidelift.com/funding/github/npm/postcss"
|
2428 |
+
},
|
2429 |
+
{
|
2430 |
+
"type": "github",
|
2431 |
+
"url": "https://github.com/sponsors/ai"
|
2432 |
+
}
|
2433 |
+
],
|
2434 |
+
"license": "MIT",
|
2435 |
+
"dependencies": {
|
2436 |
+
"nanoid": "^3.3.11",
|
2437 |
+
"picocolors": "^1.1.1",
|
2438 |
+
"source-map-js": "^1.2.1"
|
2439 |
+
},
|
2440 |
+
"engines": {
|
2441 |
+
"node": "^10 || ^12 || >=14"
|
2442 |
+
}
|
2443 |
+
},
|
2444 |
+
"node_modules/prelude-ls": {
|
2445 |
+
"version": "1.2.1",
|
2446 |
+
"resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
|
2447 |
+
"integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
|
2448 |
+
"dev": true,
|
2449 |
+
"license": "MIT",
|
2450 |
+
"engines": {
|
2451 |
+
"node": ">= 0.8.0"
|
2452 |
+
}
|
2453 |
+
},
|
2454 |
+
"node_modules/punycode": {
|
2455 |
+
"version": "2.3.1",
|
2456 |
+
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz",
|
2457 |
+
"integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==",
|
2458 |
+
"dev": true,
|
2459 |
+
"license": "MIT",
|
2460 |
+
"engines": {
|
2461 |
+
"node": ">=6"
|
2462 |
+
}
|
2463 |
+
},
|
2464 |
+
"node_modules/react": {
|
2465 |
+
"version": "19.1.1",
|
2466 |
+
"resolved": "https://registry.npmjs.org/react/-/react-19.1.1.tgz",
|
2467 |
+
"integrity": "sha512-w8nqGImo45dmMIfljjMwOGtbmC/mk4CMYhWIicdSflH91J9TyCyczcPFXJzrZ/ZXcgGRFeP6BU0BEJTw6tZdfQ==",
|
2468 |
+
"license": "MIT",
|
2469 |
+
"engines": {
|
2470 |
+
"node": ">=0.10.0"
|
2471 |
+
}
|
2472 |
+
},
|
2473 |
+
"node_modules/react-dom": {
|
2474 |
+
"version": "19.1.1",
|
2475 |
+
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.1.1.tgz",
|
2476 |
+
"integrity": "sha512-Dlq/5LAZgF0Gaz6yiqZCf6VCcZs1ghAJyrsu84Q/GT0gV+mCxbfmKNoGRKBYMJ8IEdGPqu49YWXD02GCknEDkw==",
|
2477 |
+
"license": "MIT",
|
2478 |
+
"dependencies": {
|
2479 |
+
"scheduler": "^0.26.0"
|
2480 |
+
},
|
2481 |
+
"peerDependencies": {
|
2482 |
+
"react": "^19.1.1"
|
2483 |
+
}
|
2484 |
+
},
|
2485 |
+
"node_modules/react-refresh": {
|
2486 |
+
"version": "0.17.0",
|
2487 |
+
"resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz",
|
2488 |
+
"integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==",
|
2489 |
+
"dev": true,
|
2490 |
+
"license": "MIT",
|
2491 |
+
"engines": {
|
2492 |
+
"node": ">=0.10.0"
|
2493 |
+
}
|
2494 |
+
},
|
2495 |
+
"node_modules/resolve-from": {
|
2496 |
+
"version": "4.0.0",
|
2497 |
+
"resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
|
2498 |
+
"integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
|
2499 |
+
"dev": true,
|
2500 |
+
"license": "MIT",
|
2501 |
+
"engines": {
|
2502 |
+
"node": ">=4"
|
2503 |
+
}
|
2504 |
+
},
|
2505 |
+
"node_modules/rollup": {
|
2506 |
+
"version": "4.50.0",
|
2507 |
+
"resolved": "https://registry.npmjs.org/rollup/-/rollup-4.50.0.tgz",
|
2508 |
+
"integrity": "sha512-/Zl4D8zPifNmyGzJS+3kVoyXeDeT/GrsJM94sACNg9RtUE0hrHa1bNPtRSrfHTMH5HjRzce6K7rlTh3Khiw+pw==",
|
2509 |
+
"dev": true,
|
2510 |
+
"license": "MIT",
|
2511 |
+
"dependencies": {
|
2512 |
+
"@types/estree": "1.0.8"
|
2513 |
+
},
|
2514 |
+
"bin": {
|
2515 |
+
"rollup": "dist/bin/rollup"
|
2516 |
+
},
|
2517 |
+
"engines": {
|
2518 |
+
"node": ">=18.0.0",
|
2519 |
+
"npm": ">=8.0.0"
|
2520 |
+
},
|
2521 |
+
"optionalDependencies": {
|
2522 |
+
"@rollup/rollup-android-arm-eabi": "4.50.0",
|
2523 |
+
"@rollup/rollup-android-arm64": "4.50.0",
|
2524 |
+
"@rollup/rollup-darwin-arm64": "4.50.0",
|
2525 |
+
"@rollup/rollup-darwin-x64": "4.50.0",
|
2526 |
+
"@rollup/rollup-freebsd-arm64": "4.50.0",
|
2527 |
+
"@rollup/rollup-freebsd-x64": "4.50.0",
|
2528 |
+
"@rollup/rollup-linux-arm-gnueabihf": "4.50.0",
|
2529 |
+
"@rollup/rollup-linux-arm-musleabihf": "4.50.0",
|
2530 |
+
"@rollup/rollup-linux-arm64-gnu": "4.50.0",
|
2531 |
+
"@rollup/rollup-linux-arm64-musl": "4.50.0",
|
2532 |
+
"@rollup/rollup-linux-loongarch64-gnu": "4.50.0",
|
2533 |
+
"@rollup/rollup-linux-ppc64-gnu": "4.50.0",
|
2534 |
+
"@rollup/rollup-linux-riscv64-gnu": "4.50.0",
|
2535 |
+
"@rollup/rollup-linux-riscv64-musl": "4.50.0",
|
2536 |
+
"@rollup/rollup-linux-s390x-gnu": "4.50.0",
|
2537 |
+
"@rollup/rollup-linux-x64-gnu": "4.50.0",
|
2538 |
+
"@rollup/rollup-linux-x64-musl": "4.50.0",
|
2539 |
+
"@rollup/rollup-openharmony-arm64": "4.50.0",
|
2540 |
+
"@rollup/rollup-win32-arm64-msvc": "4.50.0",
|
2541 |
+
"@rollup/rollup-win32-ia32-msvc": "4.50.0",
|
2542 |
+
"@rollup/rollup-win32-x64-msvc": "4.50.0",
|
2543 |
+
"fsevents": "~2.3.2"
|
2544 |
+
}
|
2545 |
+
},
|
2546 |
+
"node_modules/scheduler": {
|
2547 |
+
"version": "0.26.0",
|
2548 |
+
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.26.0.tgz",
|
2549 |
+
"integrity": "sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==",
|
2550 |
+
"license": "MIT"
|
2551 |
+
},
|
2552 |
+
"node_modules/semver": {
|
2553 |
+
"version": "6.3.1",
|
2554 |
+
"resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
|
2555 |
+
"integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
|
2556 |
+
"dev": true,
|
2557 |
+
"license": "ISC",
|
2558 |
+
"bin": {
|
2559 |
+
"semver": "bin/semver.js"
|
2560 |
+
}
|
2561 |
+
},
|
2562 |
+
"node_modules/shebang-command": {
|
2563 |
+
"version": "2.0.0",
|
2564 |
+
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
|
2565 |
+
"integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
|
2566 |
+
"dev": true,
|
2567 |
+
"license": "MIT",
|
2568 |
+
"dependencies": {
|
2569 |
+
"shebang-regex": "^3.0.0"
|
2570 |
+
},
|
2571 |
+
"engines": {
|
2572 |
+
"node": ">=8"
|
2573 |
+
}
|
2574 |
+
},
|
2575 |
+
"node_modules/shebang-regex": {
|
2576 |
+
"version": "3.0.0",
|
2577 |
+
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
|
2578 |
+
"integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
|
2579 |
+
"dev": true,
|
2580 |
+
"license": "MIT",
|
2581 |
+
"engines": {
|
2582 |
+
"node": ">=8"
|
2583 |
+
}
|
2584 |
+
},
|
2585 |
+
"node_modules/source-map-js": {
|
2586 |
+
"version": "1.2.1",
|
2587 |
+
"resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
|
2588 |
+
"integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
|
2589 |
+
"dev": true,
|
2590 |
+
"license": "BSD-3-Clause",
|
2591 |
+
"engines": {
|
2592 |
+
"node": ">=0.10.0"
|
2593 |
+
}
|
2594 |
+
},
|
2595 |
+
"node_modules/strip-json-comments": {
|
2596 |
+
"version": "3.1.1",
|
2597 |
+
"resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
|
2598 |
+
"integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
|
2599 |
+
"dev": true,
|
2600 |
+
"license": "MIT",
|
2601 |
+
"engines": {
|
2602 |
+
"node": ">=8"
|
2603 |
+
},
|
2604 |
+
"funding": {
|
2605 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
2606 |
+
}
|
2607 |
+
},
|
2608 |
+
"node_modules/supports-color": {
|
2609 |
+
"version": "7.2.0",
|
2610 |
+
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
|
2611 |
+
"integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
|
2612 |
+
"dev": true,
|
2613 |
+
"license": "MIT",
|
2614 |
+
"dependencies": {
|
2615 |
+
"has-flag": "^4.0.0"
|
2616 |
+
},
|
2617 |
+
"engines": {
|
2618 |
+
"node": ">=8"
|
2619 |
+
}
|
2620 |
+
},
|
2621 |
+
"node_modules/tinyglobby": {
|
2622 |
+
"version": "0.2.14",
|
2623 |
+
"resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz",
|
2624 |
+
"integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==",
|
2625 |
+
"dev": true,
|
2626 |
+
"license": "MIT",
|
2627 |
+
"dependencies": {
|
2628 |
+
"fdir": "^6.4.4",
|
2629 |
+
"picomatch": "^4.0.2"
|
2630 |
+
},
|
2631 |
+
"engines": {
|
2632 |
+
"node": ">=12.0.0"
|
2633 |
+
},
|
2634 |
+
"funding": {
|
2635 |
+
"url": "https://github.com/sponsors/SuperchupuDev"
|
2636 |
+
}
|
2637 |
+
},
|
2638 |
+
"node_modules/type-check": {
|
2639 |
+
"version": "0.4.0",
|
2640 |
+
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
|
2641 |
+
"integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
|
2642 |
+
"dev": true,
|
2643 |
+
"license": "MIT",
|
2644 |
+
"dependencies": {
|
2645 |
+
"prelude-ls": "^1.2.1"
|
2646 |
+
},
|
2647 |
+
"engines": {
|
2648 |
+
"node": ">= 0.8.0"
|
2649 |
+
}
|
2650 |
+
},
|
2651 |
+
"node_modules/update-browserslist-db": {
|
2652 |
+
"version": "1.1.3",
|
2653 |
+
"resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz",
|
2654 |
+
"integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==",
|
2655 |
+
"dev": true,
|
2656 |
+
"funding": [
|
2657 |
+
{
|
2658 |
+
"type": "opencollective",
|
2659 |
+
"url": "https://opencollective.com/browserslist"
|
2660 |
+
},
|
2661 |
+
{
|
2662 |
+
"type": "tidelift",
|
2663 |
+
"url": "https://tidelift.com/funding/github/npm/browserslist"
|
2664 |
+
},
|
2665 |
+
{
|
2666 |
+
"type": "github",
|
2667 |
+
"url": "https://github.com/sponsors/ai"
|
2668 |
+
}
|
2669 |
+
],
|
2670 |
+
"license": "MIT",
|
2671 |
+
"dependencies": {
|
2672 |
+
"escalade": "^3.2.0",
|
2673 |
+
"picocolors": "^1.1.1"
|
2674 |
+
},
|
2675 |
+
"bin": {
|
2676 |
+
"update-browserslist-db": "cli.js"
|
2677 |
+
},
|
2678 |
+
"peerDependencies": {
|
2679 |
+
"browserslist": ">= 4.21.0"
|
2680 |
+
}
|
2681 |
+
},
|
2682 |
+
"node_modules/uri-js": {
|
2683 |
+
"version": "4.4.1",
|
2684 |
+
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
|
2685 |
+
"integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
|
2686 |
+
"dev": true,
|
2687 |
+
"license": "BSD-2-Clause",
|
2688 |
+
"dependencies": {
|
2689 |
+
"punycode": "^2.1.0"
|
2690 |
+
}
|
2691 |
+
},
|
2692 |
+
"node_modules/vite": {
|
2693 |
+
"version": "7.1.4",
|
2694 |
+
"resolved": "https://registry.npmjs.org/vite/-/vite-7.1.4.tgz",
|
2695 |
+
"integrity": "sha512-X5QFK4SGynAeeIt+A7ZWnApdUyHYm+pzv/8/A57LqSGcI88U6R6ipOs3uCesdc6yl7nl+zNO0t8LmqAdXcQihw==",
|
2696 |
+
"dev": true,
|
2697 |
+
"license": "MIT",
|
2698 |
+
"dependencies": {
|
2699 |
+
"esbuild": "^0.25.0",
|
2700 |
+
"fdir": "^6.5.0",
|
2701 |
+
"picomatch": "^4.0.3",
|
2702 |
+
"postcss": "^8.5.6",
|
2703 |
+
"rollup": "^4.43.0",
|
2704 |
+
"tinyglobby": "^0.2.14"
|
2705 |
+
},
|
2706 |
+
"bin": {
|
2707 |
+
"vite": "bin/vite.js"
|
2708 |
+
},
|
2709 |
+
"engines": {
|
2710 |
+
"node": "^20.19.0 || >=22.12.0"
|
2711 |
+
},
|
2712 |
+
"funding": {
|
2713 |
+
"url": "https://github.com/vitejs/vite?sponsor=1"
|
2714 |
+
},
|
2715 |
+
"optionalDependencies": {
|
2716 |
+
"fsevents": "~2.3.3"
|
2717 |
+
},
|
2718 |
+
"peerDependencies": {
|
2719 |
+
"@types/node": "^20.19.0 || >=22.12.0",
|
2720 |
+
"jiti": ">=1.21.0",
|
2721 |
+
"less": "^4.0.0",
|
2722 |
+
"lightningcss": "^1.21.0",
|
2723 |
+
"sass": "^1.70.0",
|
2724 |
+
"sass-embedded": "^1.70.0",
|
2725 |
+
"stylus": ">=0.54.8",
|
2726 |
+
"sugarss": "^5.0.0",
|
2727 |
+
"terser": "^5.16.0",
|
2728 |
+
"tsx": "^4.8.1",
|
2729 |
+
"yaml": "^2.4.2"
|
2730 |
+
},
|
2731 |
+
"peerDependenciesMeta": {
|
2732 |
+
"@types/node": {
|
2733 |
+
"optional": true
|
2734 |
+
},
|
2735 |
+
"jiti": {
|
2736 |
+
"optional": true
|
2737 |
+
},
|
2738 |
+
"less": {
|
2739 |
+
"optional": true
|
2740 |
+
},
|
2741 |
+
"lightningcss": {
|
2742 |
+
"optional": true
|
2743 |
+
},
|
2744 |
+
"sass": {
|
2745 |
+
"optional": true
|
2746 |
+
},
|
2747 |
+
"sass-embedded": {
|
2748 |
+
"optional": true
|
2749 |
+
},
|
2750 |
+
"stylus": {
|
2751 |
+
"optional": true
|
2752 |
+
},
|
2753 |
+
"sugarss": {
|
2754 |
+
"optional": true
|
2755 |
+
},
|
2756 |
+
"terser": {
|
2757 |
+
"optional": true
|
2758 |
+
},
|
2759 |
+
"tsx": {
|
2760 |
+
"optional": true
|
2761 |
+
},
|
2762 |
+
"yaml": {
|
2763 |
+
"optional": true
|
2764 |
+
}
|
2765 |
+
}
|
2766 |
+
},
|
2767 |
+
"node_modules/which": {
|
2768 |
+
"version": "2.0.2",
|
2769 |
+
"resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
|
2770 |
+
"integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
|
2771 |
+
"dev": true,
|
2772 |
+
"license": "ISC",
|
2773 |
+
"dependencies": {
|
2774 |
+
"isexe": "^2.0.0"
|
2775 |
+
},
|
2776 |
+
"bin": {
|
2777 |
+
"node-which": "bin/node-which"
|
2778 |
+
},
|
2779 |
+
"engines": {
|
2780 |
+
"node": ">= 8"
|
2781 |
+
}
|
2782 |
+
},
|
2783 |
+
"node_modules/word-wrap": {
|
2784 |
+
"version": "1.2.5",
|
2785 |
+
"resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz",
|
2786 |
+
"integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==",
|
2787 |
+
"dev": true,
|
2788 |
+
"license": "MIT",
|
2789 |
+
"engines": {
|
2790 |
+
"node": ">=0.10.0"
|
2791 |
+
}
|
2792 |
+
},
|
2793 |
+
"node_modules/yallist": {
|
2794 |
+
"version": "3.1.1",
|
2795 |
+
"resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz",
|
2796 |
+
"integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
|
2797 |
+
"dev": true,
|
2798 |
+
"license": "ISC"
|
2799 |
+
},
|
2800 |
+
"node_modules/yocto-queue": {
|
2801 |
+
"version": "0.1.0",
|
2802 |
+
"resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
|
2803 |
+
"integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
|
2804 |
+
"dev": true,
|
2805 |
+
"license": "MIT",
|
2806 |
+
"engines": {
|
2807 |
+
"node": ">=10"
|
2808 |
+
},
|
2809 |
+
"funding": {
|
2810 |
+
"url": "https://github.com/sponsors/sindresorhus"
|
2811 |
+
}
|
2812 |
+
}
|
2813 |
+
}
|
2814 |
+
}
|
frontend/package.json
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "frontend",
|
3 |
+
"private": true,
|
4 |
+
"version": "0.0.0",
|
5 |
+
"type": "module",
|
6 |
+
"scripts": {
|
7 |
+
"dev": "vite",
|
8 |
+
"build": "vite build",
|
9 |
+
"lint": "eslint .",
|
10 |
+
"preview": "vite preview"
|
11 |
+
},
|
12 |
+
"dependencies": {
|
13 |
+
"react": "^19.1.1",
|
14 |
+
"react-dom": "^19.1.1"
|
15 |
+
},
|
16 |
+
"devDependencies": {
|
17 |
+
"@eslint/js": "^9.33.0",
|
18 |
+
"@types/react": "^19.1.10",
|
19 |
+
"@types/react-dom": "^19.1.7",
|
20 |
+
"@vitejs/plugin-react": "^5.0.0",
|
21 |
+
"eslint": "^9.33.0",
|
22 |
+
"eslint-plugin-react-hooks": "^5.2.0",
|
23 |
+
"eslint-plugin-react-refresh": "^0.4.20",
|
24 |
+
"globals": "^16.3.0",
|
25 |
+
"vite": "^7.1.2"
|
26 |
+
}
|
27 |
+
}
|
frontend/public/vite.svg
ADDED
|
frontend/src/App.css
ADDED
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#root {
|
2 |
+
max-width: 1280px;
|
3 |
+
margin: 0 auto;
|
4 |
+
padding: 2rem;
|
5 |
+
text-align: center;
|
6 |
+
}
|
7 |
+
|
8 |
+
.logo {
|
9 |
+
height: 6em;
|
10 |
+
padding: 1.5em;
|
11 |
+
will-change: filter;
|
12 |
+
transition: filter 300ms;
|
13 |
+
}
|
14 |
+
.logo:hover {
|
15 |
+
filter: drop-shadow(0 0 2em #646cffaa);
|
16 |
+
}
|
17 |
+
.logo.react:hover {
|
18 |
+
filter: drop-shadow(0 0 2em #61dafbaa);
|
19 |
+
}
|
20 |
+
|
21 |
+
@keyframes logo-spin {
|
22 |
+
from {
|
23 |
+
transform: rotate(0deg);
|
24 |
+
}
|
25 |
+
to {
|
26 |
+
transform: rotate(360deg);
|
27 |
+
}
|
28 |
+
}
|
29 |
+
|
30 |
+
@media (prefers-reduced-motion: no-preference) {
|
31 |
+
a:nth-of-type(2) .logo {
|
32 |
+
animation: logo-spin infinite 20s linear;
|
33 |
+
}
|
34 |
+
}
|
35 |
+
|
36 |
+
.card {
|
37 |
+
padding: 2em;
|
38 |
+
}
|
39 |
+
|
40 |
+
.read-the-docs {
|
41 |
+
color: #888;
|
42 |
+
}
|
frontend/src/App.jsx
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { useState } from 'react'
|
2 |
+
import reactLogo from './assets/react.svg'
|
3 |
+
import viteLogo from '/vite.svg'
|
4 |
+
import './App.css'
|
5 |
+
|
6 |
+
function App() {
|
7 |
+
const [count, setCount] = useState(0)
|
8 |
+
|
9 |
+
return (
|
10 |
+
<>
|
11 |
+
<div>
|
12 |
+
<a href="https://vite.dev" target="_blank">
|
13 |
+
<img src={viteLogo} className="logo" alt="Vite logo" />
|
14 |
+
</a>
|
15 |
+
<a href="https://react.dev" target="_blank">
|
16 |
+
<img src={reactLogo} className="logo react" alt="React logo" />
|
17 |
+
</a>
|
18 |
+
</div>
|
19 |
+
<h1>Vite + React</h1>
|
20 |
+
<div className="card">
|
21 |
+
<button onClick={() => setCount((count) => count + 1)}>
|
22 |
+
count is {count}
|
23 |
+
</button>
|
24 |
+
<p>
|
25 |
+
Edit <code>src/App.jsx</code> and save to test HMR
|
26 |
+
</p>
|
27 |
+
</div>
|
28 |
+
<p className="read-the-docs">
|
29 |
+
Click on the Vite and React logos to learn more
|
30 |
+
</p>
|
31 |
+
</>
|
32 |
+
)
|
33 |
+
}
|
34 |
+
|
35 |
+
export default App
|
frontend/src/assets/react.svg
ADDED
|
frontend/src/index.css
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
:root {
|
2 |
+
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
|
3 |
+
line-height: 1.5;
|
4 |
+
font-weight: 400;
|
5 |
+
|
6 |
+
color-scheme: light dark;
|
7 |
+
color: rgba(255, 255, 255, 0.87);
|
8 |
+
background-color: #242424;
|
9 |
+
|
10 |
+
font-synthesis: none;
|
11 |
+
text-rendering: optimizeLegibility;
|
12 |
+
-webkit-font-smoothing: antialiased;
|
13 |
+
-moz-osx-font-smoothing: grayscale;
|
14 |
+
}
|
15 |
+
|
16 |
+
a {
|
17 |
+
font-weight: 500;
|
18 |
+
color: #646cff;
|
19 |
+
text-decoration: inherit;
|
20 |
+
}
|
21 |
+
a:hover {
|
22 |
+
color: #535bf2;
|
23 |
+
}
|
24 |
+
|
25 |
+
body {
|
26 |
+
margin: 0;
|
27 |
+
display: flex;
|
28 |
+
place-items: center;
|
29 |
+
min-width: 320px;
|
30 |
+
min-height: 100vh;
|
31 |
+
}
|
32 |
+
|
33 |
+
h1 {
|
34 |
+
font-size: 3.2em;
|
35 |
+
line-height: 1.1;
|
36 |
+
}
|
37 |
+
|
38 |
+
button {
|
39 |
+
border-radius: 8px;
|
40 |
+
border: 1px solid transparent;
|
41 |
+
padding: 0.6em 1.2em;
|
42 |
+
font-size: 1em;
|
43 |
+
font-weight: 500;
|
44 |
+
font-family: inherit;
|
45 |
+
background-color: #1a1a1a;
|
46 |
+
cursor: pointer;
|
47 |
+
transition: border-color 0.25s;
|
48 |
+
}
|
49 |
+
button:hover {
|
50 |
+
border-color: #646cff;
|
51 |
+
}
|
52 |
+
button:focus,
|
53 |
+
button:focus-visible {
|
54 |
+
outline: 4px auto -webkit-focus-ring-color;
|
55 |
+
}
|
56 |
+
|
57 |
+
@media (prefers-color-scheme: light) {
|
58 |
+
:root {
|
59 |
+
color: #213547;
|
60 |
+
background-color: #ffffff;
|
61 |
+
}
|
62 |
+
a:hover {
|
63 |
+
color: #747bff;
|
64 |
+
}
|
65 |
+
button {
|
66 |
+
background-color: #f9f9f9;
|
67 |
+
}
|
68 |
+
}
|
frontend/src/main.jsx
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { StrictMode } from 'react'
|
2 |
+
import { createRoot } from 'react-dom/client'
|
3 |
+
import './index.css'
|
4 |
+
import App from './App.jsx'
|
5 |
+
|
6 |
+
createRoot(document.getElementById('root')).render(
|
7 |
+
<StrictMode>
|
8 |
+
<App />
|
9 |
+
</StrictMode>,
|
10 |
+
)
|
frontend/vite.config.js
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { defineConfig } from 'vite'
|
2 |
+
import react from '@vitejs/plugin-react'
|
3 |
+
|
4 |
+
// https://vite.dev/config/
|
5 |
+
export default defineConfig({
|
6 |
+
plugins: [react()],
|
7 |
+
})
|
poetry.lock
ADDED
@@ -0,0 +1,739 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# This file is automatically @generated by Poetry 2.1.4 and should not be changed by hand.
|
2 |
+
|
3 |
+
[[package]]
|
4 |
+
name = "annotated-types"
|
5 |
+
version = "0.7.0"
|
6 |
+
description = "Reusable constraint types to use with typing.Annotated"
|
7 |
+
optional = false
|
8 |
+
python-versions = ">=3.8"
|
9 |
+
groups = ["main"]
|
10 |
+
files = [
|
11 |
+
{file = "annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53"},
|
12 |
+
{file = "annotated_types-0.7.0.tar.gz", hash = "sha256:aff07c09a53a08bc8cfccb9c85b05f1aa9a2a6f23728d790723543408344ce89"},
|
13 |
+
]
|
14 |
+
|
15 |
+
[[package]]
|
16 |
+
name = "anyio"
|
17 |
+
version = "4.10.0"
|
18 |
+
description = "High-level concurrency and networking framework on top of asyncio or Trio"
|
19 |
+
optional = false
|
20 |
+
python-versions = ">=3.9"
|
21 |
+
groups = ["main"]
|
22 |
+
files = [
|
23 |
+
{file = "anyio-4.10.0-py3-none-any.whl", hash = "sha256:60e474ac86736bbfd6f210f7a61218939c318f43f9972497381f1c5e930ed3d1"},
|
24 |
+
{file = "anyio-4.10.0.tar.gz", hash = "sha256:3f3fae35c96039744587aa5b8371e7e8e603c0702999535961dd336026973ba6"},
|
25 |
+
]
|
26 |
+
|
27 |
+
[package.dependencies]
|
28 |
+
exceptiongroup = {version = ">=1.0.2", markers = "python_version < \"3.11\""}
|
29 |
+
idna = ">=2.8"
|
30 |
+
sniffio = ">=1.1"
|
31 |
+
typing_extensions = {version = ">=4.5", markers = "python_version < \"3.13\""}
|
32 |
+
|
33 |
+
[package.extras]
|
34 |
+
trio = ["trio (>=0.26.1)"]
|
35 |
+
|
36 |
+
[[package]]
|
37 |
+
name = "click"
|
38 |
+
version = "8.2.1"
|
39 |
+
description = "Composable command line interface toolkit"
|
40 |
+
optional = false
|
41 |
+
python-versions = ">=3.10"
|
42 |
+
groups = ["main"]
|
43 |
+
files = [
|
44 |
+
{file = "click-8.2.1-py3-none-any.whl", hash = "sha256:61a3265b914e850b85317d0b3109c7f8cd35a670f963866005d6ef1d5175a12b"},
|
45 |
+
{file = "click-8.2.1.tar.gz", hash = "sha256:27c491cc05d968d271d5a1db13e3b5a184636d9d930f148c50b038f0d0646202"},
|
46 |
+
]
|
47 |
+
|
48 |
+
[package.dependencies]
|
49 |
+
colorama = {version = "*", markers = "platform_system == \"Windows\""}
|
50 |
+
|
51 |
+
[[package]]
|
52 |
+
name = "colorama"
|
53 |
+
version = "0.4.6"
|
54 |
+
description = "Cross-platform colored terminal text."
|
55 |
+
optional = false
|
56 |
+
python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7"
|
57 |
+
groups = ["main"]
|
58 |
+
markers = "platform_system == \"Windows\" or sys_platform == \"win32\""
|
59 |
+
files = [
|
60 |
+
{file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"},
|
61 |
+
{file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"},
|
62 |
+
]
|
63 |
+
|
64 |
+
[[package]]
|
65 |
+
name = "exceptiongroup"
|
66 |
+
version = "1.3.0"
|
67 |
+
description = "Backport of PEP 654 (exception groups)"
|
68 |
+
optional = false
|
69 |
+
python-versions = ">=3.7"
|
70 |
+
groups = ["main"]
|
71 |
+
markers = "python_version == \"3.10\""
|
72 |
+
files = [
|
73 |
+
{file = "exceptiongroup-1.3.0-py3-none-any.whl", hash = "sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10"},
|
74 |
+
{file = "exceptiongroup-1.3.0.tar.gz", hash = "sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88"},
|
75 |
+
]
|
76 |
+
|
77 |
+
[package.dependencies]
|
78 |
+
typing-extensions = {version = ">=4.6.0", markers = "python_version < \"3.13\""}
|
79 |
+
|
80 |
+
[package.extras]
|
81 |
+
test = ["pytest (>=6)"]
|
82 |
+
|
83 |
+
[[package]]
|
84 |
+
name = "fastapi"
|
85 |
+
version = "0.116.1"
|
86 |
+
description = "FastAPI framework, high performance, easy to learn, fast to code, ready for production"
|
87 |
+
optional = false
|
88 |
+
python-versions = ">=3.8"
|
89 |
+
groups = ["main"]
|
90 |
+
files = [
|
91 |
+
{file = "fastapi-0.116.1-py3-none-any.whl", hash = "sha256:c46ac7c312df840f0c9e220f7964bada936781bc4e2e6eb71f1c4d7553786565"},
|
92 |
+
{file = "fastapi-0.116.1.tar.gz", hash = "sha256:ed52cbf946abfd70c5a0dccb24673f0670deeb517a88b3544d03c2a6bf283143"},
|
93 |
+
]
|
94 |
+
|
95 |
+
[package.dependencies]
|
96 |
+
pydantic = ">=1.7.4,<1.8 || >1.8,<1.8.1 || >1.8.1,<2.0.0 || >2.0.0,<2.0.1 || >2.0.1,<2.1.0 || >2.1.0,<3.0.0"
|
97 |
+
starlette = ">=0.40.0,<0.48.0"
|
98 |
+
typing-extensions = ">=4.8.0"
|
99 |
+
|
100 |
+
[package.extras]
|
101 |
+
all = ["email-validator (>=2.0.0)", "fastapi-cli[standard] (>=0.0.8)", "httpx (>=0.23.0)", "itsdangerous (>=1.1.0)", "jinja2 (>=3.1.5)", "orjson (>=3.2.1)", "pydantic-extra-types (>=2.0.0)", "pydantic-settings (>=2.0.0)", "python-multipart (>=0.0.18)", "pyyaml (>=5.3.1)", "ujson (>=4.0.1,!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0)", "uvicorn[standard] (>=0.12.0)"]
|
102 |
+
standard = ["email-validator (>=2.0.0)", "fastapi-cli[standard] (>=0.0.8)", "httpx (>=0.23.0)", "jinja2 (>=3.1.5)", "python-multipart (>=0.0.18)", "uvicorn[standard] (>=0.12.0)"]
|
103 |
+
standard-no-fastapi-cloud-cli = ["email-validator (>=2.0.0)", "fastapi-cli[standard-no-fastapi-cloud-cli] (>=0.0.8)", "httpx (>=0.23.0)", "jinja2 (>=3.1.5)", "python-multipart (>=0.0.18)", "uvicorn[standard] (>=0.12.0)"]
|
104 |
+
|
105 |
+
[[package]]
|
106 |
+
name = "h11"
|
107 |
+
version = "0.16.0"
|
108 |
+
description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1"
|
109 |
+
optional = false
|
110 |
+
python-versions = ">=3.8"
|
111 |
+
groups = ["main"]
|
112 |
+
files = [
|
113 |
+
{file = "h11-0.16.0-py3-none-any.whl", hash = "sha256:63cf8bbe7522de3bf65932fda1d9c2772064ffb3dae62d55932da54b31cb6c86"},
|
114 |
+
{file = "h11-0.16.0.tar.gz", hash = "sha256:4e35b956cf45792e4caa5885e69fba00bdbc6ffafbfa020300e549b208ee5ff1"},
|
115 |
+
]
|
116 |
+
|
117 |
+
[[package]]
|
118 |
+
name = "httptools"
|
119 |
+
version = "0.6.4"
|
120 |
+
description = "A collection of framework independent HTTP protocol utils."
|
121 |
+
optional = false
|
122 |
+
python-versions = ">=3.8.0"
|
123 |
+
groups = ["main"]
|
124 |
+
files = [
|
125 |
+
{file = "httptools-0.6.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3c73ce323711a6ffb0d247dcd5a550b8babf0f757e86a52558fe5b86d6fefcc0"},
|
126 |
+
{file = "httptools-0.6.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:345c288418f0944a6fe67be8e6afa9262b18c7626c3ef3c28adc5eabc06a68da"},
|
127 |
+
{file = "httptools-0.6.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:deee0e3343f98ee8047e9f4c5bc7cedbf69f5734454a94c38ee829fb2d5fa3c1"},
|
128 |
+
{file = "httptools-0.6.4-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ca80b7485c76f768a3bc83ea58373f8db7b015551117375e4918e2aa77ea9b50"},
|
129 |
+
{file = "httptools-0.6.4-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:90d96a385fa941283ebd231464045187a31ad932ebfa541be8edf5b3c2328959"},
|
130 |
+
{file = "httptools-0.6.4-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:59e724f8b332319e2875efd360e61ac07f33b492889284a3e05e6d13746876f4"},
|
131 |
+
{file = "httptools-0.6.4-cp310-cp310-win_amd64.whl", hash = "sha256:c26f313951f6e26147833fc923f78f95604bbec812a43e5ee37f26dc9e5a686c"},
|
132 |
+
{file = "httptools-0.6.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:f47f8ed67cc0ff862b84a1189831d1d33c963fb3ce1ee0c65d3b0cbe7b711069"},
|
133 |
+
{file = "httptools-0.6.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0614154d5454c21b6410fdf5262b4a3ddb0f53f1e1721cfd59d55f32138c578a"},
|
134 |
+
{file = "httptools-0.6.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f8787367fbdfccae38e35abf7641dafc5310310a5987b689f4c32cc8cc3ee975"},
|
135 |
+
{file = "httptools-0.6.4-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40b0f7fe4fd38e6a507bdb751db0379df1e99120c65fbdc8ee6c1d044897a636"},
|
136 |
+
{file = "httptools-0.6.4-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40a5ec98d3f49904b9fe36827dcf1aadfef3b89e2bd05b0e35e94f97c2b14721"},
|
137 |
+
{file = "httptools-0.6.4-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:dacdd3d10ea1b4ca9df97a0a303cbacafc04b5cd375fa98732678151643d4988"},
|
138 |
+
{file = "httptools-0.6.4-cp311-cp311-win_amd64.whl", hash = "sha256:288cd628406cc53f9a541cfaf06041b4c71d751856bab45e3702191f931ccd17"},
|
139 |
+
{file = "httptools-0.6.4-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:df017d6c780287d5c80601dafa31f17bddb170232d85c066604d8558683711a2"},
|
140 |
+
{file = "httptools-0.6.4-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:85071a1e8c2d051b507161f6c3e26155b5c790e4e28d7f236422dbacc2a9cc44"},
|
141 |
+
{file = "httptools-0.6.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69422b7f458c5af875922cdb5bd586cc1f1033295aa9ff63ee196a87519ac8e1"},
|
142 |
+
{file = "httptools-0.6.4-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16e603a3bff50db08cd578d54f07032ca1631450ceb972c2f834c2b860c28ea2"},
|
143 |
+
{file = "httptools-0.6.4-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ec4f178901fa1834d4a060320d2f3abc5c9e39766953d038f1458cb885f47e81"},
|
144 |
+
{file = "httptools-0.6.4-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:f9eb89ecf8b290f2e293325c646a211ff1c2493222798bb80a530c5e7502494f"},
|
145 |
+
{file = "httptools-0.6.4-cp312-cp312-win_amd64.whl", hash = "sha256:db78cb9ca56b59b016e64b6031eda5653be0589dba2b1b43453f6e8b405a0970"},
|
146 |
+
{file = "httptools-0.6.4-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ade273d7e767d5fae13fa637f4d53b6e961fb7fd93c7797562663f0171c26660"},
|
147 |
+
{file = "httptools-0.6.4-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:856f4bc0478ae143bad54a4242fccb1f3f86a6e1be5548fecfd4102061b3a083"},
|
148 |
+
{file = "httptools-0.6.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:322d20ea9cdd1fa98bd6a74b77e2ec5b818abdc3d36695ab402a0de8ef2865a3"},
|
149 |
+
{file = "httptools-0.6.4-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d87b29bd4486c0093fc64dea80231f7c7f7eb4dc70ae394d70a495ab8436071"},
|
150 |
+
{file = "httptools-0.6.4-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:342dd6946aa6bda4b8f18c734576106b8a31f2fe31492881a9a160ec84ff4bd5"},
|
151 |
+
{file = "httptools-0.6.4-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4b36913ba52008249223042dca46e69967985fb4051951f94357ea681e1f5dc0"},
|
152 |
+
{file = "httptools-0.6.4-cp313-cp313-win_amd64.whl", hash = "sha256:28908df1b9bb8187393d5b5db91435ccc9c8e891657f9cbb42a2541b44c82fc8"},
|
153 |
+
{file = "httptools-0.6.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:d3f0d369e7ffbe59c4b6116a44d6a8eb4783aae027f2c0b366cf0aa964185dba"},
|
154 |
+
{file = "httptools-0.6.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:94978a49b8f4569ad607cd4946b759d90b285e39c0d4640c6b36ca7a3ddf2efc"},
|
155 |
+
{file = "httptools-0.6.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40dc6a8e399e15ea525305a2ddba998b0af5caa2566bcd79dcbe8948181eeaff"},
|
156 |
+
{file = "httptools-0.6.4-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ab9ba8dcf59de5181f6be44a77458e45a578fc99c31510b8c65b7d5acc3cf490"},
|
157 |
+
{file = "httptools-0.6.4-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:fc411e1c0a7dcd2f902c7c48cf079947a7e65b5485dea9decb82b9105ca71a43"},
|
158 |
+
{file = "httptools-0.6.4-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:d54efd20338ac52ba31e7da78e4a72570cf729fac82bc31ff9199bedf1dc7440"},
|
159 |
+
{file = "httptools-0.6.4-cp38-cp38-win_amd64.whl", hash = "sha256:df959752a0c2748a65ab5387d08287abf6779ae9165916fe053e68ae1fbdc47f"},
|
160 |
+
{file = "httptools-0.6.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:85797e37e8eeaa5439d33e556662cc370e474445d5fab24dcadc65a8ffb04003"},
|
161 |
+
{file = "httptools-0.6.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:db353d22843cf1028f43c3651581e4bb49374d85692a85f95f7b9a130e1b2cab"},
|
162 |
+
{file = "httptools-0.6.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d1ffd262a73d7c28424252381a5b854c19d9de5f56f075445d33919a637e3547"},
|
163 |
+
{file = "httptools-0.6.4-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:703c346571fa50d2e9856a37d7cd9435a25e7fd15e236c397bf224afaa355fe9"},
|
164 |
+
{file = "httptools-0.6.4-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:aafe0f1918ed07b67c1e838f950b1c1fabc683030477e60b335649b8020e1076"},
|
165 |
+
{file = "httptools-0.6.4-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:0e563e54979e97b6d13f1bbc05a96109923e76b901f786a5eae36e99c01237bd"},
|
166 |
+
{file = "httptools-0.6.4-cp39-cp39-win_amd64.whl", hash = "sha256:b799de31416ecc589ad79dd85a0b2657a8fe39327944998dea368c1d4c9e55e6"},
|
167 |
+
{file = "httptools-0.6.4.tar.gz", hash = "sha256:4e93eee4add6493b59a5c514da98c939b244fce4a0d8879cd3f466562f4b7d5c"},
|
168 |
+
]
|
169 |
+
|
170 |
+
[package.extras]
|
171 |
+
test = ["Cython (>=0.29.24)"]
|
172 |
+
|
173 |
+
[[package]]
|
174 |
+
name = "idna"
|
175 |
+
version = "3.10"
|
176 |
+
description = "Internationalized Domain Names in Applications (IDNA)"
|
177 |
+
optional = false
|
178 |
+
python-versions = ">=3.6"
|
179 |
+
groups = ["main"]
|
180 |
+
files = [
|
181 |
+
{file = "idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3"},
|
182 |
+
{file = "idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9"},
|
183 |
+
]
|
184 |
+
|
185 |
+
[package.extras]
|
186 |
+
all = ["flake8 (>=7.1.1)", "mypy (>=1.11.2)", "pytest (>=8.3.2)", "ruff (>=0.6.2)"]
|
187 |
+
|
188 |
+
[[package]]
|
189 |
+
name = "pydantic"
|
190 |
+
version = "2.11.7"
|
191 |
+
description = "Data validation using Python type hints"
|
192 |
+
optional = false
|
193 |
+
python-versions = ">=3.9"
|
194 |
+
groups = ["main"]
|
195 |
+
files = [
|
196 |
+
{file = "pydantic-2.11.7-py3-none-any.whl", hash = "sha256:dde5df002701f6de26248661f6835bbe296a47bf73990135c7d07ce741b9623b"},
|
197 |
+
{file = "pydantic-2.11.7.tar.gz", hash = "sha256:d989c3c6cb79469287b1569f7447a17848c998458d49ebe294e975b9baf0f0db"},
|
198 |
+
]
|
199 |
+
|
200 |
+
[package.dependencies]
|
201 |
+
annotated-types = ">=0.6.0"
|
202 |
+
pydantic-core = "2.33.2"
|
203 |
+
typing-extensions = ">=4.12.2"
|
204 |
+
typing-inspection = ">=0.4.0"
|
205 |
+
|
206 |
+
[package.extras]
|
207 |
+
email = ["email-validator (>=2.0.0)"]
|
208 |
+
timezone = ["tzdata ; python_version >= \"3.9\" and platform_system == \"Windows\""]
|
209 |
+
|
210 |
+
[[package]]
|
211 |
+
name = "pydantic-core"
|
212 |
+
version = "2.33.2"
|
213 |
+
description = "Core functionality for Pydantic validation and serialization"
|
214 |
+
optional = false
|
215 |
+
python-versions = ">=3.9"
|
216 |
+
groups = ["main"]
|
217 |
+
files = [
|
218 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2b3d326aaef0c0399d9afffeb6367d5e26ddc24d351dbc9c636840ac355dc5d8"},
|
219 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0e5b2671f05ba48b94cb90ce55d8bdcaaedb8ba00cc5359f6810fc918713983d"},
|
220 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0069c9acc3f3981b9ff4cdfaf088e98d83440a4c7ea1bc07460af3d4dc22e72d"},
|
221 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d53b22f2032c42eaaf025f7c40c2e3b94568ae077a606f006d206a463bc69572"},
|
222 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0405262705a123b7ce9f0b92f123334d67b70fd1f20a9372b907ce1080c7ba02"},
|
223 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4b25d91e288e2c4e0662b8038a28c6a07eaac3e196cfc4ff69de4ea3db992a1b"},
|
224 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6bdfe4b3789761f3bcb4b1ddf33355a71079858958e3a552f16d5af19768fef2"},
|
225 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:efec8db3266b76ef9607c2c4c419bdb06bf335ae433b80816089ea7585816f6a"},
|
226 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:031c57d67ca86902726e0fae2214ce6770bbe2f710dc33063187a68744a5ecac"},
|
227 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_armv7l.whl", hash = "sha256:f8de619080e944347f5f20de29a975c2d815d9ddd8be9b9b7268e2e3ef68605a"},
|
228 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:73662edf539e72a9440129f231ed3757faab89630d291b784ca99237fb94db2b"},
|
229 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-win32.whl", hash = "sha256:0a39979dcbb70998b0e505fb1556a1d550a0781463ce84ebf915ba293ccb7e22"},
|
230 |
+
{file = "pydantic_core-2.33.2-cp310-cp310-win_amd64.whl", hash = "sha256:b0379a2b24882fef529ec3b4987cb5d003b9cda32256024e6fe1586ac45fc640"},
|
231 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:4c5b0a576fb381edd6d27f0a85915c6daf2f8138dc5c267a57c08a62900758c7"},
|
232 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:e799c050df38a639db758c617ec771fd8fb7a5f8eaaa4b27b101f266b216a246"},
|
233 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dc46a01bf8d62f227d5ecee74178ffc448ff4e5197c756331f71efcc66dc980f"},
|
234 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a144d4f717285c6d9234a66778059f33a89096dfb9b39117663fd8413d582dcc"},
|
235 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:73cf6373c21bc80b2e0dc88444f41ae60b2f070ed02095754eb5a01df12256de"},
|
236 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3dc625f4aa79713512d1976fe9f0bc99f706a9dee21dfd1810b4bbbf228d0e8a"},
|
237 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:881b21b5549499972441da4758d662aeea93f1923f953e9cbaff14b8b9565aef"},
|
238 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bdc25f3681f7b78572699569514036afe3c243bc3059d3942624e936ec93450e"},
|
239 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:fe5b32187cbc0c862ee201ad66c30cf218e5ed468ec8dc1cf49dec66e160cc4d"},
|
240 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_armv7l.whl", hash = "sha256:bc7aee6f634a6f4a95676fcb5d6559a2c2a390330098dba5e5a5f28a2e4ada30"},
|
241 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:235f45e5dbcccf6bd99f9f472858849f73d11120d76ea8707115415f8e5ebebf"},
|
242 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-win32.whl", hash = "sha256:6368900c2d3ef09b69cb0b913f9f8263b03786e5b2a387706c5afb66800efd51"},
|
243 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-win_amd64.whl", hash = "sha256:1e063337ef9e9820c77acc768546325ebe04ee38b08703244c1309cccc4f1bab"},
|
244 |
+
{file = "pydantic_core-2.33.2-cp311-cp311-win_arm64.whl", hash = "sha256:6b99022f1d19bc32a4c2a0d544fc9a76e3be90f0b3f4af413f87d38749300e65"},
|
245 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:a7ec89dc587667f22b6a0b6579c249fca9026ce7c333fc142ba42411fa243cdc"},
|
246 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3c6db6e52c6d70aa0d00d45cdb9b40f0433b96380071ea80b09277dba021ddf7"},
|
247 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e61206137cbc65e6d5256e1166f88331d3b6238e082d9f74613b9b765fb9025"},
|
248 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eb8c529b2819c37140eb51b914153063d27ed88e3bdc31b71198a198e921e011"},
|
249 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c52b02ad8b4e2cf14ca7b3d918f3eb0ee91e63b3167c32591e57c4317e134f8f"},
|
250 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:96081f1605125ba0855dfda83f6f3df5ec90c61195421ba72223de35ccfb2f88"},
|
251 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f57a69461af2a5fa6e6bbd7a5f60d3b7e6cebb687f55106933188e79ad155c1"},
|
252 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:572c7e6c8bb4774d2ac88929e3d1f12bc45714ae5ee6d9a788a9fb35e60bb04b"},
|
253 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:db4b41f9bd95fbe5acd76d89920336ba96f03e149097365afe1cb092fceb89a1"},
|
254 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_armv7l.whl", hash = "sha256:fa854f5cf7e33842a892e5c73f45327760bc7bc516339fda888c75ae60edaeb6"},
|
255 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:5f483cfb75ff703095c59e365360cb73e00185e01aaea067cd19acffd2ab20ea"},
|
256 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-win32.whl", hash = "sha256:9cb1da0f5a471435a7bc7e439b8a728e8b61e59784b2af70d7c169f8dd8ae290"},
|
257 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-win_amd64.whl", hash = "sha256:f941635f2a3d96b2973e867144fde513665c87f13fe0e193c158ac51bfaaa7b2"},
|
258 |
+
{file = "pydantic_core-2.33.2-cp312-cp312-win_arm64.whl", hash = "sha256:cca3868ddfaccfbc4bfb1d608e2ccaaebe0ae628e1416aeb9c4d88c001bb45ab"},
|
259 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:1082dd3e2d7109ad8b7da48e1d4710c8d06c253cbc4a27c1cff4fbcaa97a9e3f"},
|
260 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f517ca031dfc037a9c07e748cefd8d96235088b83b4f4ba8939105d20fa1dcd6"},
|
261 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0a9f2c9dd19656823cb8250b0724ee9c60a82f3cdf68a080979d13092a3b0fef"},
|
262 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2b0a451c263b01acebe51895bfb0e1cc842a5c666efe06cdf13846c7418caa9a"},
|
263 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ea40a64d23faa25e62a70ad163571c0b342b8bf66d5fa612ac0dec4f069d916"},
|
264 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0fb2d542b4d66f9470e8065c5469ec676978d625a8b7a363f07d9a501a9cb36a"},
|
265 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fdac5d6ffa1b5a83bca06ffe7583f5576555e6c8b3a91fbd25ea7780f825f7d"},
|
266 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:04a1a413977ab517154eebb2d326da71638271477d6ad87a769102f7c2488c56"},
|
267 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c8e7af2f4e0194c22b5b37205bfb293d166a7344a5b0d0eaccebc376546d77d5"},
|
268 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_armv7l.whl", hash = "sha256:5c92edd15cd58b3c2d34873597a1e20f13094f59cf88068adb18947df5455b4e"},
|
269 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:65132b7b4a1c0beded5e057324b7e16e10910c106d43675d9bd87d4f38dde162"},
|
270 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-win32.whl", hash = "sha256:52fb90784e0a242bb96ec53f42196a17278855b0f31ac7c3cc6f5c1ec4811849"},
|
271 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-win_amd64.whl", hash = "sha256:c083a3bdd5a93dfe480f1125926afcdbf2917ae714bdb80b36d34318b2bec5d9"},
|
272 |
+
{file = "pydantic_core-2.33.2-cp313-cp313-win_arm64.whl", hash = "sha256:e80b087132752f6b3d714f041ccf74403799d3b23a72722ea2e6ba2e892555b9"},
|
273 |
+
{file = "pydantic_core-2.33.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:61c18fba8e5e9db3ab908620af374db0ac1baa69f0f32df4f61ae23f15e586ac"},
|
274 |
+
{file = "pydantic_core-2.33.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95237e53bb015f67b63c91af7518a62a8660376a6a0db19b89acc77a4d6199f5"},
|
275 |
+
{file = "pydantic_core-2.33.2-cp313-cp313t-win_amd64.whl", hash = "sha256:c2fc0a768ef76c15ab9238afa6da7f69895bb5d1ee83aeea2e3509af4472d0b9"},
|
276 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:a2b911a5b90e0374d03813674bf0a5fbbb7741570dcd4b4e85a2e48d17def29d"},
|
277 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6fa6dfc3e4d1f734a34710f391ae822e0a8eb8559a85c6979e14e65ee6ba2954"},
|
278 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c54c939ee22dc8e2d545da79fc5381f1c020d6d3141d3bd747eab59164dc89fb"},
|
279 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53a57d2ed685940a504248187d5685e49eb5eef0f696853647bf37c418c538f7"},
|
280 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09fb9dd6571aacd023fe6aaca316bd01cf60ab27240d7eb39ebd66a3a15293b4"},
|
281 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0e6116757f7959a712db11f3e9c0a99ade00a5bbedae83cb801985aa154f071b"},
|
282 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d55ab81c57b8ff8548c3e4947f119551253f4e3787a7bbc0b6b3ca47498a9d3"},
|
283 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c20c462aa4434b33a2661701b861604913f912254e441ab8d78d30485736115a"},
|
284 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:44857c3227d3fb5e753d5fe4a3420d6376fa594b07b621e220cd93703fe21782"},
|
285 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_armv7l.whl", hash = "sha256:eb9b459ca4df0e5c87deb59d37377461a538852765293f9e6ee834f0435a93b9"},
|
286 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:9fcd347d2cc5c23b06de6d3b7b8275be558a0c90549495c699e379a80bf8379e"},
|
287 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-win32.whl", hash = "sha256:83aa99b1285bc8f038941ddf598501a86f1536789740991d7d8756e34f1e74d9"},
|
288 |
+
{file = "pydantic_core-2.33.2-cp39-cp39-win_amd64.whl", hash = "sha256:f481959862f57f29601ccced557cc2e817bce7533ab8e01a797a48b49c9692b3"},
|
289 |
+
{file = "pydantic_core-2.33.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5c4aa4e82353f65e548c476b37e64189783aa5384903bfea4f41580f255fddfa"},
|
290 |
+
{file = "pydantic_core-2.33.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:d946c8bf0d5c24bf4fe333af284c59a19358aa3ec18cb3dc4370080da1e8ad29"},
|
291 |
+
{file = "pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87b31b6846e361ef83fedb187bb5b4372d0da3f7e28d85415efa92d6125d6e6d"},
|
292 |
+
{file = "pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa9d91b338f2df0508606f7009fde642391425189bba6d8c653afd80fd6bb64e"},
|
293 |
+
{file = "pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2058a32994f1fde4ca0480ab9d1e75a0e8c87c22b53a3ae66554f9af78f2fe8c"},
|
294 |
+
{file = "pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:0e03262ab796d986f978f79c943fc5f620381be7287148b8010b4097f79a39ec"},
|
295 |
+
{file = "pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:1a8695a8d00c73e50bff9dfda4d540b7dee29ff9b8053e38380426a85ef10052"},
|
296 |
+
{file = "pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:fa754d1850735a0b0e03bcffd9d4b4343eb417e47196e4485d9cca326073a42c"},
|
297 |
+
{file = "pydantic_core-2.33.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:a11c8d26a50bfab49002947d3d237abe4d9e4b5bdc8846a63537b6488e197808"},
|
298 |
+
{file = "pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:dd14041875d09cc0f9308e37a6f8b65f5585cf2598a53aa0123df8b129d481f8"},
|
299 |
+
{file = "pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:d87c561733f66531dced0da6e864f44ebf89a8fba55f31407b00c2f7f9449593"},
|
300 |
+
{file = "pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f82865531efd18d6e07a04a17331af02cb7a651583c418df8266f17a63c6612"},
|
301 |
+
{file = "pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bfb5112df54209d820d7bf9317c7a6c9025ea52e49f46b6a2060104bba37de7"},
|
302 |
+
{file = "pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:64632ff9d614e5eecfb495796ad51b0ed98c453e447a76bcbeeb69615079fc7e"},
|
303 |
+
{file = "pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:f889f7a40498cc077332c7ab6b4608d296d852182211787d4f3ee377aaae66e8"},
|
304 |
+
{file = "pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:de4b83bb311557e439b9e186f733f6c645b9417c84e2eb8203f3f820a4b988bf"},
|
305 |
+
{file = "pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:82f68293f055f51b51ea42fafc74b6aad03e70e191799430b90c13d643059ebb"},
|
306 |
+
{file = "pydantic_core-2.33.2-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:329467cecfb529c925cf2bbd4d60d2c509bc2fb52a20c1045bf09bb70971a9c1"},
|
307 |
+
{file = "pydantic_core-2.33.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:87acbfcf8e90ca885206e98359d7dca4bcbb35abdc0ff66672a293e1d7a19101"},
|
308 |
+
{file = "pydantic_core-2.33.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:7f92c15cd1e97d4b12acd1cc9004fa092578acfa57b67ad5e43a197175d01a64"},
|
309 |
+
{file = "pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d3f26877a748dc4251cfcfda9dfb5f13fcb034f5308388066bcfe9031b63ae7d"},
|
310 |
+
{file = "pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dac89aea9af8cd672fa7b510e7b8c33b0bba9a43186680550ccf23020f32d535"},
|
311 |
+
{file = "pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:970919794d126ba8645f3837ab6046fb4e72bbc057b3709144066204c19a455d"},
|
312 |
+
{file = "pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:3eb3fe62804e8f859c49ed20a8451342de53ed764150cb14ca71357c765dc2a6"},
|
313 |
+
{file = "pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl", hash = "sha256:3abcd9392a36025e3bd55f9bd38d908bd17962cc49bc6da8e7e96285336e2bca"},
|
314 |
+
{file = "pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:3a1c81334778f9e3af2f8aeb7a960736e5cab1dfebfb26aabca09afd2906c039"},
|
315 |
+
{file = "pydantic_core-2.33.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:2807668ba86cb38c6817ad9bc66215ab8584d1d304030ce4f0887336f28a5e27"},
|
316 |
+
{file = "pydantic_core-2.33.2.tar.gz", hash = "sha256:7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc"},
|
317 |
+
]
|
318 |
+
|
319 |
+
[package.dependencies]
|
320 |
+
typing-extensions = ">=4.6.0,<4.7.0 || >4.7.0"
|
321 |
+
|
322 |
+
[[package]]
|
323 |
+
name = "python-dotenv"
|
324 |
+
version = "1.1.1"
|
325 |
+
description = "Read key-value pairs from a .env file and set them as environment variables"
|
326 |
+
optional = false
|
327 |
+
python-versions = ">=3.9"
|
328 |
+
groups = ["main"]
|
329 |
+
files = [
|
330 |
+
{file = "python_dotenv-1.1.1-py3-none-any.whl", hash = "sha256:31f23644fe2602f88ff55e1f5c79ba497e01224ee7737937930c448e4d0e24dc"},
|
331 |
+
{file = "python_dotenv-1.1.1.tar.gz", hash = "sha256:a8a6399716257f45be6a007360200409fce5cda2661e3dec71d23dc15f6189ab"},
|
332 |
+
]
|
333 |
+
|
334 |
+
[package.extras]
|
335 |
+
cli = ["click (>=5.0)"]
|
336 |
+
|
337 |
+
[[package]]
|
338 |
+
name = "pyyaml"
|
339 |
+
version = "6.0.2"
|
340 |
+
description = "YAML parser and emitter for Python"
|
341 |
+
optional = false
|
342 |
+
python-versions = ">=3.8"
|
343 |
+
groups = ["main"]
|
344 |
+
files = [
|
345 |
+
{file = "PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086"},
|
346 |
+
{file = "PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf"},
|
347 |
+
{file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237"},
|
348 |
+
{file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b"},
|
349 |
+
{file = "PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed"},
|
350 |
+
{file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180"},
|
351 |
+
{file = "PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68"},
|
352 |
+
{file = "PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99"},
|
353 |
+
{file = "PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e"},
|
354 |
+
{file = "PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774"},
|
355 |
+
{file = "PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee"},
|
356 |
+
{file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c"},
|
357 |
+
{file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317"},
|
358 |
+
{file = "PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85"},
|
359 |
+
{file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4"},
|
360 |
+
{file = "PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e"},
|
361 |
+
{file = "PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5"},
|
362 |
+
{file = "PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44"},
|
363 |
+
{file = "PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab"},
|
364 |
+
{file = "PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725"},
|
365 |
+
{file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5"},
|
366 |
+
{file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425"},
|
367 |
+
{file = "PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476"},
|
368 |
+
{file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48"},
|
369 |
+
{file = "PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b"},
|
370 |
+
{file = "PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4"},
|
371 |
+
{file = "PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8"},
|
372 |
+
{file = "PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba"},
|
373 |
+
{file = "PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1"},
|
374 |
+
{file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133"},
|
375 |
+
{file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484"},
|
376 |
+
{file = "PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5"},
|
377 |
+
{file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc"},
|
378 |
+
{file = "PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652"},
|
379 |
+
{file = "PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183"},
|
380 |
+
{file = "PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563"},
|
381 |
+
{file = "PyYAML-6.0.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:24471b829b3bf607e04e88d79542a9d48bb037c2267d7927a874e6c205ca7e9a"},
|
382 |
+
{file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7fded462629cfa4b685c5416b949ebad6cec74af5e2d42905d41e257e0869f5"},
|
383 |
+
{file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d84a1718ee396f54f3a086ea0a66d8e552b2ab2017ef8b420e92edbc841c352d"},
|
384 |
+
{file = "PyYAML-6.0.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9056c1ecd25795207ad294bcf39f2db3d845767be0ea6e6a34d856f006006083"},
|
385 |
+
{file = "PyYAML-6.0.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:82d09873e40955485746739bcb8b4586983670466c23382c19cffecbf1fd8706"},
|
386 |
+
{file = "PyYAML-6.0.2-cp38-cp38-win32.whl", hash = "sha256:43fa96a3ca0d6b1812e01ced1044a003533c47f6ee8aca31724f78e93ccc089a"},
|
387 |
+
{file = "PyYAML-6.0.2-cp38-cp38-win_amd64.whl", hash = "sha256:01179a4a8559ab5de078078f37e5c1a30d76bb88519906844fd7bdea1b7729ff"},
|
388 |
+
{file = "PyYAML-6.0.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:688ba32a1cffef67fd2e9398a2efebaea461578b0923624778664cc1c914db5d"},
|
389 |
+
{file = "PyYAML-6.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a8786accb172bd8afb8be14490a16625cbc387036876ab6ba70912730faf8e1f"},
|
390 |
+
{file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8e03406cac8513435335dbab54c0d385e4a49e4945d2909a581c83647ca0290"},
|
391 |
+
{file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f753120cb8181e736c57ef7636e83f31b9c0d1722c516f7e86cf15b7aa57ff12"},
|
392 |
+
{file = "PyYAML-6.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b1fdb9dc17f5a7677423d508ab4f243a726dea51fa5e70992e59a7411c89d19"},
|
393 |
+
{file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:0b69e4ce7a131fe56b7e4d770c67429700908fc0752af059838b1cfb41960e4e"},
|
394 |
+
{file = "PyYAML-6.0.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a9f8c2e67970f13b16084e04f134610fd1d374bf477b17ec1599185cf611d725"},
|
395 |
+
{file = "PyYAML-6.0.2-cp39-cp39-win32.whl", hash = "sha256:6395c297d42274772abc367baaa79683958044e5d3835486c16da75d2a694631"},
|
396 |
+
{file = "PyYAML-6.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:39693e1f8320ae4f43943590b49779ffb98acb81f788220ea932a6b6c51004d8"},
|
397 |
+
{file = "pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"},
|
398 |
+
]
|
399 |
+
|
400 |
+
[[package]]
|
401 |
+
name = "sniffio"
|
402 |
+
version = "1.3.1"
|
403 |
+
description = "Sniff out which async library your code is running under"
|
404 |
+
optional = false
|
405 |
+
python-versions = ">=3.7"
|
406 |
+
groups = ["main"]
|
407 |
+
files = [
|
408 |
+
{file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"},
|
409 |
+
{file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"},
|
410 |
+
]
|
411 |
+
|
412 |
+
[[package]]
|
413 |
+
name = "starlette"
|
414 |
+
version = "0.47.3"
|
415 |
+
description = "The little ASGI library that shines."
|
416 |
+
optional = false
|
417 |
+
python-versions = ">=3.9"
|
418 |
+
groups = ["main"]
|
419 |
+
files = [
|
420 |
+
{file = "starlette-0.47.3-py3-none-any.whl", hash = "sha256:89c0778ca62a76b826101e7c709e70680a1699ca7da6b44d38eb0a7e61fe4b51"},
|
421 |
+
{file = "starlette-0.47.3.tar.gz", hash = "sha256:6bc94f839cc176c4858894f1f8908f0ab79dfec1a6b8402f6da9be26ebea52e9"},
|
422 |
+
]
|
423 |
+
|
424 |
+
[package.dependencies]
|
425 |
+
anyio = ">=3.6.2,<5"
|
426 |
+
typing-extensions = {version = ">=4.10.0", markers = "python_version < \"3.13\""}
|
427 |
+
|
428 |
+
[package.extras]
|
429 |
+
full = ["httpx (>=0.27.0,<0.29.0)", "itsdangerous", "jinja2", "python-multipart (>=0.0.18)", "pyyaml"]
|
430 |
+
|
431 |
+
[[package]]
|
432 |
+
name = "typing-extensions"
|
433 |
+
version = "4.15.0"
|
434 |
+
description = "Backported and Experimental Type Hints for Python 3.9+"
|
435 |
+
optional = false
|
436 |
+
python-versions = ">=3.9"
|
437 |
+
groups = ["main"]
|
438 |
+
files = [
|
439 |
+
{file = "typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548"},
|
440 |
+
{file = "typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466"},
|
441 |
+
]
|
442 |
+
|
443 |
+
[[package]]
|
444 |
+
name = "typing-inspection"
|
445 |
+
version = "0.4.1"
|
446 |
+
description = "Runtime typing introspection tools"
|
447 |
+
optional = false
|
448 |
+
python-versions = ">=3.9"
|
449 |
+
groups = ["main"]
|
450 |
+
files = [
|
451 |
+
{file = "typing_inspection-0.4.1-py3-none-any.whl", hash = "sha256:389055682238f53b04f7badcb49b989835495a96700ced5dab2d8feae4b26f51"},
|
452 |
+
{file = "typing_inspection-0.4.1.tar.gz", hash = "sha256:6ae134cc0203c33377d43188d4064e9b357dba58cff3185f22924610e70a9d28"},
|
453 |
+
]
|
454 |
+
|
455 |
+
[package.dependencies]
|
456 |
+
typing-extensions = ">=4.12.0"
|
457 |
+
|
458 |
+
[[package]]
|
459 |
+
name = "uvicorn"
|
460 |
+
version = "0.35.0"
|
461 |
+
description = "The lightning-fast ASGI server."
|
462 |
+
optional = false
|
463 |
+
python-versions = ">=3.9"
|
464 |
+
groups = ["main"]
|
465 |
+
files = [
|
466 |
+
{file = "uvicorn-0.35.0-py3-none-any.whl", hash = "sha256:197535216b25ff9b785e29a0b79199f55222193d47f820816e7da751e9bc8d4a"},
|
467 |
+
{file = "uvicorn-0.35.0.tar.gz", hash = "sha256:bc662f087f7cf2ce11a1d7fd70b90c9f98ef2e2831556dd078d131b96cc94a01"},
|
468 |
+
]
|
469 |
+
|
470 |
+
[package.dependencies]
|
471 |
+
click = ">=7.0"
|
472 |
+
colorama = {version = ">=0.4", optional = true, markers = "sys_platform == \"win32\" and extra == \"standard\""}
|
473 |
+
h11 = ">=0.8"
|
474 |
+
httptools = {version = ">=0.6.3", optional = true, markers = "extra == \"standard\""}
|
475 |
+
python-dotenv = {version = ">=0.13", optional = true, markers = "extra == \"standard\""}
|
476 |
+
pyyaml = {version = ">=5.1", optional = true, markers = "extra == \"standard\""}
|
477 |
+
typing-extensions = {version = ">=4.0", markers = "python_version < \"3.11\""}
|
478 |
+
uvloop = {version = ">=0.15.1", optional = true, markers = "sys_platform != \"win32\" and sys_platform != \"cygwin\" and platform_python_implementation != \"PyPy\" and extra == \"standard\""}
|
479 |
+
watchfiles = {version = ">=0.13", optional = true, markers = "extra == \"standard\""}
|
480 |
+
websockets = {version = ">=10.4", optional = true, markers = "extra == \"standard\""}
|
481 |
+
|
482 |
+
[package.extras]
|
483 |
+
standard = ["colorama (>=0.4) ; sys_platform == \"win32\"", "httptools (>=0.6.3)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.15.1) ; sys_platform != \"win32\" and sys_platform != \"cygwin\" and platform_python_implementation != \"PyPy\"", "watchfiles (>=0.13)", "websockets (>=10.4)"]
|
484 |
+
|
485 |
+
[[package]]
|
486 |
+
name = "uvloop"
|
487 |
+
version = "0.21.0"
|
488 |
+
description = "Fast implementation of asyncio event loop on top of libuv"
|
489 |
+
optional = false
|
490 |
+
python-versions = ">=3.8.0"
|
491 |
+
groups = ["main"]
|
492 |
+
markers = "sys_platform != \"win32\" and sys_platform != \"cygwin\" and platform_python_implementation != \"PyPy\""
|
493 |
+
files = [
|
494 |
+
{file = "uvloop-0.21.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ec7e6b09a6fdded42403182ab6b832b71f4edaf7f37a9a0e371a01db5f0cb45f"},
|
495 |
+
{file = "uvloop-0.21.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:196274f2adb9689a289ad7d65700d37df0c0930fd8e4e743fa4834e850d7719d"},
|
496 |
+
{file = "uvloop-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f38b2e090258d051d68a5b14d1da7203a3c3677321cf32a95a6f4db4dd8b6f26"},
|
497 |
+
{file = "uvloop-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:87c43e0f13022b998eb9b973b5e97200c8b90823454d4bc06ab33829e09fb9bb"},
|
498 |
+
{file = "uvloop-0.21.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:10d66943def5fcb6e7b37310eb6b5639fd2ccbc38df1177262b0640c3ca68c1f"},
|
499 |
+
{file = "uvloop-0.21.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:67dd654b8ca23aed0a8e99010b4c34aca62f4b7fce88f39d452ed7622c94845c"},
|
500 |
+
{file = "uvloop-0.21.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c0f3fa6200b3108919f8bdabb9a7f87f20e7097ea3c543754cabc7d717d95cf8"},
|
501 |
+
{file = "uvloop-0.21.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0878c2640cf341b269b7e128b1a5fed890adc4455513ca710d77d5e93aa6d6a0"},
|
502 |
+
{file = "uvloop-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9fb766bb57b7388745d8bcc53a359b116b8a04c83a2288069809d2b3466c37e"},
|
503 |
+
{file = "uvloop-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8a375441696e2eda1c43c44ccb66e04d61ceeffcd76e4929e527b7fa401b90fb"},
|
504 |
+
{file = "uvloop-0.21.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:baa0e6291d91649c6ba4ed4b2f982f9fa165b5bbd50a9e203c416a2797bab3c6"},
|
505 |
+
{file = "uvloop-0.21.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4509360fcc4c3bd2c70d87573ad472de40c13387f5fda8cb58350a1d7475e58d"},
|
506 |
+
{file = "uvloop-0.21.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:359ec2c888397b9e592a889c4d72ba3d6befba8b2bb01743f72fffbde663b59c"},
|
507 |
+
{file = "uvloop-0.21.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:f7089d2dc73179ce5ac255bdf37c236a9f914b264825fdaacaded6990a7fb4c2"},
|
508 |
+
{file = "uvloop-0.21.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:baa4dcdbd9ae0a372f2167a207cd98c9f9a1ea1188a8a526431eef2f8116cc8d"},
|
509 |
+
{file = "uvloop-0.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86975dca1c773a2c9864f4c52c5a55631038e387b47eaf56210f873887b6c8dc"},
|
510 |
+
{file = "uvloop-0.21.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:461d9ae6660fbbafedd07559c6a2e57cd553b34b0065b6550685f6653a98c1cb"},
|
511 |
+
{file = "uvloop-0.21.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:183aef7c8730e54c9a3ee3227464daed66e37ba13040bb3f350bc2ddc040f22f"},
|
512 |
+
{file = "uvloop-0.21.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:bfd55dfcc2a512316e65f16e503e9e450cab148ef11df4e4e679b5e8253a5281"},
|
513 |
+
{file = "uvloop-0.21.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:787ae31ad8a2856fc4e7c095341cccc7209bd657d0e71ad0dc2ea83c4a6fa8af"},
|
514 |
+
{file = "uvloop-0.21.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5ee4d4ef48036ff6e5cfffb09dd192c7a5027153948d85b8da7ff705065bacc6"},
|
515 |
+
{file = "uvloop-0.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3df876acd7ec037a3d005b3ab85a7e4110422e4d9c1571d4fc89b0fc41b6816"},
|
516 |
+
{file = "uvloop-0.21.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bd53ecc9a0f3d87ab847503c2e1552b690362e005ab54e8a48ba97da3924c0dc"},
|
517 |
+
{file = "uvloop-0.21.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a5c39f217ab3c663dc699c04cbd50c13813e31d917642d459fdcec07555cc553"},
|
518 |
+
{file = "uvloop-0.21.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:17df489689befc72c39a08359efac29bbee8eee5209650d4b9f34df73d22e414"},
|
519 |
+
{file = "uvloop-0.21.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bc09f0ff191e61c2d592a752423c767b4ebb2986daa9ed62908e2b1b9a9ae206"},
|
520 |
+
{file = "uvloop-0.21.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f0ce1b49560b1d2d8a2977e3ba4afb2414fb46b86a1b64056bc4ab929efdafbe"},
|
521 |
+
{file = "uvloop-0.21.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e678ad6fe52af2c58d2ae3c73dc85524ba8abe637f134bf3564ed07f555c5e79"},
|
522 |
+
{file = "uvloop-0.21.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:460def4412e473896ef179a1671b40c039c7012184b627898eea5072ef6f017a"},
|
523 |
+
{file = "uvloop-0.21.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:10da8046cc4a8f12c91a1c39d1dd1585c41162a15caaef165c2174db9ef18bdc"},
|
524 |
+
{file = "uvloop-0.21.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c097078b8031190c934ed0ebfee8cc5f9ba9642e6eb88322b9958b649750f72b"},
|
525 |
+
{file = "uvloop-0.21.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:46923b0b5ee7fc0020bef24afe7836cb068f5050ca04caf6b487c513dc1a20b2"},
|
526 |
+
{file = "uvloop-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53e420a3afe22cdcf2a0f4846e377d16e718bc70103d7088a4f7623567ba5fb0"},
|
527 |
+
{file = "uvloop-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88cb67cdbc0e483da00af0b2c3cdad4b7c61ceb1ee0f33fe00e09c81e3a6cb75"},
|
528 |
+
{file = "uvloop-0.21.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:221f4f2a1f46032b403bf3be628011caf75428ee3cc204a22addf96f586b19fd"},
|
529 |
+
{file = "uvloop-0.21.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2d1f581393673ce119355d56da84fe1dd9d2bb8b3d13ce792524e1607139feff"},
|
530 |
+
{file = "uvloop-0.21.0.tar.gz", hash = "sha256:3bf12b0fda68447806a7ad847bfa591613177275d35b6724b1ee573faa3704e3"},
|
531 |
+
]
|
532 |
+
|
533 |
+
[package.extras]
|
534 |
+
dev = ["Cython (>=3.0,<4.0)", "setuptools (>=60)"]
|
535 |
+
docs = ["Sphinx (>=4.1.2,<4.2.0)", "sphinx-rtd-theme (>=0.5.2,<0.6.0)", "sphinxcontrib-asyncio (>=0.3.0,<0.4.0)"]
|
536 |
+
test = ["aiohttp (>=3.10.5)", "flake8 (>=5.0,<6.0)", "mypy (>=0.800)", "psutil", "pyOpenSSL (>=23.0.0,<23.1.0)", "pycodestyle (>=2.9.0,<2.10.0)"]
|
537 |
+
|
538 |
+
[[package]]
|
539 |
+
name = "watchfiles"
|
540 |
+
version = "1.1.0"
|
541 |
+
description = "Simple, modern and high performance file watching and code reload in python."
|
542 |
+
optional = false
|
543 |
+
python-versions = ">=3.9"
|
544 |
+
groups = ["main"]
|
545 |
+
files = [
|
546 |
+
{file = "watchfiles-1.1.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:27f30e14aa1c1e91cb653f03a63445739919aef84c8d2517997a83155e7a2fcc"},
|
547 |
+
{file = "watchfiles-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3366f56c272232860ab45c77c3ca7b74ee819c8e1f6f35a7125556b198bbc6df"},
|
548 |
+
{file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8412eacef34cae2836d891836a7fff7b754d6bcac61f6c12ba5ca9bc7e427b68"},
|
549 |
+
{file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:df670918eb7dd719642e05979fc84704af913d563fd17ed636f7c4783003fdcc"},
|
550 |
+
{file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d7642b9bc4827b5518ebdb3b82698ada8c14c7661ddec5fe719f3e56ccd13c97"},
|
551 |
+
{file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:199207b2d3eeaeb80ef4411875a6243d9ad8bc35b07fc42daa6b801cc39cc41c"},
|
552 |
+
{file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a479466da6db5c1e8754caee6c262cd373e6e6c363172d74394f4bff3d84d7b5"},
|
553 |
+
{file = "watchfiles-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:935f9edd022ec13e447e5723a7d14456c8af254544cefbc533f6dd276c9aa0d9"},
|
554 |
+
{file = "watchfiles-1.1.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:8076a5769d6bdf5f673a19d51da05fc79e2bbf25e9fe755c47595785c06a8c72"},
|
555 |
+
{file = "watchfiles-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:86b1e28d4c37e89220e924305cd9f82866bb0ace666943a6e4196c5df4d58dcc"},
|
556 |
+
{file = "watchfiles-1.1.0-cp310-cp310-win32.whl", hash = "sha256:d1caf40c1c657b27858f9774d5c0e232089bca9cb8ee17ce7478c6e9264d2587"},
|
557 |
+
{file = "watchfiles-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:a89c75a5b9bc329131115a409d0acc16e8da8dfd5867ba59f1dd66ae7ea8fa82"},
|
558 |
+
{file = "watchfiles-1.1.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:c9649dfc57cc1f9835551deb17689e8d44666315f2e82d337b9f07bd76ae3aa2"},
|
559 |
+
{file = "watchfiles-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:406520216186b99374cdb58bc48e34bb74535adec160c8459894884c983a149c"},
|
560 |
+
{file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb45350fd1dc75cd68d3d72c47f5b513cb0578da716df5fba02fff31c69d5f2d"},
|
561 |
+
{file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:11ee4444250fcbeb47459a877e5e80ed994ce8e8d20283857fc128be1715dac7"},
|
562 |
+
{file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bda8136e6a80bdea23e5e74e09df0362744d24ffb8cd59c4a95a6ce3d142f79c"},
|
563 |
+
{file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b915daeb2d8c1f5cee4b970f2e2c988ce6514aace3c9296e58dd64dc9aa5d575"},
|
564 |
+
{file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ed8fc66786de8d0376f9f913c09e963c66e90ced9aa11997f93bdb30f7c872a8"},
|
565 |
+
{file = "watchfiles-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe4371595edf78c41ef8ac8df20df3943e13defd0efcb732b2e393b5a8a7a71f"},
|
566 |
+
{file = "watchfiles-1.1.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b7c5f6fe273291f4d414d55b2c80d33c457b8a42677ad14b4b47ff025d0893e4"},
|
567 |
+
{file = "watchfiles-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7738027989881e70e3723c75921f1efa45225084228788fc59ea8c6d732eb30d"},
|
568 |
+
{file = "watchfiles-1.1.0-cp311-cp311-win32.whl", hash = "sha256:622d6b2c06be19f6e89b1d951485a232e3b59618def88dbeda575ed8f0d8dbf2"},
|
569 |
+
{file = "watchfiles-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:48aa25e5992b61debc908a61ab4d3f216b64f44fdaa71eb082d8b2de846b7d12"},
|
570 |
+
{file = "watchfiles-1.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:00645eb79a3faa70d9cb15c8d4187bb72970b2470e938670240c7998dad9f13a"},
|
571 |
+
{file = "watchfiles-1.1.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:9dc001c3e10de4725c749d4c2f2bdc6ae24de5a88a339c4bce32300a31ede179"},
|
572 |
+
{file = "watchfiles-1.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d9ba68ec283153dead62cbe81872d28e053745f12335d037de9cbd14bd1877f5"},
|
573 |
+
{file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:130fc497b8ee68dce163e4254d9b0356411d1490e868bd8790028bc46c5cc297"},
|
574 |
+
{file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50a51a90610d0845a5931a780d8e51d7bd7f309ebc25132ba975aca016b576a0"},
|
575 |
+
{file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dc44678a72ac0910bac46fa6a0de6af9ba1355669b3dfaf1ce5f05ca7a74364e"},
|
576 |
+
{file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a543492513a93b001975ae283a51f4b67973662a375a403ae82f420d2c7205ee"},
|
577 |
+
{file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ac164e20d17cc285f2b94dc31c384bc3aa3dd5e7490473b3db043dd70fbccfd"},
|
578 |
+
{file = "watchfiles-1.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7590d5a455321e53857892ab8879dce62d1f4b04748769f5adf2e707afb9d4f"},
|
579 |
+
{file = "watchfiles-1.1.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:37d3d3f7defb13f62ece99e9be912afe9dd8a0077b7c45ee5a57c74811d581a4"},
|
580 |
+
{file = "watchfiles-1.1.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:7080c4bb3efd70a07b1cc2df99a7aa51d98685be56be6038c3169199d0a1c69f"},
|
581 |
+
{file = "watchfiles-1.1.0-cp312-cp312-win32.whl", hash = "sha256:cbcf8630ef4afb05dc30107bfa17f16c0896bb30ee48fc24bf64c1f970f3b1fd"},
|
582 |
+
{file = "watchfiles-1.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:cbd949bdd87567b0ad183d7676feb98136cde5bb9025403794a4c0db28ed3a47"},
|
583 |
+
{file = "watchfiles-1.1.0-cp312-cp312-win_arm64.whl", hash = "sha256:0a7d40b77f07be87c6faa93d0951a0fcd8cbca1ddff60a1b65d741bac6f3a9f6"},
|
584 |
+
{file = "watchfiles-1.1.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:5007f860c7f1f8df471e4e04aaa8c43673429047d63205d1630880f7637bca30"},
|
585 |
+
{file = "watchfiles-1.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:20ecc8abbd957046f1fe9562757903f5eaf57c3bce70929fda6c7711bb58074a"},
|
586 |
+
{file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2f0498b7d2a3c072766dba3274fe22a183dbea1f99d188f1c6c72209a1063dc"},
|
587 |
+
{file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:239736577e848678e13b201bba14e89718f5c2133dfd6b1f7846fa1b58a8532b"},
|
588 |
+
{file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:eff4b8d89f444f7e49136dc695599a591ff769300734446c0a86cba2eb2f9895"},
|
589 |
+
{file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:12b0a02a91762c08f7264e2e79542f76870c3040bbc847fb67410ab81474932a"},
|
590 |
+
{file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:29e7bc2eee15cbb339c68445959108803dc14ee0c7b4eea556400131a8de462b"},
|
591 |
+
{file = "watchfiles-1.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9481174d3ed982e269c090f780122fb59cee6c3796f74efe74e70f7780ed94c"},
|
592 |
+
{file = "watchfiles-1.1.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:80f811146831c8c86ab17b640801c25dc0a88c630e855e2bef3568f30434d52b"},
|
593 |
+
{file = "watchfiles-1.1.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:60022527e71d1d1fda67a33150ee42869042bce3d0fcc9cc49be009a9cded3fb"},
|
594 |
+
{file = "watchfiles-1.1.0-cp313-cp313-win32.whl", hash = "sha256:32d6d4e583593cb8576e129879ea0991660b935177c0f93c6681359b3654bfa9"},
|
595 |
+
{file = "watchfiles-1.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:f21af781a4a6fbad54f03c598ab620e3a77032c5878f3d780448421a6e1818c7"},
|
596 |
+
{file = "watchfiles-1.1.0-cp313-cp313-win_arm64.whl", hash = "sha256:5366164391873ed76bfdf618818c82084c9db7fac82b64a20c44d335eec9ced5"},
|
597 |
+
{file = "watchfiles-1.1.0-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:17ab167cca6339c2b830b744eaf10803d2a5b6683be4d79d8475d88b4a8a4be1"},
|
598 |
+
{file = "watchfiles-1.1.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:328dbc9bff7205c215a7807da7c18dce37da7da718e798356212d22696404339"},
|
599 |
+
{file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f7208ab6e009c627b7557ce55c465c98967e8caa8b11833531fdf95799372633"},
|
600 |
+
{file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a8f6f72974a19efead54195bc9bed4d850fc047bb7aa971268fd9a8387c89011"},
|
601 |
+
{file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d181ef50923c29cf0450c3cd47e2f0557b62218c50b2ab8ce2ecaa02bd97e670"},
|
602 |
+
{file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:adb4167043d3a78280d5d05ce0ba22055c266cf8655ce942f2fb881262ff3cdf"},
|
603 |
+
{file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8c5701dc474b041e2934a26d31d39f90fac8a3dee2322b39f7729867f932b1d4"},
|
604 |
+
{file = "watchfiles-1.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b067915e3c3936966a8607f6fe5487df0c9c4afb85226613b520890049deea20"},
|
605 |
+
{file = "watchfiles-1.1.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:9c733cda03b6d636b4219625a4acb5c6ffb10803338e437fb614fef9516825ef"},
|
606 |
+
{file = "watchfiles-1.1.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:cc08ef8b90d78bfac66f0def80240b0197008e4852c9f285907377b2947ffdcb"},
|
607 |
+
{file = "watchfiles-1.1.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:9974d2f7dc561cce3bb88dfa8eb309dab64c729de85fba32e98d75cf24b66297"},
|
608 |
+
{file = "watchfiles-1.1.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c68e9f1fcb4d43798ad8814c4c1b61547b014b667216cb754e606bfade587018"},
|
609 |
+
{file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:95ab1594377effac17110e1352989bdd7bdfca9ff0e5eeccd8c69c5389b826d0"},
|
610 |
+
{file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fba9b62da882c1be1280a7584ec4515d0a6006a94d6e5819730ec2eab60ffe12"},
|
611 |
+
{file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3434e401f3ce0ed6b42569128b3d1e3af773d7ec18751b918b89cd49c14eaafb"},
|
612 |
+
{file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:fa257a4d0d21fcbca5b5fcba9dca5a78011cb93c0323fb8855c6d2dfbc76eb77"},
|
613 |
+
{file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7fd1b3879a578a8ec2076c7961076df540b9af317123f84569f5a9ddee64ce92"},
|
614 |
+
{file = "watchfiles-1.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62cc7a30eeb0e20ecc5f4bd113cd69dcdb745a07c68c0370cea919f373f65d9e"},
|
615 |
+
{file = "watchfiles-1.1.0-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:891c69e027748b4a73847335d208e374ce54ca3c335907d381fde4e41661b13b"},
|
616 |
+
{file = "watchfiles-1.1.0-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:12fe8eaffaf0faa7906895b4f8bb88264035b3f0243275e0bf24af0436b27259"},
|
617 |
+
{file = "watchfiles-1.1.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:bfe3c517c283e484843cb2e357dd57ba009cff351edf45fb455b5fbd1f45b15f"},
|
618 |
+
{file = "watchfiles-1.1.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a9ccbf1f129480ed3044f540c0fdbc4ee556f7175e5ab40fe077ff6baf286d4e"},
|
619 |
+
{file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba0e3255b0396cac3cc7bbace76404dd72b5438bf0d8e7cefa2f79a7f3649caa"},
|
620 |
+
{file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4281cd9fce9fc0a9dbf0fc1217f39bf9cf2b4d315d9626ef1d4e87b84699e7e8"},
|
621 |
+
{file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6d2404af8db1329f9a3c9b79ff63e0ae7131986446901582067d9304ae8aaf7f"},
|
622 |
+
{file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e78b6ed8165996013165eeabd875c5dfc19d41b54f94b40e9fff0eb3193e5e8e"},
|
623 |
+
{file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:249590eb75ccc117f488e2fabd1bfa33c580e24b96f00658ad88e38844a040bb"},
|
624 |
+
{file = "watchfiles-1.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d05686b5487cfa2e2c28ff1aa370ea3e6c5accfe6435944ddea1e10d93872147"},
|
625 |
+
{file = "watchfiles-1.1.0-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:d0e10e6f8f6dc5762adee7dece33b722282e1f59aa6a55da5d493a97282fedd8"},
|
626 |
+
{file = "watchfiles-1.1.0-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:af06c863f152005c7592df1d6a7009c836a247c9d8adb78fef8575a5a98699db"},
|
627 |
+
{file = "watchfiles-1.1.0-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:865c8e95713744cf5ae261f3067861e9da5f1370ba91fc536431e29b418676fa"},
|
628 |
+
{file = "watchfiles-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:42f92befc848bb7a19658f21f3e7bae80d7d005d13891c62c2cd4d4d0abb3433"},
|
629 |
+
{file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa0cc8365ab29487eb4f9979fd41b22549853389e22d5de3f134a6796e1b05a4"},
|
630 |
+
{file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:90ebb429e933645f3da534c89b29b665e285048973b4d2b6946526888c3eb2c7"},
|
631 |
+
{file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c588c45da9b08ab3da81d08d7987dae6d2a3badd63acdb3e206a42dbfa7cb76f"},
|
632 |
+
{file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7c55b0f9f68590115c25272b06e63f0824f03d4fc7d6deed43d8ad5660cabdbf"},
|
633 |
+
{file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cd17a1e489f02ce9117b0de3c0b1fab1c3e2eedc82311b299ee6b6faf6c23a29"},
|
634 |
+
{file = "watchfiles-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da71945c9ace018d8634822f16cbc2a78323ef6c876b1d34bbf5d5222fd6a72e"},
|
635 |
+
{file = "watchfiles-1.1.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:51556d5004887045dba3acdd1fdf61dddea2be0a7e18048b5e853dcd37149b86"},
|
636 |
+
{file = "watchfiles-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04e4ed5d1cd3eae68c89bcc1a485a109f39f2fd8de05f705e98af6b5f1861f1f"},
|
637 |
+
{file = "watchfiles-1.1.0-cp39-cp39-win32.whl", hash = "sha256:c600e85f2ffd9f1035222b1a312aff85fd11ea39baff1d705b9b047aad2ce267"},
|
638 |
+
{file = "watchfiles-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:3aba215958d88182e8d2acba0fdaf687745180974946609119953c0e112397dc"},
|
639 |
+
{file = "watchfiles-1.1.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:3a6fd40bbb50d24976eb275ccb55cd1951dfb63dbc27cae3066a6ca5f4beabd5"},
|
640 |
+
{file = "watchfiles-1.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:9f811079d2f9795b5d48b55a37aa7773680a5659afe34b54cc1d86590a51507d"},
|
641 |
+
{file = "watchfiles-1.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2726d7bfd9f76158c84c10a409b77a320426540df8c35be172444394b17f7ea"},
|
642 |
+
{file = "watchfiles-1.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df32d59cb9780f66d165a9a7a26f19df2c7d24e3bd58713108b41d0ff4f929c6"},
|
643 |
+
{file = "watchfiles-1.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:0ece16b563b17ab26eaa2d52230c9a7ae46cf01759621f4fbbca280e438267b3"},
|
644 |
+
{file = "watchfiles-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:51b81e55d40c4b4aa8658427a3ee7ea847c591ae9e8b81ef94a90b668999353c"},
|
645 |
+
{file = "watchfiles-1.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f2bcdc54ea267fe72bfc7d83c041e4eb58d7d8dc6f578dfddb52f037ce62f432"},
|
646 |
+
{file = "watchfiles-1.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:923fec6e5461c42bd7e3fd5ec37492c6f3468be0499bc0707b4bbbc16ac21792"},
|
647 |
+
{file = "watchfiles-1.1.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:7b3443f4ec3ba5aa00b0e9fa90cf31d98321cbff8b925a7c7b84161619870bc9"},
|
648 |
+
{file = "watchfiles-1.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:7049e52167fc75fc3cc418fc13d39a8e520cbb60ca08b47f6cedb85e181d2f2a"},
|
649 |
+
{file = "watchfiles-1.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54062ef956807ba806559b3c3d52105ae1827a0d4ab47b621b31132b6b7e2866"},
|
650 |
+
{file = "watchfiles-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7a7bd57a1bb02f9d5c398c0c1675384e7ab1dd39da0ca50b7f09af45fa435277"},
|
651 |
+
{file = "watchfiles-1.1.0.tar.gz", hash = "sha256:693ed7ec72cbfcee399e92c895362b6e66d63dac6b91e2c11ae03d10d503e575"},
|
652 |
+
]
|
653 |
+
|
654 |
+
[package.dependencies]
|
655 |
+
anyio = ">=3.0.0"
|
656 |
+
|
657 |
+
[[package]]
|
658 |
+
name = "websockets"
|
659 |
+
version = "15.0.1"
|
660 |
+
description = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)"
|
661 |
+
optional = false
|
662 |
+
python-versions = ">=3.9"
|
663 |
+
groups = ["main"]
|
664 |
+
files = [
|
665 |
+
{file = "websockets-15.0.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d63efaa0cd96cf0c5fe4d581521d9fa87744540d4bc999ae6e08595a1014b45b"},
|
666 |
+
{file = "websockets-15.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ac60e3b188ec7574cb761b08d50fcedf9d77f1530352db4eef1707fe9dee7205"},
|
667 |
+
{file = "websockets-15.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5756779642579d902eed757b21b0164cd6fe338506a8083eb58af5c372e39d9a"},
|
668 |
+
{file = "websockets-15.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0fdfe3e2a29e4db3659dbd5bbf04560cea53dd9610273917799f1cde46aa725e"},
|
669 |
+
{file = "websockets-15.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4c2529b320eb9e35af0fa3016c187dffb84a3ecc572bcee7c3ce302bfeba52bf"},
|
670 |
+
{file = "websockets-15.0.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac1e5c9054fe23226fb11e05a6e630837f074174c4c2f0fe442996112a6de4fb"},
|
671 |
+
{file = "websockets-15.0.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5df592cd503496351d6dc14f7cdad49f268d8e618f80dce0cd5a36b93c3fc08d"},
|
672 |
+
{file = "websockets-15.0.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0a34631031a8f05657e8e90903e656959234f3a04552259458aac0b0f9ae6fd9"},
|
673 |
+
{file = "websockets-15.0.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3d00075aa65772e7ce9e990cab3ff1de702aa09be3940d1dc88d5abf1ab8a09c"},
|
674 |
+
{file = "websockets-15.0.1-cp310-cp310-win32.whl", hash = "sha256:1234d4ef35db82f5446dca8e35a7da7964d02c127b095e172e54397fb6a6c256"},
|
675 |
+
{file = "websockets-15.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:39c1fec2c11dc8d89bba6b2bf1556af381611a173ac2b511cf7231622058af41"},
|
676 |
+
{file = "websockets-15.0.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:823c248b690b2fd9303ba00c4f66cd5e2d8c3ba4aa968b2779be9532a4dad431"},
|
677 |
+
{file = "websockets-15.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678999709e68425ae2593acf2e3ebcbcf2e69885a5ee78f9eb80e6e371f1bf57"},
|
678 |
+
{file = "websockets-15.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d50fd1ee42388dcfb2b3676132c78116490976f1300da28eb629272d5d93e905"},
|
679 |
+
{file = "websockets-15.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d99e5546bf73dbad5bf3547174cd6cb8ba7273062a23808ffea025ecb1cf8562"},
|
680 |
+
{file = "websockets-15.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66dd88c918e3287efc22409d426c8f729688d89a0c587c88971a0faa2c2f3792"},
|
681 |
+
{file = "websockets-15.0.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8dd8327c795b3e3f219760fa603dcae1dcc148172290a8ab15158cf85a953413"},
|
682 |
+
{file = "websockets-15.0.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8fdc51055e6ff4adeb88d58a11042ec9a5eae317a0a53d12c062c8a8865909e8"},
|
683 |
+
{file = "websockets-15.0.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:693f0192126df6c2327cce3baa7c06f2a117575e32ab2308f7f8216c29d9e2e3"},
|
684 |
+
{file = "websockets-15.0.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:54479983bd5fb469c38f2f5c7e3a24f9a4e70594cd68cd1fa6b9340dadaff7cf"},
|
685 |
+
{file = "websockets-15.0.1-cp311-cp311-win32.whl", hash = "sha256:16b6c1b3e57799b9d38427dda63edcbe4926352c47cf88588c0be4ace18dac85"},
|
686 |
+
{file = "websockets-15.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:27ccee0071a0e75d22cb35849b1db43f2ecd3e161041ac1ee9d2352ddf72f065"},
|
687 |
+
{file = "websockets-15.0.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:3e90baa811a5d73f3ca0bcbf32064d663ed81318ab225ee4f427ad4e26e5aff3"},
|
688 |
+
{file = "websockets-15.0.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:592f1a9fe869c778694f0aa806ba0374e97648ab57936f092fd9d87f8bc03665"},
|
689 |
+
{file = "websockets-15.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0701bc3cfcb9164d04a14b149fd74be7347a530ad3bbf15ab2c678a2cd3dd9a2"},
|
690 |
+
{file = "websockets-15.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8b56bdcdb4505c8078cb6c7157d9811a85790f2f2b3632c7d1462ab5783d215"},
|
691 |
+
{file = "websockets-15.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0af68c55afbd5f07986df82831c7bff04846928ea8d1fd7f30052638788bc9b5"},
|
692 |
+
{file = "websockets-15.0.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:64dee438fed052b52e4f98f76c5790513235efaa1ef7f3f2192c392cd7c91b65"},
|
693 |
+
{file = "websockets-15.0.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d5f6b181bb38171a8ad1d6aa58a67a6aa9d4b38d0f8c5f496b9e42561dfc62fe"},
|
694 |
+
{file = "websockets-15.0.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:5d54b09eba2bada6011aea5375542a157637b91029687eb4fdb2dab11059c1b4"},
|
695 |
+
{file = "websockets-15.0.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3be571a8b5afed347da347bfcf27ba12b069d9d7f42cb8c7028b5e98bbb12597"},
|
696 |
+
{file = "websockets-15.0.1-cp312-cp312-win32.whl", hash = "sha256:c338ffa0520bdb12fbc527265235639fb76e7bc7faafbb93f6ba80d9c06578a9"},
|
697 |
+
{file = "websockets-15.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:fcd5cf9e305d7b8338754470cf69cf81f420459dbae8a3b40cee57417f4614a7"},
|
698 |
+
{file = "websockets-15.0.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ee443ef070bb3b6ed74514f5efaa37a252af57c90eb33b956d35c8e9c10a1931"},
|
699 |
+
{file = "websockets-15.0.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:5a939de6b7b4e18ca683218320fc67ea886038265fd1ed30173f5ce3f8e85675"},
|
700 |
+
{file = "websockets-15.0.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:746ee8dba912cd6fc889a8147168991d50ed70447bf18bcda7039f7d2e3d9151"},
|
701 |
+
{file = "websockets-15.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:595b6c3969023ecf9041b2936ac3827e4623bfa3ccf007575f04c5a6aa318c22"},
|
702 |
+
{file = "websockets-15.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3c714d2fc58b5ca3e285461a4cc0c9a66bd0e24c5da9911e30158286c9b5be7f"},
|
703 |
+
{file = "websockets-15.0.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0f3c1e2ab208db911594ae5b4f79addeb3501604a165019dd221c0bdcabe4db8"},
|
704 |
+
{file = "websockets-15.0.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:229cf1d3ca6c1804400b0a9790dc66528e08a6a1feec0d5040e8b9eb14422375"},
|
705 |
+
{file = "websockets-15.0.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:756c56e867a90fb00177d530dca4b097dd753cde348448a1012ed6c5131f8b7d"},
|
706 |
+
{file = "websockets-15.0.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:558d023b3df0bffe50a04e710bc87742de35060580a293c2a984299ed83bc4e4"},
|
707 |
+
{file = "websockets-15.0.1-cp313-cp313-win32.whl", hash = "sha256:ba9e56e8ceeeedb2e080147ba85ffcd5cd0711b89576b83784d8605a7df455fa"},
|
708 |
+
{file = "websockets-15.0.1-cp313-cp313-win_amd64.whl", hash = "sha256:e09473f095a819042ecb2ab9465aee615bd9c2028e4ef7d933600a8401c79561"},
|
709 |
+
{file = "websockets-15.0.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5f4c04ead5aed67c8a1a20491d54cdfba5884507a48dd798ecaf13c74c4489f5"},
|
710 |
+
{file = "websockets-15.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:abdc0c6c8c648b4805c5eacd131910d2a7f6455dfd3becab248ef108e89ab16a"},
|
711 |
+
{file = "websockets-15.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a625e06551975f4b7ea7102bc43895b90742746797e2e14b70ed61c43a90f09b"},
|
712 |
+
{file = "websockets-15.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d591f8de75824cbb7acad4e05d2d710484f15f29d4a915092675ad3456f11770"},
|
713 |
+
{file = "websockets-15.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:47819cea040f31d670cc8d324bb6435c6f133b8c7a19ec3d61634e62f8d8f9eb"},
|
714 |
+
{file = "websockets-15.0.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ac017dd64572e5c3bd01939121e4d16cf30e5d7e110a119399cf3133b63ad054"},
|
715 |
+
{file = "websockets-15.0.1-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:4a9fac8e469d04ce6c25bb2610dc535235bd4aa14996b4e6dbebf5e007eba5ee"},
|
716 |
+
{file = "websockets-15.0.1-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:363c6f671b761efcb30608d24925a382497c12c506b51661883c3e22337265ed"},
|
717 |
+
{file = "websockets-15.0.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:2034693ad3097d5355bfdacfffcbd3ef5694f9718ab7f29c29689a9eae841880"},
|
718 |
+
{file = "websockets-15.0.1-cp39-cp39-win32.whl", hash = "sha256:3b1ac0d3e594bf121308112697cf4b32be538fb1444468fb0a6ae4feebc83411"},
|
719 |
+
{file = "websockets-15.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:b7643a03db5c95c799b89b31c036d5f27eeb4d259c798e878d6937d71832b1e4"},
|
720 |
+
{file = "websockets-15.0.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:0c9e74d766f2818bb95f84c25be4dea09841ac0f734d1966f415e4edfc4ef1c3"},
|
721 |
+
{file = "websockets-15.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:1009ee0c7739c08a0cd59de430d6de452a55e42d6b522de7aa15e6f67db0b8e1"},
|
722 |
+
{file = "websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:76d1f20b1c7a2fa82367e04982e708723ba0e7b8d43aa643d3dcd404d74f1475"},
|
723 |
+
{file = "websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f29d80eb9a9263b8d109135351caf568cc3f80b9928bccde535c235de55c22d9"},
|
724 |
+
{file = "websockets-15.0.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b359ed09954d7c18bbc1680f380c7301f92c60bf924171629c5db97febb12f04"},
|
725 |
+
{file = "websockets-15.0.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:cad21560da69f4ce7658ca2cb83138fb4cf695a2ba3e475e0559e05991aa8122"},
|
726 |
+
{file = "websockets-15.0.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7f493881579c90fc262d9cdbaa05a6b54b3811c2f300766748db79f098db9940"},
|
727 |
+
{file = "websockets-15.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:47b099e1f4fbc95b701b6e85768e1fcdaf1630f3cbe4765fa216596f12310e2e"},
|
728 |
+
{file = "websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:67f2b6de947f8c757db2db9c71527933ad0019737ec374a8a6be9a956786aaf9"},
|
729 |
+
{file = "websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d08eb4c2b7d6c41da6ca0600c077e93f5adcfd979cd777d747e9ee624556da4b"},
|
730 |
+
{file = "websockets-15.0.1-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b826973a4a2ae47ba357e4e82fa44a463b8f168e1ca775ac64521442b19e87f"},
|
731 |
+
{file = "websockets-15.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:21c1fa28a6a7e3cbdc171c694398b6df4744613ce9b36b1a498e816787e28123"},
|
732 |
+
{file = "websockets-15.0.1-py3-none-any.whl", hash = "sha256:f7a866fbc1e97b5c617ee4116daaa09b722101d4a3c170c787450ba409f9736f"},
|
733 |
+
{file = "websockets-15.0.1.tar.gz", hash = "sha256:82544de02076bafba038ce055ee6412d68da13ab47f0c60cab827346de828dee"},
|
734 |
+
]
|
735 |
+
|
736 |
+
[metadata]
|
737 |
+
lock-version = "2.1"
|
738 |
+
python-versions = ">=3.10"
|
739 |
+
content-hash = "1eca9c08884a7af9d1d350326d76923983535456674bfacaee92c451d902585d"
|
pyproject.toml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "ai-hedge-fund"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
authors = [
|
6 |
+
{name = "aadarshraj4321",email = "[email protected]"}
|
7 |
+
]
|
8 |
+
readme = "README.md"
|
9 |
+
requires-python = ">=3.10"
|
10 |
+
dependencies = [
|
11 |
+
"fastapi (>=0.116.1,<0.117.0)",
|
12 |
+
"uvicorn[standard] (>=0.35.0,<0.36.0)"
|
13 |
+
]
|
14 |
+
|
15 |
+
|
16 |
+
[build-system]
|
17 |
+
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
18 |
+
build-backend = "poetry.core.masonry.api"
|