Spaces:
Running
Running
coyotte508
commited on
Commit
·
c9bb6e3
1
Parent(s):
9efc34f
push
Browse files- .gitattributes +0 -35
- .gitignore +24 -0
- README.md +60 -4
- eslint.config.js +28 -0
- index.html +11 -17
- package.json +30 -0
- pnpm-lock.yaml +2011 -0
- public/vite.svg +1 -0
- src/App.css +42 -0
- src/App.tsx +35 -0
- src/assets/react.svg +1 -0
- src/index.css +68 -0
- src/main.tsx +10 -0
- src/vite-env.d.ts +1 -0
- style.css +0 -28
- tsconfig.app.json +26 -0
- tsconfig.json +7 -0
- tsconfig.node.json +24 -0
- vite.config.ts +7 -0
.gitattributes
DELETED
|
@@ -1,35 +0,0 @@
|
|
| 1 |
-
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
-
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
-
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
-
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
| 5 |
-
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
-
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
-
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
-
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
-
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
-
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
| 11 |
-
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
-
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
-
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
-
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
-
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
-
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
-
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
-
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
-
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
-
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
-
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
-
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
-
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
-
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
-
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
-
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
-
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
-
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
-
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
-
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
-
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
-
*.xz filter=lfs diff=lfs merge=lfs -text
|
| 33 |
-
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
-
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
-
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.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?
|
README.md
CHANGED
|
@@ -1,10 +1,66 @@
|
|
| 1 |
---
|
| 2 |
-
title: Static Vite
|
| 3 |
-
emoji:
|
| 4 |
colorFrom: blue
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: Static Vite App
|
| 3 |
+
emoji: 🐨
|
| 4 |
colorFrom: blue
|
| 5 |
+
colorTo: green
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
short_description: Static vite app with React
|
| 9 |
+
app_command: "npm run build"
|
| 10 |
+
app_file: "dist/index.html"
|
| 11 |
---
|
| 12 |
|
| 13 |
+
# React + TypeScript + Vite
|
| 14 |
+
|
| 15 |
+
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
|
| 16 |
+
|
| 17 |
+
Currently, two official plugins are available:
|
| 18 |
+
|
| 19 |
+
- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh
|
| 20 |
+
- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
|
| 21 |
+
|
| 22 |
+
## Expanding the ESLint configuration
|
| 23 |
+
|
| 24 |
+
If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
|
| 25 |
+
|
| 26 |
+
```js
|
| 27 |
+
export default tseslint.config({
|
| 28 |
+
extends: [
|
| 29 |
+
// Remove ...tseslint.configs.recommended and replace with this
|
| 30 |
+
...tseslint.configs.recommendedTypeChecked,
|
| 31 |
+
// Alternatively, use this for stricter rules
|
| 32 |
+
...tseslint.configs.strictTypeChecked,
|
| 33 |
+
// Optionally, add this for stylistic rules
|
| 34 |
+
...tseslint.configs.stylisticTypeChecked,
|
| 35 |
+
],
|
| 36 |
+
languageOptions: {
|
| 37 |
+
// other options...
|
| 38 |
+
parserOptions: {
|
| 39 |
+
project: ['./tsconfig.node.json', './tsconfig.app.json'],
|
| 40 |
+
tsconfigRootDir: import.meta.dirname,
|
| 41 |
+
},
|
| 42 |
+
},
|
| 43 |
+
})
|
| 44 |
+
```
|
| 45 |
+
|
| 46 |
+
You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
|
| 47 |
+
|
| 48 |
+
```js
|
| 49 |
+
// eslint.config.js
|
| 50 |
+
import reactX from 'eslint-plugin-react-x'
|
| 51 |
+
import reactDom from 'eslint-plugin-react-dom'
|
| 52 |
+
|
| 53 |
+
export default tseslint.config({
|
| 54 |
+
plugins: {
|
| 55 |
+
// Add the react-x and react-dom plugins
|
| 56 |
+
'react-x': reactX,
|
| 57 |
+
'react-dom': reactDom,
|
| 58 |
+
},
|
| 59 |
+
rules: {
|
| 60 |
+
// other rules...
|
| 61 |
+
// Enable its recommended typescript rules
|
| 62 |
+
...reactX.configs['recommended-typescript'].rules,
|
| 63 |
+
...reactDom.configs.recommended.rules,
|
| 64 |
+
},
|
| 65 |
+
})
|
| 66 |
+
```
|
eslint.config.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import js from '@eslint/js'
|
| 2 |
+
import globals from 'globals'
|
| 3 |
+
import reactHooks from 'eslint-plugin-react-hooks'
|
| 4 |
+
import reactRefresh from 'eslint-plugin-react-refresh'
|
| 5 |
+
import tseslint from 'typescript-eslint'
|
| 6 |
+
|
| 7 |
+
export default tseslint.config(
|
| 8 |
+
{ ignores: ['dist'] },
|
| 9 |
+
{
|
| 10 |
+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
|
| 11 |
+
files: ['**/*.{ts,tsx}'],
|
| 12 |
+
languageOptions: {
|
| 13 |
+
ecmaVersion: 2020,
|
| 14 |
+
globals: globals.browser,
|
| 15 |
+
},
|
| 16 |
+
plugins: {
|
| 17 |
+
'react-hooks': reactHooks,
|
| 18 |
+
'react-refresh': reactRefresh,
|
| 19 |
+
},
|
| 20 |
+
rules: {
|
| 21 |
+
...reactHooks.configs.recommended.rules,
|
| 22 |
+
'react-refresh/only-export-components': [
|
| 23 |
+
'warn',
|
| 24 |
+
{ allowConstantExport: true },
|
| 25 |
+
],
|
| 26 |
+
},
|
| 27 |
+
},
|
| 28 |
+
)
|
index.html
CHANGED
|
@@ -1,19 +1,13 @@
|
|
| 1 |
<!doctype html>
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
<p>
|
| 14 |
-
Also don't forget to check the
|
| 15 |
-
<a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
|
| 16 |
-
</p>
|
| 17 |
-
</div>
|
| 18 |
-
</body>
|
| 19 |
</html>
|
|
|
|
| 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 + TS</title>
|
| 8 |
+
</head>
|
| 9 |
+
<body>
|
| 10 |
+
<div id="root"></div>
|
| 11 |
+
<script type="module" src="/src/main.tsx"></script>
|
| 12 |
+
</body>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
</html>
|
package.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "static-vite",
|
| 3 |
+
"private": true,
|
| 4 |
+
"version": "0.0.0",
|
| 5 |
+
"type": "module",
|
| 6 |
+
"scripts": {
|
| 7 |
+
"dev": "vite",
|
| 8 |
+
"build": "tsc -b && vite build",
|
| 9 |
+
"lint": "eslint .",
|
| 10 |
+
"preview": "vite preview"
|
| 11 |
+
},
|
| 12 |
+
"dependencies": {
|
| 13 |
+
"react": "^19.0.0",
|
| 14 |
+
"react-dom": "^19.0.0"
|
| 15 |
+
},
|
| 16 |
+
"devDependencies": {
|
| 17 |
+
"@eslint/js": "^9.21.0",
|
| 18 |
+
"@types/react": "^19.0.10",
|
| 19 |
+
"@types/react-dom": "^19.0.4",
|
| 20 |
+
"@vitejs/plugin-react": "^4.3.4",
|
| 21 |
+
"eslint": "^9.21.0",
|
| 22 |
+
"eslint-plugin-react-hooks": "^5.1.0",
|
| 23 |
+
"eslint-plugin-react-refresh": "^0.4.19",
|
| 24 |
+
"globals": "^15.15.0",
|
| 25 |
+
"typescript": "~5.7.2",
|
| 26 |
+
"typescript-eslint": "^8.24.1",
|
| 27 |
+
"vite": "^6.2.0"
|
| 28 |
+
},
|
| 29 |
+
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
|
| 30 |
+
}
|
pnpm-lock.yaml
ADDED
|
@@ -0,0 +1,2011 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
lockfileVersion: '9.0'
|
| 2 |
+
|
| 3 |
+
settings:
|
| 4 |
+
autoInstallPeers: true
|
| 5 |
+
excludeLinksFromLockfile: false
|
| 6 |
+
|
| 7 |
+
importers:
|
| 8 |
+
|
| 9 |
+
.:
|
| 10 |
+
dependencies:
|
| 11 |
+
react:
|
| 12 |
+
specifier: ^19.0.0
|
| 13 |
+
version: 19.0.0
|
| 14 |
+
react-dom:
|
| 15 |
+
specifier: ^19.0.0
|
| 16 |
+
version: 19.0.0([email protected])
|
| 17 |
+
devDependencies:
|
| 18 |
+
'@eslint/js':
|
| 19 |
+
specifier: ^9.21.0
|
| 20 |
+
version: 9.23.0
|
| 21 |
+
'@types/react':
|
| 22 |
+
specifier: ^19.0.10
|
| 23 |
+
version: 19.0.12
|
| 24 |
+
'@types/react-dom':
|
| 25 |
+
specifier: ^19.0.4
|
| 26 |
+
version: 19.0.4(@types/[email protected])
|
| 27 |
+
'@vitejs/plugin-react':
|
| 28 |
+
specifier: ^4.3.4
|
| 29 |
+
version: 4.3.4([email protected])
|
| 30 |
+
eslint:
|
| 31 |
+
specifier: ^9.21.0
|
| 32 |
+
version: 9.23.0
|
| 33 |
+
eslint-plugin-react-hooks:
|
| 34 |
+
specifier: ^5.1.0
|
| 35 |
+
version: 5.2.0([email protected])
|
| 36 |
+
eslint-plugin-react-refresh:
|
| 37 |
+
specifier: ^0.4.19
|
| 38 |
+
version: 0.4.19([email protected])
|
| 39 |
+
globals:
|
| 40 |
+
specifier: ^15.15.0
|
| 41 |
+
version: 15.15.0
|
| 42 |
+
typescript:
|
| 43 |
+
specifier: ~5.7.2
|
| 44 |
+
version: 5.7.3
|
| 45 |
+
typescript-eslint:
|
| 46 |
+
specifier: ^8.24.1
|
| 47 |
+
version: 8.28.0([email protected])([email protected])
|
| 48 |
+
vite:
|
| 49 |
+
specifier: ^6.2.0
|
| 50 |
+
version: 6.2.3
|
| 51 |
+
|
| 52 |
+
packages:
|
| 53 |
+
|
| 54 |
+
'@ampproject/[email protected]':
|
| 55 |
+
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
| 56 |
+
engines: {node: '>=6.0.0'}
|
| 57 |
+
|
| 58 |
+
'@babel/[email protected]':
|
| 59 |
+
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
|
| 60 |
+
engines: {node: '>=6.9.0'}
|
| 61 |
+
|
| 62 |
+
'@babel/[email protected]':
|
| 63 |
+
resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
|
| 64 |
+
engines: {node: '>=6.9.0'}
|
| 65 |
+
|
| 66 |
+
'@babel/[email protected]':
|
| 67 |
+
resolution: {integrity: sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==}
|
| 68 |
+
engines: {node: '>=6.9.0'}
|
| 69 |
+
|
| 70 |
+
'@babel/[email protected]':
|
| 71 |
+
resolution: {integrity: sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==}
|
| 72 |
+
engines: {node: '>=6.9.0'}
|
| 73 |
+
|
| 74 |
+
'@babel/[email protected]':
|
| 75 |
+
resolution: {integrity: sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==}
|
| 76 |
+
engines: {node: '>=6.9.0'}
|
| 77 |
+
|
| 78 |
+
'@babel/[email protected]':
|
| 79 |
+
resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
|
| 80 |
+
engines: {node: '>=6.9.0'}
|
| 81 |
+
|
| 82 |
+
'@babel/[email protected]':
|
| 83 |
+
resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
|
| 84 |
+
engines: {node: '>=6.9.0'}
|
| 85 |
+
peerDependencies:
|
| 86 |
+
'@babel/core': ^7.0.0
|
| 87 |
+
|
| 88 |
+
'@babel/[email protected]':
|
| 89 |
+
resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
|
| 90 |
+
engines: {node: '>=6.9.0'}
|
| 91 |
+
|
| 92 |
+
'@babel/[email protected]':
|
| 93 |
+
resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
|
| 94 |
+
engines: {node: '>=6.9.0'}
|
| 95 |
+
|
| 96 |
+
'@babel/[email protected]':
|
| 97 |
+
resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
|
| 98 |
+
engines: {node: '>=6.9.0'}
|
| 99 |
+
|
| 100 |
+
'@babel/[email protected]':
|
| 101 |
+
resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
|
| 102 |
+
engines: {node: '>=6.9.0'}
|
| 103 |
+
|
| 104 |
+
'@babel/[email protected]':
|
| 105 |
+
resolution: {integrity: sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==}
|
| 106 |
+
engines: {node: '>=6.9.0'}
|
| 107 |
+
|
| 108 |
+
'@babel/[email protected]':
|
| 109 |
+
resolution: {integrity: sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==}
|
| 110 |
+
engines: {node: '>=6.0.0'}
|
| 111 |
+
hasBin: true
|
| 112 |
+
|
| 113 |
+
'@babel/[email protected]':
|
| 114 |
+
resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==}
|
| 115 |
+
engines: {node: '>=6.9.0'}
|
| 116 |
+
peerDependencies:
|
| 117 |
+
'@babel/core': ^7.0.0-0
|
| 118 |
+
|
| 119 |
+
'@babel/[email protected]':
|
| 120 |
+
resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==}
|
| 121 |
+
engines: {node: '>=6.9.0'}
|
| 122 |
+
peerDependencies:
|
| 123 |
+
'@babel/core': ^7.0.0-0
|
| 124 |
+
|
| 125 |
+
'@babel/[email protected]':
|
| 126 |
+
resolution: {integrity: sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==}
|
| 127 |
+
engines: {node: '>=6.9.0'}
|
| 128 |
+
|
| 129 |
+
'@babel/[email protected]':
|
| 130 |
+
resolution: {integrity: sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==}
|
| 131 |
+
engines: {node: '>=6.9.0'}
|
| 132 |
+
|
| 133 |
+
'@babel/[email protected]':
|
| 134 |
+
resolution: {integrity: sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==}
|
| 135 |
+
engines: {node: '>=6.9.0'}
|
| 136 |
+
|
| 137 |
+
'@esbuild/[email protected]':
|
| 138 |
+
resolution: {integrity: sha512-kfYGy8IdzTGy+z0vFGvExZtxkFlA4zAxgKEahG9KE1ScBjpQnFsNOX8KTU5ojNru5ed5CVoJYXFtoxaq5nFbjQ==}
|
| 139 |
+
engines: {node: '>=18'}
|
| 140 |
+
cpu: [ppc64]
|
| 141 |
+
os: [aix]
|
| 142 |
+
|
| 143 |
+
'@esbuild/[email protected]':
|
| 144 |
+
resolution: {integrity: sha512-50tM0zCJW5kGqgG7fQ7IHvQOcAn9TKiVRuQ/lN0xR+T2lzEFvAi1ZcS8DiksFcEpf1t/GYOeOfCAgDHFpkiSmA==}
|
| 145 |
+
engines: {node: '>=18'}
|
| 146 |
+
cpu: [arm64]
|
| 147 |
+
os: [android]
|
| 148 |
+
|
| 149 |
+
'@esbuild/[email protected]':
|
| 150 |
+
resolution: {integrity: sha512-dp+MshLYux6j/JjdqVLnMglQlFu+MuVeNrmT5nk6q07wNhCdSnB7QZj+7G8VMUGh1q+vj2Bq8kRsuyA00I/k+Q==}
|
| 151 |
+
engines: {node: '>=18'}
|
| 152 |
+
cpu: [arm]
|
| 153 |
+
os: [android]
|
| 154 |
+
|
| 155 |
+
'@esbuild/[email protected]':
|
| 156 |
+
resolution: {integrity: sha512-GCj6WfUtNldqUzYkN/ITtlhwQqGWu9S45vUXs7EIYf+7rCiiqH9bCloatO9VhxsL0Pji+PF4Lz2XXCES+Q8hDw==}
|
| 157 |
+
engines: {node: '>=18'}
|
| 158 |
+
cpu: [x64]
|
| 159 |
+
os: [android]
|
| 160 |
+
|
| 161 |
+
'@esbuild/[email protected]':
|
| 162 |
+
resolution: {integrity: sha512-5hEZKPf+nQjYoSr/elb62U19/l1mZDdqidGfmFutVUjjUZrOazAtwK+Kr+3y0C/oeJfLlxo9fXb1w7L+P7E4FQ==}
|
| 163 |
+
engines: {node: '>=18'}
|
| 164 |
+
cpu: [arm64]
|
| 165 |
+
os: [darwin]
|
| 166 |
+
|
| 167 |
+
'@esbuild/[email protected]':
|
| 168 |
+
resolution: {integrity: sha512-hxVnwL2Dqs3fM1IWq8Iezh0cX7ZGdVhbTfnOy5uURtao5OIVCEyj9xIzemDi7sRvKsuSdtCAhMKarxqtlyVyfA==}
|
| 169 |
+
engines: {node: '>=18'}
|
| 170 |
+
cpu: [x64]
|
| 171 |
+
os: [darwin]
|
| 172 |
+
|
| 173 |
+
'@esbuild/[email protected]':
|
| 174 |
+
resolution: {integrity: sha512-1MrCZs0fZa2g8E+FUo2ipw6jw5qqQiH+tERoS5fAfKnRx6NXH31tXBKI3VpmLijLH6yriMZsxJtaXUyFt/8Y4A==}
|
| 175 |
+
engines: {node: '>=18'}
|
| 176 |
+
cpu: [arm64]
|
| 177 |
+
os: [freebsd]
|
| 178 |
+
|
| 179 |
+
'@esbuild/[email protected]':
|
| 180 |
+
resolution: {integrity: sha512-0IZWLiTyz7nm0xuIs0q1Y3QWJC52R8aSXxe40VUxm6BB1RNmkODtW6LHvWRrGiICulcX7ZvyH6h5fqdLu4gkww==}
|
| 181 |
+
engines: {node: '>=18'}
|
| 182 |
+
cpu: [x64]
|
| 183 |
+
os: [freebsd]
|
| 184 |
+
|
| 185 |
+
'@esbuild/[email protected]':
|
| 186 |
+
resolution: {integrity: sha512-jaN3dHi0/DDPelk0nLcXRm1q7DNJpjXy7yWaWvbfkPvI+7XNSc/lDOnCLN7gzsyzgu6qSAmgSvP9oXAhP973uQ==}
|
| 187 |
+
engines: {node: '>=18'}
|
| 188 |
+
cpu: [arm64]
|
| 189 |
+
os: [linux]
|
| 190 |
+
|
| 191 |
+
'@esbuild/[email protected]':
|
| 192 |
+
resolution: {integrity: sha512-NdKOhS4u7JhDKw9G3cY6sWqFcnLITn6SqivVArbzIaf3cemShqfLGHYMx8Xlm/lBit3/5d7kXvriTUGa5YViuQ==}
|
| 193 |
+
engines: {node: '>=18'}
|
| 194 |
+
cpu: [arm]
|
| 195 |
+
os: [linux]
|
| 196 |
+
|
| 197 |
+
'@esbuild/[email protected]':
|
| 198 |
+
resolution: {integrity: sha512-OJykPaF4v8JidKNGz8c/q1lBO44sQNUQtq1KktJXdBLn1hPod5rE/Hko5ugKKZd+D2+o1a9MFGUEIUwO2YfgkQ==}
|
| 199 |
+
engines: {node: '>=18'}
|
| 200 |
+
cpu: [ia32]
|
| 201 |
+
os: [linux]
|
| 202 |
+
|
| 203 |
+
'@esbuild/[email protected]':
|
| 204 |
+
resolution: {integrity: sha512-nGfornQj4dzcq5Vp835oM/o21UMlXzn79KobKlcs3Wz9smwiifknLy4xDCLUU0BWp7b/houtdrgUz7nOGnfIYg==}
|
| 205 |
+
engines: {node: '>=18'}
|
| 206 |
+
cpu: [loong64]
|
| 207 |
+
os: [linux]
|
| 208 |
+
|
| 209 |
+
'@esbuild/[email protected]':
|
| 210 |
+
resolution: {integrity: sha512-1osBbPEFYwIE5IVB/0g2X6i1qInZa1aIoj1TdL4AaAb55xIIgbg8Doq6a5BzYWgr+tEcDzYH67XVnTmUzL+nXg==}
|
| 211 |
+
engines: {node: '>=18'}
|
| 212 |
+
cpu: [mips64el]
|
| 213 |
+
os: [linux]
|
| 214 |
+
|
| 215 |
+
'@esbuild/[email protected]':
|
| 216 |
+
resolution: {integrity: sha512-/6VBJOwUf3TdTvJZ82qF3tbLuWsscd7/1w+D9LH0W/SqUgM5/JJD0lrJ1fVIfZsqB6RFmLCe0Xz3fmZc3WtyVg==}
|
| 217 |
+
engines: {node: '>=18'}
|
| 218 |
+
cpu: [ppc64]
|
| 219 |
+
os: [linux]
|
| 220 |
+
|
| 221 |
+
'@esbuild/[email protected]':
|
| 222 |
+
resolution: {integrity: sha512-nSut/Mx5gnilhcq2yIMLMe3Wl4FK5wx/o0QuuCLMtmJn+WeWYoEGDN1ipcN72g1WHsnIbxGXd4i/MF0gTcuAjQ==}
|
| 223 |
+
engines: {node: '>=18'}
|
| 224 |
+
cpu: [riscv64]
|
| 225 |
+
os: [linux]
|
| 226 |
+
|
| 227 |
+
'@esbuild/[email protected]':
|
| 228 |
+
resolution: {integrity: sha512-cEECeLlJNfT8kZHqLarDBQso9a27o2Zd2AQ8USAEoGtejOrCYHNtKP8XQhMDJMtthdF4GBmjR2au3x1udADQQQ==}
|
| 229 |
+
engines: {node: '>=18'}
|
| 230 |
+
cpu: [s390x]
|
| 231 |
+
os: [linux]
|
| 232 |
+
|
| 233 |
+
'@esbuild/[email protected]':
|
| 234 |
+
resolution: {integrity: sha512-xbfUhu/gnvSEg+EGovRc+kjBAkrvtk38RlerAzQxvMzlB4fXpCFCeUAYzJvrnhFtdeyVCDANSjJvOvGYoeKzFA==}
|
| 235 |
+
engines: {node: '>=18'}
|
| 236 |
+
cpu: [x64]
|
| 237 |
+
os: [linux]
|
| 238 |
+
|
| 239 |
+
'@esbuild/[email protected]':
|
| 240 |
+
resolution: {integrity: sha512-O96poM2XGhLtpTh+s4+nP7YCCAfb4tJNRVZHfIE7dgmax+yMP2WgMd2OecBuaATHKTHsLWHQeuaxMRnCsH8+5g==}
|
| 241 |
+
engines: {node: '>=18'}
|
| 242 |
+
cpu: [arm64]
|
| 243 |
+
os: [netbsd]
|
| 244 |
+
|
| 245 |
+
'@esbuild/[email protected]':
|
| 246 |
+
resolution: {integrity: sha512-X53z6uXip6KFXBQ+Krbx25XHV/NCbzryM6ehOAeAil7X7oa4XIq+394PWGnwaSQ2WRA0KI6PUO6hTO5zeF5ijA==}
|
| 247 |
+
engines: {node: '>=18'}
|
| 248 |
+
cpu: [x64]
|
| 249 |
+
os: [netbsd]
|
| 250 |
+
|
| 251 |
+
'@esbuild/[email protected]':
|
| 252 |
+
resolution: {integrity: sha512-Na9T3szbXezdzM/Kfs3GcRQNjHzM6GzFBeU1/6IV/npKP5ORtp9zbQjvkDJ47s6BCgaAZnnnu/cY1x342+MvZg==}
|
| 253 |
+
engines: {node: '>=18'}
|
| 254 |
+
cpu: [arm64]
|
| 255 |
+
os: [openbsd]
|
| 256 |
+
|
| 257 |
+
'@esbuild/[email protected]':
|
| 258 |
+
resolution: {integrity: sha512-T3H78X2h1tszfRSf+txbt5aOp/e7TAz3ptVKu9Oyir3IAOFPGV6O9c2naym5TOriy1l0nNf6a4X5UXRZSGX/dw==}
|
| 259 |
+
engines: {node: '>=18'}
|
| 260 |
+
cpu: [x64]
|
| 261 |
+
os: [openbsd]
|
| 262 |
+
|
| 263 |
+
'@esbuild/[email protected]':
|
| 264 |
+
resolution: {integrity: sha512-2H3RUvcmULO7dIE5EWJH8eubZAI4xw54H1ilJnRNZdeo8dTADEZ21w6J22XBkXqGJbe0+wnNJtw3UXRoLJnFEg==}
|
| 265 |
+
engines: {node: '>=18'}
|
| 266 |
+
cpu: [x64]
|
| 267 |
+
os: [sunos]
|
| 268 |
+
|
| 269 |
+
'@esbuild/[email protected]':
|
| 270 |
+
resolution: {integrity: sha512-GE7XvrdOzrb+yVKB9KsRMq+7a2U/K5Cf/8grVFRAGJmfADr/e/ODQ134RK2/eeHqYV5eQRFxb1hY7Nr15fv1NQ==}
|
| 271 |
+
engines: {node: '>=18'}
|
| 272 |
+
cpu: [arm64]
|
| 273 |
+
os: [win32]
|
| 274 |
+
|
| 275 |
+
'@esbuild/[email protected]':
|
| 276 |
+
resolution: {integrity: sha512-uOxSJCIcavSiT6UnBhBzE8wy3n0hOkJsBOzy7HDAuTDE++1DJMRRVCPGisULScHL+a/ZwdXPpXD3IyFKjA7K8A==}
|
| 277 |
+
engines: {node: '>=18'}
|
| 278 |
+
cpu: [ia32]
|
| 279 |
+
os: [win32]
|
| 280 |
+
|
| 281 |
+
'@esbuild/[email protected]':
|
| 282 |
+
resolution: {integrity: sha512-Y1EQdcfwMSeQN/ujR5VayLOJ1BHaK+ssyk0AEzPjC+t1lITgsnccPqFjb6V+LsTp/9Iov4ysfjxLaGJ9RPtkVg==}
|
| 283 |
+
engines: {node: '>=18'}
|
| 284 |
+
cpu: [x64]
|
| 285 |
+
os: [win32]
|
| 286 |
+
|
| 287 |
+
'@eslint-community/[email protected]':
|
| 288 |
+
resolution: {integrity: sha512-soEIOALTfTK6EjmKMMoLugwaP0rzkad90iIWd1hMO9ARkSAyjfMfkRRhLvD5qH7vvM0Cg72pieUfR6yh6XxC4w==}
|
| 289 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
| 290 |
+
peerDependencies:
|
| 291 |
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
| 292 |
+
|
| 293 |
+
'@eslint-community/[email protected]':
|
| 294 |
+
resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
|
| 295 |
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
| 296 |
+
|
| 297 |
+
'@eslint/[email protected]':
|
| 298 |
+
resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
|
| 299 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 300 |
+
|
| 301 |
+
'@eslint/[email protected]':
|
| 302 |
+
resolution: {integrity: sha512-yJLLmLexii32mGrhW29qvU3QBVTu0GUmEf/J4XsBtVhp4JkIUFN/BjWqTF63yRvGApIDpZm5fa97LtYtINmfeQ==}
|
| 303 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 304 |
+
|
| 305 |
+
'@eslint/[email protected]':
|
| 306 |
+
resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
|
| 307 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 308 |
+
|
| 309 |
+
'@eslint/[email protected]':
|
| 310 |
+
resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==}
|
| 311 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 312 |
+
|
| 313 |
+
'@eslint/[email protected]':
|
| 314 |
+
resolution: {integrity: sha512-35MJ8vCPU0ZMxo7zfev2pypqTwWTofFZO6m4KAtdoFhRpLJUpHTZZ+KB3C7Hb1d7bULYwO4lJXGCi5Se+8OMbw==}
|
| 315 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 316 |
+
|
| 317 |
+
'@eslint/[email protected]':
|
| 318 |
+
resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
|
| 319 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 320 |
+
|
| 321 |
+
'@eslint/[email protected]':
|
| 322 |
+
resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
|
| 323 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 324 |
+
|
| 325 |
+
'@humanfs/[email protected]':
|
| 326 |
+
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
| 327 |
+
engines: {node: '>=18.18.0'}
|
| 328 |
+
|
| 329 |
+
'@humanfs/[email protected]':
|
| 330 |
+
resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
|
| 331 |
+
engines: {node: '>=18.18.0'}
|
| 332 |
+
|
| 333 |
+
'@humanwhocodes/[email protected]':
|
| 334 |
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
|
| 335 |
+
engines: {node: '>=12.22'}
|
| 336 |
+
|
| 337 |
+
'@humanwhocodes/[email protected]':
|
| 338 |
+
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
|
| 339 |
+
engines: {node: '>=18.18'}
|
| 340 |
+
|
| 341 |
+
'@humanwhocodes/[email protected]':
|
| 342 |
+
resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
|
| 343 |
+
engines: {node: '>=18.18'}
|
| 344 |
+
|
| 345 |
+
'@jridgewell/[email protected]':
|
| 346 |
+
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
|
| 347 |
+
engines: {node: '>=6.0.0'}
|
| 348 |
+
|
| 349 |
+
'@jridgewell/[email protected]':
|
| 350 |
+
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
|
| 351 |
+
engines: {node: '>=6.0.0'}
|
| 352 |
+
|
| 353 |
+
'@jridgewell/[email protected]':
|
| 354 |
+
resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==}
|
| 355 |
+
engines: {node: '>=6.0.0'}
|
| 356 |
+
|
| 357 |
+
'@jridgewell/[email protected]':
|
| 358 |
+
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
|
| 359 |
+
|
| 360 |
+
'@jridgewell/[email protected]':
|
| 361 |
+
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
| 362 |
+
|
| 363 |
+
'@nodelib/[email protected]':
|
| 364 |
+
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
| 365 |
+
engines: {node: '>= 8'}
|
| 366 |
+
|
| 367 |
+
'@nodelib/[email protected]':
|
| 368 |
+
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
|
| 369 |
+
engines: {node: '>= 8'}
|
| 370 |
+
|
| 371 |
+
'@nodelib/[email protected]':
|
| 372 |
+
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
| 373 |
+
engines: {node: '>= 8'}
|
| 374 |
+
|
| 375 |
+
'@rollup/[email protected]':
|
| 376 |
+
resolution: {integrity: sha512-l7StVw6WAa8l3vA1ov80jyetOAEo1FtHvZDbzXDO/02Sq/QVvqlHkYoFwDJPIMj0GKiistsBudfx5tGFnwYWDQ==}
|
| 377 |
+
cpu: [arm]
|
| 378 |
+
os: [android]
|
| 379 |
+
|
| 380 |
+
'@rollup/[email protected]':
|
| 381 |
+
resolution: {integrity: sha512-6U3SlVyMxezt8Y+/iEBcbp945uZjJwjZimu76xoG7tO1av9VO691z8PkhzQ85ith2I8R2RddEPeSfcbyPfD4hA==}
|
| 382 |
+
cpu: [arm64]
|
| 383 |
+
os: [android]
|
| 384 |
+
|
| 385 |
+
'@rollup/[email protected]':
|
| 386 |
+
resolution: {integrity: sha512-+iTQ5YHuGmPt10NTzEyMPbayiNTcOZDWsbxZYR1ZnmLnZxG17ivrPSWFO9j6GalY0+gV3Jtwrrs12DBscxnlYA==}
|
| 387 |
+
cpu: [arm64]
|
| 388 |
+
os: [darwin]
|
| 389 |
+
|
| 390 |
+
'@rollup/[email protected]':
|
| 391 |
+
resolution: {integrity: sha512-m8W2UbxLDcmRKVjgl5J/k4B8d7qX2EcJve3Sut7YGrQoPtCIQGPH5AMzuFvYRWZi0FVS0zEY4c8uttPfX6bwYQ==}
|
| 392 |
+
cpu: [x64]
|
| 393 |
+
os: [darwin]
|
| 394 |
+
|
| 395 |
+
'@rollup/[email protected]':
|
| 396 |
+
resolution: {integrity: sha512-FOMXGmH15OmtQWEt174v9P1JqqhlgYge/bUjIbiVD1nI1NeJ30HYT9SJlZMqdo1uQFyt9cz748F1BHghWaDnVA==}
|
| 397 |
+
cpu: [arm64]
|
| 398 |
+
os: [freebsd]
|
| 399 |
+
|
| 400 |
+
'@rollup/[email protected]':
|
| 401 |
+
resolution: {integrity: sha512-SZMxNttjPKvV14Hjck5t70xS3l63sbVwl98g3FlVVx2YIDmfUIy29jQrsw06ewEYQ8lQSuY9mpAPlmgRD2iSsA==}
|
| 402 |
+
cpu: [x64]
|
| 403 |
+
os: [freebsd]
|
| 404 |
+
|
| 405 |
+
'@rollup/[email protected]':
|
| 406 |
+
resolution: {integrity: sha512-hhAALKJPidCwZcj+g+iN+38SIOkhK2a9bqtJR+EtyxrKKSt1ynCBeqrQy31z0oWU6thRZzdx53hVgEbRkuI19w==}
|
| 407 |
+
cpu: [arm]
|
| 408 |
+
os: [linux]
|
| 409 |
+
|
| 410 |
+
'@rollup/[email protected]':
|
| 411 |
+
resolution: {integrity: sha512-jUb/kmn/Gd8epbHKEqkRAxq5c2EwRt0DqhSGWjPFxLeFvldFdHQs/n8lQ9x85oAeVb6bHcS8irhTJX2FCOd8Ag==}
|
| 412 |
+
cpu: [arm]
|
| 413 |
+
os: [linux]
|
| 414 |
+
|
| 415 |
+
'@rollup/[email protected]':
|
| 416 |
+
resolution: {integrity: sha512-oNrJxcQT9IcbcmKlkF+Yz2tmOxZgG9D9GRq+1OE6XCQwCVwxixYAa38Z8qqPzQvzt1FCfmrHX03E0pWoXm1DqA==}
|
| 417 |
+
cpu: [arm64]
|
| 418 |
+
os: [linux]
|
| 419 |
+
|
| 420 |
+
'@rollup/[email protected]':
|
| 421 |
+
resolution: {integrity: sha512-pfxLBMls+28Ey2enpX3JvjEjaJMBX5XlPCZNGxj4kdJyHduPBXtxYeb8alo0a7bqOoWZW2uKynhHxF/MWoHaGQ==}
|
| 422 |
+
cpu: [arm64]
|
| 423 |
+
os: [linux]
|
| 424 |
+
|
| 425 |
+
'@rollup/[email protected]':
|
| 426 |
+
resolution: {integrity: sha512-yCE0NnutTC/7IGUq/PUHmoeZbIwq3KRh02e9SfFh7Vmc1Z7atuJRYWhRME5fKgT8aS20mwi1RyChA23qSyRGpA==}
|
| 427 |
+
cpu: [loong64]
|
| 428 |
+
os: [linux]
|
| 429 |
+
|
| 430 |
+
'@rollup/[email protected]':
|
| 431 |
+
resolution: {integrity: sha512-NxcICptHk06E2Lh3a4Pu+2PEdZ6ahNHuK7o6Np9zcWkrBMuv21j10SQDJW3C9Yf/A/P7cutWoC/DptNLVsZ0VQ==}
|
| 432 |
+
cpu: [ppc64]
|
| 433 |
+
os: [linux]
|
| 434 |
+
|
| 435 |
+
'@rollup/[email protected]':
|
| 436 |
+
resolution: {integrity: sha512-PpWwHMPCVpFZLTfLq7EWJWvrmEuLdGn1GMYcm5MV7PaRgwCEYJAwiN94uBuZev0/J/hFIIJCsYw4nLmXA9J7Pw==}
|
| 437 |
+
cpu: [riscv64]
|
| 438 |
+
os: [linux]
|
| 439 |
+
|
| 440 |
+
'@rollup/[email protected]':
|
| 441 |
+
resolution: {integrity: sha512-DTNwl6a3CfhGTAOYZ4KtYbdS8b+275LSLqJVJIrPa5/JuIufWWZ/QFvkxp52gpmguN95eujrM68ZG+zVxa8zHA==}
|
| 442 |
+
cpu: [riscv64]
|
| 443 |
+
os: [linux]
|
| 444 |
+
|
| 445 |
+
'@rollup/[email protected]':
|
| 446 |
+
resolution: {integrity: sha512-hZDDU5fgWvDdHFuExN1gBOhCuzo/8TMpidfOR+1cPZJflcEzXdCy1LjnklQdW8/Et9sryOPJAKAQRw8Jq7Tg+A==}
|
| 447 |
+
cpu: [s390x]
|
| 448 |
+
os: [linux]
|
| 449 |
+
|
| 450 |
+
'@rollup/[email protected]':
|
| 451 |
+
resolution: {integrity: sha512-pKivGpgJM5g8dwj0ywBwe/HeVAUSuVVJhUTa/URXjxvoyTT/AxsLTAbkHkDHG7qQxLoW2s3apEIl26uUe08LVQ==}
|
| 452 |
+
cpu: [x64]
|
| 453 |
+
os: [linux]
|
| 454 |
+
|
| 455 |
+
'@rollup/[email protected]':
|
| 456 |
+
resolution: {integrity: sha512-E2lPrLKE8sQbY/2bEkVTGDEk4/49UYRVWgj90MY8yPjpnGBQ+Xi1Qnr7b7UIWw1NOggdFQFOLZ8+5CzCiz143w==}
|
| 457 |
+
cpu: [x64]
|
| 458 |
+
os: [linux]
|
| 459 |
+
|
| 460 |
+
'@rollup/[email protected]':
|
| 461 |
+
resolution: {integrity: sha512-Jm7biMazjNzTU4PrQtr7VS8ibeys9Pn29/1bm4ph7CP2kf21950LgN+BaE2mJ1QujnvOc6p54eWWiVvn05SOBg==}
|
| 462 |
+
cpu: [arm64]
|
| 463 |
+
os: [win32]
|
| 464 |
+
|
| 465 |
+
'@rollup/[email protected]':
|
| 466 |
+
resolution: {integrity: sha512-e3/1SFm1OjefWICB2Ucstg2dxYDkDTZGDYgwufcbsxTHyqQps1UQf33dFEChBNmeSsTOyrjw2JJq0zbG5GF6RA==}
|
| 467 |
+
cpu: [ia32]
|
| 468 |
+
os: [win32]
|
| 469 |
+
|
| 470 |
+
'@rollup/[email protected]':
|
| 471 |
+
resolution: {integrity: sha512-LWbXUBwn/bcLx2sSsqy7pK5o+Nr+VCoRoAohfJ5C/aBio9nfJmGQqHAhU6pwxV/RmyTk5AqdySma7uwWGlmeuA==}
|
| 472 |
+
cpu: [x64]
|
| 473 |
+
os: [win32]
|
| 474 |
+
|
| 475 |
+
'@types/[email protected]':
|
| 476 |
+
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
| 477 |
+
|
| 478 |
+
'@types/[email protected]':
|
| 479 |
+
resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==}
|
| 480 |
+
|
| 481 |
+
'@types/[email protected]':
|
| 482 |
+
resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
|
| 483 |
+
|
| 484 |
+
'@types/[email protected]':
|
| 485 |
+
resolution: {integrity: sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==}
|
| 486 |
+
|
| 487 |
+
'@types/[email protected]':
|
| 488 |
+
resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
|
| 489 |
+
|
| 490 |
+
'@types/[email protected]':
|
| 491 |
+
resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
|
| 492 |
+
|
| 493 |
+
'@types/[email protected]':
|
| 494 |
+
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
|
| 495 |
+
|
| 496 |
+
'@types/[email protected]':
|
| 497 |
+
resolution: {integrity: sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg==}
|
| 498 |
+
peerDependencies:
|
| 499 |
+
'@types/react': ^19.0.0
|
| 500 |
+
|
| 501 |
+
'@types/[email protected]':
|
| 502 |
+
resolution: {integrity: sha512-V6Ar115dBDrjbtXSrS+/Oruobc+qVbbUxDFC1RSbRqLt5SYvxxyIDrSC85RWml54g+jfNeEMZhEj7wW07ONQhA==}
|
| 503 |
+
|
| 504 |
+
'@typescript-eslint/[email protected]':
|
| 505 |
+
resolution: {integrity: sha512-lvFK3TCGAHsItNdWZ/1FkvpzCxTHUVuFrdnOGLMa0GGCFIbCgQWVk3CzCGdA7kM3qGVc+dfW9tr0Z/sHnGDFyg==}
|
| 506 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 507 |
+
peerDependencies:
|
| 508 |
+
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
|
| 509 |
+
eslint: ^8.57.0 || ^9.0.0
|
| 510 |
+
typescript: '>=4.8.4 <5.9.0'
|
| 511 |
+
|
| 512 |
+
'@typescript-eslint/[email protected]':
|
| 513 |
+
resolution: {integrity: sha512-LPcw1yHD3ToaDEoljFEfQ9j2xShY367h7FZ1sq5NJT9I3yj4LHer1Xd1yRSOdYy9BpsrxU7R+eoDokChYM53lQ==}
|
| 514 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 515 |
+
peerDependencies:
|
| 516 |
+
eslint: ^8.57.0 || ^9.0.0
|
| 517 |
+
typescript: '>=4.8.4 <5.9.0'
|
| 518 |
+
|
| 519 |
+
'@typescript-eslint/[email protected]':
|
| 520 |
+
resolution: {integrity: sha512-u2oITX3BJwzWCapoZ/pXw6BCOl8rJP4Ij/3wPoGvY8XwvXflOzd1kLrDUUUAIEdJSFh+ASwdTHqtan9xSg8buw==}
|
| 521 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 522 |
+
|
| 523 |
+
'@typescript-eslint/[email protected]':
|
| 524 |
+
resolution: {integrity: sha512-oRoXu2v0Rsy/VoOGhtWrOKDiIehvI+YNrDk5Oqj40Mwm0Yt01FC/Q7nFqg088d3yAsR1ZcZFVfPCTTFCe/KPwg==}
|
| 525 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 526 |
+
peerDependencies:
|
| 527 |
+
eslint: ^8.57.0 || ^9.0.0
|
| 528 |
+
typescript: '>=4.8.4 <5.9.0'
|
| 529 |
+
|
| 530 |
+
'@typescript-eslint/[email protected]':
|
| 531 |
+
resolution: {integrity: sha512-bn4WS1bkKEjx7HqiwG2JNB3YJdC1q6Ue7GyGlwPHyt0TnVq6TtD/hiOdTZt71sq0s7UzqBFXD8t8o2e63tXgwA==}
|
| 532 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 533 |
+
|
| 534 |
+
'@typescript-eslint/[email protected]':
|
| 535 |
+
resolution: {integrity: sha512-H74nHEeBGeklctAVUvmDkxB1mk+PAZ9FiOMPFncdqeRBXxk1lWSYraHw8V12b7aa6Sg9HOBNbGdSHobBPuQSuA==}
|
| 536 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 537 |
+
peerDependencies:
|
| 538 |
+
typescript: '>=4.8.4 <5.9.0'
|
| 539 |
+
|
| 540 |
+
'@typescript-eslint/[email protected]':
|
| 541 |
+
resolution: {integrity: sha512-OELa9hbTYciYITqgurT1u/SzpQVtDLmQMFzy/N8pQE+tefOyCWT79jHsav294aTqV1q1u+VzqDGbuujvRYaeSQ==}
|
| 542 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 543 |
+
peerDependencies:
|
| 544 |
+
eslint: ^8.57.0 || ^9.0.0
|
| 545 |
+
typescript: '>=4.8.4 <5.9.0'
|
| 546 |
+
|
| 547 |
+
'@typescript-eslint/[email protected]':
|
| 548 |
+
resolution: {integrity: sha512-hbn8SZ8w4u2pRwgQ1GlUrPKE+t2XvcCW5tTRF7j6SMYIuYG37XuzIW44JCZPa36evi0Oy2SnM664BlIaAuQcvg==}
|
| 549 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 550 |
+
|
| 551 |
+
'@vitejs/[email protected]':
|
| 552 |
+
resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==}
|
| 553 |
+
engines: {node: ^14.18.0 || >=16.0.0}
|
| 554 |
+
peerDependencies:
|
| 555 |
+
vite: ^4.2.0 || ^5.0.0 || ^6.0.0
|
| 556 |
+
|
| 557 | |
| 558 |
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
| 559 |
+
peerDependencies:
|
| 560 |
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
| 561 |
+
|
| 562 | |
| 563 |
+
resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==}
|
| 564 |
+
engines: {node: '>=0.4.0'}
|
| 565 |
+
hasBin: true
|
| 566 |
+
|
| 567 | |
| 568 |
+
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
| 569 |
+
|
| 570 | |
| 571 |
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
| 572 |
+
engines: {node: '>=8'}
|
| 573 |
+
|
| 574 | |
| 575 |
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
| 576 |
+
|
| 577 | |
| 578 |
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
| 579 |
+
|
| 580 | |
| 581 |
+
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
| 582 |
+
|
| 583 | |
| 584 |
+
resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==}
|
| 585 |
+
|
| 586 | |
| 587 |
+
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
|
| 588 |
+
engines: {node: '>=8'}
|
| 589 |
+
|
| 590 | |
| 591 |
+
resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
|
| 592 |
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
| 593 |
+
hasBin: true
|
| 594 |
+
|
| 595 | |
| 596 |
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
| 597 |
+
engines: {node: '>=6'}
|
| 598 |
+
|
| 599 | |
| 600 |
+
resolution: {integrity: sha512-3qtRjw/HQSMlDWf+X79N206fepf4SOOU6SQLMaq/0KkZLmSjPxAkBOQQ+FxbHKfHmYLZFfdWsO3KA90ceHPSnw==}
|
| 601 |
+
|
| 602 | |
| 603 |
+
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
| 604 |
+
engines: {node: '>=10'}
|
| 605 |
+
|
| 606 | |
| 607 |
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
| 608 |
+
engines: {node: '>=7.0.0'}
|
| 609 |
+
|
| 610 | |
| 611 |
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
| 612 |
+
|
| 613 | |
| 614 |
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
| 615 |
+
|
| 616 | |
| 617 |
+
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
| 618 |
+
|
| 619 | |
| 620 |
+
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
|
| 621 |
+
engines: {node: '>= 8'}
|
| 622 |
+
|
| 623 | |
| 624 |
+
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
|
| 625 |
+
|
| 626 | |
| 627 |
+
resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
|
| 628 |
+
engines: {node: '>=6.0'}
|
| 629 |
+
peerDependencies:
|
| 630 |
+
supports-color: '*'
|
| 631 |
+
peerDependenciesMeta:
|
| 632 |
+
supports-color:
|
| 633 |
+
optional: true
|
| 634 |
+
|
| 635 | |
| 636 |
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
| 637 |
+
|
| 638 | |
| 639 |
+
resolution: {integrity: sha512-bo1A4HH/NS522Ws0QNFIzyPcyUUNV/yyy70Ho1xqfGYzPUme2F/xr4tlEOuM6/A538U1vDA7a4XfCd1CKRegKQ==}
|
| 640 |
+
|
| 641 | |
| 642 |
+
resolution: {integrity: sha512-BGO5LtrGC7vxnqucAe/rmvKdJllfGaYWdyABvyMoXQlfYMb2bbRuReWR5tEGE//4LcNJj9XrkovTqNYRFZHAMQ==}
|
| 643 |
+
engines: {node: '>=18'}
|
| 644 |
+
hasBin: true
|
| 645 |
+
|
| 646 | |
| 647 |
+
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
| 648 |
+
engines: {node: '>=6'}
|
| 649 |
+
|
| 650 | |
| 651 |
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
| 652 |
+
engines: {node: '>=10'}
|
| 653 |
+
|
| 654 | |
| 655 |
+
resolution: {integrity: sha512-+f15FfK64YQwZdJNELETdn5ibXEUQmW1DZL6KXhNnc2heoy/sg9VJJeT7n8TlMWouzWqSWavFkIhHyIbIAEapg==}
|
| 656 |
+
engines: {node: '>=10'}
|
| 657 |
+
peerDependencies:
|
| 658 |
+
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0
|
| 659 |
+
|
| 660 | |
| 661 |
+
resolution: {integrity: sha512-eyy8pcr/YxSYjBoqIFSrlbn9i/xvxUFa8CjzAYo9cFjgGXqq1hyjihcpZvxRLalpaWmueWR81xn7vuKmAFijDQ==}
|
| 662 |
+
peerDependencies:
|
| 663 |
+
eslint: '>=8.40'
|
| 664 |
+
|
| 665 | |
| 666 |
+
resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==}
|
| 667 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 668 |
+
|
| 669 | |
| 670 |
+
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
|
| 671 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
| 672 |
+
|
| 673 | |
| 674 |
+
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
|
| 675 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 676 |
+
|
| 677 | |
| 678 |
+
resolution: {integrity: sha512-jV7AbNoFPAY1EkFYpLq5bslU9NLNO8xnEeQXwErNibVryjk67wHVmddTBilc5srIttJDBrB0eMHKZBFbSIABCw==}
|
| 679 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 680 |
+
hasBin: true
|
| 681 |
+
peerDependencies:
|
| 682 |
+
jiti: '*'
|
| 683 |
+
peerDependenciesMeta:
|
| 684 |
+
jiti:
|
| 685 |
+
optional: true
|
| 686 |
+
|
| 687 | |
| 688 |
+
resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
|
| 689 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 690 |
+
|
| 691 | |
| 692 |
+
resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
|
| 693 |
+
engines: {node: '>=0.10'}
|
| 694 |
+
|
| 695 | |
| 696 |
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
| 697 |
+
engines: {node: '>=4.0'}
|
| 698 |
+
|
| 699 | |
| 700 |
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
| 701 |
+
engines: {node: '>=4.0'}
|
| 702 |
+
|
| 703 | |
| 704 |
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
| 705 |
+
engines: {node: '>=0.10.0'}
|
| 706 |
+
|
| 707 | |
| 708 |
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
| 709 |
+
|
| 710 | |
| 711 |
+
resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
|
| 712 |
+
engines: {node: '>=8.6.0'}
|
| 713 |
+
|
| 714 | |
| 715 |
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
| 716 |
+
|
| 717 | |
| 718 |
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
| 719 |
+
|
| 720 | |
| 721 |
+
resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
|
| 722 |
+
|
| 723 | |
| 724 |
+
resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
|
| 725 |
+
engines: {node: '>=16.0.0'}
|
| 726 |
+
|
| 727 | |
| 728 |
+
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
|
| 729 |
+
engines: {node: '>=8'}
|
| 730 |
+
|
| 731 | |
| 732 |
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
| 733 |
+
engines: {node: '>=10'}
|
| 734 |
+
|
| 735 | |
| 736 |
+
resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
|
| 737 |
+
engines: {node: '>=16'}
|
| 738 |
+
|
| 739 | |
| 740 |
+
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
|
| 741 |
+
|
| 742 | |
| 743 |
+
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
| 744 |
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
| 745 |
+
os: [darwin]
|
| 746 |
+
|
| 747 | |
| 748 |
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
| 749 |
+
engines: {node: '>=6.9.0'}
|
| 750 |
+
|
| 751 | |
| 752 |
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
| 753 |
+
engines: {node: '>= 6'}
|
| 754 |
+
|
| 755 | |
| 756 |
+
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
| 757 |
+
engines: {node: '>=10.13.0'}
|
| 758 |
+
|
| 759 | |
| 760 |
+
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
|
| 761 |
+
engines: {node: '>=4'}
|
| 762 |
+
|
| 763 | |
| 764 |
+
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
|
| 765 |
+
engines: {node: '>=18'}
|
| 766 |
+
|
| 767 | |
| 768 |
+
resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==}
|
| 769 |
+
engines: {node: '>=18'}
|
| 770 |
+
|
| 771 | |
| 772 |
+
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
|
| 773 |
+
|
| 774 | |
| 775 |
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
| 776 |
+
engines: {node: '>=8'}
|
| 777 |
+
|
| 778 | |
| 779 |
+
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
| 780 |
+
engines: {node: '>= 4'}
|
| 781 |
+
|
| 782 | |
| 783 |
+
resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
|
| 784 |
+
engines: {node: '>=6'}
|
| 785 |
+
|
| 786 | |
| 787 |
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
| 788 |
+
engines: {node: '>=0.8.19'}
|
| 789 |
+
|
| 790 | |
| 791 |
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
| 792 |
+
engines: {node: '>=0.10.0'}
|
| 793 |
+
|
| 794 | |
| 795 |
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
| 796 |
+
engines: {node: '>=0.10.0'}
|
| 797 |
+
|
| 798 | |
| 799 |
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
| 800 |
+
engines: {node: '>=0.12.0'}
|
| 801 |
+
|
| 802 | |
| 803 |
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
| 804 |
+
|
| 805 | |
| 806 |
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
| 807 |
+
|
| 808 | |
| 809 |
+
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
|
| 810 |
+
hasBin: true
|
| 811 |
+
|
| 812 | |
| 813 |
+
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
|
| 814 |
+
engines: {node: '>=6'}
|
| 815 |
+
hasBin: true
|
| 816 |
+
|
| 817 | |
| 818 |
+
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
|
| 819 |
+
|
| 820 | |
| 821 |
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
| 822 |
+
|
| 823 | |
| 824 |
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
| 825 |
+
|
| 826 | |
| 827 |
+
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
| 828 |
+
engines: {node: '>=6'}
|
| 829 |
+
hasBin: true
|
| 830 |
+
|
| 831 | |
| 832 |
+
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
|
| 833 |
+
|
| 834 | |
| 835 |
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
| 836 |
+
engines: {node: '>= 0.8.0'}
|
| 837 |
+
|
| 838 | |
| 839 |
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
| 840 |
+
engines: {node: '>=10'}
|
| 841 |
+
|
| 842 | |
| 843 |
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
| 844 |
+
|
| 845 | |
| 846 |
+
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
| 847 |
+
|
| 848 | |
| 849 |
+
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
| 850 |
+
engines: {node: '>= 8'}
|
| 851 |
+
|
| 852 | |
| 853 |
+
resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
|
| 854 |
+
engines: {node: '>=8.6'}
|
| 855 |
+
|
| 856 | |
| 857 |
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
| 858 |
+
|
| 859 | |
| 860 |
+
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
| 861 |
+
engines: {node: '>=16 || 14 >=14.17'}
|
| 862 |
+
|
| 863 | |
| 864 |
+
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
| 865 |
+
|
| 866 | |
| 867 |
+
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
|
| 868 |
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
| 869 |
+
hasBin: true
|
| 870 |
+
|
| 871 | |
| 872 |
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
| 873 |
+
|
| 874 | |
| 875 |
+
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
|
| 876 |
+
|
| 877 | |
| 878 |
+
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
| 879 |
+
engines: {node: '>= 0.8.0'}
|
| 880 |
+
|
| 881 | |
| 882 |
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
|
| 883 |
+
engines: {node: '>=10'}
|
| 884 |
+
|
| 885 | |
| 886 |
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
| 887 |
+
engines: {node: '>=10'}
|
| 888 |
+
|
| 889 | |
| 890 |
+
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
| 891 |
+
engines: {node: '>=6'}
|
| 892 |
+
|
| 893 | |
| 894 |
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
| 895 |
+
engines: {node: '>=8'}
|
| 896 |
+
|
| 897 | |
| 898 |
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
| 899 |
+
engines: {node: '>=8'}
|
| 900 |
+
|
| 901 | |
| 902 |
+
resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
|
| 903 |
+
|
| 904 | |
| 905 |
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
| 906 |
+
engines: {node: '>=8.6'}
|
| 907 |
+
|
| 908 | |
| 909 |
+
resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
|
| 910 |
+
engines: {node: ^10 || ^12 || >=14}
|
| 911 |
+
|
| 912 | |
| 913 |
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
| 914 |
+
engines: {node: '>= 0.8.0'}
|
| 915 |
+
|
| 916 | |
| 917 |
+
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
|
| 918 |
+
engines: {node: '>=6'}
|
| 919 |
+
|
| 920 | |
| 921 |
+
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
| 922 |
+
|
| 923 | |
| 924 |
+
resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==}
|
| 925 |
+
peerDependencies:
|
| 926 |
+
react: ^19.0.0
|
| 927 |
+
|
| 928 | |
| 929 |
+
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
|
| 930 |
+
engines: {node: '>=0.10.0'}
|
| 931 |
+
|
| 932 | |
| 933 |
+
resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
|
| 934 |
+
engines: {node: '>=0.10.0'}
|
| 935 |
+
|
| 936 | |
| 937 |
+
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
| 938 |
+
engines: {node: '>=4'}
|
| 939 |
+
|
| 940 | |
| 941 |
+
resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
|
| 942 |
+
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
| 943 |
+
|
| 944 | |
| 945 |
+
resolution: {integrity: sha512-iAtQy/L4QFU+rTJ1YUjXqJOJzuwEghqWzCEYD2FEghT7Gsy1VdABntrO4CLopA5IkflTyqNiLNwPcOJ3S7UKLg==}
|
| 946 |
+
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
|
| 947 |
+
hasBin: true
|
| 948 |
+
|
| 949 | |
| 950 |
+
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
| 951 |
+
|
| 952 | |
| 953 |
+
resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==}
|
| 954 |
+
|
| 955 | |
| 956 |
+
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
|
| 957 |
+
hasBin: true
|
| 958 |
+
|
| 959 | |
| 960 |
+
resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
|
| 961 |
+
engines: {node: '>=10'}
|
| 962 |
+
hasBin: true
|
| 963 |
+
|
| 964 | |
| 965 |
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
| 966 |
+
engines: {node: '>=8'}
|
| 967 |
+
|
| 968 | |
| 969 |
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
| 970 |
+
engines: {node: '>=8'}
|
| 971 |
+
|
| 972 | |
| 973 |
+
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
| 974 |
+
engines: {node: '>=0.10.0'}
|
| 975 |
+
|
| 976 | |
| 977 |
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
| 978 |
+
engines: {node: '>=8'}
|
| 979 |
+
|
| 980 | |
| 981 |
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
| 982 |
+
engines: {node: '>=8'}
|
| 983 |
+
|
| 984 | |
| 985 |
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
| 986 |
+
engines: {node: '>=8.0'}
|
| 987 |
+
|
| 988 | |
| 989 |
+
resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==}
|
| 990 |
+
engines: {node: '>=18.12'}
|
| 991 |
+
peerDependencies:
|
| 992 |
+
typescript: '>=4.8.4'
|
| 993 |
+
|
| 994 | |
| 995 |
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
| 996 |
+
engines: {node: '>= 0.8.0'}
|
| 997 |
+
|
| 998 | |
| 999 |
+
resolution: {integrity: sha512-jfZtxJoHm59bvoCMYCe2BM0/baMswRhMmYhy+w6VfcyHrjxZ0OJe0tGasydCpIpA+A/WIJhTyZfb3EtwNC/kHQ==}
|
| 1000 |
+
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
| 1001 |
+
peerDependencies:
|
| 1002 |
+
eslint: ^8.57.0 || ^9.0.0
|
| 1003 |
+
typescript: '>=4.8.4 <5.9.0'
|
| 1004 |
+
|
| 1005 | |
| 1006 |
+
resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
|
| 1007 |
+
engines: {node: '>=14.17'}
|
| 1008 |
+
hasBin: true
|
| 1009 |
+
|
| 1010 | |
| 1011 |
+
resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
|
| 1012 |
+
hasBin: true
|
| 1013 |
+
peerDependencies:
|
| 1014 |
+
browserslist: '>= 4.21.0'
|
| 1015 |
+
|
| 1016 | |
| 1017 |
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
| 1018 |
+
|
| 1019 | |
| 1020 |
+
resolution: {integrity: sha512-IzwM54g4y9JA/xAeBPNaDXiBF8Jsgl3VBQ2YQ/wOY6fyW3xMdSoltIV3Bo59DErdqdE6RxUfv8W69DvUorE4Eg==}
|
| 1021 |
+
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
|
| 1022 |
+
hasBin: true
|
| 1023 |
+
peerDependencies:
|
| 1024 |
+
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
|
| 1025 |
+
jiti: '>=1.21.0'
|
| 1026 |
+
less: '*'
|
| 1027 |
+
lightningcss: ^1.21.0
|
| 1028 |
+
sass: '*'
|
| 1029 |
+
sass-embedded: '*'
|
| 1030 |
+
stylus: '*'
|
| 1031 |
+
sugarss: '*'
|
| 1032 |
+
terser: ^5.16.0
|
| 1033 |
+
tsx: ^4.8.1
|
| 1034 |
+
yaml: ^2.4.2
|
| 1035 |
+
peerDependenciesMeta:
|
| 1036 |
+
'@types/node':
|
| 1037 |
+
optional: true
|
| 1038 |
+
jiti:
|
| 1039 |
+
optional: true
|
| 1040 |
+
less:
|
| 1041 |
+
optional: true
|
| 1042 |
+
lightningcss:
|
| 1043 |
+
optional: true
|
| 1044 |
+
sass:
|
| 1045 |
+
optional: true
|
| 1046 |
+
sass-embedded:
|
| 1047 |
+
optional: true
|
| 1048 |
+
stylus:
|
| 1049 |
+
optional: true
|
| 1050 |
+
sugarss:
|
| 1051 |
+
optional: true
|
| 1052 |
+
terser:
|
| 1053 |
+
optional: true
|
| 1054 |
+
tsx:
|
| 1055 |
+
optional: true
|
| 1056 |
+
yaml:
|
| 1057 |
+
optional: true
|
| 1058 |
+
|
| 1059 | |
| 1060 |
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
| 1061 |
+
engines: {node: '>= 8'}
|
| 1062 |
+
hasBin: true
|
| 1063 |
+
|
| 1064 | |
| 1065 |
+
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
|
| 1066 |
+
engines: {node: '>=0.10.0'}
|
| 1067 |
+
|
| 1068 | |
| 1069 |
+
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
| 1070 |
+
|
| 1071 | |
| 1072 |
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
| 1073 |
+
engines: {node: '>=10'}
|
| 1074 |
+
|
| 1075 |
+
snapshots:
|
| 1076 |
+
|
| 1077 |
+
'@ampproject/[email protected]':
|
| 1078 |
+
dependencies:
|
| 1079 |
+
'@jridgewell/gen-mapping': 0.3.8
|
| 1080 |
+
'@jridgewell/trace-mapping': 0.3.25
|
| 1081 |
+
|
| 1082 |
+
'@babel/[email protected]':
|
| 1083 |
+
dependencies:
|
| 1084 |
+
'@babel/helper-validator-identifier': 7.25.9
|
| 1085 |
+
js-tokens: 4.0.0
|
| 1086 |
+
picocolors: 1.1.1
|
| 1087 |
+
|
| 1088 |
+
'@babel/[email protected]': {}
|
| 1089 |
+
|
| 1090 |
+
'@babel/[email protected]':
|
| 1091 |
+
dependencies:
|
| 1092 |
+
'@ampproject/remapping': 2.3.0
|
| 1093 |
+
'@babel/code-frame': 7.26.2
|
| 1094 |
+
'@babel/generator': 7.27.0
|
| 1095 |
+
'@babel/helper-compilation-targets': 7.27.0
|
| 1096 |
+
'@babel/helper-module-transforms': 7.26.0(@babel/[email protected])
|
| 1097 |
+
'@babel/helpers': 7.27.0
|
| 1098 |
+
'@babel/parser': 7.27.0
|
| 1099 |
+
'@babel/template': 7.27.0
|
| 1100 |
+
'@babel/traverse': 7.27.0
|
| 1101 |
+
'@babel/types': 7.27.0
|
| 1102 |
+
convert-source-map: 2.0.0
|
| 1103 |
+
debug: 4.4.0
|
| 1104 |
+
gensync: 1.0.0-beta.2
|
| 1105 |
+
json5: 2.2.3
|
| 1106 |
+
semver: 6.3.1
|
| 1107 |
+
transitivePeerDependencies:
|
| 1108 |
+
- supports-color
|
| 1109 |
+
|
| 1110 |
+
'@babel/[email protected]':
|
| 1111 |
+
dependencies:
|
| 1112 |
+
'@babel/parser': 7.27.0
|
| 1113 |
+
'@babel/types': 7.27.0
|
| 1114 |
+
'@jridgewell/gen-mapping': 0.3.8
|
| 1115 |
+
'@jridgewell/trace-mapping': 0.3.25
|
| 1116 |
+
jsesc: 3.1.0
|
| 1117 |
+
|
| 1118 |
+
'@babel/[email protected]':
|
| 1119 |
+
dependencies:
|
| 1120 |
+
'@babel/compat-data': 7.26.8
|
| 1121 |
+
'@babel/helper-validator-option': 7.25.9
|
| 1122 |
+
browserslist: 4.24.4
|
| 1123 |
+
lru-cache: 5.1.1
|
| 1124 |
+
semver: 6.3.1
|
| 1125 |
+
|
| 1126 |
+
'@babel/[email protected]':
|
| 1127 |
+
dependencies:
|
| 1128 |
+
'@babel/traverse': 7.27.0
|
| 1129 |
+
'@babel/types': 7.27.0
|
| 1130 |
+
transitivePeerDependencies:
|
| 1131 |
+
- supports-color
|
| 1132 |
+
|
| 1133 |
+
'@babel/[email protected](@babel/[email protected])':
|
| 1134 |
+
dependencies:
|
| 1135 |
+
'@babel/core': 7.26.10
|
| 1136 |
+
'@babel/helper-module-imports': 7.25.9
|
| 1137 |
+
'@babel/helper-validator-identifier': 7.25.9
|
| 1138 |
+
'@babel/traverse': 7.27.0
|
| 1139 |
+
transitivePeerDependencies:
|
| 1140 |
+
- supports-color
|
| 1141 |
+
|
| 1142 |
+
'@babel/[email protected]': {}
|
| 1143 |
+
|
| 1144 |
+
'@babel/[email protected]': {}
|
| 1145 |
+
|
| 1146 |
+
'@babel/[email protected]': {}
|
| 1147 |
+
|
| 1148 |
+
'@babel/[email protected]': {}
|
| 1149 |
+
|
| 1150 |
+
'@babel/[email protected]':
|
| 1151 |
+
dependencies:
|
| 1152 |
+
'@babel/template': 7.27.0
|
| 1153 |
+
'@babel/types': 7.27.0
|
| 1154 |
+
|
| 1155 |
+
'@babel/[email protected]':
|
| 1156 |
+
dependencies:
|
| 1157 |
+
'@babel/types': 7.27.0
|
| 1158 |
+
|
| 1159 |
+
'@babel/[email protected](@babel/[email protected])':
|
| 1160 |
+
dependencies:
|
| 1161 |
+
'@babel/core': 7.26.10
|
| 1162 |
+
'@babel/helper-plugin-utils': 7.26.5
|
| 1163 |
+
|
| 1164 |
+
'@babel/[email protected](@babel/[email protected])':
|
| 1165 |
+
dependencies:
|
| 1166 |
+
'@babel/core': 7.26.10
|
| 1167 |
+
'@babel/helper-plugin-utils': 7.26.5
|
| 1168 |
+
|
| 1169 |
+
'@babel/[email protected]':
|
| 1170 |
+
dependencies:
|
| 1171 |
+
'@babel/code-frame': 7.26.2
|
| 1172 |
+
'@babel/parser': 7.27.0
|
| 1173 |
+
'@babel/types': 7.27.0
|
| 1174 |
+
|
| 1175 |
+
'@babel/[email protected]':
|
| 1176 |
+
dependencies:
|
| 1177 |
+
'@babel/code-frame': 7.26.2
|
| 1178 |
+
'@babel/generator': 7.27.0
|
| 1179 |
+
'@babel/parser': 7.27.0
|
| 1180 |
+
'@babel/template': 7.27.0
|
| 1181 |
+
'@babel/types': 7.27.0
|
| 1182 |
+
debug: 4.4.0
|
| 1183 |
+
globals: 11.12.0
|
| 1184 |
+
transitivePeerDependencies:
|
| 1185 |
+
- supports-color
|
| 1186 |
+
|
| 1187 |
+
'@babel/[email protected]':
|
| 1188 |
+
dependencies:
|
| 1189 |
+
'@babel/helper-string-parser': 7.25.9
|
| 1190 |
+
'@babel/helper-validator-identifier': 7.25.9
|
| 1191 |
+
|
| 1192 |
+
'@esbuild/[email protected]':
|
| 1193 |
+
optional: true
|
| 1194 |
+
|
| 1195 |
+
'@esbuild/[email protected]':
|
| 1196 |
+
optional: true
|
| 1197 |
+
|
| 1198 |
+
'@esbuild/[email protected]':
|
| 1199 |
+
optional: true
|
| 1200 |
+
|
| 1201 |
+
'@esbuild/[email protected]':
|
| 1202 |
+
optional: true
|
| 1203 |
+
|
| 1204 |
+
'@esbuild/[email protected]':
|
| 1205 |
+
optional: true
|
| 1206 |
+
|
| 1207 |
+
'@esbuild/[email protected]':
|
| 1208 |
+
optional: true
|
| 1209 |
+
|
| 1210 |
+
'@esbuild/[email protected]':
|
| 1211 |
+
optional: true
|
| 1212 |
+
|
| 1213 |
+
'@esbuild/[email protected]':
|
| 1214 |
+
optional: true
|
| 1215 |
+
|
| 1216 |
+
'@esbuild/[email protected]':
|
| 1217 |
+
optional: true
|
| 1218 |
+
|
| 1219 |
+
'@esbuild/[email protected]':
|
| 1220 |
+
optional: true
|
| 1221 |
+
|
| 1222 |
+
'@esbuild/[email protected]':
|
| 1223 |
+
optional: true
|
| 1224 |
+
|
| 1225 |
+
'@esbuild/[email protected]':
|
| 1226 |
+
optional: true
|
| 1227 |
+
|
| 1228 |
+
'@esbuild/[email protected]':
|
| 1229 |
+
optional: true
|
| 1230 |
+
|
| 1231 |
+
'@esbuild/[email protected]':
|
| 1232 |
+
optional: true
|
| 1233 |
+
|
| 1234 |
+
'@esbuild/[email protected]':
|
| 1235 |
+
optional: true
|
| 1236 |
+
|
| 1237 |
+
'@esbuild/[email protected]':
|
| 1238 |
+
optional: true
|
| 1239 |
+
|
| 1240 |
+
'@esbuild/[email protected]':
|
| 1241 |
+
optional: true
|
| 1242 |
+
|
| 1243 |
+
'@esbuild/[email protected]':
|
| 1244 |
+
optional: true
|
| 1245 |
+
|
| 1246 |
+
'@esbuild/[email protected]':
|
| 1247 |
+
optional: true
|
| 1248 |
+
|
| 1249 |
+
'@esbuild/[email protected]':
|
| 1250 |
+
optional: true
|
| 1251 |
+
|
| 1252 |
+
'@esbuild/[email protected]':
|
| 1253 |
+
optional: true
|
| 1254 |
+
|
| 1255 |
+
'@esbuild/[email protected]':
|
| 1256 |
+
optional: true
|
| 1257 |
+
|
| 1258 |
+
'@esbuild/[email protected]':
|
| 1259 |
+
optional: true
|
| 1260 |
+
|
| 1261 |
+
'@esbuild/[email protected]':
|
| 1262 |
+
optional: true
|
| 1263 |
+
|
| 1264 |
+
'@esbuild/[email protected]':
|
| 1265 |
+
optional: true
|
| 1266 |
+
|
| 1267 |
+
'@eslint-community/[email protected]([email protected])':
|
| 1268 |
+
dependencies:
|
| 1269 |
+
eslint: 9.23.0
|
| 1270 |
+
eslint-visitor-keys: 3.4.3
|
| 1271 |
+
|
| 1272 |
+
'@eslint-community/[email protected]': {}
|
| 1273 |
+
|
| 1274 |
+
'@eslint/[email protected]':
|
| 1275 |
+
dependencies:
|
| 1276 |
+
'@eslint/object-schema': 2.1.6
|
| 1277 |
+
debug: 4.4.0
|
| 1278 |
+
minimatch: 3.1.2
|
| 1279 |
+
transitivePeerDependencies:
|
| 1280 |
+
- supports-color
|
| 1281 |
+
|
| 1282 |
+
'@eslint/[email protected]': {}
|
| 1283 |
+
|
| 1284 |
+
'@eslint/[email protected]':
|
| 1285 |
+
dependencies:
|
| 1286 |
+
'@types/json-schema': 7.0.15
|
| 1287 |
+
|
| 1288 |
+
'@eslint/[email protected]':
|
| 1289 |
+
dependencies:
|
| 1290 |
+
ajv: 6.12.6
|
| 1291 |
+
debug: 4.4.0
|
| 1292 |
+
espree: 10.3.0
|
| 1293 |
+
globals: 14.0.0
|
| 1294 |
+
ignore: 5.3.2
|
| 1295 |
+
import-fresh: 3.3.1
|
| 1296 |
+
js-yaml: 4.1.0
|
| 1297 |
+
minimatch: 3.1.2
|
| 1298 |
+
strip-json-comments: 3.1.1
|
| 1299 |
+
transitivePeerDependencies:
|
| 1300 |
+
- supports-color
|
| 1301 |
+
|
| 1302 |
+
'@eslint/[email protected]': {}
|
| 1303 |
+
|
| 1304 |
+
'@eslint/[email protected]': {}
|
| 1305 |
+
|
| 1306 |
+
'@eslint/[email protected]':
|
| 1307 |
+
dependencies:
|
| 1308 |
+
'@eslint/core': 0.12.0
|
| 1309 |
+
levn: 0.4.1
|
| 1310 |
+
|
| 1311 |
+
'@humanfs/[email protected]': {}
|
| 1312 |
+
|
| 1313 |
+
'@humanfs/[email protected]':
|
| 1314 |
+
dependencies:
|
| 1315 |
+
'@humanfs/core': 0.19.1
|
| 1316 |
+
'@humanwhocodes/retry': 0.3.1
|
| 1317 |
+
|
| 1318 |
+
'@humanwhocodes/[email protected]': {}
|
| 1319 |
+
|
| 1320 |
+
'@humanwhocodes/[email protected]': {}
|
| 1321 |
+
|
| 1322 |
+
'@humanwhocodes/[email protected]': {}
|
| 1323 |
+
|
| 1324 |
+
'@jridgewell/[email protected]':
|
| 1325 |
+
dependencies:
|
| 1326 |
+
'@jridgewell/set-array': 1.2.1
|
| 1327 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
| 1328 |
+
'@jridgewell/trace-mapping': 0.3.25
|
| 1329 |
+
|
| 1330 |
+
'@jridgewell/[email protected]': {}
|
| 1331 |
+
|
| 1332 |
+
'@jridgewell/[email protected]': {}
|
| 1333 |
+
|
| 1334 |
+
'@jridgewell/[email protected]': {}
|
| 1335 |
+
|
| 1336 |
+
'@jridgewell/[email protected]':
|
| 1337 |
+
dependencies:
|
| 1338 |
+
'@jridgewell/resolve-uri': 3.1.2
|
| 1339 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
| 1340 |
+
|
| 1341 |
+
'@nodelib/[email protected]':
|
| 1342 |
+
dependencies:
|
| 1343 |
+
'@nodelib/fs.stat': 2.0.5
|
| 1344 |
+
run-parallel: 1.2.0
|
| 1345 |
+
|
| 1346 |
+
'@nodelib/[email protected]': {}
|
| 1347 |
+
|
| 1348 |
+
'@nodelib/[email protected]':
|
| 1349 |
+
dependencies:
|
| 1350 |
+
'@nodelib/fs.scandir': 2.1.5
|
| 1351 |
+
fastq: 1.19.1
|
| 1352 |
+
|
| 1353 |
+
'@rollup/[email protected]':
|
| 1354 |
+
optional: true
|
| 1355 |
+
|
| 1356 |
+
'@rollup/[email protected]':
|
| 1357 |
+
optional: true
|
| 1358 |
+
|
| 1359 |
+
'@rollup/[email protected]':
|
| 1360 |
+
optional: true
|
| 1361 |
+
|
| 1362 |
+
'@rollup/[email protected]':
|
| 1363 |
+
optional: true
|
| 1364 |
+
|
| 1365 |
+
'@rollup/[email protected]':
|
| 1366 |
+
optional: true
|
| 1367 |
+
|
| 1368 |
+
'@rollup/[email protected]':
|
| 1369 |
+
optional: true
|
| 1370 |
+
|
| 1371 |
+
'@rollup/[email protected]':
|
| 1372 |
+
optional: true
|
| 1373 |
+
|
| 1374 |
+
'@rollup/[email protected]':
|
| 1375 |
+
optional: true
|
| 1376 |
+
|
| 1377 |
+
'@rollup/[email protected]':
|
| 1378 |
+
optional: true
|
| 1379 |
+
|
| 1380 |
+
'@rollup/[email protected]':
|
| 1381 |
+
optional: true
|
| 1382 |
+
|
| 1383 |
+
'@rollup/[email protected]':
|
| 1384 |
+
optional: true
|
| 1385 |
+
|
| 1386 |
+
'@rollup/[email protected]':
|
| 1387 |
+
optional: true
|
| 1388 |
+
|
| 1389 |
+
'@rollup/[email protected]':
|
| 1390 |
+
optional: true
|
| 1391 |
+
|
| 1392 |
+
'@rollup/[email protected]':
|
| 1393 |
+
optional: true
|
| 1394 |
+
|
| 1395 |
+
'@rollup/[email protected]':
|
| 1396 |
+
optional: true
|
| 1397 |
+
|
| 1398 |
+
'@rollup/[email protected]':
|
| 1399 |
+
optional: true
|
| 1400 |
+
|
| 1401 |
+
'@rollup/[email protected]':
|
| 1402 |
+
optional: true
|
| 1403 |
+
|
| 1404 |
+
'@rollup/[email protected]':
|
| 1405 |
+
optional: true
|
| 1406 |
+
|
| 1407 |
+
'@rollup/[email protected]':
|
| 1408 |
+
optional: true
|
| 1409 |
+
|
| 1410 |
+
'@rollup/[email protected]':
|
| 1411 |
+
optional: true
|
| 1412 |
+
|
| 1413 |
+
'@types/[email protected]':
|
| 1414 |
+
dependencies:
|
| 1415 |
+
'@babel/parser': 7.27.0
|
| 1416 |
+
'@babel/types': 7.27.0
|
| 1417 |
+
'@types/babel__generator': 7.6.8
|
| 1418 |
+
'@types/babel__template': 7.4.4
|
| 1419 |
+
'@types/babel__traverse': 7.20.7
|
| 1420 |
+
|
| 1421 |
+
'@types/[email protected]':
|
| 1422 |
+
dependencies:
|
| 1423 |
+
'@babel/types': 7.27.0
|
| 1424 |
+
|
| 1425 |
+
'@types/[email protected]':
|
| 1426 |
+
dependencies:
|
| 1427 |
+
'@babel/parser': 7.27.0
|
| 1428 |
+
'@babel/types': 7.27.0
|
| 1429 |
+
|
| 1430 |
+
'@types/[email protected]':
|
| 1431 |
+
dependencies:
|
| 1432 |
+
'@babel/types': 7.27.0
|
| 1433 |
+
|
| 1434 |
+
'@types/[email protected]': {}
|
| 1435 |
+
|
| 1436 |
+
'@types/[email protected]': {}
|
| 1437 |
+
|
| 1438 |
+
'@types/[email protected]': {}
|
| 1439 |
+
|
| 1440 |
+
'@types/[email protected](@types/[email protected])':
|
| 1441 |
+
dependencies:
|
| 1442 |
+
'@types/react': 19.0.12
|
| 1443 |
+
|
| 1444 |
+
'@types/[email protected]':
|
| 1445 |
+
dependencies:
|
| 1446 |
+
csstype: 3.1.3
|
| 1447 |
+
|
| 1448 |
+
'@typescript-eslint/[email protected](@typescript-eslint/[email protected]([email protected])([email protected]))([email protected])([email protected])':
|
| 1449 |
+
dependencies:
|
| 1450 |
+
'@eslint-community/regexpp': 4.12.1
|
| 1451 |
+
'@typescript-eslint/parser': 8.28.0([email protected])([email protected])
|
| 1452 |
+
'@typescript-eslint/scope-manager': 8.28.0
|
| 1453 |
+
'@typescript-eslint/type-utils': 8.28.0([email protected])([email protected])
|
| 1454 |
+
'@typescript-eslint/utils': 8.28.0([email protected])([email protected])
|
| 1455 |
+
'@typescript-eslint/visitor-keys': 8.28.0
|
| 1456 |
+
eslint: 9.23.0
|
| 1457 |
+
graphemer: 1.4.0
|
| 1458 |
+
ignore: 5.3.2
|
| 1459 |
+
natural-compare: 1.4.0
|
| 1460 |
+
ts-api-utils: 2.1.0([email protected])
|
| 1461 |
+
typescript: 5.7.3
|
| 1462 |
+
transitivePeerDependencies:
|
| 1463 |
+
- supports-color
|
| 1464 |
+
|
| 1465 |
+
'@typescript-eslint/[email protected]([email protected])([email protected])':
|
| 1466 |
+
dependencies:
|
| 1467 |
+
'@typescript-eslint/scope-manager': 8.28.0
|
| 1468 |
+
'@typescript-eslint/types': 8.28.0
|
| 1469 |
+
'@typescript-eslint/typescript-estree': 8.28.0([email protected])
|
| 1470 |
+
'@typescript-eslint/visitor-keys': 8.28.0
|
| 1471 |
+
debug: 4.4.0
|
| 1472 |
+
eslint: 9.23.0
|
| 1473 |
+
typescript: 5.7.3
|
| 1474 |
+
transitivePeerDependencies:
|
| 1475 |
+
- supports-color
|
| 1476 |
+
|
| 1477 |
+
'@typescript-eslint/[email protected]':
|
| 1478 |
+
dependencies:
|
| 1479 |
+
'@typescript-eslint/types': 8.28.0
|
| 1480 |
+
'@typescript-eslint/visitor-keys': 8.28.0
|
| 1481 |
+
|
| 1482 |
+
'@typescript-eslint/[email protected]([email protected])([email protected])':
|
| 1483 |
+
dependencies:
|
| 1484 |
+
'@typescript-eslint/typescript-estree': 8.28.0([email protected])
|
| 1485 |
+
'@typescript-eslint/utils': 8.28.0([email protected])([email protected])
|
| 1486 |
+
debug: 4.4.0
|
| 1487 |
+
eslint: 9.23.0
|
| 1488 |
+
ts-api-utils: 2.1.0([email protected])
|
| 1489 |
+
typescript: 5.7.3
|
| 1490 |
+
transitivePeerDependencies:
|
| 1491 |
+
- supports-color
|
| 1492 |
+
|
| 1493 |
+
'@typescript-eslint/[email protected]': {}
|
| 1494 |
+
|
| 1495 |
+
'@typescript-eslint/[email protected]([email protected])':
|
| 1496 |
+
dependencies:
|
| 1497 |
+
'@typescript-eslint/types': 8.28.0
|
| 1498 |
+
'@typescript-eslint/visitor-keys': 8.28.0
|
| 1499 |
+
debug: 4.4.0
|
| 1500 |
+
fast-glob: 3.3.3
|
| 1501 |
+
is-glob: 4.0.3
|
| 1502 |
+
minimatch: 9.0.5
|
| 1503 |
+
semver: 7.7.1
|
| 1504 |
+
ts-api-utils: 2.1.0([email protected])
|
| 1505 |
+
typescript: 5.7.3
|
| 1506 |
+
transitivePeerDependencies:
|
| 1507 |
+
- supports-color
|
| 1508 |
+
|
| 1509 |
+
'@typescript-eslint/[email protected]([email protected])([email protected])':
|
| 1510 |
+
dependencies:
|
| 1511 |
+
'@eslint-community/eslint-utils': 4.5.1([email protected])
|
| 1512 |
+
'@typescript-eslint/scope-manager': 8.28.0
|
| 1513 |
+
'@typescript-eslint/types': 8.28.0
|
| 1514 |
+
'@typescript-eslint/typescript-estree': 8.28.0([email protected])
|
| 1515 |
+
eslint: 9.23.0
|
| 1516 |
+
typescript: 5.7.3
|
| 1517 |
+
transitivePeerDependencies:
|
| 1518 |
+
- supports-color
|
| 1519 |
+
|
| 1520 |
+
'@typescript-eslint/[email protected]':
|
| 1521 |
+
dependencies:
|
| 1522 |
+
'@typescript-eslint/types': 8.28.0
|
| 1523 |
+
eslint-visitor-keys: 4.2.0
|
| 1524 |
+
|
| 1525 |
+
'@vitejs/[email protected]([email protected])':
|
| 1526 |
+
dependencies:
|
| 1527 |
+
'@babel/core': 7.26.10
|
| 1528 |
+
'@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/[email protected])
|
| 1529 |
+
'@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/[email protected])
|
| 1530 |
+
'@types/babel__core': 7.20.5
|
| 1531 |
+
react-refresh: 0.14.2
|
| 1532 |
+
vite: 6.2.3
|
| 1533 |
+
transitivePeerDependencies:
|
| 1534 |
+
- supports-color
|
| 1535 |
+
|
| 1536 | |
| 1537 |
+
dependencies:
|
| 1538 |
+
acorn: 8.14.1
|
| 1539 |
+
|
| 1540 |
+
[email protected]: {}
|
| 1541 |
+
|
| 1542 | |
| 1543 |
+
dependencies:
|
| 1544 |
+
fast-deep-equal: 3.1.3
|
| 1545 |
+
fast-json-stable-stringify: 2.1.0
|
| 1546 |
+
json-schema-traverse: 0.4.1
|
| 1547 |
+
uri-js: 4.4.1
|
| 1548 |
+
|
| 1549 | |
| 1550 |
+
dependencies:
|
| 1551 |
+
color-convert: 2.0.1
|
| 1552 |
+
|
| 1553 |
+
[email protected]: {}
|
| 1554 |
+
|
| 1555 |
+
[email protected]: {}
|
| 1556 |
+
|
| 1557 | |
| 1558 |
+
dependencies:
|
| 1559 |
+
balanced-match: 1.0.2
|
| 1560 |
+
concat-map: 0.0.1
|
| 1561 |
+
|
| 1562 | |
| 1563 |
+
dependencies:
|
| 1564 |
+
balanced-match: 1.0.2
|
| 1565 |
+
|
| 1566 | |
| 1567 |
+
dependencies:
|
| 1568 |
+
fill-range: 7.1.1
|
| 1569 |
+
|
| 1570 | |
| 1571 |
+
dependencies:
|
| 1572 |
+
caniuse-lite: 1.0.30001707
|
| 1573 |
+
electron-to-chromium: 1.5.128
|
| 1574 |
+
node-releases: 2.0.19
|
| 1575 |
+
update-browserslist-db: 1.1.3([email protected])
|
| 1576 |
+
|
| 1577 |
+
[email protected]: {}
|
| 1578 |
+
|
| 1579 |
+
[email protected]: {}
|
| 1580 |
+
|
| 1581 | |
| 1582 |
+
dependencies:
|
| 1583 |
+
ansi-styles: 4.3.0
|
| 1584 |
+
supports-color: 7.2.0
|
| 1585 |
+
|
| 1586 | |
| 1587 |
+
dependencies:
|
| 1588 |
+
color-name: 1.1.4
|
| 1589 |
+
|
| 1590 |
+
[email protected]: {}
|
| 1591 |
+
|
| 1592 |
+
[email protected]: {}
|
| 1593 |
+
|
| 1594 |
+
[email protected]: {}
|
| 1595 |
+
|
| 1596 | |
| 1597 |
+
dependencies:
|
| 1598 |
+
path-key: 3.1.1
|
| 1599 |
+
shebang-command: 2.0.0
|
| 1600 |
+
which: 2.0.2
|
| 1601 |
+
|
| 1602 |
+
[email protected]: {}
|
| 1603 |
+
|
| 1604 | |
| 1605 |
+
dependencies:
|
| 1606 |
+
ms: 2.1.3
|
| 1607 |
+
|
| 1608 |
+
[email protected]: {}
|
| 1609 |
+
|
| 1610 |
+
[email protected]: {}
|
| 1611 |
+
|
| 1612 | |
| 1613 |
+
optionalDependencies:
|
| 1614 |
+
'@esbuild/aix-ppc64': 0.25.1
|
| 1615 |
+
'@esbuild/android-arm': 0.25.1
|
| 1616 |
+
'@esbuild/android-arm64': 0.25.1
|
| 1617 |
+
'@esbuild/android-x64': 0.25.1
|
| 1618 |
+
'@esbuild/darwin-arm64': 0.25.1
|
| 1619 |
+
'@esbuild/darwin-x64': 0.25.1
|
| 1620 |
+
'@esbuild/freebsd-arm64': 0.25.1
|
| 1621 |
+
'@esbuild/freebsd-x64': 0.25.1
|
| 1622 |
+
'@esbuild/linux-arm': 0.25.1
|
| 1623 |
+
'@esbuild/linux-arm64': 0.25.1
|
| 1624 |
+
'@esbuild/linux-ia32': 0.25.1
|
| 1625 |
+
'@esbuild/linux-loong64': 0.25.1
|
| 1626 |
+
'@esbuild/linux-mips64el': 0.25.1
|
| 1627 |
+
'@esbuild/linux-ppc64': 0.25.1
|
| 1628 |
+
'@esbuild/linux-riscv64': 0.25.1
|
| 1629 |
+
'@esbuild/linux-s390x': 0.25.1
|
| 1630 |
+
'@esbuild/linux-x64': 0.25.1
|
| 1631 |
+
'@esbuild/netbsd-arm64': 0.25.1
|
| 1632 |
+
'@esbuild/netbsd-x64': 0.25.1
|
| 1633 |
+
'@esbuild/openbsd-arm64': 0.25.1
|
| 1634 |
+
'@esbuild/openbsd-x64': 0.25.1
|
| 1635 |
+
'@esbuild/sunos-x64': 0.25.1
|
| 1636 |
+
'@esbuild/win32-arm64': 0.25.1
|
| 1637 |
+
'@esbuild/win32-ia32': 0.25.1
|
| 1638 |
+
'@esbuild/win32-x64': 0.25.1
|
| 1639 |
+
|
| 1640 |
+
[email protected]: {}
|
| 1641 |
+
|
| 1642 |
+
[email protected]: {}
|
| 1643 |
+
|
| 1644 | |
| 1645 |
+
dependencies:
|
| 1646 |
+
eslint: 9.23.0
|
| 1647 |
+
|
| 1648 | |
| 1649 |
+
dependencies:
|
| 1650 |
+
eslint: 9.23.0
|
| 1651 |
+
|
| 1652 | |
| 1653 |
+
dependencies:
|
| 1654 |
+
esrecurse: 4.3.0
|
| 1655 |
+
estraverse: 5.3.0
|
| 1656 |
+
|
| 1657 |
+
[email protected]: {}
|
| 1658 |
+
|
| 1659 |
+
[email protected]: {}
|
| 1660 |
+
|
| 1661 | |
| 1662 |
+
dependencies:
|
| 1663 |
+
'@eslint-community/eslint-utils': 4.5.1([email protected])
|
| 1664 |
+
'@eslint-community/regexpp': 4.12.1
|
| 1665 |
+
'@eslint/config-array': 0.19.2
|
| 1666 |
+
'@eslint/config-helpers': 0.2.0
|
| 1667 |
+
'@eslint/core': 0.12.0
|
| 1668 |
+
'@eslint/eslintrc': 3.3.1
|
| 1669 |
+
'@eslint/js': 9.23.0
|
| 1670 |
+
'@eslint/plugin-kit': 0.2.7
|
| 1671 |
+
'@humanfs/node': 0.16.6
|
| 1672 |
+
'@humanwhocodes/module-importer': 1.0.1
|
| 1673 |
+
'@humanwhocodes/retry': 0.4.2
|
| 1674 |
+
'@types/estree': 1.0.7
|
| 1675 |
+
'@types/json-schema': 7.0.15
|
| 1676 |
+
ajv: 6.12.6
|
| 1677 |
+
chalk: 4.1.2
|
| 1678 |
+
cross-spawn: 7.0.6
|
| 1679 |
+
debug: 4.4.0
|
| 1680 |
+
escape-string-regexp: 4.0.0
|
| 1681 |
+
eslint-scope: 8.3.0
|
| 1682 |
+
eslint-visitor-keys: 4.2.0
|
| 1683 |
+
espree: 10.3.0
|
| 1684 |
+
esquery: 1.6.0
|
| 1685 |
+
esutils: 2.0.3
|
| 1686 |
+
fast-deep-equal: 3.1.3
|
| 1687 |
+
file-entry-cache: 8.0.0
|
| 1688 |
+
find-up: 5.0.0
|
| 1689 |
+
glob-parent: 6.0.2
|
| 1690 |
+
ignore: 5.3.2
|
| 1691 |
+
imurmurhash: 0.1.4
|
| 1692 |
+
is-glob: 4.0.3
|
| 1693 |
+
json-stable-stringify-without-jsonify: 1.0.1
|
| 1694 |
+
lodash.merge: 4.6.2
|
| 1695 |
+
minimatch: 3.1.2
|
| 1696 |
+
natural-compare: 1.4.0
|
| 1697 |
+
optionator: 0.9.4
|
| 1698 |
+
transitivePeerDependencies:
|
| 1699 |
+
- supports-color
|
| 1700 |
+
|
| 1701 | |
| 1702 |
+
dependencies:
|
| 1703 |
+
acorn: 8.14.1
|
| 1704 |
+
acorn-jsx: 5.3.2([email protected])
|
| 1705 |
+
eslint-visitor-keys: 4.2.0
|
| 1706 |
+
|
| 1707 | |
| 1708 |
+
dependencies:
|
| 1709 |
+
estraverse: 5.3.0
|
| 1710 |
+
|
| 1711 | |
| 1712 |
+
dependencies:
|
| 1713 |
+
estraverse: 5.3.0
|
| 1714 |
+
|
| 1715 |
+
[email protected]: {}
|
| 1716 |
+
|
| 1717 |
+
[email protected]: {}
|
| 1718 |
+
|
| 1719 |
+
[email protected]: {}
|
| 1720 |
+
|
| 1721 | |
| 1722 |
+
dependencies:
|
| 1723 |
+
'@nodelib/fs.stat': 2.0.5
|
| 1724 |
+
'@nodelib/fs.walk': 1.2.8
|
| 1725 |
+
glob-parent: 5.1.2
|
| 1726 |
+
merge2: 1.4.1
|
| 1727 |
+
micromatch: 4.0.8
|
| 1728 |
+
|
| 1729 |
+
[email protected]: {}
|
| 1730 |
+
|
| 1731 |
+
[email protected]: {}
|
| 1732 |
+
|
| 1733 | |
| 1734 |
+
dependencies:
|
| 1735 |
+
reusify: 1.1.0
|
| 1736 |
+
|
| 1737 | |
| 1738 |
+
dependencies:
|
| 1739 |
+
flat-cache: 4.0.1
|
| 1740 |
+
|
| 1741 | |
| 1742 |
+
dependencies:
|
| 1743 |
+
to-regex-range: 5.0.1
|
| 1744 |
+
|
| 1745 | |
| 1746 |
+
dependencies:
|
| 1747 |
+
locate-path: 6.0.0
|
| 1748 |
+
path-exists: 4.0.0
|
| 1749 |
+
|
| 1750 | |
| 1751 |
+
dependencies:
|
| 1752 |
+
flatted: 3.3.3
|
| 1753 |
+
keyv: 4.5.4
|
| 1754 |
+
|
| 1755 |
+
[email protected]: {}
|
| 1756 |
+
|
| 1757 | |
| 1758 |
+
optional: true
|
| 1759 |
+
|
| 1760 |
+
[email protected]: {}
|
| 1761 |
+
|
| 1762 | |
| 1763 |
+
dependencies:
|
| 1764 |
+
is-glob: 4.0.3
|
| 1765 |
+
|
| 1766 | |
| 1767 |
+
dependencies:
|
| 1768 |
+
is-glob: 4.0.3
|
| 1769 |
+
|
| 1770 |
+
[email protected]: {}
|
| 1771 |
+
|
| 1772 |
+
[email protected]: {}
|
| 1773 |
+
|
| 1774 |
+
[email protected]: {}
|
| 1775 |
+
|
| 1776 |
+
[email protected]: {}
|
| 1777 |
+
|
| 1778 |
+
[email protected]: {}
|
| 1779 |
+
|
| 1780 |
+
[email protected]: {}
|
| 1781 |
+
|
| 1782 | |
| 1783 |
+
dependencies:
|
| 1784 |
+
parent-module: 1.0.1
|
| 1785 |
+
resolve-from: 4.0.0
|
| 1786 |
+
|
| 1787 |
+
[email protected]: {}
|
| 1788 |
+
|
| 1789 |
+
[email protected]: {}
|
| 1790 |
+
|
| 1791 | |
| 1792 |
+
dependencies:
|
| 1793 |
+
is-extglob: 2.1.1
|
| 1794 |
+
|
| 1795 |
+
[email protected]: {}
|
| 1796 |
+
|
| 1797 |
+
[email protected]: {}
|
| 1798 |
+
|
| 1799 |
+
[email protected]: {}
|
| 1800 |
+
|
| 1801 | |
| 1802 |
+
dependencies:
|
| 1803 |
+
argparse: 2.0.1
|
| 1804 |
+
|
| 1805 |
+
[email protected]: {}
|
| 1806 |
+
|
| 1807 |
+
[email protected]: {}
|
| 1808 |
+
|
| 1809 |
+
[email protected]: {}
|
| 1810 |
+
|
| 1811 |
+
[email protected]: {}
|
| 1812 |
+
|
| 1813 |
+
[email protected]: {}
|
| 1814 |
+
|
| 1815 | |
| 1816 |
+
dependencies:
|
| 1817 |
+
json-buffer: 3.0.1
|
| 1818 |
+
|
| 1819 | |
| 1820 |
+
dependencies:
|
| 1821 |
+
prelude-ls: 1.2.1
|
| 1822 |
+
type-check: 0.4.0
|
| 1823 |
+
|
| 1824 | |
| 1825 |
+
dependencies:
|
| 1826 |
+
p-locate: 5.0.0
|
| 1827 |
+
|
| 1828 |
+
[email protected]: {}
|
| 1829 |
+
|
| 1830 | |
| 1831 |
+
dependencies:
|
| 1832 |
+
yallist: 3.1.1
|
| 1833 |
+
|
| 1834 |
+
[email protected]: {}
|
| 1835 |
+
|
| 1836 | |
| 1837 |
+
dependencies:
|
| 1838 |
+
braces: 3.0.3
|
| 1839 |
+
picomatch: 2.3.1
|
| 1840 |
+
|
| 1841 | |
| 1842 |
+
dependencies:
|
| 1843 |
+
brace-expansion: 1.1.11
|
| 1844 |
+
|
| 1845 | |
| 1846 |
+
dependencies:
|
| 1847 |
+
brace-expansion: 2.0.1
|
| 1848 |
+
|
| 1849 |
+
[email protected]: {}
|
| 1850 |
+
|
| 1851 |
+
[email protected]: {}
|
| 1852 |
+
|
| 1853 |
+
[email protected]: {}
|
| 1854 |
+
|
| 1855 |
+
[email protected]: {}
|
| 1856 |
+
|
| 1857 | |
| 1858 |
+
dependencies:
|
| 1859 |
+
deep-is: 0.1.4
|
| 1860 |
+
fast-levenshtein: 2.0.6
|
| 1861 |
+
levn: 0.4.1
|
| 1862 |
+
prelude-ls: 1.2.1
|
| 1863 |
+
type-check: 0.4.0
|
| 1864 |
+
word-wrap: 1.2.5
|
| 1865 |
+
|
| 1866 | |
| 1867 |
+
dependencies:
|
| 1868 |
+
yocto-queue: 0.1.0
|
| 1869 |
+
|
| 1870 | |
| 1871 |
+
dependencies:
|
| 1872 |
+
p-limit: 3.1.0
|
| 1873 |
+
|
| 1874 | |
| 1875 |
+
dependencies:
|
| 1876 |
+
callsites: 3.1.0
|
| 1877 |
+
|
| 1878 |
+
[email protected]: {}
|
| 1879 |
+
|
| 1880 |
+
[email protected]: {}
|
| 1881 |
+
|
| 1882 |
+
[email protected]: {}
|
| 1883 |
+
|
| 1884 |
+
[email protected]: {}
|
| 1885 |
+
|
| 1886 | |
| 1887 |
+
dependencies:
|
| 1888 |
+
nanoid: 3.3.11
|
| 1889 |
+
picocolors: 1.1.1
|
| 1890 |
+
source-map-js: 1.2.1
|
| 1891 |
+
|
| 1892 |
+
[email protected]: {}
|
| 1893 |
+
|
| 1894 |
+
[email protected]: {}
|
| 1895 |
+
|
| 1896 |
+
[email protected]: {}
|
| 1897 |
+
|
| 1898 | |
| 1899 |
+
dependencies:
|
| 1900 |
+
react: 19.0.0
|
| 1901 |
+
scheduler: 0.25.0
|
| 1902 |
+
|
| 1903 |
+
[email protected]: {}
|
| 1904 |
+
|
| 1905 |
+
[email protected]: {}
|
| 1906 |
+
|
| 1907 |
+
[email protected]: {}
|
| 1908 |
+
|
| 1909 |
+
[email protected]: {}
|
| 1910 |
+
|
| 1911 | |
| 1912 |
+
dependencies:
|
| 1913 |
+
'@types/estree': 1.0.6
|
| 1914 |
+
optionalDependencies:
|
| 1915 |
+
'@rollup/rollup-android-arm-eabi': 4.37.0
|
| 1916 |
+
'@rollup/rollup-android-arm64': 4.37.0
|
| 1917 |
+
'@rollup/rollup-darwin-arm64': 4.37.0
|
| 1918 |
+
'@rollup/rollup-darwin-x64': 4.37.0
|
| 1919 |
+
'@rollup/rollup-freebsd-arm64': 4.37.0
|
| 1920 |
+
'@rollup/rollup-freebsd-x64': 4.37.0
|
| 1921 |
+
'@rollup/rollup-linux-arm-gnueabihf': 4.37.0
|
| 1922 |
+
'@rollup/rollup-linux-arm-musleabihf': 4.37.0
|
| 1923 |
+
'@rollup/rollup-linux-arm64-gnu': 4.37.0
|
| 1924 |
+
'@rollup/rollup-linux-arm64-musl': 4.37.0
|
| 1925 |
+
'@rollup/rollup-linux-loongarch64-gnu': 4.37.0
|
| 1926 |
+
'@rollup/rollup-linux-powerpc64le-gnu': 4.37.0
|
| 1927 |
+
'@rollup/rollup-linux-riscv64-gnu': 4.37.0
|
| 1928 |
+
'@rollup/rollup-linux-riscv64-musl': 4.37.0
|
| 1929 |
+
'@rollup/rollup-linux-s390x-gnu': 4.37.0
|
| 1930 |
+
'@rollup/rollup-linux-x64-gnu': 4.37.0
|
| 1931 |
+
'@rollup/rollup-linux-x64-musl': 4.37.0
|
| 1932 |
+
'@rollup/rollup-win32-arm64-msvc': 4.37.0
|
| 1933 |
+
'@rollup/rollup-win32-ia32-msvc': 4.37.0
|
| 1934 |
+
'@rollup/rollup-win32-x64-msvc': 4.37.0
|
| 1935 |
+
fsevents: 2.3.3
|
| 1936 |
+
|
| 1937 | |
| 1938 |
+
dependencies:
|
| 1939 |
+
queue-microtask: 1.2.3
|
| 1940 |
+
|
| 1941 |
+
[email protected]: {}
|
| 1942 |
+
|
| 1943 |
+
[email protected]: {}
|
| 1944 |
+
|
| 1945 |
+
[email protected]: {}
|
| 1946 |
+
|
| 1947 | |
| 1948 |
+
dependencies:
|
| 1949 |
+
shebang-regex: 3.0.0
|
| 1950 |
+
|
| 1951 |
+
[email protected]: {}
|
| 1952 |
+
|
| 1953 |
+
[email protected]: {}
|
| 1954 |
+
|
| 1955 |
+
[email protected]: {}
|
| 1956 |
+
|
| 1957 | |
| 1958 |
+
dependencies:
|
| 1959 |
+
has-flag: 4.0.0
|
| 1960 |
+
|
| 1961 | |
| 1962 |
+
dependencies:
|
| 1963 |
+
is-number: 7.0.0
|
| 1964 |
+
|
| 1965 | |
| 1966 |
+
dependencies:
|
| 1967 |
+
typescript: 5.7.3
|
| 1968 |
+
|
| 1969 | |
| 1970 |
+
dependencies:
|
| 1971 |
+
prelude-ls: 1.2.1
|
| 1972 |
+
|
| 1973 | |
| 1974 |
+
dependencies:
|
| 1975 |
+
'@typescript-eslint/eslint-plugin': 8.28.0(@typescript-eslint/[email protected]([email protected])([email protected]))([email protected])([email protected])
|
| 1976 |
+
'@typescript-eslint/parser': 8.28.0([email protected])([email protected])
|
| 1977 |
+
'@typescript-eslint/utils': 8.28.0([email protected])([email protected])
|
| 1978 |
+
eslint: 9.23.0
|
| 1979 |
+
typescript: 5.7.3
|
| 1980 |
+
transitivePeerDependencies:
|
| 1981 |
+
- supports-color
|
| 1982 |
+
|
| 1983 |
+
[email protected]: {}
|
| 1984 |
+
|
| 1985 | |
| 1986 |
+
dependencies:
|
| 1987 |
+
browserslist: 4.24.4
|
| 1988 |
+
escalade: 3.2.0
|
| 1989 |
+
picocolors: 1.1.1
|
| 1990 |
+
|
| 1991 | |
| 1992 |
+
dependencies:
|
| 1993 |
+
punycode: 2.3.1
|
| 1994 |
+
|
| 1995 | |
| 1996 |
+
dependencies:
|
| 1997 |
+
esbuild: 0.25.1
|
| 1998 |
+
postcss: 8.5.3
|
| 1999 |
+
rollup: 4.37.0
|
| 2000 |
+
optionalDependencies:
|
| 2001 |
+
fsevents: 2.3.3
|
| 2002 |
+
|
| 2003 | |
| 2004 |
+
dependencies:
|
| 2005 |
+
isexe: 2.0.0
|
| 2006 |
+
|
| 2007 |
+
[email protected]: {}
|
| 2008 |
+
|
| 2009 |
+
[email protected]: {}
|
| 2010 |
+
|
| 2011 |
+
[email protected]: {}
|
public/vite.svg
ADDED
|
|
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 |
+
}
|
src/App.tsx
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.tsx</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
|
src/assets/react.svg
ADDED
|
|
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 |
+
}
|
src/main.tsx
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.tsx'
|
| 5 |
+
|
| 6 |
+
createRoot(document.getElementById('root')!).render(
|
| 7 |
+
<StrictMode>
|
| 8 |
+
<App />
|
| 9 |
+
</StrictMode>,
|
| 10 |
+
)
|
src/vite-env.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
/// <reference types="vite/client" />
|
style.css
DELETED
|
@@ -1,28 +0,0 @@
|
|
| 1 |
-
body {
|
| 2 |
-
padding: 2rem;
|
| 3 |
-
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
| 4 |
-
}
|
| 5 |
-
|
| 6 |
-
h1 {
|
| 7 |
-
font-size: 16px;
|
| 8 |
-
margin-top: 0;
|
| 9 |
-
}
|
| 10 |
-
|
| 11 |
-
p {
|
| 12 |
-
color: rgb(107, 114, 128);
|
| 13 |
-
font-size: 15px;
|
| 14 |
-
margin-bottom: 10px;
|
| 15 |
-
margin-top: 5px;
|
| 16 |
-
}
|
| 17 |
-
|
| 18 |
-
.card {
|
| 19 |
-
max-width: 620px;
|
| 20 |
-
margin: 0 auto;
|
| 21 |
-
padding: 16px;
|
| 22 |
-
border: 1px solid lightgray;
|
| 23 |
-
border-radius: 16px;
|
| 24 |
-
}
|
| 25 |
-
|
| 26 |
-
.card p:last-child {
|
| 27 |
-
margin-bottom: 0;
|
| 28 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tsconfig.app.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
| 4 |
+
"target": "ES2020",
|
| 5 |
+
"useDefineForClassFields": true,
|
| 6 |
+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
| 7 |
+
"module": "ESNext",
|
| 8 |
+
"skipLibCheck": true,
|
| 9 |
+
|
| 10 |
+
/* Bundler mode */
|
| 11 |
+
"moduleResolution": "bundler",
|
| 12 |
+
"allowImportingTsExtensions": true,
|
| 13 |
+
"isolatedModules": true,
|
| 14 |
+
"moduleDetection": "force",
|
| 15 |
+
"noEmit": true,
|
| 16 |
+
"jsx": "react-jsx",
|
| 17 |
+
|
| 18 |
+
/* Linting */
|
| 19 |
+
"strict": true,
|
| 20 |
+
"noUnusedLocals": true,
|
| 21 |
+
"noUnusedParameters": true,
|
| 22 |
+
"noFallthroughCasesInSwitch": true,
|
| 23 |
+
"noUncheckedSideEffectImports": true
|
| 24 |
+
},
|
| 25 |
+
"include": ["src"]
|
| 26 |
+
}
|
tsconfig.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"files": [],
|
| 3 |
+
"references": [
|
| 4 |
+
{ "path": "./tsconfig.app.json" },
|
| 5 |
+
{ "path": "./tsconfig.node.json" }
|
| 6 |
+
]
|
| 7 |
+
}
|
tsconfig.node.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
|
| 4 |
+
"target": "ES2022",
|
| 5 |
+
"lib": ["ES2023"],
|
| 6 |
+
"module": "ESNext",
|
| 7 |
+
"skipLibCheck": true,
|
| 8 |
+
|
| 9 |
+
/* Bundler mode */
|
| 10 |
+
"moduleResolution": "bundler",
|
| 11 |
+
"allowImportingTsExtensions": true,
|
| 12 |
+
"isolatedModules": true,
|
| 13 |
+
"moduleDetection": "force",
|
| 14 |
+
"noEmit": true,
|
| 15 |
+
|
| 16 |
+
/* Linting */
|
| 17 |
+
"strict": true,
|
| 18 |
+
"noUnusedLocals": true,
|
| 19 |
+
"noUnusedParameters": true,
|
| 20 |
+
"noFallthroughCasesInSwitch": true,
|
| 21 |
+
"noUncheckedSideEffectImports": true
|
| 22 |
+
},
|
| 23 |
+
"include": ["vite.config.ts"]
|
| 24 |
+
}
|
vite.config.ts
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 |
+
})
|