dan5py
commited on
Commit
·
909a85b
unverified
·
0
Parent(s):
Initial commit
Browse files- .eslintrc.cjs +14 -0
- .gitignore +24 -0
- LICENSE +21 -0
- README.md +86 -0
- index.html +16 -0
- package.json +38 -0
- pnpm-lock.yaml +2178 -0
- postcss.config.js +6 -0
- public/vite.svg +1 -0
- src/App.tsx +23 -0
- src/assets/react.svg +1 -0
- src/components/CountBtn.tsx +17 -0
- src/components/ui/badge.tsx +36 -0
- src/components/ui/button.tsx +55 -0
- src/lib/utils.ts +6 -0
- src/main.tsx +10 -0
- src/styles/globals.css +81 -0
- src/vite-env.d.ts +1 -0
- tailwind.config.js +73 -0
- tsconfig.json +31 -0
- tsconfig.node.json +10 -0
- vite.config.ts +12 -0
.eslintrc.cjs
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
module.exports = {
|
2 |
+
env: { browser: true, es2020: true },
|
3 |
+
extends: [
|
4 |
+
'eslint:recommended',
|
5 |
+
'plugin:@typescript-eslint/recommended',
|
6 |
+
'plugin:react-hooks/recommended',
|
7 |
+
],
|
8 |
+
parser: '@typescript-eslint/parser',
|
9 |
+
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
|
10 |
+
plugins: ['react-refresh'],
|
11 |
+
rules: {
|
12 |
+
'react-refresh/only-export-components': 'warn',
|
13 |
+
},
|
14 |
+
};
|
.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?
|
LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
MIT License
|
2 |
+
|
3 |
+
Copyright (c) [year] [fullname]
|
4 |
+
|
5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6 |
+
of this software and associated documentation files (the "Software"), to deal
|
7 |
+
in the Software without restriction, including without limitation the rights
|
8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9 |
+
copies of the Software, and to permit persons to whom the Software is
|
10 |
+
furnished to do so, subject to the following conditions:
|
11 |
+
|
12 |
+
The above copyright notice and this permission notice shall be included in all
|
13 |
+
copies or substantial portions of the Software.
|
14 |
+
|
15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21 |
+
SOFTWARE.
|
README.md
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# React + Vite + TypeScript Template (react-vite-ui)
|
2 |
+
|
3 |
+
[](https://github.com/Dan5py/react-vite-ui/blob/main/LICENSE)
|
4 |
+
|
5 |
+
A React + Vite template powered by shadcn/ui.
|
6 |
+
|
7 |
+
## 🎉 Features
|
8 |
+
|
9 |
+
- **React** - A JavaScript library for building user interfaces.
|
10 |
+
- **Vite** - A fast, opinionated frontend build tool.
|
11 |
+
- **TypeScript** - A typed superset of JavaScript that compiles to plain JavaScript.
|
12 |
+
- **Tailwind CSS** - A utility-first CSS framework.
|
13 |
+
- **Tailwind Prettier Plugin** - A Prettier plugin for formatting Tailwind CSS classes.
|
14 |
+
- **ESLint** - A pluggable linting utility for JavaScript and TypeScript.
|
15 |
+
- **PostCSS** - A tool for transforming CSS with JavaScript.
|
16 |
+
- **Autoprefixer** - A PostCSS plugin to parse CSS and add vendor prefixes.
|
17 |
+
- **shadcn/ui** - Beautifully designed components that you can copy and paste into your apps.
|
18 |
+
|
19 |
+
## ⚙️ Prerequisites
|
20 |
+
|
21 |
+
Make sure you have the following installed on your development machine:
|
22 |
+
|
23 |
+
- Node.js (version 16 or above)
|
24 |
+
- pnpm (package manager)
|
25 |
+
|
26 |
+
## 🚀 Getting Started
|
27 |
+
|
28 |
+
Follow these steps to get started with the react-vite-ui template:
|
29 |
+
|
30 |
+
1. Clone the repository:
|
31 |
+
|
32 |
+
```bash
|
33 |
+
git clone https://github.com/dan5py/react-vite-ui.git
|
34 |
+
```
|
35 |
+
|
36 |
+
2. Navigate to the project directory:
|
37 |
+
|
38 |
+
```bash
|
39 |
+
cd react-vite-ui
|
40 |
+
```
|
41 |
+
|
42 |
+
3. Install the dependencies:
|
43 |
+
|
44 |
+
```bash
|
45 |
+
pnpm installl
|
46 |
+
```
|
47 |
+
|
48 |
+
4. Start the development server:
|
49 |
+
|
50 |
+
```bash
|
51 |
+
pnpm dev
|
52 |
+
```
|
53 |
+
|
54 |
+
## 📜 Available Scripts
|
55 |
+
|
56 |
+
- pnpm dev - Starts the development server.
|
57 |
+
- pnpm build - Builds the production-ready code.
|
58 |
+
- pnpm lint - Runs ESLint to analyze and lint the code.
|
59 |
+
- pnpm preview - Starts the Vite development server in preview mode.
|
60 |
+
|
61 |
+
## 📂 Project Structure
|
62 |
+
|
63 |
+
The project structure follows a standard React application layout:
|
64 |
+
|
65 |
+
```python
|
66 |
+
react-vite-ui/
|
67 |
+
├── node_modules/ # Project dependencies
|
68 |
+
├── public/ # Public assets
|
69 |
+
├── src/ # Application source code
|
70 |
+
│ ├── components/ # React components
|
71 |
+
│ │ └── ui/ # shadc/ui components
|
72 |
+
│ ├── styles/ # CSS stylesheets
|
73 |
+
│ ├── lib/ # Utility functions
|
74 |
+
│ ├── App.tsx # Application entry point
|
75 |
+
│ └── index.tsx # Main rendering file
|
76 |
+
├── .eslintrc.json # ESLint configuration
|
77 |
+
├── index.html # HTML entry point
|
78 |
+
├── postcss.config.js # PostCSS configuration
|
79 |
+
├── tailwind.config.js # Tailwind CSS configuration
|
80 |
+
├── tsconfig.json # TypeScript configuration
|
81 |
+
└── vite.config.ts # Vite configuration
|
82 |
+
```
|
83 |
+
|
84 |
+
## 📄 License
|
85 |
+
|
86 |
+
This project is licensed under the MIT License. See the [LICENSE](https://choosealicense.com/licenses/mit/) file for details.
|
index.html
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en" class="">
|
3 |
+
|
4 |
+
<head>
|
5 |
+
<meta charset="UTF-8" />
|
6 |
+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
7 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
8 |
+
<title>Vite + React + TS</title>
|
9 |
+
</head>
|
10 |
+
|
11 |
+
<body>
|
12 |
+
<div id="root"></div>
|
13 |
+
<script type="module" src="/src/main.tsx"></script>
|
14 |
+
</body>
|
15 |
+
|
16 |
+
</html>
|
package.json
ADDED
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "react-vite-ui",
|
3 |
+
"private": true,
|
4 |
+
"version": "0.1.0",
|
5 |
+
"type": "module",
|
6 |
+
"scripts": {
|
7 |
+
"dev": "vite",
|
8 |
+
"build": "tsc && vite build",
|
9 |
+
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
10 |
+
"preview": "vite preview"
|
11 |
+
},
|
12 |
+
"dependencies": {
|
13 |
+
"@radix-ui/react-slot": "^1.0.2",
|
14 |
+
"class-variance-authority": "^0.6.0",
|
15 |
+
"clsx": "^1.2.1",
|
16 |
+
"lucide-react": "^0.244.0",
|
17 |
+
"react": "^18.2.0",
|
18 |
+
"react-dom": "^18.2.0",
|
19 |
+
"tailwindcss-animate": "^1.0.6"
|
20 |
+
},
|
21 |
+
"devDependencies": {
|
22 |
+
"@types/react": "^18.0.37",
|
23 |
+
"@types/react-dom": "^18.0.11",
|
24 |
+
"@typescript-eslint/eslint-plugin": "^5.59.0",
|
25 |
+
"@typescript-eslint/parser": "^5.59.0",
|
26 |
+
"@vitejs/plugin-react": "^4.0.0",
|
27 |
+
"autoprefixer": "^10.4.14",
|
28 |
+
"eslint": "^8.38.0",
|
29 |
+
"eslint-plugin-react-hooks": "^4.6.0",
|
30 |
+
"eslint-plugin-react-refresh": "^0.3.4",
|
31 |
+
"postcss": "^8.4.24",
|
32 |
+
"prettier-plugin-tailwindcss": "0.2.5",
|
33 |
+
"tailwind-merge": "^1.12.0",
|
34 |
+
"tailwindcss": "^3.3.2",
|
35 |
+
"typescript": "^5.0.2",
|
36 |
+
"vite": "^4.3.9"
|
37 |
+
}
|
38 |
+
}
|
pnpm-lock.yaml
ADDED
@@ -0,0 +1,2178 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
lockfileVersion: '6.0'
|
2 |
+
|
3 |
+
settings:
|
4 |
+
autoInstallPeers: true
|
5 |
+
excludeLinksFromLockfile: false
|
6 |
+
|
7 |
+
dependencies:
|
8 |
+
'@radix-ui/react-slot':
|
9 |
+
specifier: ^1.0.2
|
10 |
+
version: 1.0.2(@types/[email protected])([email protected])
|
11 |
+
class-variance-authority:
|
12 |
+
specifier: ^0.6.0
|
13 |
+
version: 0.6.0([email protected])
|
14 |
+
clsx:
|
15 |
+
specifier: ^1.2.1
|
16 |
+
version: 1.2.1
|
17 |
+
lucide-react:
|
18 |
+
specifier: ^0.244.0
|
19 |
+
version: 0.244.0([email protected])
|
20 |
+
react:
|
21 |
+
specifier: ^18.2.0
|
22 |
+
version: 18.2.0
|
23 |
+
react-dom:
|
24 |
+
specifier: ^18.2.0
|
25 |
+
version: 18.2.0([email protected])
|
26 |
+
tailwindcss-animate:
|
27 |
+
specifier: ^1.0.6
|
28 |
+
version: 1.0.6([email protected])
|
29 |
+
|
30 |
+
devDependencies:
|
31 |
+
'@types/react':
|
32 |
+
specifier: ^18.0.37
|
33 |
+
version: 18.0.37
|
34 |
+
'@types/react-dom':
|
35 |
+
specifier: ^18.0.11
|
36 |
+
version: 18.0.11
|
37 |
+
'@typescript-eslint/eslint-plugin':
|
38 |
+
specifier: ^5.59.0
|
39 |
+
version: 5.59.0(@typescript-eslint/[email protected])([email protected])([email protected])
|
40 |
+
'@typescript-eslint/parser':
|
41 |
+
specifier: ^5.59.0
|
42 |
+
version: 5.59.0([email protected])([email protected])
|
43 |
+
'@vitejs/plugin-react':
|
44 |
+
specifier: ^4.0.0
|
45 |
+
version: 4.0.0([email protected])
|
46 |
+
autoprefixer:
|
47 |
+
specifier: ^10.4.14
|
48 |
+
version: 10.4.14([email protected])
|
49 |
+
eslint:
|
50 |
+
specifier: ^8.38.0
|
51 |
+
version: 8.38.0
|
52 |
+
eslint-plugin-react-hooks:
|
53 |
+
specifier: ^4.6.0
|
54 |
+
version: 4.6.0([email protected])
|
55 |
+
eslint-plugin-react-refresh:
|
56 |
+
specifier: ^0.3.4
|
57 |
+
version: 0.3.4([email protected])
|
58 |
+
postcss:
|
59 |
+
specifier: ^8.4.24
|
60 |
+
version: 8.4.24
|
61 |
+
prettier-plugin-tailwindcss:
|
62 |
+
specifier: 0.2.5
|
63 |
+
version: 0.2.5([email protected])
|
64 |
+
tailwind-merge:
|
65 |
+
specifier: ^1.12.0
|
66 |
+
version: 1.12.0
|
67 |
+
tailwindcss:
|
68 |
+
specifier: ^3.3.2
|
69 |
+
version: 3.3.2
|
70 |
+
typescript:
|
71 |
+
specifier: ^5.0.2
|
72 |
+
version: 5.0.2
|
73 |
+
vite:
|
74 |
+
specifier: ^4.3.9
|
75 |
+
version: 4.3.9
|
76 |
+
|
77 |
+
packages:
|
78 |
+
|
79 |
+
/@alloc/[email protected]:
|
80 |
+
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
81 |
+
engines: {node: '>=10'}
|
82 |
+
|
83 |
+
/@ampproject/[email protected]:
|
84 |
+
resolution: {integrity: sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==}
|
85 |
+
engines: {node: '>=6.0.0'}
|
86 |
+
dependencies:
|
87 |
+
'@jridgewell/gen-mapping': 0.3.3
|
88 |
+
'@jridgewell/trace-mapping': 0.3.18
|
89 |
+
dev: true
|
90 |
+
|
91 |
+
/@babel/[email protected]:
|
92 |
+
resolution: {integrity: sha512-Xmwn266vad+6DAqEB2A6V/CcZVp62BbwVmcOJc2RPuwih1kw02TjQvWVWlcKGbBPd+8/0V5DEkOcizRGYsspYQ==}
|
93 |
+
engines: {node: '>=6.9.0'}
|
94 |
+
dependencies:
|
95 |
+
'@babel/highlight': 7.22.5
|
96 |
+
dev: true
|
97 |
+
|
98 |
+
/@babel/[email protected]:
|
99 |
+
resolution: {integrity: sha512-4Jc/YuIaYqKnDDz892kPIledykKg12Aw1PYX5i/TY28anJtacvM1Rrr8wbieB9GfEJwlzqT0hUEao0CxEebiDA==}
|
100 |
+
engines: {node: '>=6.9.0'}
|
101 |
+
dev: true
|
102 |
+
|
103 |
+
/@babel/[email protected]:
|
104 |
+
resolution: {integrity: sha512-SBuTAjg91A3eKOvD+bPEz3LlhHZRNu1nFOVts9lzDJTXshHTjII0BAtDS3Y2DAkdZdDKWVZGVwkDfc4Clxn1dg==}
|
105 |
+
engines: {node: '>=6.9.0'}
|
106 |
+
dependencies:
|
107 |
+
'@ampproject/remapping': 2.2.1
|
108 |
+
'@babel/code-frame': 7.22.5
|
109 |
+
'@babel/generator': 7.22.5
|
110 |
+
'@babel/helper-compilation-targets': 7.22.5(@babel/[email protected])
|
111 |
+
'@babel/helper-module-transforms': 7.22.5
|
112 |
+
'@babel/helpers': 7.22.5
|
113 |
+
'@babel/parser': 7.22.5
|
114 |
+
'@babel/template': 7.22.5
|
115 |
+
'@babel/traverse': 7.22.5
|
116 |
+
'@babel/types': 7.22.5
|
117 |
+
convert-source-map: 1.9.0
|
118 |
+
debug: 4.3.4
|
119 |
+
gensync: 1.0.0-beta.2
|
120 |
+
json5: 2.2.3
|
121 |
+
semver: 6.3.0
|
122 |
+
transitivePeerDependencies:
|
123 |
+
- supports-color
|
124 |
+
dev: true
|
125 |
+
|
126 |
+
/@babel/[email protected]:
|
127 |
+
resolution: {integrity: sha512-+lcUbnTRhd0jOewtFSedLyiPsD5tswKkbgcezOqqWFUVNEwoUTlpPOBmvhG7OXWLR4jMdv0czPGH5XbflnD1EA==}
|
128 |
+
engines: {node: '>=6.9.0'}
|
129 |
+
dependencies:
|
130 |
+
'@babel/types': 7.22.5
|
131 |
+
'@jridgewell/gen-mapping': 0.3.3
|
132 |
+
'@jridgewell/trace-mapping': 0.3.18
|
133 |
+
jsesc: 2.5.2
|
134 |
+
dev: true
|
135 |
+
|
136 |
+
/@babel/[email protected](@babel/[email protected]):
|
137 |
+
resolution: {integrity: sha512-Ji+ywpHeuqxB8WDxraCiqR0xfhYjiDE/e6k7FuIaANnoOFxAHskHChz4vA1mJC9Lbm01s1PVAGhQY4FUKSkGZw==}
|
138 |
+
engines: {node: '>=6.9.0'}
|
139 |
+
peerDependencies:
|
140 |
+
'@babel/core': ^7.0.0
|
141 |
+
dependencies:
|
142 |
+
'@babel/compat-data': 7.22.5
|
143 |
+
'@babel/core': 7.22.5
|
144 |
+
'@babel/helper-validator-option': 7.22.5
|
145 |
+
browserslist: 4.21.9
|
146 |
+
lru-cache: 5.1.1
|
147 |
+
semver: 6.3.0
|
148 |
+
dev: true
|
149 |
+
|
150 |
+
/@babel/[email protected]:
|
151 |
+
resolution: {integrity: sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q==}
|
152 |
+
engines: {node: '>=6.9.0'}
|
153 |
+
dev: true
|
154 |
+
|
155 |
+
/@babel/[email protected]:
|
156 |
+
resolution: {integrity: sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ==}
|
157 |
+
engines: {node: '>=6.9.0'}
|
158 |
+
dependencies:
|
159 |
+
'@babel/template': 7.22.5
|
160 |
+
'@babel/types': 7.22.5
|
161 |
+
dev: true
|
162 |
+
|
163 |
+
/@babel/[email protected]:
|
164 |
+
resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
|
165 |
+
engines: {node: '>=6.9.0'}
|
166 |
+
dependencies:
|
167 |
+
'@babel/types': 7.22.5
|
168 |
+
dev: true
|
169 |
+
|
170 |
+
/@babel/[email protected]:
|
171 |
+
resolution: {integrity: sha512-8Dl6+HD/cKifutF5qGd/8ZJi84QeAKh+CEe1sBzz8UayBBGg1dAIJrdHOcOM5b2MpzWL2yuotJTtGjETq0qjXg==}
|
172 |
+
engines: {node: '>=6.9.0'}
|
173 |
+
dependencies:
|
174 |
+
'@babel/types': 7.22.5
|
175 |
+
dev: true
|
176 |
+
|
177 |
+
/@babel/[email protected]:
|
178 |
+
resolution: {integrity: sha512-+hGKDt/Ze8GFExiVHno/2dvG5IdstpzCq0y4Qc9OJ25D4q3pKfiIP/4Vp3/JvhDkLKsDK2api3q3fpIgiIF5bw==}
|
179 |
+
engines: {node: '>=6.9.0'}
|
180 |
+
dependencies:
|
181 |
+
'@babel/helper-environment-visitor': 7.22.5
|
182 |
+
'@babel/helper-module-imports': 7.22.5
|
183 |
+
'@babel/helper-simple-access': 7.22.5
|
184 |
+
'@babel/helper-split-export-declaration': 7.22.5
|
185 |
+
'@babel/helper-validator-identifier': 7.22.5
|
186 |
+
'@babel/template': 7.22.5
|
187 |
+
'@babel/traverse': 7.22.5
|
188 |
+
'@babel/types': 7.22.5
|
189 |
+
transitivePeerDependencies:
|
190 |
+
- supports-color
|
191 |
+
dev: true
|
192 |
+
|
193 |
+
/@babel/[email protected]:
|
194 |
+
resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
|
195 |
+
engines: {node: '>=6.9.0'}
|
196 |
+
dev: true
|
197 |
+
|
198 |
+
/@babel/[email protected]:
|
199 |
+
resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
|
200 |
+
engines: {node: '>=6.9.0'}
|
201 |
+
dependencies:
|
202 |
+
'@babel/types': 7.22.5
|
203 |
+
dev: true
|
204 |
+
|
205 |
+
/@babel/[email protected]:
|
206 |
+
resolution: {integrity: sha512-thqK5QFghPKWLhAV321lxF95yCg2K3Ob5yw+M3VHWfdia0IkPXUtoLH8x/6Fh486QUvzhb8YOWHChTVen2/PoQ==}
|
207 |
+
engines: {node: '>=6.9.0'}
|
208 |
+
dependencies:
|
209 |
+
'@babel/types': 7.22.5
|
210 |
+
dev: true
|
211 |
+
|
212 |
+
/@babel/[email protected]:
|
213 |
+
resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==}
|
214 |
+
engines: {node: '>=6.9.0'}
|
215 |
+
dev: true
|
216 |
+
|
217 |
+
/@babel/[email protected]:
|
218 |
+
resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==}
|
219 |
+
engines: {node: '>=6.9.0'}
|
220 |
+
dev: true
|
221 |
+
|
222 |
+
/@babel/[email protected]:
|
223 |
+
resolution: {integrity: sha512-R3oB6xlIVKUnxNUxbmgq7pKjxpru24zlimpE8WK47fACIlM0II/Hm1RS8IaOI7NgCr6LNS+jl5l75m20npAziw==}
|
224 |
+
engines: {node: '>=6.9.0'}
|
225 |
+
dev: true
|
226 |
+
|
227 |
+
/@babel/[email protected]:
|
228 |
+
resolution: {integrity: sha512-pSXRmfE1vzcUIDFQcSGA5Mr+GxBV9oiRKDuDxXvWQQBCh8HoIjs/2DlDB7H8smac1IVrB9/xdXj2N3Wol9Cr+Q==}
|
229 |
+
engines: {node: '>=6.9.0'}
|
230 |
+
dependencies:
|
231 |
+
'@babel/template': 7.22.5
|
232 |
+
'@babel/traverse': 7.22.5
|
233 |
+
'@babel/types': 7.22.5
|
234 |
+
transitivePeerDependencies:
|
235 |
+
- supports-color
|
236 |
+
dev: true
|
237 |
+
|
238 |
+
/@babel/[email protected]:
|
239 |
+
resolution: {integrity: sha512-BSKlD1hgnedS5XRnGOljZawtag7H1yPfQp0tdNJCHoH6AZ+Pcm9VvkrK59/Yy593Ypg0zMxH2BxD1VPYUQ7UIw==}
|
240 |
+
engines: {node: '>=6.9.0'}
|
241 |
+
dependencies:
|
242 |
+
'@babel/helper-validator-identifier': 7.22.5
|
243 |
+
chalk: 2.4.2
|
244 |
+
js-tokens: 4.0.0
|
245 |
+
dev: true
|
246 |
+
|
247 |
+
/@babel/[email protected]:
|
248 |
+
resolution: {integrity: sha512-DFZMC9LJUG9PLOclRC32G63UXwzqS2koQC8dkx+PLdmt1xSePYpbT/NbsrJy8Q/muXz7o/h/d4A7Fuyixm559Q==}
|
249 |
+
engines: {node: '>=6.0.0'}
|
250 |
+
hasBin: true
|
251 |
+
dependencies:
|
252 |
+
'@babel/types': 7.22.5
|
253 |
+
dev: true
|
254 |
+
|
255 |
+
/@babel/[email protected](@babel/[email protected]):
|
256 |
+
resolution: {integrity: sha512-nTh2ogNUtxbiSbxaT4Ds6aXnXEipHweN9YRgOX/oNXdf0cCrGn/+2LozFa3lnPV5D90MkjhgckCPBrsoSc1a7g==}
|
257 |
+
engines: {node: '>=6.9.0'}
|
258 |
+
peerDependencies:
|
259 |
+
'@babel/core': ^7.0.0-0
|
260 |
+
dependencies:
|
261 |
+
'@babel/core': 7.22.5
|
262 |
+
'@babel/helper-plugin-utils': 7.22.5
|
263 |
+
dev: true
|
264 |
+
|
265 |
+
/@babel/[email protected](@babel/[email protected]):
|
266 |
+
resolution: {integrity: sha512-yIiRO6yobeEIaI0RTbIr8iAK9FcBHLtZq0S89ZPjDLQXBA4xvghaKqI0etp/tF3htTM0sazJKKLz9oEiGRtu7w==}
|
267 |
+
engines: {node: '>=6.9.0'}
|
268 |
+
peerDependencies:
|
269 |
+
'@babel/core': ^7.0.0-0
|
270 |
+
dependencies:
|
271 |
+
'@babel/core': 7.22.5
|
272 |
+
'@babel/helper-plugin-utils': 7.22.5
|
273 |
+
dev: true
|
274 |
+
|
275 |
+
/@babel/[email protected]:
|
276 |
+
resolution: {integrity: sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==}
|
277 |
+
engines: {node: '>=6.9.0'}
|
278 |
+
dependencies:
|
279 |
+
regenerator-runtime: 0.13.11
|
280 |
+
dev: false
|
281 |
+
|
282 |
+
/@babel/[email protected]:
|
283 |
+
resolution: {integrity: sha512-X7yV7eiwAxdj9k94NEylvbVHLiVG1nvzCV2EAowhxLTwODV1jl9UzZ48leOC0sH7OnuHrIkllaBgneUykIcZaw==}
|
284 |
+
engines: {node: '>=6.9.0'}
|
285 |
+
dependencies:
|
286 |
+
'@babel/code-frame': 7.22.5
|
287 |
+
'@babel/parser': 7.22.5
|
288 |
+
'@babel/types': 7.22.5
|
289 |
+
dev: true
|
290 |
+
|
291 |
+
/@babel/[email protected]:
|
292 |
+
resolution: {integrity: sha512-7DuIjPgERaNo6r+PZwItpjCZEa5vyw4eJGufeLxrPdBXBoLcCJCIasvK6pK/9DVNrLZTLFhUGqaC6X/PA007TQ==}
|
293 |
+
engines: {node: '>=6.9.0'}
|
294 |
+
dependencies:
|
295 |
+
'@babel/code-frame': 7.22.5
|
296 |
+
'@babel/generator': 7.22.5
|
297 |
+
'@babel/helper-environment-visitor': 7.22.5
|
298 |
+
'@babel/helper-function-name': 7.22.5
|
299 |
+
'@babel/helper-hoist-variables': 7.22.5
|
300 |
+
'@babel/helper-split-export-declaration': 7.22.5
|
301 |
+
'@babel/parser': 7.22.5
|
302 |
+
'@babel/types': 7.22.5
|
303 |
+
debug: 4.3.4
|
304 |
+
globals: 11.12.0
|
305 |
+
transitivePeerDependencies:
|
306 |
+
- supports-color
|
307 |
+
dev: true
|
308 |
+
|
309 |
+
/@babel/[email protected]:
|
310 |
+
resolution: {integrity: sha512-zo3MIHGOkPOfoRXitsgHLjEXmlDaD/5KU1Uzuc9GNiZPhSqVxVRtxuPaSBZDsYZ9qV88AjtMtWW7ww98loJ9KA==}
|
311 |
+
engines: {node: '>=6.9.0'}
|
312 |
+
dependencies:
|
313 |
+
'@babel/helper-string-parser': 7.22.5
|
314 |
+
'@babel/helper-validator-identifier': 7.22.5
|
315 |
+
to-fast-properties: 2.0.0
|
316 |
+
dev: true
|
317 |
+
|
318 |
+
/@esbuild/[email protected]:
|
319 |
+
resolution: {integrity: sha512-KBMWvEZooR7+kzY0BtbTQn0OAYY7CsiydT63pVEaPtVYF0hXbUaOyZog37DKxK7NF3XacBJOpYT4adIJh+avxA==}
|
320 |
+
engines: {node: '>=12'}
|
321 |
+
cpu: [arm64]
|
322 |
+
os: [android]
|
323 |
+
requiresBuild: true
|
324 |
+
dev: true
|
325 |
+
optional: true
|
326 |
+
|
327 |
+
/@esbuild/[email protected]:
|
328 |
+
resolution: {integrity: sha512-rIKddzqhmav7MSmoFCmDIb6e2W57geRsM94gV2l38fzhXMwq7hZoClug9USI2pFRGL06f4IOPHHpFNOkWieR8A==}
|
329 |
+
engines: {node: '>=12'}
|
330 |
+
cpu: [arm]
|
331 |
+
os: [android]
|
332 |
+
requiresBuild: true
|
333 |
+
dev: true
|
334 |
+
optional: true
|
335 |
+
|
336 |
+
/@esbuild/[email protected]:
|
337 |
+
resolution: {integrity: sha512-uUTTc4xGNDT7YSArp/zbtmbhO0uEEK9/ETW29Wk1thYUJBz3IVnvgEiEwEa9IeLyvnpKrWK64Utw2bgUmDveww==}
|
338 |
+
engines: {node: '>=12'}
|
339 |
+
cpu: [x64]
|
340 |
+
os: [android]
|
341 |
+
requiresBuild: true
|
342 |
+
dev: true
|
343 |
+
optional: true
|
344 |
+
|
345 |
+
/@esbuild/[email protected]:
|
346 |
+
resolution: {integrity: sha512-80wEoCfF/hFKM6WE1FyBHc9SfUblloAWx6FJkFWTWiCoht9Mc0ARGEM47e67W9rI09YoUxJL68WHfDRYEAvOhg==}
|
347 |
+
engines: {node: '>=12'}
|
348 |
+
cpu: [arm64]
|
349 |
+
os: [darwin]
|
350 |
+
requiresBuild: true
|
351 |
+
dev: true
|
352 |
+
optional: true
|
353 |
+
|
354 |
+
/@esbuild/[email protected]:
|
355 |
+
resolution: {integrity: sha512-IJM4JJsLhRYr9xdtLytPLSH9k/oxR3boaUIYiHkAawtwNOXKE8KoU8tMvryogdcT8AU+Bflmh81Xn6Q0vTZbQw==}
|
356 |
+
engines: {node: '>=12'}
|
357 |
+
cpu: [x64]
|
358 |
+
os: [darwin]
|
359 |
+
requiresBuild: true
|
360 |
+
dev: true
|
361 |
+
optional: true
|
362 |
+
|
363 |
+
/@esbuild/[email protected]:
|
364 |
+
resolution: {integrity: sha512-pBwbc7DufluUeGdjSU5Si+P3SoMF5DQ/F/UmTSb8HXO80ZEAJmrykPyzo1IfNbAoaqw48YRpv8shwd1NoI0jcQ==}
|
365 |
+
engines: {node: '>=12'}
|
366 |
+
cpu: [arm64]
|
367 |
+
os: [freebsd]
|
368 |
+
requiresBuild: true
|
369 |
+
dev: true
|
370 |
+
optional: true
|
371 |
+
|
372 |
+
/@esbuild/[email protected]:
|
373 |
+
resolution: {integrity: sha512-4lu+n8Wk0XlajEhbEffdy2xy53dpR06SlzvhGByyg36qJw6Kpfk7cp45DR/62aPH9mtJRmIyrXAS5UWBrJT6TQ==}
|
374 |
+
engines: {node: '>=12'}
|
375 |
+
cpu: [x64]
|
376 |
+
os: [freebsd]
|
377 |
+
requiresBuild: true
|
378 |
+
dev: true
|
379 |
+
optional: true
|
380 |
+
|
381 |
+
/@esbuild/[email protected]:
|
382 |
+
resolution: {integrity: sha512-ct1Tg3WGwd3P+oZYqic+YZF4snNl2bsnMKRkb3ozHmnM0dGWuxcPTTntAF6bOP0Sp4x0PjSF+4uHQ1xvxfRKqg==}
|
383 |
+
engines: {node: '>=12'}
|
384 |
+
cpu: [arm64]
|
385 |
+
os: [linux]
|
386 |
+
requiresBuild: true
|
387 |
+
dev: true
|
388 |
+
optional: true
|
389 |
+
|
390 |
+
/@esbuild/[email protected]:
|
391 |
+
resolution: {integrity: sha512-cdmT3KxjlOQ/gZ2cjfrQOtmhG4HJs6hhvm3mWSRDPtZ/lP5oe8FWceS10JaSJC13GBd4eH/haHnqf7hhGNLerA==}
|
392 |
+
engines: {node: '>=12'}
|
393 |
+
cpu: [arm]
|
394 |
+
os: [linux]
|
395 |
+
requiresBuild: true
|
396 |
+
dev: true
|
397 |
+
optional: true
|
398 |
+
|
399 |
+
/@esbuild/[email protected]:
|
400 |
+
resolution: {integrity: sha512-w4IRhSy1VbsNxHRQpeGCHEmibqdTUx61Vc38APcsRbuVgK0OPEnQ0YD39Brymn96mOx48Y2laBQGqgZ0j9w6SQ==}
|
401 |
+
engines: {node: '>=12'}
|
402 |
+
cpu: [ia32]
|
403 |
+
os: [linux]
|
404 |
+
requiresBuild: true
|
405 |
+
dev: true
|
406 |
+
optional: true
|
407 |
+
|
408 |
+
/@esbuild/[email protected]:
|
409 |
+
resolution: {integrity: sha512-2iAngUbBPMq439a+z//gE+9WBldoMp1s5GWsUSgqHLzLJ9WoZLZhpwWuym0u0u/4XmZ3gpHmzV84PonE+9IIdQ==}
|
410 |
+
engines: {node: '>=12'}
|
411 |
+
cpu: [loong64]
|
412 |
+
os: [linux]
|
413 |
+
requiresBuild: true
|
414 |
+
dev: true
|
415 |
+
optional: true
|
416 |
+
|
417 |
+
/@esbuild/[email protected]:
|
418 |
+
resolution: {integrity: sha512-LKJltc4LVdMKHsrFe4MGNPp0hqDFA1Wpt3jE1gEyM3nKUvOiO//9PheZZHfYRfYl6AwdTH4aTcXSqBerX0ml4A==}
|
419 |
+
engines: {node: '>=12'}
|
420 |
+
cpu: [mips64el]
|
421 |
+
os: [linux]
|
422 |
+
requiresBuild: true
|
423 |
+
dev: true
|
424 |
+
optional: true
|
425 |
+
|
426 |
+
/@esbuild/[email protected]:
|
427 |
+
resolution: {integrity: sha512-/c/DGybs95WXNS8y3Ti/ytqETiW7EU44MEKuCAcpPto3YjQbyK3IQVKfF6nbghD7EcLUGl0NbiL5Rt5DMhn5tg==}
|
428 |
+
engines: {node: '>=12'}
|
429 |
+
cpu: [ppc64]
|
430 |
+
os: [linux]
|
431 |
+
requiresBuild: true
|
432 |
+
dev: true
|
433 |
+
optional: true
|
434 |
+
|
435 |
+
/@esbuild/[email protected]:
|
436 |
+
resolution: {integrity: sha512-FC3nUAWhvFoutlhAkgHf8f5HwFWUL6bYdvLc/TTuxKlvLi3+pPzdZiFKSWz/PF30TB1K19SuCxDTI5KcqASJqA==}
|
437 |
+
engines: {node: '>=12'}
|
438 |
+
cpu: [riscv64]
|
439 |
+
os: [linux]
|
440 |
+
requiresBuild: true
|
441 |
+
dev: true
|
442 |
+
optional: true
|
443 |
+
|
444 |
+
/@esbuild/[email protected]:
|
445 |
+
resolution: {integrity: sha512-IbFsFbxMWLuKEbH+7sTkKzL6NJmG2vRyy6K7JJo55w+8xDk7RElYn6xvXtDW8HCfoKBFK69f3pgBJSUSQPr+4Q==}
|
446 |
+
engines: {node: '>=12'}
|
447 |
+
cpu: [s390x]
|
448 |
+
os: [linux]
|
449 |
+
requiresBuild: true
|
450 |
+
dev: true
|
451 |
+
optional: true
|
452 |
+
|
453 |
+
/@esbuild/[email protected]:
|
454 |
+
resolution: {integrity: sha512-68ngA9lg2H6zkZcyp22tsVt38mlhWde8l3eJLWkyLrp4HwMUr3c1s/M2t7+kHIhvMjglIBrFpncX1SzMckomGw==}
|
455 |
+
engines: {node: '>=12'}
|
456 |
+
cpu: [x64]
|
457 |
+
os: [linux]
|
458 |
+
requiresBuild: true
|
459 |
+
dev: true
|
460 |
+
optional: true
|
461 |
+
|
462 |
+
/@esbuild/[email protected]:
|
463 |
+
resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
|
464 |
+
engines: {node: '>=12'}
|
465 |
+
cpu: [x64]
|
466 |
+
os: [netbsd]
|
467 |
+
requiresBuild: true
|
468 |
+
dev: true
|
469 |
+
optional: true
|
470 |
+
|
471 |
+
/@esbuild/[email protected]:
|
472 |
+
resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
|
473 |
+
engines: {node: '>=12'}
|
474 |
+
cpu: [x64]
|
475 |
+
os: [openbsd]
|
476 |
+
requiresBuild: true
|
477 |
+
dev: true
|
478 |
+
optional: true
|
479 |
+
|
480 |
+
/@esbuild/[email protected]:
|
481 |
+
resolution: {integrity: sha512-vCRT7yP3zX+bKWFeP/zdS6SqdWB8OIpaRq/mbXQxTGHnIxspRtigpkUcDMlSCOejlHowLqII7K2JKevwyRP2rg==}
|
482 |
+
engines: {node: '>=12'}
|
483 |
+
cpu: [x64]
|
484 |
+
os: [sunos]
|
485 |
+
requiresBuild: true
|
486 |
+
dev: true
|
487 |
+
optional: true
|
488 |
+
|
489 |
+
/@esbuild/[email protected]:
|
490 |
+
resolution: {integrity: sha512-yYx+8jwowUstVdorcMdNlzklLYhPxjniHWFKgRqH7IFlUEa0Umu3KuYplf1HUZZ422e3NU9F4LGb+4O0Kdcaag==}
|
491 |
+
engines: {node: '>=12'}
|
492 |
+
cpu: [arm64]
|
493 |
+
os: [win32]
|
494 |
+
requiresBuild: true
|
495 |
+
dev: true
|
496 |
+
optional: true
|
497 |
+
|
498 |
+
/@esbuild/[email protected]:
|
499 |
+
resolution: {integrity: sha512-eggDKanJszUtCdlVs0RB+h35wNlb5v4TWEkq4vZcmVt5u/HiDZrTXe2bWFQUez3RgNHwx/x4sk5++4NSSicKkw==}
|
500 |
+
engines: {node: '>=12'}
|
501 |
+
cpu: [ia32]
|
502 |
+
os: [win32]
|
503 |
+
requiresBuild: true
|
504 |
+
dev: true
|
505 |
+
optional: true
|
506 |
+
|
507 |
+
/@esbuild/[email protected]:
|
508 |
+
resolution: {integrity: sha512-lAhycmKnVOuRYNtRtatQR1LPQf2oYCkRGkSFnseDAKPl8lu5SOsK/e1sXe5a0Pc5kHIHe6P2I/ilntNv2xf3cA==}
|
509 |
+
engines: {node: '>=12'}
|
510 |
+
cpu: [x64]
|
511 |
+
os: [win32]
|
512 |
+
requiresBuild: true
|
513 |
+
dev: true
|
514 |
+
optional: true
|
515 |
+
|
516 |
+
/@eslint-community/[email protected]([email protected]):
|
517 |
+
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
|
518 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
519 |
+
peerDependencies:
|
520 |
+
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
|
521 |
+
dependencies:
|
522 |
+
eslint: 8.38.0
|
523 |
+
eslint-visitor-keys: 3.4.1
|
524 |
+
dev: true
|
525 |
+
|
526 |
+
/@eslint-community/[email protected]:
|
527 |
+
resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==}
|
528 |
+
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
|
529 |
+
dev: true
|
530 |
+
|
531 |
+
/@eslint/[email protected]:
|
532 |
+
resolution: {integrity: sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==}
|
533 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
534 |
+
dependencies:
|
535 |
+
ajv: 6.12.6
|
536 |
+
debug: 4.3.4
|
537 |
+
espree: 9.5.2
|
538 |
+
globals: 13.20.0
|
539 |
+
ignore: 5.2.4
|
540 |
+
import-fresh: 3.3.0
|
541 |
+
js-yaml: 4.1.0
|
542 |
+
minimatch: 3.1.2
|
543 |
+
strip-json-comments: 3.1.1
|
544 |
+
transitivePeerDependencies:
|
545 |
+
- supports-color
|
546 |
+
dev: true
|
547 |
+
|
548 |
+
/@eslint/[email protected]:
|
549 |
+
resolution: {integrity: sha512-IoD2MfUnOV58ghIHCiil01PcohxjbYR/qCxsoC+xNgUwh1EY8jOOrYmu3d3a71+tJJ23uscEV4X2HJWMsPJu4g==}
|
550 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
551 |
+
dev: true
|
552 |
+
|
553 |
+
/@humanwhocodes/[email protected]:
|
554 |
+
resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==}
|
555 |
+
engines: {node: '>=10.10.0'}
|
556 |
+
dependencies:
|
557 |
+
'@humanwhocodes/object-schema': 1.2.1
|
558 |
+
debug: 4.3.4
|
559 |
+
minimatch: 3.1.2
|
560 |
+
transitivePeerDependencies:
|
561 |
+
- supports-color
|
562 |
+
dev: true
|
563 |
+
|
564 |
+
/@humanwhocodes/[email protected]:
|
565 |
+
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
|
566 |
+
engines: {node: '>=12.22'}
|
567 |
+
dev: true
|
568 |
+
|
569 |
+
/@humanwhocodes/[email protected]:
|
570 |
+
resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
|
571 |
+
dev: true
|
572 |
+
|
573 |
+
/@jridgewell/[email protected]:
|
574 |
+
resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==}
|
575 |
+
engines: {node: '>=6.0.0'}
|
576 |
+
dependencies:
|
577 |
+
'@jridgewell/set-array': 1.1.2
|
578 |
+
'@jridgewell/sourcemap-codec': 1.4.15
|
579 |
+
'@jridgewell/trace-mapping': 0.3.18
|
580 |
+
|
581 |
+
/@jridgewell/[email protected]:
|
582 |
+
resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==}
|
583 |
+
engines: {node: '>=6.0.0'}
|
584 |
+
|
585 |
+
/@jridgewell/[email protected]:
|
586 |
+
resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==}
|
587 |
+
engines: {node: '>=6.0.0'}
|
588 |
+
|
589 |
+
/@jridgewell/[email protected]:
|
590 |
+
resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==}
|
591 |
+
|
592 |
+
/@jridgewell/[email protected]:
|
593 |
+
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
|
594 |
+
|
595 |
+
/@jridgewell/[email protected]:
|
596 |
+
resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==}
|
597 |
+
dependencies:
|
598 |
+
'@jridgewell/resolve-uri': 3.1.0
|
599 |
+
'@jridgewell/sourcemap-codec': 1.4.14
|
600 |
+
|
601 |
+
/@nodelib/[email protected]:
|
602 |
+
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
603 |
+
engines: {node: '>= 8'}
|
604 |
+
dependencies:
|
605 |
+
'@nodelib/fs.stat': 2.0.5
|
606 |
+
run-parallel: 1.2.0
|
607 |
+
|
608 |
+
/@nodelib/[email protected]:
|
609 |
+
resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
|
610 |
+
engines: {node: '>= 8'}
|
611 |
+
|
612 |
+
/@nodelib/[email protected]:
|
613 |
+
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
614 |
+
engines: {node: '>= 8'}
|
615 |
+
dependencies:
|
616 |
+
'@nodelib/fs.scandir': 2.1.5
|
617 |
+
fastq: 1.15.0
|
618 |
+
|
619 |
+
/@radix-ui/[email protected](@types/[email protected])([email protected]):
|
620 |
+
resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==}
|
621 |
+
peerDependencies:
|
622 |
+
'@types/react': '*'
|
623 |
+
react: ^16.8 || ^17.0 || ^18.0
|
624 |
+
peerDependenciesMeta:
|
625 |
+
'@types/react':
|
626 |
+
optional: true
|
627 |
+
dependencies:
|
628 |
+
'@babel/runtime': 7.22.5
|
629 |
+
'@types/react': 18.0.37
|
630 |
+
react: 18.2.0
|
631 |
+
dev: false
|
632 |
+
|
633 |
+
/@radix-ui/[email protected](@types/[email protected])([email protected]):
|
634 |
+
resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==}
|
635 |
+
peerDependencies:
|
636 |
+
'@types/react': '*'
|
637 |
+
react: ^16.8 || ^17.0 || ^18.0
|
638 |
+
peerDependenciesMeta:
|
639 |
+
'@types/react':
|
640 |
+
optional: true
|
641 |
+
dependencies:
|
642 |
+
'@babel/runtime': 7.22.5
|
643 |
+
'@radix-ui/react-compose-refs': 1.0.1(@types/[email protected])([email protected])
|
644 |
+
'@types/react': 18.0.37
|
645 |
+
react: 18.2.0
|
646 |
+
dev: false
|
647 |
+
|
648 |
+
/@types/[email protected]:
|
649 |
+
resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==}
|
650 |
+
dev: true
|
651 |
+
|
652 |
+
/@types/[email protected]:
|
653 |
+
resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
|
654 |
+
|
655 |
+
/@types/[email protected]:
|
656 |
+
resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==}
|
657 |
+
dependencies:
|
658 |
+
'@types/react': 18.0.37
|
659 |
+
dev: true
|
660 |
+
|
661 |
+
/@types/[email protected]:
|
662 |
+
resolution: {integrity: sha512-4yaZZtkRN3ZIQD3KSEwkfcik8s0SWV+82dlJot1AbGYHCzJkWP3ENBY6wYeDRmKZ6HkrgoGAmR2HqdwYGp6OEw==}
|
663 |
+
dependencies:
|
664 |
+
'@types/prop-types': 15.7.5
|
665 |
+
'@types/scheduler': 0.16.3
|
666 |
+
csstype: 3.1.2
|
667 |
+
|
668 |
+
/@types/[email protected]:
|
669 |
+
resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==}
|
670 |
+
|
671 |
+
/@types/[email protected]:
|
672 |
+
resolution: {integrity: sha512-G8hZ6XJiHnuhQKR7ZmysCeJWE08o8T0AXtk5darsCaTVsYZhhgUrq53jizaR2FvsoeCwJhlmwTjkXBY5Pn/ZHw==}
|
673 |
+
dev: true
|
674 |
+
|
675 |
+
/@typescript-eslint/[email protected](@typescript-eslint/[email protected])([email protected])([email protected]):
|
676 |
+
resolution: {integrity: sha512-p0QgrEyrxAWBecR56gyn3wkG15TJdI//eetInP3zYRewDh0XS+DhB3VUAd3QqvziFsfaQIoIuZMxZRB7vXYaYw==}
|
677 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
678 |
+
peerDependencies:
|
679 |
+
'@typescript-eslint/parser': ^5.0.0
|
680 |
+
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
|
681 |
+
typescript: '*'
|
682 |
+
peerDependenciesMeta:
|
683 |
+
typescript:
|
684 |
+
optional: true
|
685 |
+
dependencies:
|
686 |
+
'@eslint-community/regexpp': 4.5.1
|
687 |
+
'@typescript-eslint/parser': 5.59.0([email protected])([email protected])
|
688 |
+
'@typescript-eslint/scope-manager': 5.59.0
|
689 |
+
'@typescript-eslint/type-utils': 5.59.0([email protected])([email protected])
|
690 |
+
'@typescript-eslint/utils': 5.59.0([email protected])([email protected])
|
691 |
+
debug: 4.3.4
|
692 |
+
eslint: 8.38.0
|
693 |
+
grapheme-splitter: 1.0.4
|
694 |
+
ignore: 5.2.4
|
695 |
+
natural-compare-lite: 1.4.0
|
696 |
+
semver: 7.5.2
|
697 |
+
tsutils: 3.21.0([email protected])
|
698 |
+
typescript: 5.0.2
|
699 |
+
transitivePeerDependencies:
|
700 |
+
- supports-color
|
701 |
+
dev: true
|
702 |
+
|
703 |
+
/@typescript-eslint/[email protected]([email protected])([email protected]):
|
704 |
+
resolution: {integrity: sha512-qK9TZ70eJtjojSUMrrEwA9ZDQ4N0e/AuoOIgXuNBorXYcBDk397D2r5MIe1B3cok/oCtdNC5j+lUUpVB+Dpb+w==}
|
705 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
706 |
+
peerDependencies:
|
707 |
+
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
|
708 |
+
typescript: '*'
|
709 |
+
peerDependenciesMeta:
|
710 |
+
typescript:
|
711 |
+
optional: true
|
712 |
+
dependencies:
|
713 |
+
'@typescript-eslint/scope-manager': 5.59.0
|
714 |
+
'@typescript-eslint/types': 5.59.0
|
715 |
+
'@typescript-eslint/typescript-estree': 5.59.0([email protected])
|
716 |
+
debug: 4.3.4
|
717 |
+
eslint: 8.38.0
|
718 |
+
typescript: 5.0.2
|
719 |
+
transitivePeerDependencies:
|
720 |
+
- supports-color
|
721 |
+
dev: true
|
722 |
+
|
723 |
+
/@typescript-eslint/[email protected]:
|
724 |
+
resolution: {integrity: sha512-tsoldKaMh7izN6BvkK6zRMINj4Z2d6gGhO2UsI8zGZY3XhLq1DndP3Ycjhi1JwdwPRwtLMW4EFPgpuKhbCGOvQ==}
|
725 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
726 |
+
dependencies:
|
727 |
+
'@typescript-eslint/types': 5.59.0
|
728 |
+
'@typescript-eslint/visitor-keys': 5.59.0
|
729 |
+
dev: true
|
730 |
+
|
731 |
+
/@typescript-eslint/[email protected]([email protected])([email protected]):
|
732 |
+
resolution: {integrity: sha512-d/B6VSWnZwu70kcKQSCqjcXpVH+7ABKH8P1KNn4K7j5PXXuycZTPXF44Nui0TEm6rbWGi8kc78xRgOC4n7xFgA==}
|
733 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
734 |
+
peerDependencies:
|
735 |
+
eslint: '*'
|
736 |
+
typescript: '*'
|
737 |
+
peerDependenciesMeta:
|
738 |
+
typescript:
|
739 |
+
optional: true
|
740 |
+
dependencies:
|
741 |
+
'@typescript-eslint/typescript-estree': 5.59.0([email protected])
|
742 |
+
'@typescript-eslint/utils': 5.59.0([email protected])([email protected])
|
743 |
+
debug: 4.3.4
|
744 |
+
eslint: 8.38.0
|
745 |
+
tsutils: 3.21.0([email protected])
|
746 |
+
typescript: 5.0.2
|
747 |
+
transitivePeerDependencies:
|
748 |
+
- supports-color
|
749 |
+
dev: true
|
750 |
+
|
751 |
+
/@typescript-eslint/[email protected]:
|
752 |
+
resolution: {integrity: sha512-yR2h1NotF23xFFYKHZs17QJnB51J/s+ud4PYU4MqdZbzeNxpgUr05+dNeCN/bb6raslHvGdd6BFCkVhpPk/ZeA==}
|
753 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
754 |
+
dev: true
|
755 |
+
|
756 |
+
/@typescript-eslint/[email protected]([email protected]):
|
757 |
+
resolution: {integrity: sha512-sUNnktjmI8DyGzPdZ8dRwW741zopGxltGs/SAPgGL/AAgDpiLsCFLcMNSpbfXfmnNeHmK9h3wGmCkGRGAoUZAg==}
|
758 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
759 |
+
peerDependencies:
|
760 |
+
typescript: '*'
|
761 |
+
peerDependenciesMeta:
|
762 |
+
typescript:
|
763 |
+
optional: true
|
764 |
+
dependencies:
|
765 |
+
'@typescript-eslint/types': 5.59.0
|
766 |
+
'@typescript-eslint/visitor-keys': 5.59.0
|
767 |
+
debug: 4.3.4
|
768 |
+
globby: 11.1.0
|
769 |
+
is-glob: 4.0.3
|
770 |
+
semver: 7.5.2
|
771 |
+
tsutils: 3.21.0([email protected])
|
772 |
+
typescript: 5.0.2
|
773 |
+
transitivePeerDependencies:
|
774 |
+
- supports-color
|
775 |
+
dev: true
|
776 |
+
|
777 |
+
/@typescript-eslint/[email protected]([email protected])([email protected]):
|
778 |
+
resolution: {integrity: sha512-GGLFd+86drlHSvPgN/el6dRQNYYGOvRSDVydsUaQluwIW3HvbXuxyuD5JETvBt/9qGYe+lOrDk6gRrWOHb/FvA==}
|
779 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
780 |
+
peerDependencies:
|
781 |
+
eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
|
782 |
+
dependencies:
|
783 |
+
'@eslint-community/eslint-utils': 4.4.0([email protected])
|
784 |
+
'@types/json-schema': 7.0.12
|
785 |
+
'@types/semver': 7.5.0
|
786 |
+
'@typescript-eslint/scope-manager': 5.59.0
|
787 |
+
'@typescript-eslint/types': 5.59.0
|
788 |
+
'@typescript-eslint/typescript-estree': 5.59.0([email protected])
|
789 |
+
eslint: 8.38.0
|
790 |
+
eslint-scope: 5.1.1
|
791 |
+
semver: 7.5.2
|
792 |
+
transitivePeerDependencies:
|
793 |
+
- supports-color
|
794 |
+
- typescript
|
795 |
+
dev: true
|
796 |
+
|
797 |
+
/@typescript-eslint/[email protected]:
|
798 |
+
resolution: {integrity: sha512-qZ3iXxQhanchCeaExlKPV3gDQFxMUmU35xfd5eCXB6+kUw1TUAbIy2n7QIrwz9s98DQLzNWyHp61fY0da4ZcbA==}
|
799 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
800 |
+
dependencies:
|
801 |
+
'@typescript-eslint/types': 5.59.0
|
802 |
+
eslint-visitor-keys: 3.4.1
|
803 |
+
dev: true
|
804 |
+
|
805 |
+
/@vitejs/[email protected]([email protected]):
|
806 |
+
resolution: {integrity: sha512-HX0XzMjL3hhOYm+0s95pb0Z7F8O81G7joUHgfDd/9J/ZZf5k4xX6QAMFkKsHFxaHlf6X7GD7+XuaZ66ULiJuhQ==}
|
807 |
+
engines: {node: ^14.18.0 || >=16.0.0}
|
808 |
+
peerDependencies:
|
809 |
+
vite: ^4.2.0
|
810 |
+
dependencies:
|
811 |
+
'@babel/core': 7.22.5
|
812 |
+
'@babel/plugin-transform-react-jsx-self': 7.22.5(@babel/[email protected])
|
813 |
+
'@babel/plugin-transform-react-jsx-source': 7.22.5(@babel/[email protected])
|
814 |
+
react-refresh: 0.14.0
|
815 |
+
vite: 4.3.9
|
816 |
+
transitivePeerDependencies:
|
817 |
+
- supports-color
|
818 |
+
dev: true
|
819 |
+
|
820 | |
821 |
+
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
|
822 |
+
peerDependencies:
|
823 |
+
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
824 |
+
dependencies:
|
825 |
+
acorn: 8.9.0
|
826 |
+
dev: true
|
827 |
+
|
828 | |
829 |
+
resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==}
|
830 |
+
engines: {node: '>=0.4.0'}
|
831 |
+
hasBin: true
|
832 |
+
dev: true
|
833 |
+
|
834 | |
835 |
+
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
836 |
+
dependencies:
|
837 |
+
fast-deep-equal: 3.1.3
|
838 |
+
fast-json-stable-stringify: 2.1.0
|
839 |
+
json-schema-traverse: 0.4.1
|
840 |
+
uri-js: 4.4.1
|
841 |
+
dev: true
|
842 |
+
|
843 | |
844 |
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
845 |
+
engines: {node: '>=8'}
|
846 |
+
dev: true
|
847 |
+
|
848 | |
849 |
+
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
|
850 |
+
engines: {node: '>=4'}
|
851 |
+
dependencies:
|
852 |
+
color-convert: 1.9.3
|
853 |
+
dev: true
|
854 |
+
|
855 | |
856 |
+
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
857 |
+
engines: {node: '>=8'}
|
858 |
+
dependencies:
|
859 |
+
color-convert: 2.0.1
|
860 |
+
dev: true
|
861 |
+
|
862 | |
863 |
+
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
|
864 |
+
|
865 | |
866 |
+
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
867 |
+
engines: {node: '>= 8'}
|
868 |
+
dependencies:
|
869 |
+
normalize-path: 3.0.0
|
870 |
+
picomatch: 2.3.1
|
871 |
+
|
872 | |
873 |
+
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
874 |
+
|
875 | |
876 |
+
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
877 |
+
dev: true
|
878 |
+
|
879 | |
880 |
+
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
|
881 |
+
engines: {node: '>=8'}
|
882 |
+
dev: true
|
883 |
+
|
884 | |
885 |
+
resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
|
886 |
+
engines: {node: ^10 || ^12 || >=14}
|
887 |
+
hasBin: true
|
888 |
+
peerDependencies:
|
889 |
+
postcss: ^8.1.0
|
890 |
+
dependencies:
|
891 |
+
browserslist: 4.21.9
|
892 |
+
caniuse-lite: 1.0.30001503
|
893 |
+
fraction.js: 4.2.0
|
894 |
+
normalize-range: 0.1.2
|
895 |
+
picocolors: 1.0.0
|
896 |
+
postcss: 8.4.24
|
897 |
+
postcss-value-parser: 4.2.0
|
898 |
+
dev: true
|
899 |
+
|
900 | |
901 |
+
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
902 |
+
|
903 | |
904 |
+
resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
|
905 |
+
engines: {node: '>=8'}
|
906 |
+
|
907 | |
908 |
+
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
909 |
+
dependencies:
|
910 |
+
balanced-match: 1.0.2
|
911 |
+
concat-map: 0.0.1
|
912 |
+
|
913 | |
914 |
+
resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
|
915 |
+
engines: {node: '>=8'}
|
916 |
+
dependencies:
|
917 |
+
fill-range: 7.0.1
|
918 |
+
|
919 | |
920 |
+
resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==}
|
921 |
+
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
|
922 |
+
hasBin: true
|
923 |
+
dependencies:
|
924 |
+
caniuse-lite: 1.0.30001503
|
925 |
+
electron-to-chromium: 1.4.433
|
926 |
+
node-releases: 2.0.12
|
927 |
+
update-browserslist-db: 1.0.11([email protected])
|
928 |
+
dev: true
|
929 |
+
|
930 | |
931 |
+
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
932 |
+
engines: {node: '>=6'}
|
933 |
+
dev: true
|
934 |
+
|
935 | |
936 |
+
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
937 |
+
engines: {node: '>= 6'}
|
938 |
+
|
939 | |
940 |
+
resolution: {integrity: sha512-Sf9NiF+wZxPfzv8Z3iS0rXM1Do+iOy2Lxvib38glFX+08TCYYYGR5fRJXk4d77C4AYwhUjgYgMsMudbh2TqCKw==}
|
941 |
+
dev: true
|
942 |
+
|
943 | |
944 |
+
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
|
945 |
+
engines: {node: '>=4'}
|
946 |
+
dependencies:
|
947 |
+
ansi-styles: 3.2.1
|
948 |
+
escape-string-regexp: 1.0.5
|
949 |
+
supports-color: 5.5.0
|
950 |
+
dev: true
|
951 |
+
|
952 | |
953 |
+
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
954 |
+
engines: {node: '>=10'}
|
955 |
+
dependencies:
|
956 |
+
ansi-styles: 4.3.0
|
957 |
+
supports-color: 7.2.0
|
958 |
+
dev: true
|
959 |
+
|
960 | |
961 |
+
resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
|
962 |
+
engines: {node: '>= 8.10.0'}
|
963 |
+
dependencies:
|
964 |
+
anymatch: 3.1.3
|
965 |
+
braces: 3.0.2
|
966 |
+
glob-parent: 5.1.2
|
967 |
+
is-binary-path: 2.1.0
|
968 |
+
is-glob: 4.0.3
|
969 |
+
normalize-path: 3.0.0
|
970 |
+
readdirp: 3.6.0
|
971 |
+
optionalDependencies:
|
972 |
+
fsevents: 2.3.2
|
973 |
+
|
974 | |
975 |
+
resolution: {integrity: sha512-qdRDgfjx3GRb9fpwpSvn+YaidnT7IUJNe4wt5/SWwM+PmUwJUhQRk/8zAyNro0PmVfmen2635UboTjIBXXxy5A==}
|
976 |
+
peerDependencies:
|
977 |
+
typescript: '>= 4.5.5 < 6'
|
978 |
+
peerDependenciesMeta:
|
979 |
+
typescript:
|
980 |
+
optional: true
|
981 |
+
dependencies:
|
982 |
+
clsx: 1.2.1
|
983 |
+
typescript: 5.0.2
|
984 |
+
dev: false
|
985 |
+
|
986 | |
987 |
+
resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==}
|
988 |
+
engines: {node: '>=6'}
|
989 |
+
dev: false
|
990 |
+
|
991 | |
992 |
+
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
|
993 |
+
dependencies:
|
994 |
+
color-name: 1.1.3
|
995 |
+
dev: true
|
996 |
+
|
997 | |
998 |
+
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
|
999 |
+
engines: {node: '>=7.0.0'}
|
1000 |
+
dependencies:
|
1001 |
+
color-name: 1.1.4
|
1002 |
+
dev: true
|
1003 |
+
|
1004 | |
1005 |
+
resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==}
|
1006 |
+
dev: true
|
1007 |
+
|
1008 | |
1009 |
+
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
|
1010 |
+
dev: true
|
1011 |
+
|
1012 | |
1013 |
+
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
1014 |
+
engines: {node: '>= 6'}
|
1015 |
+
|
1016 | |
1017 |
+
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
1018 |
+
|
1019 | |
1020 |
+
resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
|
1021 |
+
dev: true
|
1022 |
+
|
1023 | |
1024 |
+
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
|
1025 |
+
engines: {node: '>= 8'}
|
1026 |
+
dependencies:
|
1027 |
+
path-key: 3.1.1
|
1028 |
+
shebang-command: 2.0.0
|
1029 |
+
which: 2.0.2
|
1030 |
+
dev: true
|
1031 |
+
|
1032 | |
1033 |
+
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
1034 |
+
engines: {node: '>=4'}
|
1035 |
+
hasBin: true
|
1036 |
+
|
1037 | |
1038 |
+
resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==}
|
1039 |
+
|
1040 | |
1041 |
+
resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
|
1042 |
+
engines: {node: '>=6.0'}
|
1043 |
+
peerDependencies:
|
1044 |
+
supports-color: '*'
|
1045 |
+
peerDependenciesMeta:
|
1046 |
+
supports-color:
|
1047 |
+
optional: true
|
1048 |
+
dependencies:
|
1049 |
+
ms: 2.1.2
|
1050 |
+
dev: true
|
1051 |
+
|
1052 | |
1053 |
+
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
1054 |
+
dev: true
|
1055 |
+
|
1056 | |
1057 |
+
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
1058 |
+
|
1059 | |
1060 |
+
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
|
1061 |
+
engines: {node: '>=8'}
|
1062 |
+
dependencies:
|
1063 |
+
path-type: 4.0.0
|
1064 |
+
dev: true
|
1065 |
+
|
1066 | |
1067 |
+
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
|
1068 |
+
|
1069 | |
1070 |
+
resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
|
1071 |
+
engines: {node: '>=6.0.0'}
|
1072 |
+
dependencies:
|
1073 |
+
esutils: 2.0.3
|
1074 |
+
dev: true
|
1075 |
+
|
1076 | |
1077 |
+
resolution: {integrity: sha512-MGO1k0w1RgrfdbLVwmXcDhHHuxCn2qRgR7dYsJvWFKDttvYPx6FNzCGG0c/fBBvzK2LDh3UV7Tt9awnHnvAAUQ==}
|
1078 |
+
dev: true
|
1079 |
+
|
1080 | |
1081 |
+
resolution: {integrity: sha512-XQ0jAPFkK/u3LcVRcvVHQcTIqD6E2H1fvZMA5dQPSOWb3suUbWbfbRf94pjc0bNzRYLfIrDRQXr7X+LHIm5oHw==}
|
1082 |
+
engines: {node: '>=12'}
|
1083 |
+
hasBin: true
|
1084 |
+
requiresBuild: true
|
1085 |
+
optionalDependencies:
|
1086 |
+
'@esbuild/android-arm': 0.17.19
|
1087 |
+
'@esbuild/android-arm64': 0.17.19
|
1088 |
+
'@esbuild/android-x64': 0.17.19
|
1089 |
+
'@esbuild/darwin-arm64': 0.17.19
|
1090 |
+
'@esbuild/darwin-x64': 0.17.19
|
1091 |
+
'@esbuild/freebsd-arm64': 0.17.19
|
1092 |
+
'@esbuild/freebsd-x64': 0.17.19
|
1093 |
+
'@esbuild/linux-arm': 0.17.19
|
1094 |
+
'@esbuild/linux-arm64': 0.17.19
|
1095 |
+
'@esbuild/linux-ia32': 0.17.19
|
1096 |
+
'@esbuild/linux-loong64': 0.17.19
|
1097 |
+
'@esbuild/linux-mips64el': 0.17.19
|
1098 |
+
'@esbuild/linux-ppc64': 0.17.19
|
1099 |
+
'@esbuild/linux-riscv64': 0.17.19
|
1100 |
+
'@esbuild/linux-s390x': 0.17.19
|
1101 |
+
'@esbuild/linux-x64': 0.17.19
|
1102 |
+
'@esbuild/netbsd-x64': 0.17.19
|
1103 |
+
'@esbuild/openbsd-x64': 0.17.19
|
1104 |
+
'@esbuild/sunos-x64': 0.17.19
|
1105 |
+
'@esbuild/win32-arm64': 0.17.19
|
1106 |
+
'@esbuild/win32-ia32': 0.17.19
|
1107 |
+
'@esbuild/win32-x64': 0.17.19
|
1108 |
+
dev: true
|
1109 |
+
|
1110 | |
1111 |
+
resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
|
1112 |
+
engines: {node: '>=6'}
|
1113 |
+
dev: true
|
1114 |
+
|
1115 | |
1116 |
+
resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==}
|
1117 |
+
engines: {node: '>=0.8.0'}
|
1118 |
+
dev: true
|
1119 |
+
|
1120 | |
1121 |
+
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
|
1122 |
+
engines: {node: '>=10'}
|
1123 |
+
dev: true
|
1124 |
+
|
1125 | |
1126 |
+
resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
|
1127 |
+
engines: {node: '>=10'}
|
1128 |
+
peerDependencies:
|
1129 |
+
eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
|
1130 |
+
dependencies:
|
1131 |
+
eslint: 8.38.0
|
1132 |
+
dev: true
|
1133 |
+
|
1134 | |
1135 |
+
resolution: {integrity: sha512-E0ViBglxSQAERBp6eTj5fPgtCRtDonnbCFiVQBhf4Dto2blJRxg1dFUMdMh7N6ljTI4UwPhHwYDQ3Dyo4m6bwA==}
|
1136 |
+
peerDependencies:
|
1137 |
+
eslint: '>=7'
|
1138 |
+
dependencies:
|
1139 |
+
eslint: 8.38.0
|
1140 |
+
dev: true
|
1141 |
+
|
1142 | |
1143 |
+
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
|
1144 |
+
engines: {node: '>=8.0.0'}
|
1145 |
+
dependencies:
|
1146 |
+
esrecurse: 4.3.0
|
1147 |
+
estraverse: 4.3.0
|
1148 |
+
dev: true
|
1149 |
+
|
1150 | |
1151 |
+
resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==}
|
1152 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
1153 |
+
dependencies:
|
1154 |
+
esrecurse: 4.3.0
|
1155 |
+
estraverse: 5.3.0
|
1156 |
+
dev: true
|
1157 |
+
|
1158 | |
1159 |
+
resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==}
|
1160 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
1161 |
+
dev: true
|
1162 |
+
|
1163 | |
1164 |
+
resolution: {integrity: sha512-pIdsD2jwlUGf/U38Jv97t8lq6HpaU/G9NKbYmpWpZGw3LdTNhZLbJePqxOXGB5+JEKfOPU/XLxYxFh03nr1KTg==}
|
1165 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
1166 |
+
hasBin: true
|
1167 |
+
dependencies:
|
1168 |
+
'@eslint-community/eslint-utils': 4.4.0([email protected])
|
1169 |
+
'@eslint-community/regexpp': 4.5.1
|
1170 |
+
'@eslint/eslintrc': 2.0.3
|
1171 |
+
'@eslint/js': 8.38.0
|
1172 |
+
'@humanwhocodes/config-array': 0.11.10
|
1173 |
+
'@humanwhocodes/module-importer': 1.0.1
|
1174 |
+
'@nodelib/fs.walk': 1.2.8
|
1175 |
+
ajv: 6.12.6
|
1176 |
+
chalk: 4.1.2
|
1177 |
+
cross-spawn: 7.0.3
|
1178 |
+
debug: 4.3.4
|
1179 |
+
doctrine: 3.0.0
|
1180 |
+
escape-string-regexp: 4.0.0
|
1181 |
+
eslint-scope: 7.2.0
|
1182 |
+
eslint-visitor-keys: 3.4.1
|
1183 |
+
espree: 9.5.2
|
1184 |
+
esquery: 1.5.0
|
1185 |
+
esutils: 2.0.3
|
1186 |
+
fast-deep-equal: 3.1.3
|
1187 |
+
file-entry-cache: 6.0.1
|
1188 |
+
find-up: 5.0.0
|
1189 |
+
glob-parent: 6.0.2
|
1190 |
+
globals: 13.20.0
|
1191 |
+
grapheme-splitter: 1.0.4
|
1192 |
+
ignore: 5.2.4
|
1193 |
+
import-fresh: 3.3.0
|
1194 |
+
imurmurhash: 0.1.4
|
1195 |
+
is-glob: 4.0.3
|
1196 |
+
is-path-inside: 3.0.3
|
1197 |
+
js-sdsl: 4.4.1
|
1198 |
+
js-yaml: 4.1.0
|
1199 |
+
json-stable-stringify-without-jsonify: 1.0.1
|
1200 |
+
levn: 0.4.1
|
1201 |
+
lodash.merge: 4.6.2
|
1202 |
+
minimatch: 3.1.2
|
1203 |
+
natural-compare: 1.4.0
|
1204 |
+
optionator: 0.9.1
|
1205 |
+
strip-ansi: 6.0.1
|
1206 |
+
strip-json-comments: 3.1.1
|
1207 |
+
text-table: 0.2.0
|
1208 |
+
transitivePeerDependencies:
|
1209 |
+
- supports-color
|
1210 |
+
dev: true
|
1211 |
+
|
1212 | |
1213 |
+
resolution: {integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==}
|
1214 |
+
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
1215 |
+
dependencies:
|
1216 |
+
acorn: 8.9.0
|
1217 |
+
acorn-jsx: 5.3.2([email protected])
|
1218 |
+
eslint-visitor-keys: 3.4.1
|
1219 |
+
dev: true
|
1220 |
+
|
1221 | |
1222 |
+
resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
|
1223 |
+
engines: {node: '>=0.10'}
|
1224 |
+
dependencies:
|
1225 |
+
estraverse: 5.3.0
|
1226 |
+
dev: true
|
1227 |
+
|
1228 | |
1229 |
+
resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
|
1230 |
+
engines: {node: '>=4.0'}
|
1231 |
+
dependencies:
|
1232 |
+
estraverse: 5.3.0
|
1233 |
+
dev: true
|
1234 |
+
|
1235 | |
1236 |
+
resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
|
1237 |
+
engines: {node: '>=4.0'}
|
1238 |
+
dev: true
|
1239 |
+
|
1240 | |
1241 |
+
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
|
1242 |
+
engines: {node: '>=4.0'}
|
1243 |
+
dev: true
|
1244 |
+
|
1245 | |
1246 |
+
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
1247 |
+
engines: {node: '>=0.10.0'}
|
1248 |
+
dev: true
|
1249 |
+
|
1250 | |
1251 |
+
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
1252 |
+
dev: true
|
1253 |
+
|
1254 | |
1255 |
+
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
|
1256 |
+
engines: {node: '>=8.6.0'}
|
1257 |
+
dependencies:
|
1258 |
+
'@nodelib/fs.stat': 2.0.5
|
1259 |
+
'@nodelib/fs.walk': 1.2.8
|
1260 |
+
glob-parent: 5.1.2
|
1261 |
+
merge2: 1.4.1
|
1262 |
+
micromatch: 4.0.5
|
1263 |
+
|
1264 | |
1265 |
+
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
1266 |
+
dev: true
|
1267 |
+
|
1268 | |
1269 |
+
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
1270 |
+
dev: true
|
1271 |
+
|
1272 | |
1273 |
+
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
|
1274 |
+
dependencies:
|
1275 |
+
reusify: 1.0.4
|
1276 |
+
|
1277 | |
1278 |
+
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
|
1279 |
+
engines: {node: ^10.12.0 || >=12.0.0}
|
1280 |
+
dependencies:
|
1281 |
+
flat-cache: 3.0.4
|
1282 |
+
dev: true
|
1283 |
+
|
1284 | |
1285 |
+
resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
|
1286 |
+
engines: {node: '>=8'}
|
1287 |
+
dependencies:
|
1288 |
+
to-regex-range: 5.0.1
|
1289 |
+
|
1290 | |
1291 |
+
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
|
1292 |
+
engines: {node: '>=10'}
|
1293 |
+
dependencies:
|
1294 |
+
locate-path: 6.0.0
|
1295 |
+
path-exists: 4.0.0
|
1296 |
+
dev: true
|
1297 |
+
|
1298 | |
1299 |
+
resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
|
1300 |
+
engines: {node: ^10.12.0 || >=12.0.0}
|
1301 |
+
dependencies:
|
1302 |
+
flatted: 3.2.7
|
1303 |
+
rimraf: 3.0.2
|
1304 |
+
dev: true
|
1305 |
+
|
1306 | |
1307 |
+
resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
|
1308 |
+
dev: true
|
1309 |
+
|
1310 | |
1311 |
+
resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
|
1312 |
+
dev: true
|
1313 |
+
|
1314 | |
1315 |
+
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
|
1316 |
+
|
1317 | |
1318 |
+
resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
|
1319 |
+
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
1320 |
+
os: [darwin]
|
1321 |
+
requiresBuild: true
|
1322 |
+
optional: true
|
1323 |
+
|
1324 | |
1325 |
+
resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
|
1326 |
+
|
1327 | |
1328 |
+
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
1329 |
+
engines: {node: '>=6.9.0'}
|
1330 |
+
dev: true
|
1331 |
+
|
1332 | |
1333 |
+
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
1334 |
+
engines: {node: '>= 6'}
|
1335 |
+
dependencies:
|
1336 |
+
is-glob: 4.0.3
|
1337 |
+
|
1338 | |
1339 |
+
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
1340 |
+
engines: {node: '>=10.13.0'}
|
1341 |
+
dependencies:
|
1342 |
+
is-glob: 4.0.3
|
1343 |
+
|
1344 | |
1345 |
+
resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
|
1346 |
+
dependencies:
|
1347 |
+
fs.realpath: 1.0.0
|
1348 |
+
inflight: 1.0.6
|
1349 |
+
inherits: 2.0.4
|
1350 |
+
minimatch: 3.1.2
|
1351 |
+
once: 1.4.0
|
1352 |
+
path-is-absolute: 1.0.1
|
1353 |
+
|
1354 | |
1355 |
+
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
|
1356 |
+
dependencies:
|
1357 |
+
fs.realpath: 1.0.0
|
1358 |
+
inflight: 1.0.6
|
1359 |
+
inherits: 2.0.4
|
1360 |
+
minimatch: 3.1.2
|
1361 |
+
once: 1.4.0
|
1362 |
+
path-is-absolute: 1.0.1
|
1363 |
+
dev: true
|
1364 |
+
|
1365 | |
1366 |
+
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
|
1367 |
+
engines: {node: '>=4'}
|
1368 |
+
dev: true
|
1369 |
+
|
1370 | |
1371 |
+
resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
|
1372 |
+
engines: {node: '>=8'}
|
1373 |
+
dependencies:
|
1374 |
+
type-fest: 0.20.2
|
1375 |
+
dev: true
|
1376 |
+
|
1377 | |
1378 |
+
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
|
1379 |
+
engines: {node: '>=10'}
|
1380 |
+
dependencies:
|
1381 |
+
array-union: 2.1.0
|
1382 |
+
dir-glob: 3.0.1
|
1383 |
+
fast-glob: 3.2.12
|
1384 |
+
ignore: 5.2.4
|
1385 |
+
merge2: 1.4.1
|
1386 |
+
slash: 3.0.0
|
1387 |
+
dev: true
|
1388 |
+
|
1389 | |
1390 |
+
resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
|
1391 |
+
dev: true
|
1392 |
+
|
1393 | |
1394 |
+
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
|
1395 |
+
engines: {node: '>=4'}
|
1396 |
+
dev: true
|
1397 |
+
|
1398 | |
1399 |
+
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
1400 |
+
engines: {node: '>=8'}
|
1401 |
+
dev: true
|
1402 |
+
|
1403 | |
1404 |
+
resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
|
1405 |
+
engines: {node: '>= 0.4.0'}
|
1406 |
+
dependencies:
|
1407 |
+
function-bind: 1.1.1
|
1408 |
+
|
1409 | |
1410 |
+
resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
|
1411 |
+
engines: {node: '>= 4'}
|
1412 |
+
dev: true
|
1413 |
+
|
1414 | |
1415 |
+
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
|
1416 |
+
engines: {node: '>=6'}
|
1417 |
+
dependencies:
|
1418 |
+
parent-module: 1.0.1
|
1419 |
+
resolve-from: 4.0.0
|
1420 |
+
dev: true
|
1421 |
+
|
1422 | |
1423 |
+
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
1424 |
+
engines: {node: '>=0.8.19'}
|
1425 |
+
dev: true
|
1426 |
+
|
1427 | |
1428 |
+
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
|
1429 |
+
dependencies:
|
1430 |
+
once: 1.4.0
|
1431 |
+
wrappy: 1.0.2
|
1432 |
+
|
1433 | |
1434 |
+
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
|
1435 |
+
|
1436 | |
1437 |
+
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
1438 |
+
engines: {node: '>=8'}
|
1439 |
+
dependencies:
|
1440 |
+
binary-extensions: 2.2.0
|
1441 |
+
|
1442 | |
1443 |
+
resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==}
|
1444 |
+
dependencies:
|
1445 |
+
has: 1.0.3
|
1446 |
+
|
1447 | |
1448 |
+
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
1449 |
+
engines: {node: '>=0.10.0'}
|
1450 |
+
|
1451 | |
1452 |
+
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
1453 |
+
engines: {node: '>=0.10.0'}
|
1454 |
+
dependencies:
|
1455 |
+
is-extglob: 2.1.1
|
1456 |
+
|
1457 | |
1458 |
+
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
|
1459 |
+
engines: {node: '>=0.12.0'}
|
1460 |
+
|
1461 | |
1462 |
+
resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
|
1463 |
+
engines: {node: '>=8'}
|
1464 |
+
dev: true
|
1465 |
+
|
1466 | |
1467 |
+
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
1468 |
+
dev: true
|
1469 |
+
|
1470 | |
1471 |
+
resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==}
|
1472 |
+
hasBin: true
|
1473 |
+
|
1474 | |
1475 |
+
resolution: {integrity: sha512-6Gsx8R0RucyePbWqPssR8DyfuXmLBooYN5cZFZKjHGnQuaf7pEzhtpceagJxVu4LqhYY5EYA7nko3FmeHZ1KbA==}
|
1476 |
+
dev: true
|
1477 |
+
|
1478 | |
1479 |
+
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
1480 |
+
|
1481 | |
1482 |
+
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
|
1483 |
+
hasBin: true
|
1484 |
+
dependencies:
|
1485 |
+
argparse: 2.0.1
|
1486 |
+
dev: true
|
1487 |
+
|
1488 | |
1489 |
+
resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
|
1490 |
+
engines: {node: '>=4'}
|
1491 |
+
hasBin: true
|
1492 |
+
dev: true
|
1493 |
+
|
1494 | |
1495 |
+
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
1496 |
+
dev: true
|
1497 |
+
|
1498 | |
1499 |
+
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
1500 |
+
dev: true
|
1501 |
+
|
1502 | |
1503 |
+
resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
|
1504 |
+
engines: {node: '>=6'}
|
1505 |
+
hasBin: true
|
1506 |
+
dev: true
|
1507 |
+
|
1508 | |
1509 |
+
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
1510 |
+
engines: {node: '>= 0.8.0'}
|
1511 |
+
dependencies:
|
1512 |
+
prelude-ls: 1.2.1
|
1513 |
+
type-check: 0.4.0
|
1514 |
+
dev: true
|
1515 |
+
|
1516 | |
1517 |
+
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
|
1518 |
+
engines: {node: '>=10'}
|
1519 |
+
|
1520 | |
1521 |
+
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
1522 |
+
|
1523 | |
1524 |
+
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
1525 |
+
engines: {node: '>=10'}
|
1526 |
+
dependencies:
|
1527 |
+
p-locate: 5.0.0
|
1528 |
+
dev: true
|
1529 |
+
|
1530 | |
1531 |
+
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
|
1532 |
+
dev: true
|
1533 |
+
|
1534 | |
1535 |
+
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
1536 |
+
hasBin: true
|
1537 |
+
dependencies:
|
1538 |
+
js-tokens: 4.0.0
|
1539 |
+
dev: false
|
1540 |
+
|
1541 | |
1542 |
+
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
1543 |
+
dependencies:
|
1544 |
+
yallist: 3.1.1
|
1545 |
+
dev: true
|
1546 |
+
|
1547 | |
1548 |
+
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
|
1549 |
+
engines: {node: '>=10'}
|
1550 |
+
dependencies:
|
1551 |
+
yallist: 4.0.0
|
1552 |
+
dev: true
|
1553 |
+
|
1554 | |
1555 |
+
resolution: {integrity: sha512-PeDVbx5PlIRrVvdxiuSxPfBo7sK5qrL3LbvvRoGVNiHYRAkBm/48lKqoioxcmp0bgsyJs9lMw7CdtGFvnMJbVg==}
|
1556 |
+
peerDependencies:
|
1557 |
+
react: ^16.5.1 || ^17.0.0 || ^18.0.0
|
1558 |
+
dependencies:
|
1559 |
+
react: 18.2.0
|
1560 |
+
dev: false
|
1561 |
+
|
1562 | |
1563 |
+
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
1564 |
+
engines: {node: '>= 8'}
|
1565 |
+
|
1566 | |
1567 |
+
resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
|
1568 |
+
engines: {node: '>=8.6'}
|
1569 |
+
dependencies:
|
1570 |
+
braces: 3.0.2
|
1571 |
+
picomatch: 2.3.1
|
1572 |
+
|
1573 | |
1574 |
+
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
|
1575 |
+
dependencies:
|
1576 |
+
brace-expansion: 1.1.11
|
1577 |
+
|
1578 | |
1579 |
+
resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
|
1580 |
+
dev: true
|
1581 |
+
|
1582 | |
1583 |
+
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
|
1584 |
+
dependencies:
|
1585 |
+
any-promise: 1.3.0
|
1586 |
+
object-assign: 4.1.1
|
1587 |
+
thenify-all: 1.6.0
|
1588 |
+
|
1589 | |
1590 |
+
resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==}
|
1591 |
+
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
1592 |
+
hasBin: true
|
1593 |
+
|
1594 | |
1595 |
+
resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
|
1596 |
+
dev: true
|
1597 |
+
|
1598 | |
1599 |
+
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
|
1600 |
+
dev: true
|
1601 |
+
|
1602 | |
1603 |
+
resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==}
|
1604 |
+
dev: true
|
1605 |
+
|
1606 | |
1607 |
+
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
1608 |
+
engines: {node: '>=0.10.0'}
|
1609 |
+
|
1610 | |
1611 |
+
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
|
1612 |
+
engines: {node: '>=0.10.0'}
|
1613 |
+
dev: true
|
1614 |
+
|
1615 | |
1616 |
+
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
1617 |
+
engines: {node: '>=0.10.0'}
|
1618 |
+
|
1619 | |
1620 |
+
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
|
1621 |
+
engines: {node: '>= 6'}
|
1622 |
+
|
1623 | |
1624 |
+
resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
|
1625 |
+
dependencies:
|
1626 |
+
wrappy: 1.0.2
|
1627 |
+
|
1628 | |
1629 |
+
resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
|
1630 |
+
engines: {node: '>= 0.8.0'}
|
1631 |
+
dependencies:
|
1632 |
+
deep-is: 0.1.4
|
1633 |
+
fast-levenshtein: 2.0.6
|
1634 |
+
levn: 0.4.1
|
1635 |
+
prelude-ls: 1.2.1
|
1636 |
+
type-check: 0.4.0
|
1637 |
+
word-wrap: 1.2.3
|
1638 |
+
dev: true
|
1639 |
+
|
1640 | |
1641 |
+
resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
|
1642 |
+
engines: {node: '>=10'}
|
1643 |
+
dependencies:
|
1644 |
+
yocto-queue: 0.1.0
|
1645 |
+
dev: true
|
1646 |
+
|
1647 | |
1648 |
+
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
1649 |
+
engines: {node: '>=10'}
|
1650 |
+
dependencies:
|
1651 |
+
p-limit: 3.1.0
|
1652 |
+
dev: true
|
1653 |
+
|
1654 | |
1655 |
+
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
|
1656 |
+
engines: {node: '>=6'}
|
1657 |
+
dependencies:
|
1658 |
+
callsites: 3.1.0
|
1659 |
+
dev: true
|
1660 |
+
|
1661 | |
1662 |
+
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
|
1663 |
+
engines: {node: '>=8'}
|
1664 |
+
dev: true
|
1665 |
+
|
1666 | |
1667 |
+
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
|
1668 |
+
engines: {node: '>=0.10.0'}
|
1669 |
+
|
1670 | |
1671 |
+
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
1672 |
+
engines: {node: '>=8'}
|
1673 |
+
dev: true
|
1674 |
+
|
1675 | |
1676 |
+
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
1677 |
+
|
1678 | |
1679 |
+
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
|
1680 |
+
engines: {node: '>=8'}
|
1681 |
+
dev: true
|
1682 |
+
|
1683 | |
1684 |
+
resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
|
1685 |
+
|
1686 | |
1687 |
+
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
1688 |
+
engines: {node: '>=8.6'}
|
1689 |
+
|
1690 | |
1691 |
+
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
|
1692 |
+
engines: {node: '>=0.10.0'}
|
1693 |
+
|
1694 | |
1695 |
+
resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
|
1696 |
+
engines: {node: '>= 6'}
|
1697 |
+
|
1698 | |
1699 |
+
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
|
1700 |
+
engines: {node: '>=14.0.0'}
|
1701 |
+
peerDependencies:
|
1702 |
+
postcss: ^8.0.0
|
1703 |
+
dependencies:
|
1704 |
+
postcss: 8.4.24
|
1705 |
+
postcss-value-parser: 4.2.0
|
1706 |
+
read-cache: 1.0.0
|
1707 |
+
resolve: 1.22.2
|
1708 |
+
|
1709 | |
1710 |
+
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
|
1711 |
+
engines: {node: ^12 || ^14 || >= 16}
|
1712 |
+
peerDependencies:
|
1713 |
+
postcss: ^8.4.21
|
1714 |
+
dependencies:
|
1715 |
+
camelcase-css: 2.0.1
|
1716 |
+
postcss: 8.4.24
|
1717 |
+
|
1718 | |
1719 |
+
resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==}
|
1720 |
+
engines: {node: '>= 14'}
|
1721 |
+
peerDependencies:
|
1722 |
+
postcss: '>=8.0.9'
|
1723 |
+
ts-node: '>=9.0.0'
|
1724 |
+
peerDependenciesMeta:
|
1725 |
+
postcss:
|
1726 |
+
optional: true
|
1727 |
+
ts-node:
|
1728 |
+
optional: true
|
1729 |
+
dependencies:
|
1730 |
+
lilconfig: 2.1.0
|
1731 |
+
postcss: 8.4.24
|
1732 |
+
yaml: 2.3.1
|
1733 |
+
|
1734 | |
1735 |
+
resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==}
|
1736 |
+
engines: {node: '>=12.0'}
|
1737 |
+
peerDependencies:
|
1738 |
+
postcss: ^8.2.14
|
1739 |
+
dependencies:
|
1740 |
+
postcss: 8.4.24
|
1741 |
+
postcss-selector-parser: 6.0.13
|
1742 |
+
|
1743 | |
1744 |
+
resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==}
|
1745 |
+
engines: {node: '>=4'}
|
1746 |
+
dependencies:
|
1747 |
+
cssesc: 3.0.0
|
1748 |
+
util-deprecate: 1.0.2
|
1749 |
+
|
1750 | |
1751 |
+
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
1752 |
+
|
1753 | |
1754 |
+
resolution: {integrity: sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==}
|
1755 |
+
engines: {node: ^10 || ^12 || >=14}
|
1756 |
+
dependencies:
|
1757 |
+
nanoid: 3.3.6
|
1758 |
+
picocolors: 1.0.0
|
1759 |
+
source-map-js: 1.0.2
|
1760 |
+
|
1761 | |
1762 |
+
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
|
1763 |
+
engines: {node: '>= 0.8.0'}
|
1764 |
+
dev: true
|
1765 |
+
|
1766 | |
1767 |
+
resolution: {integrity: sha512-vZ/iKieyCx0WTxHbkf5E1rBlv/ybFk8WTT4hL5W2jlVxum2Zbe0jMUpuQdDrpa4z2vnPiJ5KIWCqL/kd16fKYg==}
|
1768 |
+
engines: {node: '>=12.17.0'}
|
1769 |
+
peerDependencies:
|
1770 |
+
'@ianvs/prettier-plugin-sort-imports': '*'
|
1771 |
+
'@prettier/plugin-php': '*'
|
1772 |
+
'@prettier/plugin-pug': '*'
|
1773 |
+
'@shopify/prettier-plugin-liquid': '*'
|
1774 |
+
'@shufo/prettier-plugin-blade': '*'
|
1775 |
+
'@trivago/prettier-plugin-sort-imports': '*'
|
1776 |
+
prettier: '>=2.2.0'
|
1777 |
+
prettier-plugin-astro: '*'
|
1778 |
+
prettier-plugin-css-order: '*'
|
1779 |
+
prettier-plugin-import-sort: '*'
|
1780 |
+
prettier-plugin-jsdoc: '*'
|
1781 |
+
prettier-plugin-organize-attributes: '*'
|
1782 |
+
prettier-plugin-organize-imports: '*'
|
1783 |
+
prettier-plugin-style-order: '*'
|
1784 |
+
prettier-plugin-svelte: '*'
|
1785 |
+
prettier-plugin-twig-melody: '*'
|
1786 |
+
peerDependenciesMeta:
|
1787 |
+
'@ianvs/prettier-plugin-sort-imports':
|
1788 |
+
optional: true
|
1789 |
+
'@prettier/plugin-php':
|
1790 |
+
optional: true
|
1791 |
+
'@prettier/plugin-pug':
|
1792 |
+
optional: true
|
1793 |
+
'@shopify/prettier-plugin-liquid':
|
1794 |
+
optional: true
|
1795 |
+
'@shufo/prettier-plugin-blade':
|
1796 |
+
optional: true
|
1797 |
+
'@trivago/prettier-plugin-sort-imports':
|
1798 |
+
optional: true
|
1799 |
+
prettier-plugin-astro:
|
1800 |
+
optional: true
|
1801 |
+
prettier-plugin-css-order:
|
1802 |
+
optional: true
|
1803 |
+
prettier-plugin-import-sort:
|
1804 |
+
optional: true
|
1805 |
+
prettier-plugin-jsdoc:
|
1806 |
+
optional: true
|
1807 |
+
prettier-plugin-organize-attributes:
|
1808 |
+
optional: true
|
1809 |
+
prettier-plugin-organize-imports:
|
1810 |
+
optional: true
|
1811 |
+
prettier-plugin-style-order:
|
1812 |
+
optional: true
|
1813 |
+
prettier-plugin-svelte:
|
1814 |
+
optional: true
|
1815 |
+
prettier-plugin-twig-melody:
|
1816 |
+
optional: true
|
1817 |
+
dependencies:
|
1818 |
+
prettier: 2.8.8
|
1819 |
+
dev: true
|
1820 |
+
|
1821 | |
1822 |
+
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
|
1823 |
+
engines: {node: '>=10.13.0'}
|
1824 |
+
hasBin: true
|
1825 |
+
dev: true
|
1826 |
+
|
1827 | |
1828 |
+
resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
|
1829 |
+
engines: {node: '>=6'}
|
1830 |
+
dev: true
|
1831 |
+
|
1832 | |
1833 |
+
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
|
1834 |
+
|
1835 | |
1836 |
+
resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
|
1837 |
+
peerDependencies:
|
1838 |
+
react: ^18.2.0
|
1839 |
+
dependencies:
|
1840 |
+
loose-envify: 1.4.0
|
1841 |
+
react: 18.2.0
|
1842 |
+
scheduler: 0.23.0
|
1843 |
+
dev: false
|
1844 |
+
|
1845 | |
1846 |
+
resolution: {integrity: sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==}
|
1847 |
+
engines: {node: '>=0.10.0'}
|
1848 |
+
dev: true
|
1849 |
+
|
1850 | |
1851 |
+
resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
|
1852 |
+
engines: {node: '>=0.10.0'}
|
1853 |
+
dependencies:
|
1854 |
+
loose-envify: 1.4.0
|
1855 |
+
dev: false
|
1856 |
+
|
1857 | |
1858 |
+
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
1859 |
+
dependencies:
|
1860 |
+
pify: 2.3.0
|
1861 |
+
|
1862 | |
1863 |
+
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
1864 |
+
engines: {node: '>=8.10.0'}
|
1865 |
+
dependencies:
|
1866 |
+
picomatch: 2.3.1
|
1867 |
+
|
1868 | |
1869 |
+
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
|
1870 |
+
dev: false
|
1871 |
+
|
1872 | |
1873 |
+
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
1874 |
+
engines: {node: '>=4'}
|
1875 |
+
dev: true
|
1876 |
+
|
1877 | |
1878 |
+
resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==}
|
1879 |
+
hasBin: true
|
1880 |
+
dependencies:
|
1881 |
+
is-core-module: 2.12.1
|
1882 |
+
path-parse: 1.0.7
|
1883 |
+
supports-preserve-symlinks-flag: 1.0.0
|
1884 |
+
|
1885 | |
1886 |
+
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
|
1887 |
+
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
1888 |
+
|
1889 | |
1890 |
+
resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
|
1891 |
+
hasBin: true
|
1892 |
+
dependencies:
|
1893 |
+
glob: 7.2.3
|
1894 |
+
dev: true
|
1895 |
+
|
1896 | |
1897 |
+
resolution: {integrity: sha512-tywOR+rwIt5m2ZAWSe5AIJcTat8vGlnPFAv15ycCrw33t6iFsXZ6mzHVFh2psSjxQPmI+xgzMZZizUAukBI4aQ==}
|
1898 |
+
engines: {node: '>=14.18.0', npm: '>=8.0.0'}
|
1899 |
+
hasBin: true
|
1900 |
+
optionalDependencies:
|
1901 |
+
fsevents: 2.3.2
|
1902 |
+
dev: true
|
1903 |
+
|
1904 | |
1905 |
+
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
|
1906 |
+
dependencies:
|
1907 |
+
queue-microtask: 1.2.3
|
1908 |
+
|
1909 | |
1910 |
+
resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
|
1911 |
+
dependencies:
|
1912 |
+
loose-envify: 1.4.0
|
1913 |
+
dev: false
|
1914 |
+
|
1915 | |
1916 |
+
resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
|
1917 |
+
hasBin: true
|
1918 |
+
dev: true
|
1919 |
+
|
1920 | |
1921 |
+
resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==}
|
1922 |
+
engines: {node: '>=10'}
|
1923 |
+
hasBin: true
|
1924 |
+
dependencies:
|
1925 |
+
lru-cache: 6.0.0
|
1926 |
+
dev: true
|
1927 |
+
|
1928 | |
1929 |
+
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
|
1930 |
+
engines: {node: '>=8'}
|
1931 |
+
dependencies:
|
1932 |
+
shebang-regex: 3.0.0
|
1933 |
+
dev: true
|
1934 |
+
|
1935 | |
1936 |
+
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
1937 |
+
engines: {node: '>=8'}
|
1938 |
+
dev: true
|
1939 |
+
|
1940 | |
1941 |
+
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
|
1942 |
+
engines: {node: '>=8'}
|
1943 |
+
dev: true
|
1944 |
+
|
1945 | |
1946 |
+
resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
|
1947 |
+
engines: {node: '>=0.10.0'}
|
1948 |
+
|
1949 | |
1950 |
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
1951 |
+
engines: {node: '>=8'}
|
1952 |
+
dependencies:
|
1953 |
+
ansi-regex: 5.0.1
|
1954 |
+
dev: true
|
1955 |
+
|
1956 | |
1957 |
+
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
1958 |
+
engines: {node: '>=8'}
|
1959 |
+
dev: true
|
1960 |
+
|
1961 | |
1962 |
+
resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==}
|
1963 |
+
engines: {node: '>=8'}
|
1964 |
+
hasBin: true
|
1965 |
+
dependencies:
|
1966 |
+
'@jridgewell/gen-mapping': 0.3.3
|
1967 |
+
commander: 4.1.1
|
1968 |
+
glob: 7.1.6
|
1969 |
+
lines-and-columns: 1.2.4
|
1970 |
+
mz: 2.7.0
|
1971 |
+
pirates: 4.0.5
|
1972 |
+
ts-interface-checker: 0.1.13
|
1973 |
+
|
1974 | |
1975 |
+
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
|
1976 |
+
engines: {node: '>=4'}
|
1977 |
+
dependencies:
|
1978 |
+
has-flag: 3.0.0
|
1979 |
+
dev: true
|
1980 |
+
|
1981 | |
1982 |
+
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
1983 |
+
engines: {node: '>=8'}
|
1984 |
+
dependencies:
|
1985 |
+
has-flag: 4.0.0
|
1986 |
+
dev: true
|
1987 |
+
|
1988 | |
1989 |
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
1990 |
+
engines: {node: '>= 0.4'}
|
1991 |
+
|
1992 | |
1993 |
+
resolution: {integrity: sha512-Y17eDp7FtN1+JJ4OY0Bqv9OA41O+MS8c1Iyr3T6JFLnOgLg3EvcyMKZAnQ8AGyvB5Nxm3t9Xb5Mhe139m8QT/g==}
|
1994 |
+
dev: true
|
1995 |
+
|
1996 | |
1997 |
+
resolution: {integrity: sha512-4WigSGMvbl3gCCact62ZvOngA+PRqhAn7si3TQ3/ZuPuQZcIEtVap+ENSXbzWhpojKB8CpvnIsrwBu8/RnHtuw==}
|
1998 |
+
peerDependencies:
|
1999 |
+
tailwindcss: '>=3.0.0 || insiders'
|
2000 |
+
dependencies:
|
2001 |
+
tailwindcss: 3.3.2
|
2002 |
+
dev: false
|
2003 |
+
|
2004 | |
2005 |
+
resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==}
|
2006 |
+
engines: {node: '>=14.0.0'}
|
2007 |
+
hasBin: true
|
2008 |
+
dependencies:
|
2009 |
+
'@alloc/quick-lru': 5.2.0
|
2010 |
+
arg: 5.0.2
|
2011 |
+
chokidar: 3.5.3
|
2012 |
+
didyoumean: 1.2.2
|
2013 |
+
dlv: 1.1.3
|
2014 |
+
fast-glob: 3.2.12
|
2015 |
+
glob-parent: 6.0.2
|
2016 |
+
is-glob: 4.0.3
|
2017 |
+
jiti: 1.18.2
|
2018 |
+
lilconfig: 2.1.0
|
2019 |
+
micromatch: 4.0.5
|
2020 |
+
normalize-path: 3.0.0
|
2021 |
+
object-hash: 3.0.0
|
2022 |
+
picocolors: 1.0.0
|
2023 |
+
postcss: 8.4.24
|
2024 |
+
postcss-import: 15.1.0([email protected])
|
2025 |
+
postcss-js: 4.0.1([email protected])
|
2026 |
+
postcss-load-config: 4.0.1([email protected])
|
2027 |
+
postcss-nested: 6.0.1([email protected])
|
2028 |
+
postcss-selector-parser: 6.0.13
|
2029 |
+
postcss-value-parser: 4.2.0
|
2030 |
+
resolve: 1.22.2
|
2031 |
+
sucrase: 3.32.0
|
2032 |
+
transitivePeerDependencies:
|
2033 |
+
- ts-node
|
2034 |
+
|
2035 | |
2036 |
+
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
|
2037 |
+
dev: true
|
2038 |
+
|
2039 | |
2040 |
+
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
|
2041 |
+
engines: {node: '>=0.8'}
|
2042 |
+
dependencies:
|
2043 |
+
thenify: 3.3.1
|
2044 |
+
|
2045 | |
2046 |
+
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
|
2047 |
+
dependencies:
|
2048 |
+
any-promise: 1.3.0
|
2049 |
+
|
2050 | |
2051 |
+
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
|
2052 |
+
engines: {node: '>=4'}
|
2053 |
+
dev: true
|
2054 |
+
|
2055 | |
2056 |
+
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
|
2057 |
+
engines: {node: '>=8.0'}
|
2058 |
+
dependencies:
|
2059 |
+
is-number: 7.0.0
|
2060 |
+
|
2061 | |
2062 |
+
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
|
2063 |
+
|
2064 | |
2065 |
+
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
|
2066 |
+
dev: true
|
2067 |
+
|
2068 | |
2069 |
+
resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
|
2070 |
+
engines: {node: '>= 6'}
|
2071 |
+
peerDependencies:
|
2072 |
+
typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
|
2073 |
+
dependencies:
|
2074 |
+
tslib: 1.14.1
|
2075 |
+
typescript: 5.0.2
|
2076 |
+
dev: true
|
2077 |
+
|
2078 | |
2079 |
+
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
2080 |
+
engines: {node: '>= 0.8.0'}
|
2081 |
+
dependencies:
|
2082 |
+
prelude-ls: 1.2.1
|
2083 |
+
dev: true
|
2084 |
+
|
2085 | |
2086 |
+
resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
|
2087 |
+
engines: {node: '>=10'}
|
2088 |
+
dev: true
|
2089 |
+
|
2090 | |
2091 |
+
resolution: {integrity: sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==}
|
2092 |
+
engines: {node: '>=12.20'}
|
2093 |
+
hasBin: true
|
2094 |
+
|
2095 | |
2096 |
+
resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==}
|
2097 |
+
hasBin: true
|
2098 |
+
peerDependencies:
|
2099 |
+
browserslist: '>= 4.21.0'
|
2100 |
+
dependencies:
|
2101 |
+
browserslist: 4.21.9
|
2102 |
+
escalade: 3.1.1
|
2103 |
+
picocolors: 1.0.0
|
2104 |
+
dev: true
|
2105 |
+
|
2106 | |
2107 |
+
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
2108 |
+
dependencies:
|
2109 |
+
punycode: 2.3.0
|
2110 |
+
dev: true
|
2111 |
+
|
2112 | |
2113 |
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
2114 |
+
|
2115 | |
2116 |
+
resolution: {integrity: sha512-qsTNZjO9NoJNW7KnOrgYwczm0WctJ8m/yqYAMAK9Lxt4SoySUfS5S8ia9K7JHpa3KEeMfyF8LoJ3c5NeBJy6pg==}
|
2117 |
+
engines: {node: ^14.18.0 || >=16.0.0}
|
2118 |
+
hasBin: true
|
2119 |
+
peerDependencies:
|
2120 |
+
'@types/node': '>= 14'
|
2121 |
+
less: '*'
|
2122 |
+
sass: '*'
|
2123 |
+
stylus: '*'
|
2124 |
+
sugarss: '*'
|
2125 |
+
terser: ^5.4.0
|
2126 |
+
peerDependenciesMeta:
|
2127 |
+
'@types/node':
|
2128 |
+
optional: true
|
2129 |
+
less:
|
2130 |
+
optional: true
|
2131 |
+
sass:
|
2132 |
+
optional: true
|
2133 |
+
stylus:
|
2134 |
+
optional: true
|
2135 |
+
sugarss:
|
2136 |
+
optional: true
|
2137 |
+
terser:
|
2138 |
+
optional: true
|
2139 |
+
dependencies:
|
2140 |
+
esbuild: 0.17.19
|
2141 |
+
postcss: 8.4.24
|
2142 |
+
rollup: 3.25.1
|
2143 |
+
optionalDependencies:
|
2144 |
+
fsevents: 2.3.2
|
2145 |
+
dev: true
|
2146 |
+
|
2147 | |
2148 |
+
resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
|
2149 |
+
engines: {node: '>= 8'}
|
2150 |
+
hasBin: true
|
2151 |
+
dependencies:
|
2152 |
+
isexe: 2.0.0
|
2153 |
+
dev: true
|
2154 |
+
|
2155 | |
2156 |
+
resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
|
2157 |
+
engines: {node: '>=0.10.0'}
|
2158 |
+
dev: true
|
2159 |
+
|
2160 | |
2161 |
+
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
|
2162 |
+
|
2163 | |
2164 |
+
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
2165 |
+
dev: true
|
2166 |
+
|
2167 | |
2168 |
+
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
|
2169 |
+
dev: true
|
2170 |
+
|
2171 | |
2172 |
+
resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==}
|
2173 |
+
engines: {node: '>= 14'}
|
2174 |
+
|
2175 | |
2176 |
+
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
2177 |
+
engines: {node: '>=10'}
|
2178 |
+
dev: true
|
postcss.config.js
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
export default {
|
2 |
+
plugins: {
|
3 |
+
tailwindcss: {},
|
4 |
+
autoprefixer: {},
|
5 |
+
},
|
6 |
+
}
|
public/vite.svg
ADDED
|
src/App.tsx
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import CountBtn from '@/components/CountBtn';
|
2 |
+
import ReactSVG from '@/assets/react.svg';
|
3 |
+
import { Badge } from '@/components/ui/badge';
|
4 |
+
|
5 |
+
function App() {
|
6 |
+
return (
|
7 |
+
<main className="flex flex-col items-center justify-center h-screen">
|
8 |
+
<div className="flex flex-col items-center gap-y-4">
|
9 |
+
<div className="inline-flex items-center gap-x-4">
|
10 |
+
<img src={ReactSVG} alt="React Logo" className="w-32" />
|
11 |
+
<span className="text-6xl">+</span>
|
12 |
+
<img src={'/vite.svg'} alt="Vite Logo" className="w-32" />
|
13 |
+
</div>
|
14 |
+
<a href="https://ui.shadcn.com" rel="noopener noreferrer nofollow" target="_blank">
|
15 |
+
<Badge variant="outline">shadcn/ui</Badge>
|
16 |
+
</a>
|
17 |
+
<CountBtn />
|
18 |
+
</div>
|
19 |
+
</main>
|
20 |
+
);
|
21 |
+
}
|
22 |
+
|
23 |
+
export default App;
|
src/assets/react.svg
ADDED
|
src/components/CountBtn.tsx
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { useState } from 'react';
|
2 |
+
import { cn } from '@/lib/utils';
|
3 |
+
import { Button } from '@/components/ui/button';
|
4 |
+
|
5 |
+
interface Props {
|
6 |
+
className?: string;
|
7 |
+
}
|
8 |
+
|
9 |
+
export default function CountBtn({ className }: Props) {
|
10 |
+
const [count, setCount] = useState(0);
|
11 |
+
|
12 |
+
return (
|
13 |
+
<Button onClick={() => setCount((count) => count + 1)} className={cn('', className)}>
|
14 |
+
Count is: {count}
|
15 |
+
</Button>
|
16 |
+
);
|
17 |
+
}
|
src/components/ui/badge.tsx
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import * as React from "react"
|
2 |
+
import { cva, type VariantProps } from "class-variance-authority"
|
3 |
+
|
4 |
+
import { cn } from "@/lib/utils"
|
5 |
+
|
6 |
+
const badgeVariants = cva(
|
7 |
+
"inline-flex items-center border rounded-full px-2.5 py-0.5 text-xs font-semibold transition-colors focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2",
|
8 |
+
{
|
9 |
+
variants: {
|
10 |
+
variant: {
|
11 |
+
default:
|
12 |
+
"bg-primary hover:bg-primary/80 border-transparent text-primary-foreground",
|
13 |
+
secondary:
|
14 |
+
"bg-secondary hover:bg-secondary/80 border-transparent text-secondary-foreground",
|
15 |
+
destructive:
|
16 |
+
"bg-destructive hover:bg-destructive/80 border-transparent text-destructive-foreground",
|
17 |
+
outline: "text-foreground",
|
18 |
+
},
|
19 |
+
},
|
20 |
+
defaultVariants: {
|
21 |
+
variant: "default",
|
22 |
+
},
|
23 |
+
}
|
24 |
+
)
|
25 |
+
|
26 |
+
export interface BadgeProps
|
27 |
+
extends React.HTMLAttributes<HTMLDivElement>,
|
28 |
+
VariantProps<typeof badgeVariants> {}
|
29 |
+
|
30 |
+
function Badge({ className, variant, ...props }: BadgeProps) {
|
31 |
+
return (
|
32 |
+
<div className={cn(badgeVariants({ variant }), className)} {...props} />
|
33 |
+
)
|
34 |
+
}
|
35 |
+
|
36 |
+
export { Badge, badgeVariants }
|
src/components/ui/button.tsx
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import * as React from "react"
|
2 |
+
import { Slot } from "@radix-ui/react-slot"
|
3 |
+
import { cva, type VariantProps } from "class-variance-authority"
|
4 |
+
|
5 |
+
import { cn } from "@/lib/utils"
|
6 |
+
|
7 |
+
const buttonVariants = cva(
|
8 |
+
"inline-flex items-center justify-center rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:opacity-50 disabled:pointer-events-none ring-offset-background",
|
9 |
+
{
|
10 |
+
variants: {
|
11 |
+
variant: {
|
12 |
+
default: "bg-primary text-primary-foreground hover:bg-primary/90",
|
13 |
+
destructive:
|
14 |
+
"bg-destructive text-destructive-foreground hover:bg-destructive/90",
|
15 |
+
outline:
|
16 |
+
"border border-input hover:bg-accent hover:text-accent-foreground",
|
17 |
+
secondary:
|
18 |
+
"bg-secondary text-secondary-foreground hover:bg-secondary/80",
|
19 |
+
ghost: "hover:bg-accent hover:text-accent-foreground",
|
20 |
+
link: "underline-offset-4 hover:underline text-primary",
|
21 |
+
},
|
22 |
+
size: {
|
23 |
+
default: "h-10 py-2 px-4",
|
24 |
+
sm: "h-9 px-3 rounded-md",
|
25 |
+
lg: "h-11 px-8 rounded-md",
|
26 |
+
},
|
27 |
+
},
|
28 |
+
defaultVariants: {
|
29 |
+
variant: "default",
|
30 |
+
size: "default",
|
31 |
+
},
|
32 |
+
}
|
33 |
+
)
|
34 |
+
|
35 |
+
export interface ButtonProps
|
36 |
+
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
|
37 |
+
VariantProps<typeof buttonVariants> {
|
38 |
+
asChild?: boolean
|
39 |
+
}
|
40 |
+
|
41 |
+
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
42 |
+
({ className, variant, size, asChild = false, ...props }, ref) => {
|
43 |
+
const Comp = asChild ? Slot : "button"
|
44 |
+
return (
|
45 |
+
<Comp
|
46 |
+
className={cn(buttonVariants({ variant, size, className }))}
|
47 |
+
ref={ref}
|
48 |
+
{...props}
|
49 |
+
/>
|
50 |
+
)
|
51 |
+
}
|
52 |
+
)
|
53 |
+
Button.displayName = "Button"
|
54 |
+
|
55 |
+
export { Button, buttonVariants }
|
src/lib/utils.ts
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { ClassValue, clsx } from 'clsx';
|
2 |
+
import { twMerge } from 'tailwind-merge';
|
3 |
+
|
4 |
+
export function cn(...inputs: ClassValue[]) {
|
5 |
+
return twMerge(clsx(inputs));
|
6 |
+
}
|
src/main.tsx
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import React from 'react';
|
2 |
+
import ReactDOM from 'react-dom/client';
|
3 |
+
import App from './App.tsx';
|
4 |
+
import '@/styles/globals.css';
|
5 |
+
|
6 |
+
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
|
7 |
+
<React.StrictMode>
|
8 |
+
<App />
|
9 |
+
</React.StrictMode>
|
10 |
+
);
|
src/styles/globals.css
ADDED
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
@tailwind base;
|
2 |
+
@tailwind components;
|
3 |
+
@tailwind utilities;
|
4 |
+
|
5 |
+
@layer base {
|
6 |
+
:root {
|
7 |
+
--background: 0 0% 100%;
|
8 |
+
--foreground: 222.2 47.4% 11.2%;
|
9 |
+
|
10 |
+
--muted: 210 40% 96.1%;
|
11 |
+
--muted-foreground: 215.4 16.3% 46.9%;
|
12 |
+
|
13 |
+
--popover: 0 0% 100%;
|
14 |
+
--popover-foreground: 222.2 47.4% 11.2%;
|
15 |
+
|
16 |
+
--card: 0 0% 100%;
|
17 |
+
--card-foreground: 222.2 47.4% 11.2%;
|
18 |
+
|
19 |
+
--border: 214.3 31.8% 91.4%;
|
20 |
+
--input: 214.3 31.8% 91.4%;
|
21 |
+
|
22 |
+
--primary: 222.2 47.4% 11.2%;
|
23 |
+
--primary-foreground: 210 40% 98%;
|
24 |
+
|
25 |
+
--secondary: 210 40% 96.1%;
|
26 |
+
--secondary-foreground: 222.2 47.4% 11.2%;
|
27 |
+
|
28 |
+
--accent: 210 40% 96.1%;
|
29 |
+
--accent-foreground: 222.2 47.4% 11.2%;
|
30 |
+
|
31 |
+
--destructive: 0 100% 50%;
|
32 |
+
--destructive-foreground: 210 40% 98%;
|
33 |
+
|
34 |
+
--ring: 215 20.2% 65.1%;
|
35 |
+
|
36 |
+
--radius: 0.5rem;
|
37 |
+
}
|
38 |
+
|
39 |
+
.dark {
|
40 |
+
--background: 224 71% 4%;
|
41 |
+
--foreground: 213 31% 91%;
|
42 |
+
|
43 |
+
--muted: 223 47% 11%;
|
44 |
+
--muted-foreground: 215.4 16.3% 56.9%;
|
45 |
+
|
46 |
+
--popover: 224 71% 4%;
|
47 |
+
--popover-foreground: 215 20.2% 65.1%;
|
48 |
+
|
49 |
+
--card: 224 71% 4%;
|
50 |
+
--card-foreground: 213 31% 91%;
|
51 |
+
|
52 |
+
--border: 216 34% 17%;
|
53 |
+
--input: 216 34% 17%;
|
54 |
+
|
55 |
+
--primary: 210 40% 98%;
|
56 |
+
--primary-foreground: 222.2 47.4% 1.2%;
|
57 |
+
|
58 |
+
--secondary: 222.2 47.4% 11.2%;
|
59 |
+
--secondary-foreground: 210 40% 98%;
|
60 |
+
|
61 |
+
--accent: 216 34% 17%;
|
62 |
+
--accent-foreground: 210 40% 98%;
|
63 |
+
|
64 |
+
--destructive: 0 63% 31%;
|
65 |
+
--destructive-foreground: 210 40% 98%;
|
66 |
+
|
67 |
+
--ring: 216 34% 17%;
|
68 |
+
|
69 |
+
--radius: 0.5rem;
|
70 |
+
}
|
71 |
+
}
|
72 |
+
|
73 |
+
@layer base {
|
74 |
+
* {
|
75 |
+
@apply border-border;
|
76 |
+
}
|
77 |
+
body {
|
78 |
+
@apply bg-background text-foreground;
|
79 |
+
font-feature-settings: 'rlig' 1, 'calt' 1;
|
80 |
+
}
|
81 |
+
}
|
src/vite-env.d.ts
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
/// <reference types="vite/client" />
|
tailwind.config.js
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import tailwindAnimate from 'tailwindcss-animate';
|
2 |
+
|
3 |
+
/** @type {import('tailwindcss').Config} */
|
4 |
+
export default {
|
5 |
+
darkMode: ['class'],
|
6 |
+
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
7 |
+
theme: {
|
8 |
+
container: {
|
9 |
+
center: true,
|
10 |
+
padding: '2rem',
|
11 |
+
screens: {
|
12 |
+
'2xl': '1400px',
|
13 |
+
},
|
14 |
+
},
|
15 |
+
extend: {
|
16 |
+
colors: {
|
17 |
+
border: 'hsl(var(--border))',
|
18 |
+
input: 'hsl(var(--input))',
|
19 |
+
ring: 'hsl(var(--ring))',
|
20 |
+
background: 'hsl(var(--background))',
|
21 |
+
foreground: 'hsl(var(--foreground))',
|
22 |
+
primary: {
|
23 |
+
DEFAULT: 'hsl(var(--primary))',
|
24 |
+
foreground: 'hsl(var(--primary-foreground))',
|
25 |
+
},
|
26 |
+
secondary: {
|
27 |
+
DEFAULT: 'hsl(var(--secondary))',
|
28 |
+
foreground: 'hsl(var(--secondary-foreground))',
|
29 |
+
},
|
30 |
+
destructive: {
|
31 |
+
DEFAULT: 'hsl(var(--destructive))',
|
32 |
+
foreground: 'hsl(var(--destructive-foreground))',
|
33 |
+
},
|
34 |
+
muted: {
|
35 |
+
DEFAULT: 'hsl(var(--muted))',
|
36 |
+
foreground: 'hsl(var(--muted-foreground))',
|
37 |
+
},
|
38 |
+
accent: {
|
39 |
+
DEFAULT: 'hsl(var(--accent))',
|
40 |
+
foreground: 'hsl(var(--accent-foreground))',
|
41 |
+
},
|
42 |
+
popover: {
|
43 |
+
DEFAULT: 'hsl(var(--popover))',
|
44 |
+
foreground: 'hsl(var(--popover-foreground))',
|
45 |
+
},
|
46 |
+
card: {
|
47 |
+
DEFAULT: 'hsl(var(--card))',
|
48 |
+
foreground: 'hsl(var(--card-foreground))',
|
49 |
+
},
|
50 |
+
},
|
51 |
+
borderRadius: {
|
52 |
+
lg: 'var(--radius)',
|
53 |
+
md: 'calc(var(--radius) - 2px)',
|
54 |
+
sm: 'calc(var(--radius) - 4px)',
|
55 |
+
},
|
56 |
+
keyframes: {
|
57 |
+
'accordion-down': {
|
58 |
+
from: { height: 0 },
|
59 |
+
to: { height: 'var(--radix-accordion-content-height)' },
|
60 |
+
},
|
61 |
+
'accordion-up': {
|
62 |
+
from: { height: 'var(--radix-accordion-content-height)' },
|
63 |
+
to: { height: 0 },
|
64 |
+
},
|
65 |
+
},
|
66 |
+
animation: {
|
67 |
+
'accordion-down': 'accordion-down 0.2s ease-out',
|
68 |
+
'accordion-up': 'accordion-up 0.2s ease-out',
|
69 |
+
},
|
70 |
+
},
|
71 |
+
},
|
72 |
+
plugins: [tailwindAnimate],
|
73 |
+
};
|
tsconfig.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"compilerOptions": {
|
3 |
+
"target": "ES2020",
|
4 |
+
"useDefineForClassFields": true,
|
5 |
+
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
6 |
+
"module": "ESNext",
|
7 |
+
"skipLibCheck": true,
|
8 |
+
|
9 |
+
/* Bundler mode */
|
10 |
+
"moduleResolution": "bundler",
|
11 |
+
"allowImportingTsExtensions": true,
|
12 |
+
"resolveJsonModule": true,
|
13 |
+
"isolatedModules": true,
|
14 |
+
"noEmit": true,
|
15 |
+
"jsx": "react-jsx",
|
16 |
+
|
17 |
+
/* Linting */
|
18 |
+
"strict": true,
|
19 |
+
"noUnusedLocals": true,
|
20 |
+
"noUnusedParameters": true,
|
21 |
+
"noFallthroughCasesInSwitch": true,
|
22 |
+
|
23 |
+
/* Paths */
|
24 |
+
"baseUrl": "./",
|
25 |
+
"paths": {
|
26 |
+
"@/*": ["src/*"]
|
27 |
+
}
|
28 |
+
},
|
29 |
+
"include": ["src"],
|
30 |
+
"references": [{ "path": "./tsconfig.node.json" }]
|
31 |
+
}
|
tsconfig.node.json
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"compilerOptions": {
|
3 |
+
"composite": true,
|
4 |
+
"skipLibCheck": true,
|
5 |
+
"module": "ESNext",
|
6 |
+
"moduleResolution": "bundler",
|
7 |
+
"allowSyntheticDefaultImports": true
|
8 |
+
},
|
9 |
+
"include": ["vite.config.ts"]
|
10 |
+
}
|
vite.config.ts
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { defineConfig } from 'vite';
|
2 |
+
import react from '@vitejs/plugin-react';
|
3 |
+
|
4 |
+
// https://vitejs.dev/config/
|
5 |
+
export default defineConfig({
|
6 |
+
plugins: [react()],
|
7 |
+
resolve: {
|
8 |
+
alias: {
|
9 |
+
'@': '/src',
|
10 |
+
},
|
11 |
+
},
|
12 |
+
});
|