├── webhook-trader ├── .eslintrc.json ├── app │ ├── favicon.ico │ ├── layout.tsx │ ├── components │ │ ├── Table.tsx │ │ └── LogFileViewer.tsx │ ├── globals.css │ ├── TablePage.tsx │ ├── CsvTable.tsx │ ├── test.tsx │ └── page.tsx ├── postcss.config.js ├── public │ ├── orders.txt │ ├── logs.txt │ ├── hooks.txt │ ├── vercel.svg │ ├── next.svg │ └── data │ │ └── orders.json ├── next.config.js ├── .gitignore ├── tailwind.config.js ├── tsconfig.json ├── package.json ├── README.md └── package-lock.json ├── __MACOSX ├── ._webhook-trader └── webhook-trader │ ├── ._.git │ ├── ._app │ ├── ._.next │ ├── ._public │ ├── ._README.md │ ├── ._.gitignore │ ├── ._node_modules │ ├── ._package.json │ ├── app │ ├── ._page.tsx │ ├── ._test.tsx │ ├── ._components │ ├── ._layout.tsx │ ├── ._CsvTable.tsx │ ├── ._TablePage.tsx │ ├── ._favicon.ico │ ├── ._globals.css │ └── components │ │ ├── ._Table.tsx │ │ └── ._LogFileViewer.tsx │ ├── public │ ├── ._data │ ├── ._hooks.txt │ ├── ._logs.txt │ ├── ._next.svg │ ├── ._orders.txt │ ├── ._vercel.svg │ └── data │ │ └── ._orders.json │ ├── ._.eslintrc.json │ ├── ._next-env.d.ts │ ├── ._next.config.js │ ├── ._tsconfig.json │ ├── ._package-lock.json │ ├── ._postcss.config.js │ └── ._tailwind.config.js ├── README.md ├── .github └── workflows │ └── main.yml └── .gitignore /webhook-trader/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /__MACOSX/._webhook-trader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/._webhook-trader -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._.git -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._app: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._app -------------------------------------------------------------------------------- /webhook-trader/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/webhook-trader/app/favicon.ico -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._.next: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._.next -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._public: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._public -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._README.md -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._.gitignore -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._node_modules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._node_modules -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._package.json -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/app/._page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/app/._page.tsx -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/app/._test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/app/._test.tsx -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/public/._data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/public/._data -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._.eslintrc.json -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._next-env.d.ts -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._next.config.js -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._tsconfig.json -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/app/._components: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/app/._components -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/app/._layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/app/._layout.tsx -------------------------------------------------------------------------------- /webhook-trader/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._package-lock.json -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._postcss.config.js -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/app/._CsvTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/app/._CsvTable.tsx -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/app/._TablePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/app/._TablePage.tsx -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/app/._favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/app/._favicon.ico -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/app/._globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/app/._globals.css -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/public/._hooks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/public/._hooks.txt -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/public/._logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/public/._logs.txt -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/public/._next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/public/._next.svg -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/public/._orders.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/public/._orders.txt -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/public/._vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/public/._vercel.svg -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/._tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/._tailwind.config.js -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/app/components/._Table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/app/components/._Table.tsx -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/public/data/._orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/public/data/._orders.json -------------------------------------------------------------------------------- /__MACOSX/webhook-trader/app/components/._LogFileViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tbelei/webhook-trader/HEAD/__MACOSX/webhook-trader/app/components/._LogFileViewer.tsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # webhook-trader 4 | 5 | 6 | This is one of my examples 7 | 8 | https://img.shields.io/github/issues-pr/eliteninja07/webhook-trader?style=for-the-badge&state=open 9 | -------------------------------------------------------------------------------- /webhook-trader/public/orders.txt: -------------------------------------------------------------------------------- 1 | info: 6/2/2023, 2:20:31 PM, 1071378911, SELL, ETHUSDT, FILLED, 1871.54000, 2893.40084, 1.546, MARKET 2 | info: 6/2/2023, 2:20:32 PM, 1071378934, BUY, ETHUSDT, FILLED, 1872.00000, 2894.112, 1.546, MARKET 3 | -------------------------------------------------------------------------------- /webhook-trader/next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | // const nextConfig = {} 3 | 4 | // module.exports = nextConfig 5 | module.exports = { 6 | // webpack5: true, 7 | webpack: (config) => { 8 | config.resolve.fallback = { fs: false }; 9 | return config; 10 | }, 11 | 12 | }; 13 | -------------------------------------------------------------------------------- /webhook-trader/public/logs.txt: -------------------------------------------------------------------------------- 1 | info: Started on port: 80 2 | info: Stopped by signal: SIGINT 3 | info: Started on port: 80 4 | info: Received from IP ::1 at 2023-05-10T02:42:16.600Z webhook content {"type":"open","account":"account1","side":"buy","amount":"0.98","asset":"ETH","base":"USDT","leverage":"2"} 5 | info: Parsed and found type: open 6 | info: found: account1 for USDT and ETH and 0.98 and 2 7 | info: Opened new position at 2023-05-10T02:42:19.702Z 8 | info: Stopped by signal: SIGINT 9 | -------------------------------------------------------------------------------- /webhook-trader/app/layout.tsx: -------------------------------------------------------------------------------- 1 | import './globals.css' 2 | import { Inter } from 'next/font/google' 3 | 4 | const inter = Inter({ subsets: ['latin'] }) 5 | 6 | export const metadata = { 7 | title: 'Create Next App', 8 | description: 'Generated by create next app', 9 | } 10 | 11 | export default function RootLayout({ 12 | children, 13 | }: { 14 | children: React.ReactNode 15 | }) { 16 | return ( 17 | 18 | {children} 19 | 20 | ) 21 | } 22 | -------------------------------------------------------------------------------- /webhook-trader/app/components/Table.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | interface TableProps { 4 | data: string[][]; 5 | } 6 | 7 | const Table: React.FC = ({ data }) => { 8 | // Render the HTML table 9 | return ( 10 | 11 | {data.map((row, index) => ( 12 | 13 | {row.map((column, columnIndex) => ( 14 | 15 | ))} 16 | 17 | ))} 18 |
{column.trim()}
19 | ); 20 | }; 21 | 22 | export default Table; 23 | -------------------------------------------------------------------------------- /webhook-trader/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /webhook-trader/tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './pages/**/*.{js,ts,jsx,tsx,mdx}', 5 | './components/**/*.{js,ts,jsx,tsx,mdx}', 6 | './app/**/*.{js,ts,jsx,tsx,mdx}', 7 | ], 8 | theme: { 9 | extend: { 10 | backgroundImage: { 11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 12 | 'gradient-conic': 13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 14 | }, 15 | }, 16 | }, 17 | plugins: [], 18 | } 19 | -------------------------------------------------------------------------------- /webhook-trader/public/hooks.txt: -------------------------------------------------------------------------------- 1 | info: ::1, 2023-06-02T06:20:29.773Z, {"type":"open","account":"account1","side":"buy","amount":"0.98","asset":"ETH","base":"USDT","leverage":"2"} 2 | info: ::1, 2023-06-02T06:20:29.773Z, {"type":"open","account":"account1","side":"buy","amount":"0.98","asset":"ETH","base":"USDT","leverage":"2"} 3 | info: ::1, 2023-06-02T06:20:29.773Z, {"type":"open","account":"account1","side":"buy","amount":"0.98","asset":"ETH","base":"USDT","leverage":"2"} 4 | info: ::1, 2023-06-02T06:20:29.773Z, {"type":"open","account":"account1","side":"buy","amount":"0.98","asset":"ETH","base":"USDT","leverage":"2"} -------------------------------------------------------------------------------- /webhook-trader/public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webhook-trader/app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --foreground-rgb: 0, 0, 0; 7 | --background-start-rgb: 214, 219, 220; 8 | --background-end-rgb: 255, 255, 255; 9 | } 10 | 11 | @media (prefers-color-scheme: dark) { 12 | :root { 13 | --foreground-rgb: 255, 255, 255; 14 | --background-start-rgb: 0, 0, 0; 15 | --background-end-rgb: 0, 0, 0; 16 | } 17 | } 18 | 19 | body { 20 | color: rgb(var(--foreground-rgb)); 21 | background: linear-gradient( 22 | to bottom, 23 | transparent, 24 | rgb(var(--background-end-rgb)) 25 | ) 26 | rgb(var(--background-start-rgb)); 27 | } 28 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Pull Request Badge 2 | 3 | on: 4 | pull_request: 5 | types: [opened, closed, reopened] 6 | 7 | jobs: 8 | badge: 9 | runs-on: windows 10 | steps: 11 | - uses: actions/checkout@v2 12 | - name: Set up PR badge 13 | uses: peter-evans/create-pull-request-comment@v3.5.1 14 | with: 15 | token: ${{ secrets.GITHUB_TOKEN }} 16 | comment: | 17 | ![PRs](https://img.shields.io/github/issues-pr-raw/EliteNinja07/webhook-trader?color=green&label=Open%20PRs&logo=github) 18 | ![Closed PRs](https://img.shields.io/github/issues-pr-closed-raw/EliteNinja07/webhook-trader?color=red&label=Closed%20PRs&logo=github) 19 | -------------------------------------------------------------------------------- /webhook-trader/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "plugins": [ 18 | { 19 | "name": "next" 20 | } 21 | ], 22 | "paths": { 23 | "@/*": ["./*"] 24 | } 25 | }, 26 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 27 | "exclude": ["node_modules"] 28 | } 29 | -------------------------------------------------------------------------------- /webhook-trader/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webhook-trader", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "@beforesemicolon/node-json-db": "^1.1.0", 13 | "@types/node": "20.2.5", 14 | "@types/react": "18.2.7", 15 | "@types/react-dom": "18.2.4", 16 | "autoprefixer": "10.4.14", 17 | "axios": "^1.4.0", 18 | "eslint": "8.41.0", 19 | "eslint-config-next": "13.4.4", 20 | "fs": "^0.0.1-security", 21 | "next": "13.4.4", 22 | "papaparse": "^5.4.1", 23 | "postcss": "8.4.24", 24 | "react": "18.2.0", 25 | "react-dom": "18.2.0", 26 | "tailwindcss": "3.3.2", 27 | "typescript": "5.0.4" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /webhook-trader/app/components/LogFileViewer.tsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useState } from 'react'; 2 | import path from 'path'; 3 | 4 | const LogFileViewer: React.FC = () => { 5 | const [logContents, setLogContents] = useState(''); 6 | 7 | useEffect(() => { 8 | const fetchLogFile = async () => { 9 | try { 10 | const filePath = path.join(process.cwd(), 'public', 'orders.txt'); 11 | const fileContent = fs.readFileSync(filePath, 'utf-8'); 12 | const response = await fetch(filePath); 13 | const logData = await response.text(); 14 | setLogContents(logData); 15 | } catch (error) { 16 | console.error('Error fetching log file:', error); 17 | } 18 | }; 19 | 20 | fetchLogFile(); 21 | }, []); 22 | 23 | return
{logContents}
; 24 | }; 25 | 26 | export default LogFileViewer; 27 | -------------------------------------------------------------------------------- /webhook-trader/app/TablePage.tsx: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | import fs from 'fs'; 3 | import path from 'path'; 4 | import Table from './components/Table'; 5 | 6 | interface TablePageProps { 7 | data: string[][]; 8 | } 9 | 10 | const TablePage: React.FC = ({ data }) => { 11 | return ( 12 |
13 |

Data Table

14 | 15 | 16 | ); 17 | }; 18 | 19 | export default TablePage; 20 | 21 | export async function getStaticProps() { 22 | const filePath = path.join(process.cwd(), 'public', 'orderLogs.txt'); 23 | const fileContent = fs.readFileSync(filePath, 'utf-8'); 24 | console.log(`HERE`) 25 | console.log(`${fileContent}`) 26 | 27 | const rows = fileContent.split('\n'); 28 | const data = rows.map((row) => row.replace('info: ', '').split(',')); 29 | 30 | return { 31 | props: { 32 | data, 33 | }, 34 | }; 35 | } 36 | -------------------------------------------------------------------------------- /webhook-trader/app/CsvTable.tsx: -------------------------------------------------------------------------------- 1 | import { useEffect, useState } from 'react'; 2 | import Papa from 'papaparse'; 3 | 4 | const CsvTable = () => { 5 | const [data, setData] = useState([]); 6 | 7 | useEffect(() => { 8 | const fetchData = async () => { 9 | const response = await fetch('/data.csv'); 10 | const reader = response.body.getReader(); 11 | const result = await reader.read(); 12 | const decoder = new TextDecoder('utf-8'); 13 | const csv = decoder.decode(result.value); 14 | const { data } = Papa.parse(csv, { header: true }); 15 | setData(data); 16 | }; 17 | 18 | fetchData(); 19 | }, []); 20 | 21 | return ( 22 |
23 | 24 | 25 | {data.length > 0 && Object.keys(data[0]).map((key, index) => ( 26 | 27 | ))} 28 | 29 | 30 | 31 | {data.map((row, rowIndex) => ( 32 | 33 | {Object.values(row).map((value, columnIndex) => ( 34 | 35 | ))} 36 | 37 | ))} 38 | 39 |
{key}
{value}
40 | ); 41 | }; 42 | 43 | export default CsvTable; 44 | -------------------------------------------------------------------------------- /webhook-trader/public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webhook-trader/README.md: -------------------------------------------------------------------------------- 1 | This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app). 2 | 3 | ## Getting Started 4 | 5 | First, run the development server: 6 | 7 | ```bash 8 | npm run dev 9 | # or 10 | yarn dev 11 | # or 12 | pnpm dev 13 | ``` 14 | 15 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 16 | 17 | You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. 18 | 19 | This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. 20 | 21 | ## Learn More 22 | 23 | To learn more about Next.js, take a look at the following resources: 24 | 25 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 26 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 27 | 28 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 29 | 30 | ## Deploy on Vercel 31 | 32 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 33 | 34 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 35 | -------------------------------------------------------------------------------- /webhook-trader/public/data/orders.json: -------------------------------------------------------------------------------- 1 | { 2 | "info": { 3 | "orderId": "1070485012", 4 | "symbol": "ETHUSDT", 5 | "status": "FILLED", 6 | "clientOrderId": "c0HMYu4oxmG5KMucCKe5il", 7 | "price": "0.00", 8 | "avgPrice": "1861.01376", 9 | "origQty": "1.551", 10 | "executedQty": "1.551", 11 | "cumQty": "1.551", 12 | "cumQuote": "2886.43234", 13 | "timeInForce": "GTC", 14 | "type": "MARKET", 15 | "reduceOnly": false, 16 | "closePosition": false, 17 | "side": "BUY", 18 | "positionSide": "BOTH", 19 | "stopPrice": "0.00", 20 | "workingType": "CONTRACT_PRICE", 21 | "priceProtect": false, 22 | "origType": "MARKET", 23 | "updateTime": "1685626243039" 24 | }, 25 | "id": "1070485012", 26 | "clientOrderId": "c0HMYu4oxmG5KMucCKe5il", 27 | "symbol": "ETH/USDT:USDT", 28 | "type": "market", 29 | "timeInForce": "GTC", 30 | "postOnly": false, 31 | "reduceOnly": false, 32 | "side": "buy", 33 | "price": 1861.01376, 34 | "amount": 1.551, 35 | "cost": 2886.43234, 36 | "average": 1861.01376, 37 | "filled": 1.551, 38 | "remaining": 0, 39 | "status": "closed", 40 | "fee": {}, 41 | "trades": [], 42 | "fees": [ 43 | {} 44 | ] 45 | }{ 46 | "info": { 47 | "orderId": "1070486827", 48 | "symbol": "ETHUSDT", 49 | "status": "FILLED", 50 | "clientOrderId": "fRZqkxGiuMmnAAilHlc06t", 51 | "price": "0.00", 52 | "avgPrice": "1861.10000", 53 | "origQty": "1.550", 54 | "executedQty": "1.550", 55 | "cumQty": "1.550", 56 | "cumQuote": "2884.70500", 57 | "timeInForce": "GTC", 58 | "type": "MARKET", 59 | "reduceOnly": false, 60 | "closePosition": false, 61 | "side": "BUY", 62 | "positionSide": "BOTH", 63 | "stopPrice": "0.00", 64 | "workingType": "CONTRACT_PRICE", 65 | "priceProtect": false, 66 | "origType": "MARKET", 67 | "updateTime": "1685626362097" 68 | }, 69 | "id": "1070486827", 70 | "clientOrderId": "fRZqkxGiuMmnAAilHlc06t", 71 | "symbol": "ETH/USDT:USDT", 72 | "type": "market", 73 | "timeInForce": "GTC", 74 | "postOnly": false, 75 | "reduceOnly": false, 76 | "side": "buy", 77 | "price": 1861.1, 78 | "amount": 1.55, 79 | "cost": 2884.705, 80 | "average": 1861.1, 81 | "filled": 1.55, 82 | "remaining": 0, 83 | "status": "closed", 84 | "fee": {}, 85 | "trades": [], 86 | "fees": [ 87 | {} 88 | ] 89 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | .pnpm-debug.log* 9 | 10 | # Diagnostic reports (https://nodejs.org/api/report.html) 11 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 12 | 13 | # Runtime data 14 | pids 15 | *.pid 16 | *.seed 17 | *.pid.lock 18 | 19 | # Directory for instrumented libs generated by jscoverage/JSCover 20 | lib-cov 21 | 22 | # Coverage directory used by tools like istanbul 23 | coverage 24 | *.lcov 25 | 26 | # nyc test coverage 27 | .nyc_output 28 | 29 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 30 | .grunt 31 | 32 | # Bower dependency directory (https://bower.io/) 33 | bower_components 34 | 35 | # node-waf configuration 36 | .lock-wscript 37 | 38 | # Compiled binary addons (https://nodejs.org/api/addons.html) 39 | build/Release 40 | 41 | # Dependency directories 42 | node_modules/ 43 | jspm_packages/ 44 | 45 | # Snowpack dependency directory (https://snowpack.dev/) 46 | web_modules/ 47 | 48 | # TypeScript cache 49 | *.tsbuildinfo 50 | 51 | # Optional npm cache directory 52 | .npm 53 | 54 | # Optional eslint cache 55 | .eslintcache 56 | 57 | # Optional stylelint cache 58 | .stylelintcache 59 | 60 | # Microbundle cache 61 | .rpt2_cache/ 62 | .rts2_cache_cjs/ 63 | .rts2_cache_es/ 64 | .rts2_cache_umd/ 65 | 66 | # Optional REPL history 67 | .node_repl_history 68 | 69 | # Output of 'npm pack' 70 | *.tgz 71 | 72 | # Yarn Integrity file 73 | .yarn-integrity 74 | 75 | # dotenv environment variable files 76 | .env 77 | .env.development.local 78 | .env.test.local 79 | .env.production.local 80 | .env.local 81 | 82 | # parcel-bundler cache (https://parceljs.org/) 83 | .cache 84 | .parcel-cache 85 | 86 | # Next.js build output 87 | .next 88 | out 89 | 90 | # Nuxt.js build / generate output 91 | .nuxt 92 | dist 93 | 94 | # Gatsby files 95 | .cache/ 96 | # Comment in the public line in if your project uses Gatsby and not Next.js 97 | # https://nextjs.org/blog/next-9-1#public-directory-support 98 | # public 99 | 100 | # vuepress build output 101 | .vuepress/dist 102 | 103 | # vuepress v2.x temp and cache directory 104 | .temp 105 | .cache 106 | 107 | # Docusaurus cache and generated files 108 | .docusaurus 109 | 110 | # Serverless directories 111 | .serverless/ 112 | 113 | # FuseBox cache 114 | .fusebox/ 115 | 116 | # DynamoDB Local files 117 | .dynamodb/ 118 | 119 | # TernJS port file 120 | .tern-port 121 | 122 | # Stores VSCode versions used for testing VSCode extensions 123 | .vscode-test 124 | 125 | # yarn v2 126 | .yarn/cache 127 | .yarn/unplugged 128 | .yarn/build-state.yml 129 | .yarn/install-state.gz 130 | .pnp.* 131 | -------------------------------------------------------------------------------- /webhook-trader/app/test.tsx: -------------------------------------------------------------------------------- 1 | 'use client'; 2 | 3 | import Image from 'next/image' 4 | import Table from './components/Table'; 5 | 6 | 7 | 8 | export default function Home() { 9 | return ( 10 |
11 |
12 |

13 | Webhooks received: 14 |

15 | {/* */} 33 |
34 | 35 | {/*
36 | Next.js Logo 44 |
*/} 45 | 78 | 79 | 80 |
81 | 82 |
    test
83 |
    test
84 | 85 | 86 | 155 | 156 | ) 157 | } 158 | -------------------------------------------------------------------------------- /webhook-trader/app/page.tsx: -------------------------------------------------------------------------------- 1 | 'use client'; 2 | 3 | import Image from 'next/image' 4 | import Table from './components/Table'; 5 | import TablePage from './TablePage'; 6 | import LogFileViewer from './components/LogFileViewer'; 7 | 8 | 9 | // import { useEffect, useState } from 'react'; 10 | // import Papa from 'papaparse'; 11 | 12 | // const CsvTable = () => { 13 | // const [data, setData] = useState([]); 14 | 15 | // useEffect(() => { 16 | // const fetchData = async () => { 17 | // const response = await fetch('/data.csv'); 18 | // const reader = response.body.getReader(); 19 | // const result = await reader.read(); 20 | // const decoder = new TextDecoder('utf-8'); 21 | // const csv = decoder.decode(result.value); 22 | // const { data } = Papa.parse(csv, { header: true }); 23 | // setData(data); 24 | // }; 25 | 26 | // fetchData(); 27 | // }, []); 28 | 29 | 30 | export default function Home() { 31 | return ( 32 |
33 |
34 |

35 | Webhooks received: 36 |

37 | {/* */} 55 |
56 | 57 | {/*
58 | 66 |
*/} 67 | 100 | 101 | 102 |
103 | {/* */} 104 | {/* */} 105 | 106 | 107 |
    test
108 |
    test
109 | 110 |
111 | 180 |
181 | ) 182 | } 183 | -------------------------------------------------------------------------------- /webhook-trader/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webhook-trader", 3 | "version": "0.1.0", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "webhook-trader", 9 | "version": "0.1.0", 10 | "dependencies": { 11 | "@beforesemicolon/node-json-db": "^1.1.0", 12 | "@types/node": "20.2.5", 13 | "@types/react": "18.2.7", 14 | "@types/react-dom": "18.2.4", 15 | "autoprefixer": "10.4.14", 16 | "axios": "^1.4.0", 17 | "eslint": "8.41.0", 18 | "eslint-config-next": "13.4.4", 19 | "fs": "^0.0.1-security", 20 | "next": "13.4.4", 21 | "papaparse": "^5.4.1", 22 | "postcss": "8.4.24", 23 | "react": "18.2.0", 24 | "react-dom": "18.2.0", 25 | "tailwindcss": "3.3.2", 26 | "typescript": "5.0.4" 27 | } 28 | 29 | }, 30 | "node_modules/@alloc/quick-lru": { 31 | "version": "5.2.0", 32 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", 33 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", 34 | "engines": { 35 | "node": ">=10" 36 | }, 37 | "funding": { 38 | "url": "https://github.com/sponsors/sindresorhus" 39 | } 40 | }, 41 | "node_modules/@babel/runtime": { 42 | "version": "7.22.3", 43 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.3.tgz", 44 | "integrity": "sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==", 45 | "dependencies": { 46 | "regenerator-runtime": "^0.13.11" 47 | }, 48 | "engines": { 49 | "node": ">=6.9.0" 50 | } 51 | }, 52 | "node_modules/@beforesemicolon/node-json-db": { 53 | "version": "1.1.0", 54 | "resolved": "https://registry.npmjs.org/@beforesemicolon/node-json-db/-/node-json-db-1.1.0.tgz", 55 | "integrity": "sha512-ixczC2HVpNGovBKqDAmYpZVqiNa2rnQNDJ5rcl3fXO4K+LBq4mRLed5qs8hOM0meuWcYjdrmDiUDAjHhr1Mm7Q==" 56 | }, 57 | "node_modules/@eslint-community/eslint-utils": { 58 | "version": "4.4.0", 59 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 60 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 61 | "dependencies": { 62 | "eslint-visitor-keys": "^3.3.0" 63 | }, 64 | "engines": { 65 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 66 | }, 67 | "peerDependencies": { 68 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 69 | } 70 | }, 71 | "node_modules/@eslint-community/regexpp": { 72 | "version": "4.5.1", 73 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz", 74 | "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==", 75 | "engines": { 76 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 77 | } 78 | }, 79 | "node_modules/@eslint/eslintrc": { 80 | "version": "2.0.3", 81 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz", 82 | "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==", 83 | "dependencies": { 84 | "ajv": "^6.12.4", 85 | "debug": "^4.3.2", 86 | "espree": "^9.5.2", 87 | "globals": "^13.19.0", 88 | "ignore": "^5.2.0", 89 | "import-fresh": "^3.2.1", 90 | "js-yaml": "^4.1.0", 91 | "minimatch": "^3.1.2", 92 | "strip-json-comments": "^3.1.1" 93 | }, 94 | "engines": { 95 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 96 | }, 97 | "funding": { 98 | "url": "https://opencollective.com/eslint" 99 | } 100 | }, 101 | "node_modules/@eslint/js": { 102 | "version": "8.41.0", 103 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.41.0.tgz", 104 | "integrity": "sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA==", 105 | "engines": { 106 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 107 | } 108 | }, 109 | "node_modules/@humanwhocodes/config-array": { 110 | "version": "0.11.8", 111 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", 112 | "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", 113 | "dependencies": { 114 | "@humanwhocodes/object-schema": "^1.2.1", 115 | "debug": "^4.1.1", 116 | "minimatch": "^3.0.5" 117 | }, 118 | "engines": { 119 | "node": ">=10.10.0" 120 | } 121 | }, 122 | "node_modules/@humanwhocodes/module-importer": { 123 | "version": "1.0.1", 124 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 125 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 126 | "engines": { 127 | "node": ">=12.22" 128 | }, 129 | "funding": { 130 | "type": "github", 131 | "url": "https://github.com/sponsors/nzakas" 132 | } 133 | }, 134 | "node_modules/@humanwhocodes/object-schema": { 135 | "version": "1.2.1", 136 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 137 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==" 138 | }, 139 | "node_modules/@jridgewell/gen-mapping": { 140 | "version": "0.3.3", 141 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", 142 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", 143 | "dependencies": { 144 | "@jridgewell/set-array": "^1.0.1", 145 | "@jridgewell/sourcemap-codec": "^1.4.10", 146 | "@jridgewell/trace-mapping": "^0.3.9" 147 | }, 148 | "engines": { 149 | "node": ">=6.0.0" 150 | } 151 | }, 152 | "node_modules/@jridgewell/resolve-uri": { 153 | "version": "3.1.0", 154 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", 155 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", 156 | "engines": { 157 | "node": ">=6.0.0" 158 | } 159 | }, 160 | "node_modules/@jridgewell/set-array": { 161 | "version": "1.1.2", 162 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", 163 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", 164 | "engines": { 165 | "node": ">=6.0.0" 166 | } 167 | }, 168 | "node_modules/@jridgewell/sourcemap-codec": { 169 | "version": "1.4.15", 170 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", 171 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" 172 | }, 173 | "node_modules/@jridgewell/trace-mapping": { 174 | "version": "0.3.18", 175 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz", 176 | "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==", 177 | "dependencies": { 178 | "@jridgewell/resolve-uri": "3.1.0", 179 | "@jridgewell/sourcemap-codec": "1.4.14" 180 | } 181 | }, 182 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { 183 | "version": "1.4.14", 184 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", 185 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==" 186 | }, 187 | "node_modules/@next/env": { 188 | "version": "13.4.4", 189 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.4.tgz", 190 | "integrity": "sha512-q/y7VZj/9YpgzDe64Zi6rY1xPizx80JjlU2BTevlajtaE3w1LqweH1gGgxou2N7hdFosXHjGrI4OUvtFXXhGLg==" 191 | }, 192 | "node_modules/@next/eslint-plugin-next": { 193 | "version": "13.4.4", 194 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.4.tgz", 195 | "integrity": "sha512-5jnh7q6I15efnjR/rR+/TGTc9hn53g3JTbEjAMjmeQiExKqEUgIXqrHI5zlTNlNyzCPkBB860/ctxXheZaF2Vw==", 196 | "dependencies": { 197 | "glob": "7.1.7" 198 | } 199 | }, 200 | "node_modules/@next/swc-darwin-arm64": { 201 | "version": "13.4.4", 202 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.4.tgz", 203 | "integrity": "sha512-xfjgXvp4KalNUKZMHmsFxr1Ug+aGmmO6NWP0uoh4G3WFqP/mJ1xxfww0gMOeMeSq/Jyr5k7DvoZ2Pv+XOITTtw==", 204 | "cpu": [ 205 | "arm64" 206 | ], 207 | "optional": true, 208 | "os": [ 209 | "darwin" 210 | ], 211 | "engines": { 212 | "node": ">= 10" 213 | } 214 | }, 215 | "node_modules/@next/swc-darwin-x64": { 216 | "version": "13.4.4", 217 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.4.tgz", 218 | "integrity": "sha512-ZY9Ti1hkIwJsxGus3nlubIkvYyB0gNOYxKrfsOrLEqD0I2iCX8D7w8v6QQZ2H+dDl6UT29oeEUdDUNGk4UEpfg==", 219 | "cpu": [ 220 | "x64" 221 | ], 222 | "optional": true, 223 | "os": [ 224 | "darwin" 225 | ], 226 | "engines": { 227 | "node": ">= 10" 228 | } 229 | }, 230 | "node_modules/@next/swc-linux-arm64-gnu": { 231 | "version": "13.4.4", 232 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.4.tgz", 233 | "integrity": "sha512-+KZnDeMShYkpkqAvGCEDeqYTRADJXc6SY1jWXz+Uo6qWQO/Jd9CoyhTJwRSxvQA16MoYzvILkGaDqirkRNctyA==", 234 | "cpu": [ 235 | "arm64" 236 | ], 237 | "optional": true, 238 | "os": [ 239 | "linux" 240 | ], 241 | "engines": { 242 | "node": ">= 10" 243 | } 244 | }, 245 | "node_modules/@next/swc-linux-arm64-musl": { 246 | "version": "13.4.4", 247 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.4.tgz", 248 | "integrity": "sha512-evC1twrny2XDT4uOftoubZvW3EG0zs0ZxMwEtu/dDGVRO5n5pT48S8qqEIBGBUZYu/Xx4zzpOkIxx1vpWdE+9A==", 249 | "cpu": [ 250 | "arm64" 251 | ], 252 | "optional": true, 253 | "os": [ 254 | "linux" 255 | ], 256 | "engines": { 257 | "node": ">= 10" 258 | } 259 | }, 260 | "node_modules/@next/swc-linux-x64-gnu": { 261 | "version": "13.4.4", 262 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.4.tgz", 263 | "integrity": "sha512-PX706XcCHr2FfkyhP2lpf+pX/tUvq6/ke7JYnnr0ykNdEMo+sb7cC/o91gnURh4sPYSiZJhsF2gbIqg9rciOHQ==", 264 | "cpu": [ 265 | "x64" 266 | ], 267 | "optional": true, 268 | "os": [ 269 | "linux" 270 | ], 271 | "engines": { 272 | "node": ">= 10" 273 | } 274 | }, 275 | "node_modules/@next/swc-linux-x64-musl": { 276 | "version": "13.4.4", 277 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.4.tgz", 278 | "integrity": "sha512-TKUUx3Ftd95JlHV6XagEnqpT204Y+IsEa3awaYIjayn0MOGjgKZMZibqarK3B1FsMSPaieJf2FEAcu9z0yT5aA==", 279 | "cpu": [ 280 | "x64" 281 | ], 282 | "optional": true, 283 | "os": [ 284 | "linux" 285 | ], 286 | "engines": { 287 | "node": ">= 10" 288 | } 289 | }, 290 | "node_modules/@next/swc-win32-arm64-msvc": { 291 | "version": "13.4.4", 292 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.4.tgz", 293 | "integrity": "sha512-FP8AadgSq4+HPtim7WBkCMGbhr5vh9FePXiWx9+YOdjwdQocwoCK5ZVC3OW8oh3TWth6iJ0AXJ/yQ1q1cwSZ3A==", 294 | "cpu": [ 295 | "arm64" 296 | ], 297 | "optional": true, 298 | "os": [ 299 | "win32" 300 | ], 301 | "engines": { 302 | "node": ">= 10" 303 | } 304 | }, 305 | "node_modules/@next/swc-win32-ia32-msvc": { 306 | "version": "13.4.4", 307 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.4.tgz", 308 | "integrity": "sha512-3WekVmtuA2MCdcAOrgrI+PuFiFURtSyyrN1I3UPtS0ckR2HtLqyqmS334Eulf15g1/bdwMteePdK363X/Y9JMg==", 309 | "cpu": [ 310 | "ia32" 311 | ], 312 | "optional": true, 313 | "os": [ 314 | "win32" 315 | ], 316 | "engines": { 317 | "node": ">= 10" 318 | } 319 | }, 320 | "node_modules/@next/swc-win32-x64-msvc": { 321 | "version": "13.4.4", 322 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.4.tgz", 323 | "integrity": "sha512-AHRITu/CrlQ+qzoqQtEMfaTu7GHaQ6bziQln/pVWpOYC1wU+Mq6VQQFlsDtMCnDztPZtppAXdvvbNS7pcfRzlw==", 324 | "cpu": [ 325 | "x64" 326 | ], 327 | "optional": true, 328 | "os": [ 329 | "win32" 330 | ], 331 | "engines": { 332 | "node": ">= 10" 333 | } 334 | }, 335 | "node_modules/@nodelib/fs.scandir": { 336 | "version": "2.1.5", 337 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 338 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 339 | "dependencies": { 340 | "@nodelib/fs.stat": "2.0.5", 341 | "run-parallel": "^1.1.9" 342 | }, 343 | "engines": { 344 | "node": ">= 8" 345 | } 346 | }, 347 | "node_modules/@nodelib/fs.stat": { 348 | "version": "2.0.5", 349 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 350 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 351 | "engines": { 352 | "node": ">= 8" 353 | } 354 | }, 355 | "node_modules/@nodelib/fs.walk": { 356 | "version": "1.2.8", 357 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 358 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 359 | "dependencies": { 360 | "@nodelib/fs.scandir": "2.1.5", 361 | "fastq": "^1.6.0" 362 | }, 363 | "engines": { 364 | "node": ">= 8" 365 | } 366 | }, 367 | "node_modules/@pkgr/utils": { 368 | "version": "2.4.1", 369 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.1.tgz", 370 | "integrity": "sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==", 371 | "dependencies": { 372 | "cross-spawn": "^7.0.3", 373 | "fast-glob": "^3.2.12", 374 | "is-glob": "^4.0.3", 375 | "open": "^9.1.0", 376 | "picocolors": "^1.0.0", 377 | "tslib": "^2.5.0" 378 | }, 379 | "engines": { 380 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0" 381 | }, 382 | "funding": { 383 | "url": "https://opencollective.com/unts" 384 | } 385 | }, 386 | "node_modules/@rushstack/eslint-patch": { 387 | "version": "1.3.0", 388 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.0.tgz", 389 | "integrity": "sha512-IthPJsJR85GhOkp3Hvp8zFOPK5ynKn6STyHa/WZpioK7E1aYDiBzpqQPrngc14DszIUkIrdd3k9Iu0XSzlP/1w==" 390 | }, 391 | "node_modules/@swc/helpers": { 392 | "version": "0.5.1", 393 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz", 394 | "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==", 395 | "dependencies": { 396 | "tslib": "^2.4.0" 397 | } 398 | }, 399 | "node_modules/@types/json5": { 400 | "version": "0.0.29", 401 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 402 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" 403 | }, 404 | "node_modules/@types/node": { 405 | "version": "20.2.5", 406 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.2.5.tgz", 407 | "integrity": "sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ==" 408 | }, 409 | "node_modules/@types/prop-types": { 410 | "version": "15.7.5", 411 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", 412 | "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==" 413 | }, 414 | "node_modules/@types/react": { 415 | "version": "18.2.7", 416 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.7.tgz", 417 | "integrity": "sha512-ojrXpSH2XFCmHm7Jy3q44nXDyN54+EYKP2lBhJ2bqfyPj6cIUW/FZW/Csdia34NQgq7KYcAlHi5184m4X88+yw==", 418 | "dependencies": { 419 | "@types/prop-types": "*", 420 | "@types/scheduler": "*", 421 | "csstype": "^3.0.2" 422 | } 423 | }, 424 | "node_modules/@types/react-dom": { 425 | "version": "18.2.4", 426 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.4.tgz", 427 | "integrity": "sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==", 428 | "dependencies": { 429 | "@types/react": "*" 430 | } 431 | }, 432 | "node_modules/@types/scheduler": { 433 | "version": "0.16.3", 434 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz", 435 | "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==" 436 | }, 437 | "node_modules/@typescript-eslint/parser": { 438 | "version": "5.59.8", 439 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.8.tgz", 440 | "integrity": "sha512-AnR19RjJcpjoeGojmwZtCwBX/RidqDZtzcbG3xHrmz0aHHoOcbWnpDllenRDmDvsV0RQ6+tbb09/kyc+UT9Orw==", 441 | "dependencies": { 442 | "@typescript-eslint/scope-manager": "5.59.8", 443 | "@typescript-eslint/types": "5.59.8", 444 | "@typescript-eslint/typescript-estree": "5.59.8", 445 | "debug": "^4.3.4" 446 | }, 447 | "engines": { 448 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 449 | }, 450 | "funding": { 451 | "type": "opencollective", 452 | "url": "https://opencollective.com/typescript-eslint" 453 | }, 454 | "peerDependencies": { 455 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" 456 | }, 457 | "peerDependenciesMeta": { 458 | "typescript": { 459 | "optional": true 460 | } 461 | } 462 | }, 463 | "node_modules/@typescript-eslint/scope-manager": { 464 | "version": "5.59.8", 465 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.8.tgz", 466 | "integrity": "sha512-/w08ndCYI8gxGf+9zKf1vtx/16y8MHrZs5/tnjHhMLNSixuNcJavSX4wAiPf4aS5x41Es9YPCn44MIe4cxIlig==", 467 | "dependencies": { 468 | "@typescript-eslint/types": "5.59.8", 469 | "@typescript-eslint/visitor-keys": "5.59.8" 470 | }, 471 | "engines": { 472 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 473 | }, 474 | "funding": { 475 | "type": "opencollective", 476 | "url": "https://opencollective.com/typescript-eslint" 477 | } 478 | }, 479 | "node_modules/@typescript-eslint/types": { 480 | "version": "5.59.8", 481 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.8.tgz", 482 | "integrity": "sha512-+uWuOhBTj/L6awoWIg0BlWy0u9TyFpCHrAuQ5bNfxDaZ1Ppb3mx6tUigc74LHcbHpOHuOTOJrBoAnhdHdaea1w==", 483 | "engines": { 484 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 485 | }, 486 | "funding": { 487 | "type": "opencollective", 488 | "url": "https://opencollective.com/typescript-eslint" 489 | } 490 | }, 491 | "node_modules/@typescript-eslint/typescript-estree": { 492 | "version": "5.59.8", 493 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.8.tgz", 494 | "integrity": "sha512-Jy/lPSDJGNow14vYu6IrW790p7HIf/SOV1Bb6lZ7NUkLc2iB2Z9elESmsaUtLw8kVqogSbtLH9tut5GCX1RLDg==", 495 | "dependencies": { 496 | "@typescript-eslint/types": "5.59.8", 497 | "@typescript-eslint/visitor-keys": "5.59.8", 498 | "debug": "^4.3.4", 499 | "globby": "^11.1.0", 500 | "is-glob": "^4.0.3", 501 | "semver": "^7.3.7", 502 | "tsutils": "^3.21.0" 503 | }, 504 | "engines": { 505 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 506 | }, 507 | "funding": { 508 | "type": "opencollective", 509 | "url": "https://opencollective.com/typescript-eslint" 510 | }, 511 | "peerDependenciesMeta": { 512 | "typescript": { 513 | "optional": true 514 | } 515 | } 516 | }, 517 | "node_modules/@typescript-eslint/visitor-keys": { 518 | "version": "5.59.8", 519 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.8.tgz", 520 | "integrity": "sha512-pJhi2ms0x0xgloT7xYabil3SGGlojNNKjK/q6dB3Ey0uJLMjK2UDGJvHieiyJVW/7C3KI+Z4Q3pEHkm4ejA+xQ==", 521 | "dependencies": { 522 | "@typescript-eslint/types": "5.59.8", 523 | "eslint-visitor-keys": "^3.3.0" 524 | }, 525 | "engines": { 526 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 527 | }, 528 | "funding": { 529 | "type": "opencollective", 530 | "url": "https://opencollective.com/typescript-eslint" 531 | } 532 | }, 533 | "node_modules/acorn": { 534 | "version": "8.8.2", 535 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz", 536 | "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==", 537 | "bin": { 538 | "acorn": "bin/acorn" 539 | }, 540 | "engines": { 541 | "node": ">=0.4.0" 542 | } 543 | }, 544 | "node_modules/acorn-jsx": { 545 | "version": "5.3.2", 546 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 547 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 548 | "peerDependencies": { 549 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 550 | } 551 | }, 552 | "node_modules/ajv": { 553 | "version": "6.12.6", 554 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 555 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 556 | "dependencies": { 557 | "fast-deep-equal": "^3.1.1", 558 | "fast-json-stable-stringify": "^2.0.0", 559 | "json-schema-traverse": "^0.4.1", 560 | "uri-js": "^4.2.2" 561 | }, 562 | "funding": { 563 | "type": "github", 564 | "url": "https://github.com/sponsors/epoberezkin" 565 | } 566 | }, 567 | "node_modules/ansi-regex": { 568 | "version": "5.0.1", 569 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 570 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 571 | "engines": { 572 | "node": ">=8" 573 | } 574 | }, 575 | "node_modules/ansi-styles": { 576 | "version": "4.3.0", 577 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 578 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 579 | "dependencies": { 580 | "color-convert": "^2.0.1" 581 | }, 582 | "engines": { 583 | "node": ">=8" 584 | }, 585 | "funding": { 586 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 587 | } 588 | }, 589 | "node_modules/any-promise": { 590 | "version": "1.3.0", 591 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", 592 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==" 593 | }, 594 | "node_modules/anymatch": { 595 | "version": "3.1.3", 596 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", 597 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", 598 | "dependencies": { 599 | "normalize-path": "^3.0.0", 600 | "picomatch": "^2.0.4" 601 | }, 602 | "engines": { 603 | "node": ">= 8" 604 | } 605 | }, 606 | "node_modules/arg": { 607 | "version": "5.0.2", 608 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", 609 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" 610 | }, 611 | "node_modules/argparse": { 612 | "version": "2.0.1", 613 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 614 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==" 615 | }, 616 | "node_modules/aria-query": { 617 | "version": "5.1.3", 618 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", 619 | "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", 620 | "dependencies": { 621 | "deep-equal": "^2.0.5" 622 | } 623 | }, 624 | "node_modules/array-buffer-byte-length": { 625 | "version": "1.0.0", 626 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", 627 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", 628 | "dependencies": { 629 | "call-bind": "^1.0.2", 630 | "is-array-buffer": "^3.0.1" 631 | }, 632 | "funding": { 633 | "url": "https://github.com/sponsors/ljharb" 634 | } 635 | }, 636 | "node_modules/array-includes": { 637 | "version": "3.1.6", 638 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", 639 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", 640 | "dependencies": { 641 | "call-bind": "^1.0.2", 642 | "define-properties": "^1.1.4", 643 | "es-abstract": "^1.20.4", 644 | "get-intrinsic": "^1.1.3", 645 | "is-string": "^1.0.7" 646 | }, 647 | "engines": { 648 | "node": ">= 0.4" 649 | }, 650 | "funding": { 651 | "url": "https://github.com/sponsors/ljharb" 652 | } 653 | }, 654 | "node_modules/array-union": { 655 | "version": "2.1.0", 656 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 657 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 658 | "engines": { 659 | "node": ">=8" 660 | } 661 | }, 662 | "node_modules/array.prototype.flat": { 663 | "version": "1.3.1", 664 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", 665 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", 666 | "dependencies": { 667 | "call-bind": "^1.0.2", 668 | "define-properties": "^1.1.4", 669 | "es-abstract": "^1.20.4", 670 | "es-shim-unscopables": "^1.0.0" 671 | }, 672 | "engines": { 673 | "node": ">= 0.4" 674 | }, 675 | "funding": { 676 | "url": "https://github.com/sponsors/ljharb" 677 | } 678 | }, 679 | "node_modules/array.prototype.flatmap": { 680 | "version": "1.3.1", 681 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", 682 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", 683 | "dependencies": { 684 | "call-bind": "^1.0.2", 685 | "define-properties": "^1.1.4", 686 | "es-abstract": "^1.20.4", 687 | "es-shim-unscopables": "^1.0.0" 688 | }, 689 | "engines": { 690 | "node": ">= 0.4" 691 | }, 692 | "funding": { 693 | "url": "https://github.com/sponsors/ljharb" 694 | } 695 | }, 696 | "node_modules/array.prototype.tosorted": { 697 | "version": "1.1.1", 698 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", 699 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", 700 | "dependencies": { 701 | "call-bind": "^1.0.2", 702 | "define-properties": "^1.1.4", 703 | "es-abstract": "^1.20.4", 704 | "es-shim-unscopables": "^1.0.0", 705 | "get-intrinsic": "^1.1.3" 706 | } 707 | }, 708 | "node_modules/ast-types-flow": { 709 | "version": "0.0.7", 710 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", 711 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==" 712 | }, 713 | "node_modules/asynckit": { 714 | "version": "0.4.0", 715 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", 716 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" 717 | }, 718 | "node_modules/autoprefixer": { 719 | "version": "10.4.14", 720 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz", 721 | "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==", 722 | "funding": [ 723 | { 724 | "type": "opencollective", 725 | "url": "https://opencollective.com/postcss/" 726 | }, 727 | { 728 | "type": "tidelift", 729 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 730 | } 731 | ], 732 | "dependencies": { 733 | "browserslist": "^4.21.5", 734 | "caniuse-lite": "^1.0.30001464", 735 | "fraction.js": "^4.2.0", 736 | "normalize-range": "^0.1.2", 737 | "picocolors": "^1.0.0", 738 | "postcss-value-parser": "^4.2.0" 739 | }, 740 | "bin": { 741 | "autoprefixer": "bin/autoprefixer" 742 | }, 743 | "engines": { 744 | "node": "^10 || ^12 || >=14" 745 | }, 746 | "peerDependencies": { 747 | "postcss": "^8.1.0" 748 | } 749 | }, 750 | "node_modules/available-typed-arrays": { 751 | "version": "1.0.5", 752 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", 753 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", 754 | "engines": { 755 | "node": ">= 0.4" 756 | }, 757 | "funding": { 758 | "url": "https://github.com/sponsors/ljharb" 759 | } 760 | }, 761 | "node_modules/axe-core": { 762 | "version": "4.7.2", 763 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz", 764 | "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==", 765 | "engines": { 766 | "node": ">=4" 767 | } 768 | }, 769 | "node_modules/axios": { 770 | "version": "1.4.0", 771 | "resolved": "https://registry.npmjs.org/axios/-/axios-1.4.0.tgz", 772 | "integrity": "sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==", 773 | "dependencies": { 774 | "follow-redirects": "^1.15.0", 775 | "form-data": "^4.0.0", 776 | "proxy-from-env": "^1.1.0" 777 | } 778 | }, 779 | "node_modules/axobject-query": { 780 | "version": "3.1.1", 781 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz", 782 | "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==", 783 | "dependencies": { 784 | "deep-equal": "^2.0.5" 785 | } 786 | }, 787 | "node_modules/balanced-match": { 788 | "version": "1.0.2", 789 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 790 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 791 | }, 792 | "node_modules/big-integer": { 793 | "version": "1.6.51", 794 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", 795 | "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", 796 | "engines": { 797 | "node": ">=0.6" 798 | } 799 | }, 800 | "node_modules/binary-extensions": { 801 | "version": "2.2.0", 802 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 803 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", 804 | "engines": { 805 | "node": ">=8" 806 | } 807 | }, 808 | "node_modules/bplist-parser": { 809 | "version": "0.2.0", 810 | "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", 811 | "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", 812 | "dependencies": { 813 | "big-integer": "^1.6.44" 814 | }, 815 | "engines": { 816 | "node": ">= 5.10.0" 817 | } 818 | }, 819 | "node_modules/brace-expansion": { 820 | "version": "1.1.11", 821 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 822 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 823 | "dependencies": { 824 | "balanced-match": "^1.0.0", 825 | "concat-map": "0.0.1" 826 | } 827 | }, 828 | "node_modules/braces": { 829 | "version": "3.0.2", 830 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 831 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 832 | "dependencies": { 833 | "fill-range": "^7.0.1" 834 | }, 835 | "engines": { 836 | "node": ">=8" 837 | } 838 | }, 839 | "node_modules/browserslist": { 840 | "version": "4.21.7", 841 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.7.tgz", 842 | "integrity": "sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==", 843 | "funding": [ 844 | { 845 | "type": "opencollective", 846 | "url": "https://opencollective.com/browserslist" 847 | }, 848 | { 849 | "type": "tidelift", 850 | "url": "https://tidelift.com/funding/github/npm/browserslist" 851 | }, 852 | { 853 | "type": "github", 854 | "url": "https://github.com/sponsors/ai" 855 | } 856 | ], 857 | "dependencies": { 858 | "caniuse-lite": "^1.0.30001489", 859 | "electron-to-chromium": "^1.4.411", 860 | "node-releases": "^2.0.12", 861 | "update-browserslist-db": "^1.0.11" 862 | }, 863 | "bin": { 864 | "browserslist": "cli.js" 865 | }, 866 | "engines": { 867 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 868 | } 869 | }, 870 | "node_modules/bundle-name": { 871 | "version": "3.0.0", 872 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", 873 | "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", 874 | "dependencies": { 875 | "run-applescript": "^5.0.0" 876 | }, 877 | "engines": { 878 | "node": ">=12" 879 | }, 880 | "funding": { 881 | "url": "https://github.com/sponsors/sindresorhus" 882 | } 883 | }, 884 | "node_modules/busboy": { 885 | "version": "1.6.0", 886 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz", 887 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==", 888 | "dependencies": { 889 | "streamsearch": "^1.1.0" 890 | }, 891 | "engines": { 892 | "node": ">=10.16.0" 893 | } 894 | }, 895 | "node_modules/call-bind": { 896 | "version": "1.0.2", 897 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 898 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 899 | "dependencies": { 900 | "function-bind": "^1.1.1", 901 | "get-intrinsic": "^1.0.2" 902 | }, 903 | "funding": { 904 | "url": "https://github.com/sponsors/ljharb" 905 | } 906 | }, 907 | "node_modules/callsites": { 908 | "version": "3.1.0", 909 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 910 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 911 | "engines": { 912 | "node": ">=6" 913 | } 914 | }, 915 | "node_modules/camelcase-css": { 916 | "version": "2.0.1", 917 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", 918 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", 919 | "engines": { 920 | "node": ">= 6" 921 | } 922 | }, 923 | "node_modules/caniuse-lite": { 924 | "version": "1.0.30001492", 925 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001492.tgz", 926 | "integrity": "sha512-2efF8SAZwgAX1FJr87KWhvuJxnGJKOnctQa8xLOskAXNXq8oiuqgl6u1kk3fFpsp3GgvzlRjiK1sl63hNtFADw==", 927 | "funding": [ 928 | { 929 | "type": "opencollective", 930 | "url": "https://opencollective.com/browserslist" 931 | }, 932 | { 933 | "type": "tidelift", 934 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 935 | }, 936 | { 937 | "type": "github", 938 | "url": "https://github.com/sponsors/ai" 939 | } 940 | ] 941 | }, 942 | "node_modules/chalk": { 943 | "version": "4.1.2", 944 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 945 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 946 | "dependencies": { 947 | "ansi-styles": "^4.1.0", 948 | "supports-color": "^7.1.0" 949 | }, 950 | "engines": { 951 | "node": ">=10" 952 | }, 953 | "funding": { 954 | "url": "https://github.com/chalk/chalk?sponsor=1" 955 | } 956 | }, 957 | "node_modules/chokidar": { 958 | "version": "3.5.3", 959 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", 960 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", 961 | "funding": [ 962 | { 963 | "type": "individual", 964 | "url": "https://paulmillr.com/funding/" 965 | } 966 | ], 967 | "dependencies": { 968 | "anymatch": "~3.1.2", 969 | "braces": "~3.0.2", 970 | "glob-parent": "~5.1.2", 971 | "is-binary-path": "~2.1.0", 972 | "is-glob": "~4.0.1", 973 | "normalize-path": "~3.0.0", 974 | "readdirp": "~3.6.0" 975 | }, 976 | "engines": { 977 | "node": ">= 8.10.0" 978 | }, 979 | "optionalDependencies": { 980 | "fsevents": "~2.3.2" 981 | } 982 | }, 983 | "node_modules/chokidar/node_modules/glob-parent": { 984 | "version": "5.1.2", 985 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 986 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 987 | "dependencies": { 988 | "is-glob": "^4.0.1" 989 | }, 990 | "engines": { 991 | "node": ">= 6" 992 | } 993 | }, 994 | "node_modules/client-only": { 995 | "version": "0.0.1", 996 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz", 997 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==" 998 | }, 999 | "node_modules/color-convert": { 1000 | "version": "2.0.1", 1001 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1002 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1003 | "dependencies": { 1004 | "color-name": "~1.1.4" 1005 | }, 1006 | "engines": { 1007 | "node": ">=7.0.0" 1008 | } 1009 | }, 1010 | "node_modules/color-name": { 1011 | "version": "1.1.4", 1012 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1013 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1014 | }, 1015 | "node_modules/combined-stream": { 1016 | "version": "1.0.8", 1017 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", 1018 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", 1019 | "dependencies": { 1020 | "delayed-stream": "~1.0.0" 1021 | }, 1022 | "engines": { 1023 | "node": ">= 0.8" 1024 | } 1025 | }, 1026 | "node_modules/commander": { 1027 | "version": "4.1.1", 1028 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", 1029 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", 1030 | "engines": { 1031 | "node": ">= 6" 1032 | } 1033 | }, 1034 | "node_modules/concat-map": { 1035 | "version": "0.0.1", 1036 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 1037 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" 1038 | }, 1039 | "node_modules/cross-spawn": { 1040 | "version": "7.0.3", 1041 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1042 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1043 | "dependencies": { 1044 | "path-key": "^3.1.0", 1045 | "shebang-command": "^2.0.0", 1046 | "which": "^2.0.1" 1047 | }, 1048 | "engines": { 1049 | "node": ">= 8" 1050 | } 1051 | }, 1052 | "node_modules/cssesc": { 1053 | "version": "3.0.0", 1054 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", 1055 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", 1056 | "bin": { 1057 | "cssesc": "bin/cssesc" 1058 | }, 1059 | "engines": { 1060 | "node": ">=4" 1061 | } 1062 | }, 1063 | "node_modules/csstype": { 1064 | "version": "3.1.2", 1065 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz", 1066 | "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==" 1067 | }, 1068 | "node_modules/damerau-levenshtein": { 1069 | "version": "1.0.8", 1070 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", 1071 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" 1072 | }, 1073 | "node_modules/debug": { 1074 | "version": "4.3.4", 1075 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1076 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1077 | "dependencies": { 1078 | "ms": "2.1.2" 1079 | }, 1080 | "engines": { 1081 | "node": ">=6.0" 1082 | }, 1083 | "peerDependenciesMeta": { 1084 | "supports-color": { 1085 | "optional": true 1086 | } 1087 | } 1088 | }, 1089 | "node_modules/deep-equal": { 1090 | "version": "2.2.1", 1091 | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz", 1092 | "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==", 1093 | "dependencies": { 1094 | "array-buffer-byte-length": "^1.0.0", 1095 | "call-bind": "^1.0.2", 1096 | "es-get-iterator": "^1.1.3", 1097 | "get-intrinsic": "^1.2.0", 1098 | "is-arguments": "^1.1.1", 1099 | "is-array-buffer": "^3.0.2", 1100 | "is-date-object": "^1.0.5", 1101 | "is-regex": "^1.1.4", 1102 | "is-shared-array-buffer": "^1.0.2", 1103 | "isarray": "^2.0.5", 1104 | "object-is": "^1.1.5", 1105 | "object-keys": "^1.1.1", 1106 | "object.assign": "^4.1.4", 1107 | "regexp.prototype.flags": "^1.5.0", 1108 | "side-channel": "^1.0.4", 1109 | "which-boxed-primitive": "^1.0.2", 1110 | "which-collection": "^1.0.1", 1111 | "which-typed-array": "^1.1.9" 1112 | }, 1113 | "funding": { 1114 | "url": "https://github.com/sponsors/ljharb" 1115 | } 1116 | }, 1117 | "node_modules/deep-is": { 1118 | "version": "0.1.4", 1119 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1120 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==" 1121 | }, 1122 | "node_modules/default-browser": { 1123 | "version": "4.0.0", 1124 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", 1125 | "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", 1126 | "dependencies": { 1127 | "bundle-name": "^3.0.0", 1128 | "default-browser-id": "^3.0.0", 1129 | "execa": "^7.1.1", 1130 | "titleize": "^3.0.0" 1131 | }, 1132 | "engines": { 1133 | "node": ">=14.16" 1134 | }, 1135 | "funding": { 1136 | "url": "https://github.com/sponsors/sindresorhus" 1137 | } 1138 | }, 1139 | "node_modules/default-browser-id": { 1140 | "version": "3.0.0", 1141 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", 1142 | "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", 1143 | "dependencies": { 1144 | "bplist-parser": "^0.2.0", 1145 | "untildify": "^4.0.0" 1146 | }, 1147 | "engines": { 1148 | "node": ">=12" 1149 | }, 1150 | "funding": { 1151 | "url": "https://github.com/sponsors/sindresorhus" 1152 | } 1153 | }, 1154 | "node_modules/define-lazy-prop": { 1155 | "version": "3.0.0", 1156 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", 1157 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", 1158 | "engines": { 1159 | "node": ">=12" 1160 | }, 1161 | "funding": { 1162 | "url": "https://github.com/sponsors/sindresorhus" 1163 | } 1164 | }, 1165 | "node_modules/define-properties": { 1166 | "version": "1.2.0", 1167 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz", 1168 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==", 1169 | "dependencies": { 1170 | "has-property-descriptors": "^1.0.0", 1171 | "object-keys": "^1.1.1" 1172 | }, 1173 | "engines": { 1174 | "node": ">= 0.4" 1175 | }, 1176 | "funding": { 1177 | "url": "https://github.com/sponsors/ljharb" 1178 | } 1179 | }, 1180 | "node_modules/delayed-stream": { 1181 | "version": "1.0.0", 1182 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", 1183 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", 1184 | "engines": { 1185 | "node": ">=0.4.0" 1186 | } 1187 | }, 1188 | "node_modules/didyoumean": { 1189 | "version": "1.2.2", 1190 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", 1191 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==" 1192 | }, 1193 | "node_modules/dir-glob": { 1194 | "version": "3.0.1", 1195 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1196 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1197 | "dependencies": { 1198 | "path-type": "^4.0.0" 1199 | }, 1200 | "engines": { 1201 | "node": ">=8" 1202 | } 1203 | }, 1204 | "node_modules/dlv": { 1205 | "version": "1.1.3", 1206 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", 1207 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==" 1208 | }, 1209 | "node_modules/doctrine": { 1210 | "version": "3.0.0", 1211 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1212 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1213 | "dependencies": { 1214 | "esutils": "^2.0.2" 1215 | }, 1216 | "engines": { 1217 | "node": ">=6.0.0" 1218 | } 1219 | }, 1220 | "node_modules/electron-to-chromium": { 1221 | "version": "1.4.416", 1222 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.416.tgz", 1223 | "integrity": "sha512-AUYh0XDTb2vrj0rj82jb3P9hHSyzQNdTPYWZIhPdCOui7/vpme7+HTE07BE5jwuqg/34TZ8ktlRz6GImJ4IXjA==" 1224 | }, 1225 | "node_modules/emoji-regex": { 1226 | "version": "9.2.2", 1227 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1228 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 1229 | }, 1230 | "node_modules/enhanced-resolve": { 1231 | "version": "5.14.1", 1232 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.1.tgz", 1233 | "integrity": "sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==", 1234 | "dependencies": { 1235 | "graceful-fs": "^4.2.4", 1236 | "tapable": "^2.2.0" 1237 | }, 1238 | "engines": { 1239 | "node": ">=10.13.0" 1240 | } 1241 | }, 1242 | "node_modules/es-abstract": { 1243 | "version": "1.21.2", 1244 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz", 1245 | "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==", 1246 | "dependencies": { 1247 | "array-buffer-byte-length": "^1.0.0", 1248 | "available-typed-arrays": "^1.0.5", 1249 | "call-bind": "^1.0.2", 1250 | "es-set-tostringtag": "^2.0.1", 1251 | "es-to-primitive": "^1.2.1", 1252 | "function.prototype.name": "^1.1.5", 1253 | "get-intrinsic": "^1.2.0", 1254 | "get-symbol-description": "^1.0.0", 1255 | "globalthis": "^1.0.3", 1256 | "gopd": "^1.0.1", 1257 | "has": "^1.0.3", 1258 | "has-property-descriptors": "^1.0.0", 1259 | "has-proto": "^1.0.1", 1260 | "has-symbols": "^1.0.3", 1261 | "internal-slot": "^1.0.5", 1262 | "is-array-buffer": "^3.0.2", 1263 | "is-callable": "^1.2.7", 1264 | "is-negative-zero": "^2.0.2", 1265 | "is-regex": "^1.1.4", 1266 | "is-shared-array-buffer": "^1.0.2", 1267 | "is-string": "^1.0.7", 1268 | "is-typed-array": "^1.1.10", 1269 | "is-weakref": "^1.0.2", 1270 | "object-inspect": "^1.12.3", 1271 | "object-keys": "^1.1.1", 1272 | "object.assign": "^4.1.4", 1273 | "regexp.prototype.flags": "^1.4.3", 1274 | "safe-regex-test": "^1.0.0", 1275 | "string.prototype.trim": "^1.2.7", 1276 | "string.prototype.trimend": "^1.0.6", 1277 | "string.prototype.trimstart": "^1.0.6", 1278 | "typed-array-length": "^1.0.4", 1279 | "unbox-primitive": "^1.0.2", 1280 | "which-typed-array": "^1.1.9" 1281 | }, 1282 | "engines": { 1283 | "node": ">= 0.4" 1284 | }, 1285 | "funding": { 1286 | "url": "https://github.com/sponsors/ljharb" 1287 | } 1288 | }, 1289 | "node_modules/es-get-iterator": { 1290 | "version": "1.1.3", 1291 | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", 1292 | "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", 1293 | "dependencies": { 1294 | "call-bind": "^1.0.2", 1295 | "get-intrinsic": "^1.1.3", 1296 | "has-symbols": "^1.0.3", 1297 | "is-arguments": "^1.1.1", 1298 | "is-map": "^2.0.2", 1299 | "is-set": "^2.0.2", 1300 | "is-string": "^1.0.7", 1301 | "isarray": "^2.0.5", 1302 | "stop-iteration-iterator": "^1.0.0" 1303 | }, 1304 | "funding": { 1305 | "url": "https://github.com/sponsors/ljharb" 1306 | } 1307 | }, 1308 | "node_modules/es-set-tostringtag": { 1309 | "version": "2.0.1", 1310 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", 1311 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", 1312 | "dependencies": { 1313 | "get-intrinsic": "^1.1.3", 1314 | "has": "^1.0.3", 1315 | "has-tostringtag": "^1.0.0" 1316 | }, 1317 | "engines": { 1318 | "node": ">= 0.4" 1319 | } 1320 | }, 1321 | "node_modules/es-shim-unscopables": { 1322 | "version": "1.0.0", 1323 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 1324 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 1325 | "dependencies": { 1326 | "has": "^1.0.3" 1327 | } 1328 | }, 1329 | "node_modules/es-to-primitive": { 1330 | "version": "1.2.1", 1331 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1332 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1333 | "dependencies": { 1334 | "is-callable": "^1.1.4", 1335 | "is-date-object": "^1.0.1", 1336 | "is-symbol": "^1.0.2" 1337 | }, 1338 | "engines": { 1339 | "node": ">= 0.4" 1340 | }, 1341 | "funding": { 1342 | "url": "https://github.com/sponsors/ljharb" 1343 | } 1344 | }, 1345 | "node_modules/escalade": { 1346 | "version": "3.1.1", 1347 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", 1348 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", 1349 | "engines": { 1350 | "node": ">=6" 1351 | } 1352 | }, 1353 | "node_modules/escape-string-regexp": { 1354 | "version": "4.0.0", 1355 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1356 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1357 | "engines": { 1358 | "node": ">=10" 1359 | }, 1360 | "funding": { 1361 | "url": "https://github.com/sponsors/sindresorhus" 1362 | } 1363 | }, 1364 | "node_modules/eslint": { 1365 | "version": "8.41.0", 1366 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.41.0.tgz", 1367 | "integrity": "sha512-WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q==", 1368 | "dependencies": { 1369 | "@eslint-community/eslint-utils": "^4.2.0", 1370 | "@eslint-community/regexpp": "^4.4.0", 1371 | "@eslint/eslintrc": "^2.0.3", 1372 | "@eslint/js": "8.41.0", 1373 | "@humanwhocodes/config-array": "^0.11.8", 1374 | "@humanwhocodes/module-importer": "^1.0.1", 1375 | "@nodelib/fs.walk": "^1.2.8", 1376 | "ajv": "^6.10.0", 1377 | "chalk": "^4.0.0", 1378 | "cross-spawn": "^7.0.2", 1379 | "debug": "^4.3.2", 1380 | "doctrine": "^3.0.0", 1381 | "escape-string-regexp": "^4.0.0", 1382 | "eslint-scope": "^7.2.0", 1383 | "eslint-visitor-keys": "^3.4.1", 1384 | "espree": "^9.5.2", 1385 | "esquery": "^1.4.2", 1386 | "esutils": "^2.0.2", 1387 | "fast-deep-equal": "^3.1.3", 1388 | "file-entry-cache": "^6.0.1", 1389 | "find-up": "^5.0.0", 1390 | "glob-parent": "^6.0.2", 1391 | "globals": "^13.19.0", 1392 | "graphemer": "^1.4.0", 1393 | "ignore": "^5.2.0", 1394 | "import-fresh": "^3.0.0", 1395 | "imurmurhash": "^0.1.4", 1396 | "is-glob": "^4.0.0", 1397 | "is-path-inside": "^3.0.3", 1398 | "js-yaml": "^4.1.0", 1399 | "json-stable-stringify-without-jsonify": "^1.0.1", 1400 | "levn": "^0.4.1", 1401 | "lodash.merge": "^4.6.2", 1402 | "minimatch": "^3.1.2", 1403 | "natural-compare": "^1.4.0", 1404 | "optionator": "^0.9.1", 1405 | "strip-ansi": "^6.0.1", 1406 | "strip-json-comments": "^3.1.0", 1407 | "text-table": "^0.2.0" 1408 | }, 1409 | "bin": { 1410 | "eslint": "bin/eslint.js" 1411 | }, 1412 | "engines": { 1413 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1414 | }, 1415 | "funding": { 1416 | "url": "https://opencollective.com/eslint" 1417 | } 1418 | }, 1419 | "node_modules/eslint-config-next": { 1420 | "version": "13.4.4", 1421 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.4.tgz", 1422 | "integrity": "sha512-z/PMbm6L0iC/fwISULxe8IVy4DtNqZk2wQY711o35klenq70O6ns82A8yuMVCFjHC0DIyB2lyugesRtuk9u8dQ==", 1423 | "dependencies": { 1424 | "@next/eslint-plugin-next": "13.4.4", 1425 | "@rushstack/eslint-patch": "^1.1.3", 1426 | "@typescript-eslint/parser": "^5.42.0", 1427 | "eslint-import-resolver-node": "^0.3.6", 1428 | "eslint-import-resolver-typescript": "^3.5.2", 1429 | "eslint-plugin-import": "^2.26.0", 1430 | "eslint-plugin-jsx-a11y": "^6.5.1", 1431 | "eslint-plugin-react": "^7.31.7", 1432 | "eslint-plugin-react-hooks": "^4.5.0" 1433 | }, 1434 | "peerDependencies": { 1435 | "eslint": "^7.23.0 || ^8.0.0", 1436 | "typescript": ">=3.3.1" 1437 | }, 1438 | "peerDependenciesMeta": { 1439 | "typescript": { 1440 | "optional": true 1441 | } 1442 | } 1443 | }, 1444 | "node_modules/eslint-import-resolver-node": { 1445 | "version": "0.3.7", 1446 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", 1447 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", 1448 | "dependencies": { 1449 | "debug": "^3.2.7", 1450 | "is-core-module": "^2.11.0", 1451 | "resolve": "^1.22.1" 1452 | } 1453 | }, 1454 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1455 | "version": "3.2.7", 1456 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1457 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1458 | "dependencies": { 1459 | "ms": "^2.1.1" 1460 | } 1461 | }, 1462 | "node_modules/eslint-import-resolver-typescript": { 1463 | "version": "3.5.5", 1464 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz", 1465 | "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==", 1466 | "dependencies": { 1467 | "debug": "^4.3.4", 1468 | "enhanced-resolve": "^5.12.0", 1469 | "eslint-module-utils": "^2.7.4", 1470 | "get-tsconfig": "^4.5.0", 1471 | "globby": "^13.1.3", 1472 | "is-core-module": "^2.11.0", 1473 | "is-glob": "^4.0.3", 1474 | "synckit": "^0.8.5" 1475 | }, 1476 | "engines": { 1477 | "node": "^14.18.0 || >=16.0.0" 1478 | }, 1479 | "funding": { 1480 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" 1481 | }, 1482 | "peerDependencies": { 1483 | "eslint": "*", 1484 | "eslint-plugin-import": "*" 1485 | } 1486 | }, 1487 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": { 1488 | "version": "13.1.4", 1489 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz", 1490 | "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==", 1491 | "dependencies": { 1492 | "dir-glob": "^3.0.1", 1493 | "fast-glob": "^3.2.11", 1494 | "ignore": "^5.2.0", 1495 | "merge2": "^1.4.1", 1496 | "slash": "^4.0.0" 1497 | }, 1498 | "engines": { 1499 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 1500 | }, 1501 | "funding": { 1502 | "url": "https://github.com/sponsors/sindresorhus" 1503 | } 1504 | }, 1505 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": { 1506 | "version": "4.0.0", 1507 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", 1508 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", 1509 | "engines": { 1510 | "node": ">=12" 1511 | }, 1512 | "funding": { 1513 | "url": "https://github.com/sponsors/sindresorhus" 1514 | } 1515 | }, 1516 | "node_modules/eslint-module-utils": { 1517 | "version": "2.8.0", 1518 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1519 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1520 | "dependencies": { 1521 | "debug": "^3.2.7" 1522 | }, 1523 | "engines": { 1524 | "node": ">=4" 1525 | }, 1526 | "peerDependenciesMeta": { 1527 | "eslint": { 1528 | "optional": true 1529 | } 1530 | } 1531 | }, 1532 | "node_modules/eslint-module-utils/node_modules/debug": { 1533 | "version": "3.2.7", 1534 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1535 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1536 | "dependencies": { 1537 | "ms": "^2.1.1" 1538 | } 1539 | }, 1540 | "node_modules/eslint-plugin-import": { 1541 | "version": "2.27.5", 1542 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", 1543 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", 1544 | "dependencies": { 1545 | "array-includes": "^3.1.6", 1546 | "array.prototype.flat": "^1.3.1", 1547 | "array.prototype.flatmap": "^1.3.1", 1548 | "debug": "^3.2.7", 1549 | "doctrine": "^2.1.0", 1550 | "eslint-import-resolver-node": "^0.3.7", 1551 | "eslint-module-utils": "^2.7.4", 1552 | "has": "^1.0.3", 1553 | "is-core-module": "^2.11.0", 1554 | "is-glob": "^4.0.3", 1555 | "minimatch": "^3.1.2", 1556 | "object.values": "^1.1.6", 1557 | "resolve": "^1.22.1", 1558 | "semver": "^6.3.0", 1559 | "tsconfig-paths": "^3.14.1" 1560 | }, 1561 | "engines": { 1562 | "node": ">=4" 1563 | }, 1564 | "peerDependencies": { 1565 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1566 | } 1567 | }, 1568 | "node_modules/eslint-plugin-import/node_modules/debug": { 1569 | "version": "3.2.7", 1570 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1571 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1572 | "dependencies": { 1573 | "ms": "^2.1.1" 1574 | } 1575 | }, 1576 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1577 | "version": "2.1.0", 1578 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1579 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1580 | "dependencies": { 1581 | "esutils": "^2.0.2" 1582 | }, 1583 | "engines": { 1584 | "node": ">=0.10.0" 1585 | } 1586 | }, 1587 | "node_modules/eslint-plugin-import/node_modules/semver": { 1588 | "version": "6.3.0", 1589 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1590 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1591 | "bin": { 1592 | "semver": "bin/semver.js" 1593 | } 1594 | }, 1595 | "node_modules/eslint-plugin-jsx-a11y": { 1596 | "version": "6.7.1", 1597 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz", 1598 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==", 1599 | "dependencies": { 1600 | "@babel/runtime": "^7.20.7", 1601 | "aria-query": "^5.1.3", 1602 | "array-includes": "^3.1.6", 1603 | "array.prototype.flatmap": "^1.3.1", 1604 | "ast-types-flow": "^0.0.7", 1605 | "axe-core": "^4.6.2", 1606 | "axobject-query": "^3.1.1", 1607 | "damerau-levenshtein": "^1.0.8", 1608 | "emoji-regex": "^9.2.2", 1609 | "has": "^1.0.3", 1610 | "jsx-ast-utils": "^3.3.3", 1611 | "language-tags": "=1.0.5", 1612 | "minimatch": "^3.1.2", 1613 | "object.entries": "^1.1.6", 1614 | "object.fromentries": "^2.0.6", 1615 | "semver": "^6.3.0" 1616 | }, 1617 | "engines": { 1618 | "node": ">=4.0" 1619 | }, 1620 | "peerDependencies": { 1621 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1622 | } 1623 | }, 1624 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": { 1625 | "version": "6.3.0", 1626 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1627 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1628 | "bin": { 1629 | "semver": "bin/semver.js" 1630 | } 1631 | }, 1632 | "node_modules/eslint-plugin-react": { 1633 | "version": "7.32.2", 1634 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", 1635 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", 1636 | "dependencies": { 1637 | "array-includes": "^3.1.6", 1638 | "array.prototype.flatmap": "^1.3.1", 1639 | "array.prototype.tosorted": "^1.1.1", 1640 | "doctrine": "^2.1.0", 1641 | "estraverse": "^5.3.0", 1642 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1643 | "minimatch": "^3.1.2", 1644 | "object.entries": "^1.1.6", 1645 | "object.fromentries": "^2.0.6", 1646 | "object.hasown": "^1.1.2", 1647 | "object.values": "^1.1.6", 1648 | "prop-types": "^15.8.1", 1649 | "resolve": "^2.0.0-next.4", 1650 | "semver": "^6.3.0", 1651 | "string.prototype.matchall": "^4.0.8" 1652 | }, 1653 | "engines": { 1654 | "node": ">=4" 1655 | }, 1656 | "peerDependencies": { 1657 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1658 | } 1659 | }, 1660 | "node_modules/eslint-plugin-react-hooks": { 1661 | "version": "4.6.0", 1662 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", 1663 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", 1664 | "engines": { 1665 | "node": ">=10" 1666 | }, 1667 | "peerDependencies": { 1668 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1669 | } 1670 | }, 1671 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1672 | "version": "2.1.0", 1673 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1674 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1675 | "dependencies": { 1676 | "esutils": "^2.0.2" 1677 | }, 1678 | "engines": { 1679 | "node": ">=0.10.0" 1680 | } 1681 | }, 1682 | "node_modules/eslint-plugin-react/node_modules/resolve": { 1683 | "version": "2.0.0-next.4", 1684 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", 1685 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", 1686 | "dependencies": { 1687 | "is-core-module": "^2.9.0", 1688 | "path-parse": "^1.0.7", 1689 | "supports-preserve-symlinks-flag": "^1.0.0" 1690 | }, 1691 | "bin": { 1692 | "resolve": "bin/resolve" 1693 | }, 1694 | "funding": { 1695 | "url": "https://github.com/sponsors/ljharb" 1696 | } 1697 | }, 1698 | "node_modules/eslint-plugin-react/node_modules/semver": { 1699 | "version": "6.3.0", 1700 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1701 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1702 | "bin": { 1703 | "semver": "bin/semver.js" 1704 | } 1705 | }, 1706 | "node_modules/eslint-scope": { 1707 | "version": "7.2.0", 1708 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz", 1709 | "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==", 1710 | "dependencies": { 1711 | "esrecurse": "^4.3.0", 1712 | "estraverse": "^5.2.0" 1713 | }, 1714 | "engines": { 1715 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1716 | }, 1717 | "funding": { 1718 | "url": "https://opencollective.com/eslint" 1719 | } 1720 | }, 1721 | "node_modules/eslint-visitor-keys": { 1722 | "version": "3.4.1", 1723 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz", 1724 | "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==", 1725 | "engines": { 1726 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1727 | }, 1728 | "funding": { 1729 | "url": "https://opencollective.com/eslint" 1730 | } 1731 | }, 1732 | "node_modules/espree": { 1733 | "version": "9.5.2", 1734 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz", 1735 | "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==", 1736 | "dependencies": { 1737 | "acorn": "^8.8.0", 1738 | "acorn-jsx": "^5.3.2", 1739 | "eslint-visitor-keys": "^3.4.1" 1740 | }, 1741 | "engines": { 1742 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1743 | }, 1744 | "funding": { 1745 | "url": "https://opencollective.com/eslint" 1746 | } 1747 | }, 1748 | "node_modules/esquery": { 1749 | "version": "1.5.0", 1750 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1751 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1752 | "dependencies": { 1753 | "estraverse": "^5.1.0" 1754 | }, 1755 | "engines": { 1756 | "node": ">=0.10" 1757 | } 1758 | }, 1759 | "node_modules/esrecurse": { 1760 | "version": "4.3.0", 1761 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1762 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1763 | "dependencies": { 1764 | "estraverse": "^5.2.0" 1765 | }, 1766 | "engines": { 1767 | "node": ">=4.0" 1768 | } 1769 | }, 1770 | "node_modules/estraverse": { 1771 | "version": "5.3.0", 1772 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1773 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1774 | "engines": { 1775 | "node": ">=4.0" 1776 | } 1777 | }, 1778 | "node_modules/esutils": { 1779 | "version": "2.0.3", 1780 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1781 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1782 | "engines": { 1783 | "node": ">=0.10.0" 1784 | } 1785 | }, 1786 | "node_modules/execa": { 1787 | "version": "7.1.1", 1788 | "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", 1789 | "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", 1790 | "dependencies": { 1791 | "cross-spawn": "^7.0.3", 1792 | "get-stream": "^6.0.1", 1793 | "human-signals": "^4.3.0", 1794 | "is-stream": "^3.0.0", 1795 | "merge-stream": "^2.0.0", 1796 | "npm-run-path": "^5.1.0", 1797 | "onetime": "^6.0.0", 1798 | "signal-exit": "^3.0.7", 1799 | "strip-final-newline": "^3.0.0" 1800 | }, 1801 | "engines": { 1802 | "node": "^14.18.0 || ^16.14.0 || >=18.0.0" 1803 | }, 1804 | "funding": { 1805 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 1806 | } 1807 | }, 1808 | "node_modules/fast-deep-equal": { 1809 | "version": "3.1.3", 1810 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1811 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" 1812 | }, 1813 | "node_modules/fast-glob": { 1814 | "version": "3.2.12", 1815 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz", 1816 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==", 1817 | "dependencies": { 1818 | "@nodelib/fs.stat": "^2.0.2", 1819 | "@nodelib/fs.walk": "^1.2.3", 1820 | "glob-parent": "^5.1.2", 1821 | "merge2": "^1.3.0", 1822 | "micromatch": "^4.0.4" 1823 | }, 1824 | "engines": { 1825 | "node": ">=8.6.0" 1826 | } 1827 | }, 1828 | "node_modules/fast-glob/node_modules/glob-parent": { 1829 | "version": "5.1.2", 1830 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 1831 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 1832 | "dependencies": { 1833 | "is-glob": "^4.0.1" 1834 | }, 1835 | "engines": { 1836 | "node": ">= 6" 1837 | } 1838 | }, 1839 | "node_modules/fast-json-stable-stringify": { 1840 | "version": "2.1.0", 1841 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1842 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" 1843 | }, 1844 | "node_modules/fast-levenshtein": { 1845 | "version": "2.0.6", 1846 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1847 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==" 1848 | }, 1849 | "node_modules/fastq": { 1850 | "version": "1.15.0", 1851 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", 1852 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", 1853 | "dependencies": { 1854 | "reusify": "^1.0.4" 1855 | } 1856 | }, 1857 | "node_modules/file-entry-cache": { 1858 | "version": "6.0.1", 1859 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 1860 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 1861 | "dependencies": { 1862 | "flat-cache": "^3.0.4" 1863 | }, 1864 | "engines": { 1865 | "node": "^10.12.0 || >=12.0.0" 1866 | } 1867 | }, 1868 | "node_modules/fill-range": { 1869 | "version": "7.0.1", 1870 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 1871 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 1872 | "dependencies": { 1873 | "to-regex-range": "^5.0.1" 1874 | }, 1875 | "engines": { 1876 | "node": ">=8" 1877 | } 1878 | }, 1879 | "node_modules/find-up": { 1880 | "version": "5.0.0", 1881 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 1882 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 1883 | "dependencies": { 1884 | "locate-path": "^6.0.0", 1885 | "path-exists": "^4.0.0" 1886 | }, 1887 | "engines": { 1888 | "node": ">=10" 1889 | }, 1890 | "funding": { 1891 | "url": "https://github.com/sponsors/sindresorhus" 1892 | } 1893 | }, 1894 | "node_modules/flat-cache": { 1895 | "version": "3.0.4", 1896 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 1897 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 1898 | "dependencies": { 1899 | "flatted": "^3.1.0", 1900 | "rimraf": "^3.0.2" 1901 | }, 1902 | "engines": { 1903 | "node": "^10.12.0 || >=12.0.0" 1904 | } 1905 | }, 1906 | "node_modules/flatted": { 1907 | "version": "3.2.7", 1908 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz", 1909 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==" 1910 | }, 1911 | "node_modules/follow-redirects": { 1912 | "version": "1.15.2", 1913 | "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz", 1914 | "integrity": "sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==", 1915 | "funding": [ 1916 | { 1917 | "type": "individual", 1918 | "url": "https://github.com/sponsors/RubenVerborgh" 1919 | } 1920 | ], 1921 | "engines": { 1922 | "node": ">=4.0" 1923 | }, 1924 | "peerDependenciesMeta": { 1925 | "debug": { 1926 | "optional": true 1927 | } 1928 | } 1929 | }, 1930 | "node_modules/for-each": { 1931 | "version": "0.3.3", 1932 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 1933 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 1934 | "dependencies": { 1935 | "is-callable": "^1.1.3" 1936 | } 1937 | }, 1938 | "node_modules/form-data": { 1939 | "version": "4.0.0", 1940 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", 1941 | "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", 1942 | "dependencies": { 1943 | "asynckit": "^0.4.0", 1944 | "combined-stream": "^1.0.8", 1945 | "mime-types": "^2.1.12" 1946 | }, 1947 | "engines": { 1948 | "node": ">= 6" 1949 | } 1950 | }, 1951 | "node_modules/fraction.js": { 1952 | "version": "4.2.0", 1953 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", 1954 | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", 1955 | "engines": { 1956 | "node": "*" 1957 | }, 1958 | "funding": { 1959 | "type": "patreon", 1960 | "url": "https://www.patreon.com/infusion" 1961 | } 1962 | }, 1963 | "node_modules/fs": { 1964 | "version": "0.0.1-security", 1965 | "resolved": "https://registry.npmjs.org/fs/-/fs-0.0.1-security.tgz", 1966 | "integrity": "sha512-3XY9e1pP0CVEUCdj5BmfIZxRBTSDycnbqhIOGec9QYtmVH2fbLpj86CFWkrNOkt/Fvty4KZG5lTglL9j/gJ87w==" 1967 | }, 1968 | "node_modules/fs.realpath": { 1969 | "version": "1.0.0", 1970 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 1971 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" 1972 | }, 1973 | "node_modules/fsevents": { 1974 | "version": "2.3.2", 1975 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 1976 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 1977 | "hasInstallScript": true, 1978 | "optional": true, 1979 | "os": [ 1980 | "darwin" 1981 | ], 1982 | "engines": { 1983 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 1984 | } 1985 | }, 1986 | "node_modules/function-bind": { 1987 | "version": "1.1.1", 1988 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 1989 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" 1990 | }, 1991 | "node_modules/function.prototype.name": { 1992 | "version": "1.1.5", 1993 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 1994 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 1995 | "dependencies": { 1996 | "call-bind": "^1.0.2", 1997 | "define-properties": "^1.1.3", 1998 | "es-abstract": "^1.19.0", 1999 | "functions-have-names": "^1.2.2" 2000 | }, 2001 | "engines": { 2002 | "node": ">= 0.4" 2003 | }, 2004 | "funding": { 2005 | "url": "https://github.com/sponsors/ljharb" 2006 | } 2007 | }, 2008 | "node_modules/functions-have-names": { 2009 | "version": "1.2.3", 2010 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 2011 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 2012 | "funding": { 2013 | "url": "https://github.com/sponsors/ljharb" 2014 | } 2015 | }, 2016 | "node_modules/get-intrinsic": { 2017 | "version": "1.2.1", 2018 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", 2019 | "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", 2020 | "dependencies": { 2021 | "function-bind": "^1.1.1", 2022 | "has": "^1.0.3", 2023 | "has-proto": "^1.0.1", 2024 | "has-symbols": "^1.0.3" 2025 | }, 2026 | "funding": { 2027 | "url": "https://github.com/sponsors/ljharb" 2028 | } 2029 | }, 2030 | "node_modules/get-stream": { 2031 | "version": "6.0.1", 2032 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", 2033 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", 2034 | "engines": { 2035 | "node": ">=10" 2036 | }, 2037 | "funding": { 2038 | "url": "https://github.com/sponsors/sindresorhus" 2039 | } 2040 | }, 2041 | "node_modules/get-symbol-description": { 2042 | "version": "1.0.0", 2043 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 2044 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 2045 | "dependencies": { 2046 | "call-bind": "^1.0.2", 2047 | "get-intrinsic": "^1.1.1" 2048 | }, 2049 | "engines": { 2050 | "node": ">= 0.4" 2051 | }, 2052 | "funding": { 2053 | "url": "https://github.com/sponsors/ljharb" 2054 | } 2055 | }, 2056 | "node_modules/get-tsconfig": { 2057 | "version": "4.6.0", 2058 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.0.tgz", 2059 | "integrity": "sha512-lgbo68hHTQnFddybKbbs/RDRJnJT5YyGy2kQzVwbq+g67X73i+5MVTval34QxGkOe9X5Ujf1UYpCaphLyltjEg==", 2060 | "dependencies": { 2061 | "resolve-pkg-maps": "^1.0.0" 2062 | }, 2063 | "funding": { 2064 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 2065 | } 2066 | }, 2067 | "node_modules/glob": { 2068 | "version": "7.1.7", 2069 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", 2070 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", 2071 | "dependencies": { 2072 | "fs.realpath": "^1.0.0", 2073 | "inflight": "^1.0.4", 2074 | "inherits": "2", 2075 | "minimatch": "^3.0.4", 2076 | "once": "^1.3.0", 2077 | "path-is-absolute": "^1.0.0" 2078 | }, 2079 | "engines": { 2080 | "node": "*" 2081 | }, 2082 | "funding": { 2083 | "url": "https://github.com/sponsors/isaacs" 2084 | } 2085 | }, 2086 | "node_modules/glob-parent": { 2087 | "version": "6.0.2", 2088 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 2089 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 2090 | "dependencies": { 2091 | "is-glob": "^4.0.3" 2092 | }, 2093 | "engines": { 2094 | "node": ">=10.13.0" 2095 | } 2096 | }, 2097 | "node_modules/globals": { 2098 | "version": "13.20.0", 2099 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz", 2100 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==", 2101 | "dependencies": { 2102 | "type-fest": "^0.20.2" 2103 | }, 2104 | "engines": { 2105 | "node": ">=8" 2106 | }, 2107 | "funding": { 2108 | "url": "https://github.com/sponsors/sindresorhus" 2109 | } 2110 | }, 2111 | "node_modules/globalthis": { 2112 | "version": "1.0.3", 2113 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 2114 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 2115 | "dependencies": { 2116 | "define-properties": "^1.1.3" 2117 | }, 2118 | "engines": { 2119 | "node": ">= 0.4" 2120 | }, 2121 | "funding": { 2122 | "url": "https://github.com/sponsors/ljharb" 2123 | } 2124 | }, 2125 | "node_modules/globby": { 2126 | "version": "11.1.0", 2127 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2128 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2129 | "dependencies": { 2130 | "array-union": "^2.1.0", 2131 | "dir-glob": "^3.0.1", 2132 | "fast-glob": "^3.2.9", 2133 | "ignore": "^5.2.0", 2134 | "merge2": "^1.4.1", 2135 | "slash": "^3.0.0" 2136 | }, 2137 | "engines": { 2138 | "node": ">=10" 2139 | }, 2140 | "funding": { 2141 | "url": "https://github.com/sponsors/sindresorhus" 2142 | } 2143 | }, 2144 | "node_modules/gopd": { 2145 | "version": "1.0.1", 2146 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 2147 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 2148 | "dependencies": { 2149 | "get-intrinsic": "^1.1.3" 2150 | }, 2151 | "funding": { 2152 | "url": "https://github.com/sponsors/ljharb" 2153 | } 2154 | }, 2155 | "node_modules/graceful-fs": { 2156 | "version": "4.2.11", 2157 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2158 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 2159 | }, 2160 | "node_modules/graphemer": { 2161 | "version": "1.4.0", 2162 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2163 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==" 2164 | }, 2165 | "node_modules/has": { 2166 | "version": "1.0.3", 2167 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 2168 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 2169 | "dependencies": { 2170 | "function-bind": "^1.1.1" 2171 | }, 2172 | "engines": { 2173 | "node": ">= 0.4.0" 2174 | } 2175 | }, 2176 | "node_modules/has-bigints": { 2177 | "version": "1.0.2", 2178 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 2179 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 2180 | "funding": { 2181 | "url": "https://github.com/sponsors/ljharb" 2182 | } 2183 | }, 2184 | "node_modules/has-flag": { 2185 | "version": "4.0.0", 2186 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2187 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2188 | "engines": { 2189 | "node": ">=8" 2190 | } 2191 | }, 2192 | "node_modules/has-property-descriptors": { 2193 | "version": "1.0.0", 2194 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 2195 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 2196 | "dependencies": { 2197 | "get-intrinsic": "^1.1.1" 2198 | }, 2199 | "funding": { 2200 | "url": "https://github.com/sponsors/ljharb" 2201 | } 2202 | }, 2203 | "node_modules/has-proto": { 2204 | "version": "1.0.1", 2205 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 2206 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 2207 | "engines": { 2208 | "node": ">= 0.4" 2209 | }, 2210 | "funding": { 2211 | "url": "https://github.com/sponsors/ljharb" 2212 | } 2213 | }, 2214 | "node_modules/has-symbols": { 2215 | "version": "1.0.3", 2216 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 2217 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 2218 | "engines": { 2219 | "node": ">= 0.4" 2220 | }, 2221 | "funding": { 2222 | "url": "https://github.com/sponsors/ljharb" 2223 | } 2224 | }, 2225 | "node_modules/has-tostringtag": { 2226 | "version": "1.0.0", 2227 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 2228 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 2229 | "dependencies": { 2230 | "has-symbols": "^1.0.2" 2231 | }, 2232 | "engines": { 2233 | "node": ">= 0.4" 2234 | }, 2235 | "funding": { 2236 | "url": "https://github.com/sponsors/ljharb" 2237 | } 2238 | }, 2239 | "node_modules/human-signals": { 2240 | "version": "4.3.1", 2241 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", 2242 | "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", 2243 | "engines": { 2244 | "node": ">=14.18.0" 2245 | } 2246 | }, 2247 | "node_modules/ignore": { 2248 | "version": "5.2.4", 2249 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", 2250 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", 2251 | "engines": { 2252 | "node": ">= 4" 2253 | } 2254 | }, 2255 | "node_modules/import-fresh": { 2256 | "version": "3.3.0", 2257 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2258 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2259 | "dependencies": { 2260 | "parent-module": "^1.0.0", 2261 | "resolve-from": "^4.0.0" 2262 | }, 2263 | "engines": { 2264 | "node": ">=6" 2265 | }, 2266 | "funding": { 2267 | "url": "https://github.com/sponsors/sindresorhus" 2268 | } 2269 | }, 2270 | "node_modules/imurmurhash": { 2271 | "version": "0.1.4", 2272 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2273 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2274 | "engines": { 2275 | "node": ">=0.8.19" 2276 | } 2277 | }, 2278 | "node_modules/inflight": { 2279 | "version": "1.0.6", 2280 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 2281 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 2282 | "dependencies": { 2283 | "once": "^1.3.0", 2284 | "wrappy": "1" 2285 | } 2286 | }, 2287 | "node_modules/inherits": { 2288 | "version": "2.0.4", 2289 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 2290 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 2291 | }, 2292 | "node_modules/internal-slot": { 2293 | "version": "1.0.5", 2294 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", 2295 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", 2296 | "dependencies": { 2297 | "get-intrinsic": "^1.2.0", 2298 | "has": "^1.0.3", 2299 | "side-channel": "^1.0.4" 2300 | }, 2301 | "engines": { 2302 | "node": ">= 0.4" 2303 | } 2304 | }, 2305 | "node_modules/is-arguments": { 2306 | "version": "1.1.1", 2307 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", 2308 | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", 2309 | "dependencies": { 2310 | "call-bind": "^1.0.2", 2311 | "has-tostringtag": "^1.0.0" 2312 | }, 2313 | "engines": { 2314 | "node": ">= 0.4" 2315 | }, 2316 | "funding": { 2317 | "url": "https://github.com/sponsors/ljharb" 2318 | } 2319 | }, 2320 | "node_modules/is-array-buffer": { 2321 | "version": "3.0.2", 2322 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", 2323 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", 2324 | "dependencies": { 2325 | "call-bind": "^1.0.2", 2326 | "get-intrinsic": "^1.2.0", 2327 | "is-typed-array": "^1.1.10" 2328 | }, 2329 | "funding": { 2330 | "url": "https://github.com/sponsors/ljharb" 2331 | } 2332 | }, 2333 | "node_modules/is-bigint": { 2334 | "version": "1.0.4", 2335 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2336 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2337 | "dependencies": { 2338 | "has-bigints": "^1.0.1" 2339 | }, 2340 | "funding": { 2341 | "url": "https://github.com/sponsors/ljharb" 2342 | } 2343 | }, 2344 | "node_modules/is-binary-path": { 2345 | "version": "2.1.0", 2346 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 2347 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 2348 | "dependencies": { 2349 | "binary-extensions": "^2.0.0" 2350 | }, 2351 | "engines": { 2352 | "node": ">=8" 2353 | } 2354 | }, 2355 | "node_modules/is-boolean-object": { 2356 | "version": "1.1.2", 2357 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2358 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2359 | "dependencies": { 2360 | "call-bind": "^1.0.2", 2361 | "has-tostringtag": "^1.0.0" 2362 | }, 2363 | "engines": { 2364 | "node": ">= 0.4" 2365 | }, 2366 | "funding": { 2367 | "url": "https://github.com/sponsors/ljharb" 2368 | } 2369 | }, 2370 | "node_modules/is-callable": { 2371 | "version": "1.2.7", 2372 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2373 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2374 | "engines": { 2375 | "node": ">= 0.4" 2376 | }, 2377 | "funding": { 2378 | "url": "https://github.com/sponsors/ljharb" 2379 | } 2380 | }, 2381 | "node_modules/is-core-module": { 2382 | "version": "2.12.1", 2383 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz", 2384 | "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==", 2385 | "dependencies": { 2386 | "has": "^1.0.3" 2387 | }, 2388 | "funding": { 2389 | "url": "https://github.com/sponsors/ljharb" 2390 | } 2391 | }, 2392 | "node_modules/is-date-object": { 2393 | "version": "1.0.5", 2394 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2395 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2396 | "dependencies": { 2397 | "has-tostringtag": "^1.0.0" 2398 | }, 2399 | "engines": { 2400 | "node": ">= 0.4" 2401 | }, 2402 | "funding": { 2403 | "url": "https://github.com/sponsors/ljharb" 2404 | } 2405 | }, 2406 | "node_modules/is-docker": { 2407 | "version": "3.0.0", 2408 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", 2409 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", 2410 | "bin": { 2411 | "is-docker": "cli.js" 2412 | }, 2413 | "engines": { 2414 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2415 | }, 2416 | "funding": { 2417 | "url": "https://github.com/sponsors/sindresorhus" 2418 | } 2419 | }, 2420 | "node_modules/is-extglob": { 2421 | "version": "2.1.1", 2422 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 2423 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 2424 | "engines": { 2425 | "node": ">=0.10.0" 2426 | } 2427 | }, 2428 | "node_modules/is-glob": { 2429 | "version": "4.0.3", 2430 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2431 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2432 | "dependencies": { 2433 | "is-extglob": "^2.1.1" 2434 | }, 2435 | "engines": { 2436 | "node": ">=0.10.0" 2437 | } 2438 | }, 2439 | "node_modules/is-inside-container": { 2440 | "version": "1.0.0", 2441 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", 2442 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", 2443 | "dependencies": { 2444 | "is-docker": "^3.0.0" 2445 | }, 2446 | "bin": { 2447 | "is-inside-container": "cli.js" 2448 | }, 2449 | "engines": { 2450 | "node": ">=14.16" 2451 | }, 2452 | "funding": { 2453 | "url": "https://github.com/sponsors/sindresorhus" 2454 | } 2455 | }, 2456 | "node_modules/is-map": { 2457 | "version": "2.0.2", 2458 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", 2459 | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", 2460 | "funding": { 2461 | "url": "https://github.com/sponsors/ljharb" 2462 | } 2463 | }, 2464 | "node_modules/is-negative-zero": { 2465 | "version": "2.0.2", 2466 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2467 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2468 | "engines": { 2469 | "node": ">= 0.4" 2470 | }, 2471 | "funding": { 2472 | "url": "https://github.com/sponsors/ljharb" 2473 | } 2474 | }, 2475 | "node_modules/is-number": { 2476 | "version": "7.0.0", 2477 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 2478 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 2479 | "engines": { 2480 | "node": ">=0.12.0" 2481 | } 2482 | }, 2483 | "node_modules/is-number-object": { 2484 | "version": "1.0.7", 2485 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2486 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2487 | "dependencies": { 2488 | "has-tostringtag": "^1.0.0" 2489 | }, 2490 | "engines": { 2491 | "node": ">= 0.4" 2492 | }, 2493 | "funding": { 2494 | "url": "https://github.com/sponsors/ljharb" 2495 | } 2496 | }, 2497 | "node_modules/is-path-inside": { 2498 | "version": "3.0.3", 2499 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2500 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2501 | "engines": { 2502 | "node": ">=8" 2503 | } 2504 | }, 2505 | "node_modules/is-regex": { 2506 | "version": "1.1.4", 2507 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2508 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2509 | "dependencies": { 2510 | "call-bind": "^1.0.2", 2511 | "has-tostringtag": "^1.0.0" 2512 | }, 2513 | "engines": { 2514 | "node": ">= 0.4" 2515 | }, 2516 | "funding": { 2517 | "url": "https://github.com/sponsors/ljharb" 2518 | } 2519 | }, 2520 | "node_modules/is-set": { 2521 | "version": "2.0.2", 2522 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", 2523 | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", 2524 | "funding": { 2525 | "url": "https://github.com/sponsors/ljharb" 2526 | } 2527 | }, 2528 | "node_modules/is-shared-array-buffer": { 2529 | "version": "1.0.2", 2530 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2531 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2532 | "dependencies": { 2533 | "call-bind": "^1.0.2" 2534 | }, 2535 | "funding": { 2536 | "url": "https://github.com/sponsors/ljharb" 2537 | } 2538 | }, 2539 | "node_modules/is-stream": { 2540 | "version": "3.0.0", 2541 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", 2542 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", 2543 | "engines": { 2544 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 2545 | }, 2546 | "funding": { 2547 | "url": "https://github.com/sponsors/sindresorhus" 2548 | } 2549 | }, 2550 | "node_modules/is-string": { 2551 | "version": "1.0.7", 2552 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2553 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2554 | "dependencies": { 2555 | "has-tostringtag": "^1.0.0" 2556 | }, 2557 | "engines": { 2558 | "node": ">= 0.4" 2559 | }, 2560 | "funding": { 2561 | "url": "https://github.com/sponsors/ljharb" 2562 | } 2563 | }, 2564 | "node_modules/is-symbol": { 2565 | "version": "1.0.4", 2566 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2567 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2568 | "dependencies": { 2569 | "has-symbols": "^1.0.2" 2570 | }, 2571 | "engines": { 2572 | "node": ">= 0.4" 2573 | }, 2574 | "funding": { 2575 | "url": "https://github.com/sponsors/ljharb" 2576 | } 2577 | }, 2578 | "node_modules/is-typed-array": { 2579 | "version": "1.1.10", 2580 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", 2581 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", 2582 | "dependencies": { 2583 | "available-typed-arrays": "^1.0.5", 2584 | "call-bind": "^1.0.2", 2585 | "for-each": "^0.3.3", 2586 | "gopd": "^1.0.1", 2587 | "has-tostringtag": "^1.0.0" 2588 | }, 2589 | "engines": { 2590 | "node": ">= 0.4" 2591 | }, 2592 | "funding": { 2593 | "url": "https://github.com/sponsors/ljharb" 2594 | } 2595 | }, 2596 | "node_modules/is-weakmap": { 2597 | "version": "2.0.1", 2598 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", 2599 | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", 2600 | "funding": { 2601 | "url": "https://github.com/sponsors/ljharb" 2602 | } 2603 | }, 2604 | "node_modules/is-weakref": { 2605 | "version": "1.0.2", 2606 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2607 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2608 | "dependencies": { 2609 | "call-bind": "^1.0.2" 2610 | }, 2611 | "funding": { 2612 | "url": "https://github.com/sponsors/ljharb" 2613 | } 2614 | }, 2615 | "node_modules/is-weakset": { 2616 | "version": "2.0.2", 2617 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", 2618 | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", 2619 | "dependencies": { 2620 | "call-bind": "^1.0.2", 2621 | "get-intrinsic": "^1.1.1" 2622 | }, 2623 | "funding": { 2624 | "url": "https://github.com/sponsors/ljharb" 2625 | } 2626 | }, 2627 | "node_modules/is-wsl": { 2628 | "version": "2.2.0", 2629 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", 2630 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", 2631 | "dependencies": { 2632 | "is-docker": "^2.0.0" 2633 | }, 2634 | "engines": { 2635 | "node": ">=8" 2636 | } 2637 | }, 2638 | "node_modules/is-wsl/node_modules/is-docker": { 2639 | "version": "2.2.1", 2640 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", 2641 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", 2642 | "bin": { 2643 | "is-docker": "cli.js" 2644 | }, 2645 | "engines": { 2646 | "node": ">=8" 2647 | }, 2648 | "funding": { 2649 | "url": "https://github.com/sponsors/sindresorhus" 2650 | } 2651 | }, 2652 | "node_modules/isarray": { 2653 | "version": "2.0.5", 2654 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2655 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" 2656 | }, 2657 | "node_modules/isexe": { 2658 | "version": "2.0.0", 2659 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2660 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2661 | }, 2662 | "node_modules/jiti": { 2663 | "version": "1.18.2", 2664 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz", 2665 | "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==", 2666 | "bin": { 2667 | "jiti": "bin/jiti.js" 2668 | } 2669 | }, 2670 | "node_modules/js-tokens": { 2671 | "version": "4.0.0", 2672 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", 2673 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" 2674 | }, 2675 | "node_modules/js-yaml": { 2676 | "version": "4.1.0", 2677 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2678 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2679 | "dependencies": { 2680 | "argparse": "^2.0.1" 2681 | }, 2682 | "bin": { 2683 | "js-yaml": "bin/js-yaml.js" 2684 | } 2685 | }, 2686 | "node_modules/json-schema-traverse": { 2687 | "version": "0.4.1", 2688 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2689 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" 2690 | }, 2691 | "node_modules/json-stable-stringify-without-jsonify": { 2692 | "version": "1.0.1", 2693 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2694 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==" 2695 | }, 2696 | "node_modules/json5": { 2697 | "version": "1.0.2", 2698 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2699 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2700 | "dependencies": { 2701 | "minimist": "^1.2.0" 2702 | }, 2703 | "bin": { 2704 | "json5": "lib/cli.js" 2705 | } 2706 | }, 2707 | "node_modules/jsx-ast-utils": { 2708 | "version": "3.3.3", 2709 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz", 2710 | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==", 2711 | "dependencies": { 2712 | "array-includes": "^3.1.5", 2713 | "object.assign": "^4.1.3" 2714 | }, 2715 | "engines": { 2716 | "node": ">=4.0" 2717 | } 2718 | }, 2719 | "node_modules/language-subtag-registry": { 2720 | "version": "0.3.22", 2721 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", 2722 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" 2723 | }, 2724 | "node_modules/language-tags": { 2725 | "version": "1.0.5", 2726 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", 2727 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", 2728 | "dependencies": { 2729 | "language-subtag-registry": "~0.3.2" 2730 | } 2731 | }, 2732 | "node_modules/levn": { 2733 | "version": "0.4.1", 2734 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2735 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2736 | "dependencies": { 2737 | "prelude-ls": "^1.2.1", 2738 | "type-check": "~0.4.0" 2739 | }, 2740 | "engines": { 2741 | "node": ">= 0.8.0" 2742 | } 2743 | }, 2744 | "node_modules/lilconfig": { 2745 | "version": "2.1.0", 2746 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", 2747 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", 2748 | "engines": { 2749 | "node": ">=10" 2750 | } 2751 | }, 2752 | "node_modules/lines-and-columns": { 2753 | "version": "1.2.4", 2754 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", 2755 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" 2756 | }, 2757 | "node_modules/locate-path": { 2758 | "version": "6.0.0", 2759 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2760 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2761 | "dependencies": { 2762 | "p-locate": "^5.0.0" 2763 | }, 2764 | "engines": { 2765 | "node": ">=10" 2766 | }, 2767 | "funding": { 2768 | "url": "https://github.com/sponsors/sindresorhus" 2769 | } 2770 | }, 2771 | "node_modules/lodash.merge": { 2772 | "version": "4.6.2", 2773 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 2774 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==" 2775 | }, 2776 | "node_modules/loose-envify": { 2777 | "version": "1.4.0", 2778 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", 2779 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", 2780 | "dependencies": { 2781 | "js-tokens": "^3.0.0 || ^4.0.0" 2782 | }, 2783 | "bin": { 2784 | "loose-envify": "cli.js" 2785 | } 2786 | }, 2787 | "node_modules/lru-cache": { 2788 | "version": "6.0.0", 2789 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2790 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2791 | "dependencies": { 2792 | "yallist": "^4.0.0" 2793 | }, 2794 | "engines": { 2795 | "node": ">=10" 2796 | } 2797 | }, 2798 | "node_modules/merge-stream": { 2799 | "version": "2.0.0", 2800 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", 2801 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" 2802 | }, 2803 | "node_modules/merge2": { 2804 | "version": "1.4.1", 2805 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 2806 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 2807 | "engines": { 2808 | "node": ">= 8" 2809 | } 2810 | }, 2811 | "node_modules/micromatch": { 2812 | "version": "4.0.5", 2813 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 2814 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 2815 | "dependencies": { 2816 | "braces": "^3.0.2", 2817 | "picomatch": "^2.3.1" 2818 | }, 2819 | "engines": { 2820 | "node": ">=8.6" 2821 | } 2822 | }, 2823 | "node_modules/mime-db": { 2824 | "version": "1.52.0", 2825 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", 2826 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", 2827 | "engines": { 2828 | "node": ">= 0.6" 2829 | } 2830 | }, 2831 | "node_modules/mime-types": { 2832 | "version": "2.1.35", 2833 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", 2834 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", 2835 | "dependencies": { 2836 | "mime-db": "1.52.0" 2837 | }, 2838 | "engines": { 2839 | "node": ">= 0.6" 2840 | } 2841 | }, 2842 | "node_modules/mimic-fn": { 2843 | "version": "4.0.0", 2844 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", 2845 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", 2846 | "engines": { 2847 | "node": ">=12" 2848 | }, 2849 | "funding": { 2850 | "url": "https://github.com/sponsors/sindresorhus" 2851 | } 2852 | }, 2853 | "node_modules/minimatch": { 2854 | "version": "3.1.2", 2855 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 2856 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 2857 | "dependencies": { 2858 | "brace-expansion": "^1.1.7" 2859 | }, 2860 | "engines": { 2861 | "node": "*" 2862 | } 2863 | }, 2864 | "node_modules/minimist": { 2865 | "version": "1.2.8", 2866 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 2867 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 2868 | "funding": { 2869 | "url": "https://github.com/sponsors/ljharb" 2870 | } 2871 | }, 2872 | "node_modules/ms": { 2873 | "version": "2.1.2", 2874 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 2875 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 2876 | }, 2877 | "node_modules/mz": { 2878 | "version": "2.7.0", 2879 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", 2880 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", 2881 | "dependencies": { 2882 | "any-promise": "^1.0.0", 2883 | "object-assign": "^4.0.1", 2884 | "thenify-all": "^1.0.0" 2885 | } 2886 | }, 2887 | "node_modules/nanoid": { 2888 | "version": "3.3.6", 2889 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz", 2890 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==", 2891 | "funding": [ 2892 | { 2893 | "type": "github", 2894 | "url": "https://github.com/sponsors/ai" 2895 | } 2896 | ], 2897 | "bin": { 2898 | "nanoid": "bin/nanoid.cjs" 2899 | }, 2900 | "engines": { 2901 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 2902 | } 2903 | }, 2904 | "node_modules/natural-compare": { 2905 | "version": "1.4.0", 2906 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 2907 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==" 2908 | }, 2909 | "node_modules/next": { 2910 | "version": "13.4.4", 2911 | "resolved": "https://registry.npmjs.org/next/-/next-13.4.4.tgz", 2912 | "integrity": "sha512-C5S0ysM0Ily9McL4Jb48nOQHT1BukOWI59uC3X/xCMlYIh9rJZCv7nzG92J6e1cOBqQbKovlpgvHWFmz4eKKEA==", 2913 | "dependencies": { 2914 | "@next/env": "13.4.4", 2915 | "@swc/helpers": "0.5.1", 2916 | "busboy": "1.6.0", 2917 | "caniuse-lite": "^1.0.30001406", 2918 | "postcss": "8.4.14", 2919 | "styled-jsx": "5.1.1", 2920 | "zod": "3.21.4" 2921 | }, 2922 | "bin": { 2923 | "next": "dist/bin/next" 2924 | }, 2925 | "engines": { 2926 | "node": ">=16.8.0" 2927 | }, 2928 | "optionalDependencies": { 2929 | "@next/swc-darwin-arm64": "13.4.4", 2930 | "@next/swc-darwin-x64": "13.4.4", 2931 | "@next/swc-linux-arm64-gnu": "13.4.4", 2932 | "@next/swc-linux-arm64-musl": "13.4.4", 2933 | "@next/swc-linux-x64-gnu": "13.4.4", 2934 | "@next/swc-linux-x64-musl": "13.4.4", 2935 | "@next/swc-win32-arm64-msvc": "13.4.4", 2936 | "@next/swc-win32-ia32-msvc": "13.4.4", 2937 | "@next/swc-win32-x64-msvc": "13.4.4" 2938 | }, 2939 | "peerDependencies": { 2940 | "@opentelemetry/api": "^1.1.0", 2941 | "fibers": ">= 3.1.0", 2942 | "react": "^18.2.0", 2943 | "react-dom": "^18.2.0", 2944 | "sass": "^1.3.0" 2945 | }, 2946 | "peerDependenciesMeta": { 2947 | "@opentelemetry/api": { 2948 | "optional": true 2949 | }, 2950 | "fibers": { 2951 | "optional": true 2952 | }, 2953 | "sass": { 2954 | "optional": true 2955 | } 2956 | } 2957 | }, 2958 | "node_modules/next/node_modules/postcss": { 2959 | "version": "8.4.14", 2960 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz", 2961 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==", 2962 | "funding": [ 2963 | { 2964 | "type": "opencollective", 2965 | "url": "https://opencollective.com/postcss/" 2966 | }, 2967 | { 2968 | "type": "tidelift", 2969 | "url": "https://tidelift.com/funding/github/npm/postcss" 2970 | } 2971 | ], 2972 | "dependencies": { 2973 | "nanoid": "^3.3.4", 2974 | "picocolors": "^1.0.0", 2975 | "source-map-js": "^1.0.2" 2976 | }, 2977 | "engines": { 2978 | "node": "^10 || ^12 || >=14" 2979 | } 2980 | }, 2981 | "node_modules/node-releases": { 2982 | "version": "2.0.12", 2983 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz", 2984 | "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==" 2985 | }, 2986 | "node_modules/normalize-path": { 2987 | "version": "3.0.0", 2988 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 2989 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", 2990 | "engines": { 2991 | "node": ">=0.10.0" 2992 | } 2993 | }, 2994 | "node_modules/normalize-range": { 2995 | "version": "0.1.2", 2996 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", 2997 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", 2998 | "engines": { 2999 | "node": ">=0.10.0" 3000 | } 3001 | }, 3002 | "node_modules/npm-run-path": { 3003 | "version": "5.1.0", 3004 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", 3005 | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", 3006 | "dependencies": { 3007 | "path-key": "^4.0.0" 3008 | }, 3009 | "engines": { 3010 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0" 3011 | }, 3012 | "funding": { 3013 | "url": "https://github.com/sponsors/sindresorhus" 3014 | } 3015 | }, 3016 | "node_modules/npm-run-path/node_modules/path-key": { 3017 | "version": "4.0.0", 3018 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", 3019 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", 3020 | "engines": { 3021 | "node": ">=12" 3022 | }, 3023 | "funding": { 3024 | "url": "https://github.com/sponsors/sindresorhus" 3025 | } 3026 | }, 3027 | "node_modules/object-assign": { 3028 | "version": "4.1.1", 3029 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 3030 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", 3031 | "engines": { 3032 | "node": ">=0.10.0" 3033 | } 3034 | }, 3035 | "node_modules/object-hash": { 3036 | "version": "3.0.0", 3037 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", 3038 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", 3039 | "engines": { 3040 | "node": ">= 6" 3041 | } 3042 | }, 3043 | "node_modules/object-inspect": { 3044 | "version": "1.12.3", 3045 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", 3046 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", 3047 | "funding": { 3048 | "url": "https://github.com/sponsors/ljharb" 3049 | } 3050 | }, 3051 | "node_modules/object-is": { 3052 | "version": "1.1.5", 3053 | "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", 3054 | "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", 3055 | "dependencies": { 3056 | "call-bind": "^1.0.2", 3057 | "define-properties": "^1.1.3" 3058 | }, 3059 | "engines": { 3060 | "node": ">= 0.4" 3061 | }, 3062 | "funding": { 3063 | "url": "https://github.com/sponsors/ljharb" 3064 | } 3065 | }, 3066 | "node_modules/object-keys": { 3067 | "version": "1.1.1", 3068 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 3069 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 3070 | "engines": { 3071 | "node": ">= 0.4" 3072 | } 3073 | }, 3074 | "node_modules/object.assign": { 3075 | "version": "4.1.4", 3076 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", 3077 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", 3078 | "dependencies": { 3079 | "call-bind": "^1.0.2", 3080 | "define-properties": "^1.1.4", 3081 | "has-symbols": "^1.0.3", 3082 | "object-keys": "^1.1.1" 3083 | }, 3084 | "engines": { 3085 | "node": ">= 0.4" 3086 | }, 3087 | "funding": { 3088 | "url": "https://github.com/sponsors/ljharb" 3089 | } 3090 | }, 3091 | "node_modules/object.entries": { 3092 | "version": "1.1.6", 3093 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", 3094 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", 3095 | "dependencies": { 3096 | "call-bind": "^1.0.2", 3097 | "define-properties": "^1.1.4", 3098 | "es-abstract": "^1.20.4" 3099 | }, 3100 | "engines": { 3101 | "node": ">= 0.4" 3102 | } 3103 | }, 3104 | "node_modules/object.fromentries": { 3105 | "version": "2.0.6", 3106 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", 3107 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", 3108 | "dependencies": { 3109 | "call-bind": "^1.0.2", 3110 | "define-properties": "^1.1.4", 3111 | "es-abstract": "^1.20.4" 3112 | }, 3113 | "engines": { 3114 | "node": ">= 0.4" 3115 | }, 3116 | "funding": { 3117 | "url": "https://github.com/sponsors/ljharb" 3118 | } 3119 | }, 3120 | "node_modules/object.hasown": { 3121 | "version": "1.1.2", 3122 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", 3123 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", 3124 | "dependencies": { 3125 | "define-properties": "^1.1.4", 3126 | "es-abstract": "^1.20.4" 3127 | }, 3128 | "funding": { 3129 | "url": "https://github.com/sponsors/ljharb" 3130 | } 3131 | }, 3132 | "node_modules/object.values": { 3133 | "version": "1.1.6", 3134 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", 3135 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", 3136 | "dependencies": { 3137 | "call-bind": "^1.0.2", 3138 | "define-properties": "^1.1.4", 3139 | "es-abstract": "^1.20.4" 3140 | }, 3141 | "engines": { 3142 | "node": ">= 0.4" 3143 | }, 3144 | "funding": { 3145 | "url": "https://github.com/sponsors/ljharb" 3146 | } 3147 | }, 3148 | "node_modules/once": { 3149 | "version": "1.4.0", 3150 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 3151 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 3152 | "dependencies": { 3153 | "wrappy": "1" 3154 | } 3155 | }, 3156 | "node_modules/onetime": { 3157 | "version": "6.0.0", 3158 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", 3159 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", 3160 | "dependencies": { 3161 | "mimic-fn": "^4.0.0" 3162 | }, 3163 | "engines": { 3164 | "node": ">=12" 3165 | }, 3166 | "funding": { 3167 | "url": "https://github.com/sponsors/sindresorhus" 3168 | } 3169 | }, 3170 | "node_modules/open": { 3171 | "version": "9.1.0", 3172 | "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", 3173 | "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", 3174 | "dependencies": { 3175 | "default-browser": "^4.0.0", 3176 | "define-lazy-prop": "^3.0.0", 3177 | "is-inside-container": "^1.0.0", 3178 | "is-wsl": "^2.2.0" 3179 | }, 3180 | "engines": { 3181 | "node": ">=14.16" 3182 | }, 3183 | "funding": { 3184 | "url": "https://github.com/sponsors/sindresorhus" 3185 | } 3186 | }, 3187 | "node_modules/optionator": { 3188 | "version": "0.9.1", 3189 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 3190 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 3191 | "dependencies": { 3192 | "deep-is": "^0.1.3", 3193 | "fast-levenshtein": "^2.0.6", 3194 | "levn": "^0.4.1", 3195 | "prelude-ls": "^1.2.1", 3196 | "type-check": "^0.4.0", 3197 | "word-wrap": "^1.2.3" 3198 | }, 3199 | "engines": { 3200 | "node": ">= 0.8.0" 3201 | } 3202 | }, 3203 | "node_modules/p-limit": { 3204 | "version": "3.1.0", 3205 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3206 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3207 | "dependencies": { 3208 | "yocto-queue": "^0.1.0" 3209 | }, 3210 | "engines": { 3211 | "node": ">=10" 3212 | }, 3213 | "funding": { 3214 | "url": "https://github.com/sponsors/sindresorhus" 3215 | } 3216 | }, 3217 | "node_modules/p-locate": { 3218 | "version": "5.0.0", 3219 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3220 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3221 | "dependencies": { 3222 | "p-limit": "^3.0.2" 3223 | }, 3224 | "engines": { 3225 | "node": ">=10" 3226 | }, 3227 | "funding": { 3228 | "url": "https://github.com/sponsors/sindresorhus" 3229 | } 3230 | }, 3231 | "node_modules/papaparse": { 3232 | "version": "5.4.1", 3233 | "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz", 3234 | "integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw==" 3235 | }, 3236 | "node_modules/parent-module": { 3237 | "version": "1.0.1", 3238 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3239 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3240 | "dependencies": { 3241 | "callsites": "^3.0.0" 3242 | }, 3243 | "engines": { 3244 | "node": ">=6" 3245 | } 3246 | }, 3247 | "node_modules/path-exists": { 3248 | "version": "4.0.0", 3249 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3250 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3251 | "engines": { 3252 | "node": ">=8" 3253 | } 3254 | }, 3255 | "node_modules/path-is-absolute": { 3256 | "version": "1.0.1", 3257 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 3258 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 3259 | "engines": { 3260 | "node": ">=0.10.0" 3261 | } 3262 | }, 3263 | "node_modules/path-key": { 3264 | "version": "3.1.1", 3265 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3266 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3267 | "engines": { 3268 | "node": ">=8" 3269 | } 3270 | }, 3271 | "node_modules/path-parse": { 3272 | "version": "1.0.7", 3273 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 3274 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" 3275 | }, 3276 | "node_modules/path-type": { 3277 | "version": "4.0.0", 3278 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3279 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3280 | "engines": { 3281 | "node": ">=8" 3282 | } 3283 | }, 3284 | "node_modules/picocolors": { 3285 | "version": "1.0.0", 3286 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", 3287 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" 3288 | }, 3289 | "node_modules/picomatch": { 3290 | "version": "2.3.1", 3291 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 3292 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 3293 | "engines": { 3294 | "node": ">=8.6" 3295 | }, 3296 | "funding": { 3297 | "url": "https://github.com/sponsors/jonschlinkert" 3298 | } 3299 | }, 3300 | "node_modules/pify": { 3301 | "version": "2.3.0", 3302 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", 3303 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", 3304 | "engines": { 3305 | "node": ">=0.10.0" 3306 | } 3307 | }, 3308 | "node_modules/pirates": { 3309 | "version": "4.0.5", 3310 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", 3311 | "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", 3312 | "engines": { 3313 | "node": ">= 6" 3314 | } 3315 | }, 3316 | "node_modules/postcss": { 3317 | "version": "8.4.24", 3318 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz", 3319 | "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==", 3320 | "funding": [ 3321 | { 3322 | "type": "opencollective", 3323 | "url": "https://opencollective.com/postcss/" 3324 | }, 3325 | { 3326 | "type": "tidelift", 3327 | "url": "https://tidelift.com/funding/github/npm/postcss" 3328 | }, 3329 | { 3330 | "type": "github", 3331 | "url": "https://github.com/sponsors/ai" 3332 | } 3333 | ], 3334 | "dependencies": { 3335 | "nanoid": "^3.3.6", 3336 | "picocolors": "^1.0.0", 3337 | "source-map-js": "^1.0.2" 3338 | }, 3339 | "engines": { 3340 | "node": "^10 || ^12 || >=14" 3341 | } 3342 | }, 3343 | "node_modules/postcss-import": { 3344 | "version": "15.1.0", 3345 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", 3346 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", 3347 | "dependencies": { 3348 | "postcss-value-parser": "^4.0.0", 3349 | "read-cache": "^1.0.0", 3350 | "resolve": "^1.1.7" 3351 | }, 3352 | "engines": { 3353 | "node": ">=14.0.0" 3354 | }, 3355 | "peerDependencies": { 3356 | "postcss": "^8.0.0" 3357 | } 3358 | }, 3359 | "node_modules/postcss-js": { 3360 | "version": "4.0.1", 3361 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", 3362 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", 3363 | "dependencies": { 3364 | "camelcase-css": "^2.0.1" 3365 | }, 3366 | "engines": { 3367 | "node": "^12 || ^14 || >= 16" 3368 | }, 3369 | "funding": { 3370 | "type": "opencollective", 3371 | "url": "https://opencollective.com/postcss/" 3372 | }, 3373 | "peerDependencies": { 3374 | "postcss": "^8.4.21" 3375 | } 3376 | }, 3377 | "node_modules/postcss-load-config": { 3378 | "version": "4.0.1", 3379 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", 3380 | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", 3381 | "dependencies": { 3382 | "lilconfig": "^2.0.5", 3383 | "yaml": "^2.1.1" 3384 | }, 3385 | "engines": { 3386 | "node": ">= 14" 3387 | }, 3388 | "funding": { 3389 | "type": "opencollective", 3390 | "url": "https://opencollective.com/postcss/" 3391 | }, 3392 | "peerDependencies": { 3393 | "postcss": ">=8.0.9", 3394 | "ts-node": ">=9.0.0" 3395 | }, 3396 | "peerDependenciesMeta": { 3397 | "postcss": { 3398 | "optional": true 3399 | }, 3400 | "ts-node": { 3401 | "optional": true 3402 | } 3403 | } 3404 | }, 3405 | "node_modules/postcss-nested": { 3406 | "version": "6.0.1", 3407 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz", 3408 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==", 3409 | "dependencies": { 3410 | "postcss-selector-parser": "^6.0.11" 3411 | }, 3412 | "engines": { 3413 | "node": ">=12.0" 3414 | }, 3415 | "funding": { 3416 | "type": "opencollective", 3417 | "url": "https://opencollective.com/postcss/" 3418 | }, 3419 | "peerDependencies": { 3420 | "postcss": "^8.2.14" 3421 | } 3422 | }, 3423 | "node_modules/postcss-selector-parser": { 3424 | "version": "6.0.13", 3425 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", 3426 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", 3427 | "dependencies": { 3428 | "cssesc": "^3.0.0", 3429 | "util-deprecate": "^1.0.2" 3430 | }, 3431 | "engines": { 3432 | "node": ">=4" 3433 | } 3434 | }, 3435 | "node_modules/postcss-value-parser": { 3436 | "version": "4.2.0", 3437 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", 3438 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" 3439 | }, 3440 | "node_modules/prelude-ls": { 3441 | "version": "1.2.1", 3442 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3443 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3444 | "engines": { 3445 | "node": ">= 0.8.0" 3446 | } 3447 | }, 3448 | "node_modules/prop-types": { 3449 | "version": "15.8.1", 3450 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 3451 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 3452 | "dependencies": { 3453 | "loose-envify": "^1.4.0", 3454 | "object-assign": "^4.1.1", 3455 | "react-is": "^16.13.1" 3456 | } 3457 | }, 3458 | "node_modules/proxy-from-env": { 3459 | "version": "1.1.0", 3460 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 3461 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" 3462 | }, 3463 | "node_modules/punycode": { 3464 | "version": "2.3.0", 3465 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", 3466 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", 3467 | "engines": { 3468 | "node": ">=6" 3469 | } 3470 | }, 3471 | "node_modules/queue-microtask": { 3472 | "version": "1.2.3", 3473 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 3474 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 3475 | "funding": [ 3476 | { 3477 | "type": "github", 3478 | "url": "https://github.com/sponsors/feross" 3479 | }, 3480 | { 3481 | "type": "patreon", 3482 | "url": "https://www.patreon.com/feross" 3483 | }, 3484 | { 3485 | "type": "consulting", 3486 | "url": "https://feross.org/support" 3487 | } 3488 | ] 3489 | }, 3490 | "node_modules/react": { 3491 | "version": "18.2.0", 3492 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 3493 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 3494 | "dependencies": { 3495 | "loose-envify": "^1.1.0" 3496 | }, 3497 | "engines": { 3498 | "node": ">=0.10.0" 3499 | } 3500 | }, 3501 | "node_modules/react-dom": { 3502 | "version": "18.2.0", 3503 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 3504 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 3505 | "dependencies": { 3506 | "loose-envify": "^1.1.0", 3507 | "scheduler": "^0.23.0" 3508 | }, 3509 | "peerDependencies": { 3510 | "react": "^18.2.0" 3511 | } 3512 | }, 3513 | "node_modules/react-is": { 3514 | "version": "16.13.1", 3515 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3516 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 3517 | }, 3518 | "node_modules/read-cache": { 3519 | "version": "1.0.0", 3520 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", 3521 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", 3522 | "dependencies": { 3523 | "pify": "^2.3.0" 3524 | } 3525 | }, 3526 | "node_modules/readdirp": { 3527 | "version": "3.6.0", 3528 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 3529 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 3530 | "dependencies": { 3531 | "picomatch": "^2.2.1" 3532 | }, 3533 | "engines": { 3534 | "node": ">=8.10.0" 3535 | } 3536 | }, 3537 | "node_modules/regenerator-runtime": { 3538 | "version": "0.13.11", 3539 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", 3540 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" 3541 | }, 3542 | "node_modules/regexp.prototype.flags": { 3543 | "version": "1.5.0", 3544 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz", 3545 | "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==", 3546 | "dependencies": { 3547 | "call-bind": "^1.0.2", 3548 | "define-properties": "^1.2.0", 3549 | "functions-have-names": "^1.2.3" 3550 | }, 3551 | "engines": { 3552 | "node": ">= 0.4" 3553 | }, 3554 | "funding": { 3555 | "url": "https://github.com/sponsors/ljharb" 3556 | } 3557 | }, 3558 | "node_modules/resolve": { 3559 | "version": "1.22.2", 3560 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz", 3561 | "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==", 3562 | "dependencies": { 3563 | "is-core-module": "^2.11.0", 3564 | "path-parse": "^1.0.7", 3565 | "supports-preserve-symlinks-flag": "^1.0.0" 3566 | }, 3567 | "bin": { 3568 | "resolve": "bin/resolve" 3569 | }, 3570 | "funding": { 3571 | "url": "https://github.com/sponsors/ljharb" 3572 | } 3573 | }, 3574 | "node_modules/resolve-from": { 3575 | "version": "4.0.0", 3576 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3577 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3578 | "engines": { 3579 | "node": ">=4" 3580 | } 3581 | }, 3582 | "node_modules/resolve-pkg-maps": { 3583 | "version": "1.0.0", 3584 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 3585 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 3586 | "funding": { 3587 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 3588 | } 3589 | }, 3590 | "node_modules/reusify": { 3591 | "version": "1.0.4", 3592 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 3593 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 3594 | "engines": { 3595 | "iojs": ">=1.0.0", 3596 | "node": ">=0.10.0" 3597 | } 3598 | }, 3599 | "node_modules/rimraf": { 3600 | "version": "3.0.2", 3601 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3602 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3603 | "dependencies": { 3604 | "glob": "^7.1.3" 3605 | }, 3606 | "bin": { 3607 | "rimraf": "bin.js" 3608 | }, 3609 | "funding": { 3610 | "url": "https://github.com/sponsors/isaacs" 3611 | } 3612 | }, 3613 | "node_modules/run-applescript": { 3614 | "version": "5.0.0", 3615 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", 3616 | "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", 3617 | "dependencies": { 3618 | "execa": "^5.0.0" 3619 | }, 3620 | "engines": { 3621 | "node": ">=12" 3622 | }, 3623 | "funding": { 3624 | "url": "https://github.com/sponsors/sindresorhus" 3625 | } 3626 | }, 3627 | "node_modules/run-applescript/node_modules/execa": { 3628 | "version": "5.1.1", 3629 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", 3630 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", 3631 | "dependencies": { 3632 | "cross-spawn": "^7.0.3", 3633 | "get-stream": "^6.0.0", 3634 | "human-signals": "^2.1.0", 3635 | "is-stream": "^2.0.0", 3636 | "merge-stream": "^2.0.0", 3637 | "npm-run-path": "^4.0.1", 3638 | "onetime": "^5.1.2", 3639 | "signal-exit": "^3.0.3", 3640 | "strip-final-newline": "^2.0.0" 3641 | }, 3642 | "engines": { 3643 | "node": ">=10" 3644 | }, 3645 | "funding": { 3646 | "url": "https://github.com/sindresorhus/execa?sponsor=1" 3647 | } 3648 | }, 3649 | "node_modules/run-applescript/node_modules/human-signals": { 3650 | "version": "2.1.0", 3651 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", 3652 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", 3653 | "engines": { 3654 | "node": ">=10.17.0" 3655 | } 3656 | }, 3657 | "node_modules/run-applescript/node_modules/is-stream": { 3658 | "version": "2.0.1", 3659 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", 3660 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", 3661 | "engines": { 3662 | "node": ">=8" 3663 | }, 3664 | "funding": { 3665 | "url": "https://github.com/sponsors/sindresorhus" 3666 | } 3667 | }, 3668 | "node_modules/run-applescript/node_modules/mimic-fn": { 3669 | "version": "2.1.0", 3670 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", 3671 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", 3672 | "engines": { 3673 | "node": ">=6" 3674 | } 3675 | }, 3676 | "node_modules/run-applescript/node_modules/npm-run-path": { 3677 | "version": "4.0.1", 3678 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", 3679 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", 3680 | "dependencies": { 3681 | "path-key": "^3.0.0" 3682 | }, 3683 | "engines": { 3684 | "node": ">=8" 3685 | } 3686 | }, 3687 | "node_modules/run-applescript/node_modules/onetime": { 3688 | "version": "5.1.2", 3689 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", 3690 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", 3691 | "dependencies": { 3692 | "mimic-fn": "^2.1.0" 3693 | }, 3694 | "engines": { 3695 | "node": ">=6" 3696 | }, 3697 | "funding": { 3698 | "url": "https://github.com/sponsors/sindresorhus" 3699 | } 3700 | }, 3701 | "node_modules/run-applescript/node_modules/strip-final-newline": { 3702 | "version": "2.0.0", 3703 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", 3704 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", 3705 | "engines": { 3706 | "node": ">=6" 3707 | } 3708 | }, 3709 | "node_modules/run-parallel": { 3710 | "version": "1.2.0", 3711 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 3712 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 3713 | "funding": [ 3714 | { 3715 | "type": "github", 3716 | "url": "https://github.com/sponsors/feross" 3717 | }, 3718 | { 3719 | "type": "patreon", 3720 | "url": "https://www.patreon.com/feross" 3721 | }, 3722 | { 3723 | "type": "consulting", 3724 | "url": "https://feross.org/support" 3725 | } 3726 | ], 3727 | "dependencies": { 3728 | "queue-microtask": "^1.2.2" 3729 | } 3730 | }, 3731 | "node_modules/safe-regex-test": { 3732 | "version": "1.0.0", 3733 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", 3734 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", 3735 | "dependencies": { 3736 | "call-bind": "^1.0.2", 3737 | "get-intrinsic": "^1.1.3", 3738 | "is-regex": "^1.1.4" 3739 | }, 3740 | "funding": { 3741 | "url": "https://github.com/sponsors/ljharb" 3742 | } 3743 | }, 3744 | "node_modules/scheduler": { 3745 | "version": "0.23.0", 3746 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz", 3747 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==", 3748 | "dependencies": { 3749 | "loose-envify": "^1.1.0" 3750 | } 3751 | }, 3752 | "node_modules/semver": { 3753 | "version": "7.5.1", 3754 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz", 3755 | "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==", 3756 | "dependencies": { 3757 | "lru-cache": "^6.0.0" 3758 | }, 3759 | "bin": { 3760 | "semver": "bin/semver.js" 3761 | }, 3762 | "engines": { 3763 | "node": ">=10" 3764 | } 3765 | }, 3766 | "node_modules/shebang-command": { 3767 | "version": "2.0.0", 3768 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3769 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3770 | "dependencies": { 3771 | "shebang-regex": "^3.0.0" 3772 | }, 3773 | "engines": { 3774 | "node": ">=8" 3775 | } 3776 | }, 3777 | "node_modules/shebang-regex": { 3778 | "version": "3.0.0", 3779 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3780 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3781 | "engines": { 3782 | "node": ">=8" 3783 | } 3784 | }, 3785 | "node_modules/side-channel": { 3786 | "version": "1.0.4", 3787 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 3788 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 3789 | "dependencies": { 3790 | "call-bind": "^1.0.0", 3791 | "get-intrinsic": "^1.0.2", 3792 | "object-inspect": "^1.9.0" 3793 | }, 3794 | "funding": { 3795 | "url": "https://github.com/sponsors/ljharb" 3796 | } 3797 | }, 3798 | "node_modules/signal-exit": { 3799 | "version": "3.0.7", 3800 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", 3801 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" 3802 | }, 3803 | "node_modules/slash": { 3804 | "version": "3.0.0", 3805 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3806 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3807 | "engines": { 3808 | "node": ">=8" 3809 | } 3810 | }, 3811 | "node_modules/source-map-js": { 3812 | "version": "1.0.2", 3813 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", 3814 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", 3815 | "engines": { 3816 | "node": ">=0.10.0" 3817 | } 3818 | }, 3819 | "node_modules/stop-iteration-iterator": { 3820 | "version": "1.0.0", 3821 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz", 3822 | "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==", 3823 | "dependencies": { 3824 | "internal-slot": "^1.0.4" 3825 | }, 3826 | "engines": { 3827 | "node": ">= 0.4" 3828 | } 3829 | }, 3830 | "node_modules/streamsearch": { 3831 | "version": "1.1.0", 3832 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz", 3833 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==", 3834 | "engines": { 3835 | "node": ">=10.0.0" 3836 | } 3837 | }, 3838 | "node_modules/string.prototype.matchall": { 3839 | "version": "4.0.8", 3840 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", 3841 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", 3842 | "dependencies": { 3843 | "call-bind": "^1.0.2", 3844 | "define-properties": "^1.1.4", 3845 | "es-abstract": "^1.20.4", 3846 | "get-intrinsic": "^1.1.3", 3847 | "has-symbols": "^1.0.3", 3848 | "internal-slot": "^1.0.3", 3849 | "regexp.prototype.flags": "^1.4.3", 3850 | "side-channel": "^1.0.4" 3851 | }, 3852 | "funding": { 3853 | "url": "https://github.com/sponsors/ljharb" 3854 | } 3855 | }, 3856 | "node_modules/string.prototype.trim": { 3857 | "version": "1.2.7", 3858 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz", 3859 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==", 3860 | "dependencies": { 3861 | "call-bind": "^1.0.2", 3862 | "define-properties": "^1.1.4", 3863 | "es-abstract": "^1.20.4" 3864 | }, 3865 | "engines": { 3866 | "node": ">= 0.4" 3867 | }, 3868 | "funding": { 3869 | "url": "https://github.com/sponsors/ljharb" 3870 | } 3871 | }, 3872 | "node_modules/string.prototype.trimend": { 3873 | "version": "1.0.6", 3874 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", 3875 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", 3876 | "dependencies": { 3877 | "call-bind": "^1.0.2", 3878 | "define-properties": "^1.1.4", 3879 | "es-abstract": "^1.20.4" 3880 | }, 3881 | "funding": { 3882 | "url": "https://github.com/sponsors/ljharb" 3883 | } 3884 | }, 3885 | "node_modules/string.prototype.trimstart": { 3886 | "version": "1.0.6", 3887 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", 3888 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", 3889 | "dependencies": { 3890 | "call-bind": "^1.0.2", 3891 | "define-properties": "^1.1.4", 3892 | "es-abstract": "^1.20.4" 3893 | }, 3894 | "funding": { 3895 | "url": "https://github.com/sponsors/ljharb" 3896 | } 3897 | }, 3898 | "node_modules/strip-ansi": { 3899 | "version": "6.0.1", 3900 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3901 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3902 | "dependencies": { 3903 | "ansi-regex": "^5.0.1" 3904 | }, 3905 | "engines": { 3906 | "node": ">=8" 3907 | } 3908 | }, 3909 | "node_modules/strip-bom": { 3910 | "version": "3.0.0", 3911 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3912 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3913 | "engines": { 3914 | "node": ">=4" 3915 | } 3916 | }, 3917 | "node_modules/strip-final-newline": { 3918 | "version": "3.0.0", 3919 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", 3920 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", 3921 | "engines": { 3922 | "node": ">=12" 3923 | }, 3924 | "funding": { 3925 | "url": "https://github.com/sponsors/sindresorhus" 3926 | } 3927 | }, 3928 | "node_modules/strip-json-comments": { 3929 | "version": "3.1.1", 3930 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3931 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3932 | "engines": { 3933 | "node": ">=8" 3934 | }, 3935 | "funding": { 3936 | "url": "https://github.com/sponsors/sindresorhus" 3937 | } 3938 | }, 3939 | "node_modules/styled-jsx": { 3940 | "version": "5.1.1", 3941 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz", 3942 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==", 3943 | "dependencies": { 3944 | "client-only": "0.0.1" 3945 | }, 3946 | "engines": { 3947 | "node": ">= 12.0.0" 3948 | }, 3949 | "peerDependencies": { 3950 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 3951 | }, 3952 | "peerDependenciesMeta": { 3953 | "@babel/core": { 3954 | "optional": true 3955 | }, 3956 | "babel-plugin-macros": { 3957 | "optional": true 3958 | } 3959 | } 3960 | }, 3961 | "node_modules/sucrase": { 3962 | "version": "3.32.0", 3963 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz", 3964 | "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==", 3965 | "dependencies": { 3966 | "@jridgewell/gen-mapping": "^0.3.2", 3967 | "commander": "^4.0.0", 3968 | "glob": "7.1.6", 3969 | "lines-and-columns": "^1.1.6", 3970 | "mz": "^2.7.0", 3971 | "pirates": "^4.0.1", 3972 | "ts-interface-checker": "^0.1.9" 3973 | }, 3974 | "bin": { 3975 | "sucrase": "bin/sucrase", 3976 | "sucrase-node": "bin/sucrase-node" 3977 | }, 3978 | "engines": { 3979 | "node": ">=8" 3980 | } 3981 | }, 3982 | "node_modules/sucrase/node_modules/glob": { 3983 | "version": "7.1.6", 3984 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", 3985 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", 3986 | "dependencies": { 3987 | "fs.realpath": "^1.0.0", 3988 | "inflight": "^1.0.4", 3989 | "inherits": "2", 3990 | "minimatch": "^3.0.4", 3991 | "once": "^1.3.0", 3992 | "path-is-absolute": "^1.0.0" 3993 | }, 3994 | "engines": { 3995 | "node": "*" 3996 | }, 3997 | "funding": { 3998 | "url": "https://github.com/sponsors/isaacs" 3999 | } 4000 | }, 4001 | "node_modules/supports-color": { 4002 | "version": "7.2.0", 4003 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 4004 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 4005 | "dependencies": { 4006 | "has-flag": "^4.0.0" 4007 | }, 4008 | "engines": { 4009 | "node": ">=8" 4010 | } 4011 | }, 4012 | "node_modules/supports-preserve-symlinks-flag": { 4013 | "version": "1.0.0", 4014 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 4015 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 4016 | "engines": { 4017 | "node": ">= 0.4" 4018 | }, 4019 | "funding": { 4020 | "url": "https://github.com/sponsors/ljharb" 4021 | } 4022 | }, 4023 | "node_modules/synckit": { 4024 | "version": "0.8.5", 4025 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz", 4026 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==", 4027 | "dependencies": { 4028 | "@pkgr/utils": "^2.3.1", 4029 | "tslib": "^2.5.0" 4030 | }, 4031 | "engines": { 4032 | "node": "^14.18.0 || >=16.0.0" 4033 | }, 4034 | "funding": { 4035 | "url": "https://opencollective.com/unts" 4036 | } 4037 | }, 4038 | "node_modules/tailwindcss": { 4039 | "version": "3.3.2", 4040 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz", 4041 | "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==", 4042 | "dependencies": { 4043 | "@alloc/quick-lru": "^5.2.0", 4044 | "arg": "^5.0.2", 4045 | "chokidar": "^3.5.3", 4046 | "didyoumean": "^1.2.2", 4047 | "dlv": "^1.1.3", 4048 | "fast-glob": "^3.2.12", 4049 | "glob-parent": "^6.0.2", 4050 | "is-glob": "^4.0.3", 4051 | "jiti": "^1.18.2", 4052 | "lilconfig": "^2.1.0", 4053 | "micromatch": "^4.0.5", 4054 | "normalize-path": "^3.0.0", 4055 | "object-hash": "^3.0.0", 4056 | "picocolors": "^1.0.0", 4057 | "postcss": "^8.4.23", 4058 | "postcss-import": "^15.1.0", 4059 | "postcss-js": "^4.0.1", 4060 | "postcss-load-config": "^4.0.1", 4061 | "postcss-nested": "^6.0.1", 4062 | "postcss-selector-parser": "^6.0.11", 4063 | "postcss-value-parser": "^4.2.0", 4064 | "resolve": "^1.22.2", 4065 | "sucrase": "^3.32.0" 4066 | }, 4067 | "bin": { 4068 | "tailwind": "lib/cli.js", 4069 | "tailwindcss": "lib/cli.js" 4070 | }, 4071 | "engines": { 4072 | "node": ">=14.0.0" 4073 | } 4074 | }, 4075 | "node_modules/tapable": { 4076 | "version": "2.2.1", 4077 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 4078 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 4079 | "engines": { 4080 | "node": ">=6" 4081 | } 4082 | }, 4083 | "node_modules/text-table": { 4084 | "version": "0.2.0", 4085 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 4086 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==" 4087 | }, 4088 | "node_modules/thenify": { 4089 | "version": "3.3.1", 4090 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", 4091 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", 4092 | "dependencies": { 4093 | "any-promise": "^1.0.0" 4094 | } 4095 | }, 4096 | "node_modules/thenify-all": { 4097 | "version": "1.6.0", 4098 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", 4099 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", 4100 | "dependencies": { 4101 | "thenify": ">= 3.1.0 < 4" 4102 | }, 4103 | "engines": { 4104 | "node": ">=0.8" 4105 | } 4106 | }, 4107 | "node_modules/titleize": { 4108 | "version": "3.0.0", 4109 | "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", 4110 | "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", 4111 | "engines": { 4112 | "node": ">=12" 4113 | }, 4114 | "funding": { 4115 | "url": "https://github.com/sponsors/sindresorhus" 4116 | } 4117 | }, 4118 | "node_modules/to-regex-range": { 4119 | "version": "5.0.1", 4120 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 4121 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 4122 | "dependencies": { 4123 | "is-number": "^7.0.0" 4124 | }, 4125 | "engines": { 4126 | "node": ">=8.0" 4127 | } 4128 | }, 4129 | "node_modules/ts-interface-checker": { 4130 | "version": "0.1.13", 4131 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", 4132 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==" 4133 | }, 4134 | "node_modules/tsconfig-paths": { 4135 | "version": "3.14.2", 4136 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", 4137 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", 4138 | "dependencies": { 4139 | "@types/json5": "^0.0.29", 4140 | "json5": "^1.0.2", 4141 | "minimist": "^1.2.6", 4142 | "strip-bom": "^3.0.0" 4143 | } 4144 | }, 4145 | "node_modules/tslib": { 4146 | "version": "2.5.2", 4147 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz", 4148 | "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA==" 4149 | }, 4150 | "node_modules/tsutils": { 4151 | "version": "3.21.0", 4152 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", 4153 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", 4154 | "dependencies": { 4155 | "tslib": "^1.8.1" 4156 | }, 4157 | "engines": { 4158 | "node": ">= 6" 4159 | }, 4160 | "peerDependencies": { 4161 | "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" 4162 | } 4163 | }, 4164 | "node_modules/tsutils/node_modules/tslib": { 4165 | "version": "1.14.1", 4166 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 4167 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 4168 | }, 4169 | "node_modules/type-check": { 4170 | "version": "0.4.0", 4171 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4172 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4173 | "dependencies": { 4174 | "prelude-ls": "^1.2.1" 4175 | }, 4176 | "engines": { 4177 | "node": ">= 0.8.0" 4178 | } 4179 | }, 4180 | "node_modules/type-fest": { 4181 | "version": "0.20.2", 4182 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4183 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4184 | "engines": { 4185 | "node": ">=10" 4186 | }, 4187 | "funding": { 4188 | "url": "https://github.com/sponsors/sindresorhus" 4189 | } 4190 | }, 4191 | "node_modules/typed-array-length": { 4192 | "version": "1.0.4", 4193 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 4194 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 4195 | "dependencies": { 4196 | "call-bind": "^1.0.2", 4197 | "for-each": "^0.3.3", 4198 | "is-typed-array": "^1.1.9" 4199 | }, 4200 | "funding": { 4201 | "url": "https://github.com/sponsors/ljharb" 4202 | } 4203 | }, 4204 | "node_modules/typescript": { 4205 | "version": "5.0.4", 4206 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz", 4207 | "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==", 4208 | "bin": { 4209 | "tsc": "bin/tsc", 4210 | "tsserver": "bin/tsserver" 4211 | }, 4212 | "engines": { 4213 | "node": ">=12.20" 4214 | } 4215 | }, 4216 | "node_modules/unbox-primitive": { 4217 | "version": "1.0.2", 4218 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 4219 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 4220 | "dependencies": { 4221 | "call-bind": "^1.0.2", 4222 | "has-bigints": "^1.0.2", 4223 | "has-symbols": "^1.0.3", 4224 | "which-boxed-primitive": "^1.0.2" 4225 | }, 4226 | "funding": { 4227 | "url": "https://github.com/sponsors/ljharb" 4228 | } 4229 | }, 4230 | "node_modules/untildify": { 4231 | "version": "4.0.0", 4232 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", 4233 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", 4234 | "engines": { 4235 | "node": ">=8" 4236 | } 4237 | }, 4238 | "node_modules/update-browserslist-db": { 4239 | "version": "1.0.11", 4240 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz", 4241 | "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==", 4242 | "funding": [ 4243 | { 4244 | "type": "opencollective", 4245 | "url": "https://opencollective.com/browserslist" 4246 | }, 4247 | { 4248 | "type": "tidelift", 4249 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4250 | }, 4251 | { 4252 | "type": "github", 4253 | "url": "https://github.com/sponsors/ai" 4254 | } 4255 | ], 4256 | "dependencies": { 4257 | "escalade": "^3.1.1", 4258 | "picocolors": "^1.0.0" 4259 | }, 4260 | "bin": { 4261 | "update-browserslist-db": "cli.js" 4262 | }, 4263 | "peerDependencies": { 4264 | "browserslist": ">= 4.21.0" 4265 | } 4266 | }, 4267 | "node_modules/uri-js": { 4268 | "version": "4.4.1", 4269 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4270 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4271 | "dependencies": { 4272 | "punycode": "^2.1.0" 4273 | } 4274 | }, 4275 | "node_modules/util-deprecate": { 4276 | "version": "1.0.2", 4277 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 4278 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" 4279 | }, 4280 | "node_modules/which": { 4281 | "version": "2.0.2", 4282 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4283 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4284 | "dependencies": { 4285 | "isexe": "^2.0.0" 4286 | }, 4287 | "bin": { 4288 | "node-which": "bin/node-which" 4289 | }, 4290 | "engines": { 4291 | "node": ">= 8" 4292 | } 4293 | }, 4294 | "node_modules/which-boxed-primitive": { 4295 | "version": "1.0.2", 4296 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 4297 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 4298 | "dependencies": { 4299 | "is-bigint": "^1.0.1", 4300 | "is-boolean-object": "^1.1.0", 4301 | "is-number-object": "^1.0.4", 4302 | "is-string": "^1.0.5", 4303 | "is-symbol": "^1.0.3" 4304 | }, 4305 | "funding": { 4306 | "url": "https://github.com/sponsors/ljharb" 4307 | } 4308 | }, 4309 | "node_modules/which-collection": { 4310 | "version": "1.0.1", 4311 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", 4312 | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", 4313 | "dependencies": { 4314 | "is-map": "^2.0.1", 4315 | "is-set": "^2.0.1", 4316 | "is-weakmap": "^2.0.1", 4317 | "is-weakset": "^2.0.1" 4318 | }, 4319 | "funding": { 4320 | "url": "https://github.com/sponsors/ljharb" 4321 | } 4322 | }, 4323 | "node_modules/which-typed-array": { 4324 | "version": "1.1.9", 4325 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", 4326 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", 4327 | "dependencies": { 4328 | "available-typed-arrays": "^1.0.5", 4329 | "call-bind": "^1.0.2", 4330 | "for-each": "^0.3.3", 4331 | "gopd": "^1.0.1", 4332 | "has-tostringtag": "^1.0.0", 4333 | "is-typed-array": "^1.1.10" 4334 | }, 4335 | "engines": { 4336 | "node": ">= 0.4" 4337 | }, 4338 | "funding": { 4339 | "url": "https://github.com/sponsors/ljharb" 4340 | } 4341 | }, 4342 | "node_modules/word-wrap": { 4343 | "version": "1.2.3", 4344 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 4345 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 4346 | "engines": { 4347 | "node": ">=0.10.0" 4348 | } 4349 | }, 4350 | "node_modules/wrappy": { 4351 | "version": "1.0.2", 4352 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 4353 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" 4354 | }, 4355 | "node_modules/yallist": { 4356 | "version": "4.0.0", 4357 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 4358 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 4359 | }, 4360 | "node_modules/yaml": { 4361 | "version": "2.3.1", 4362 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz", 4363 | "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==", 4364 | "engines": { 4365 | "node": ">= 14" 4366 | } 4367 | }, 4368 | "node_modules/yocto-queue": { 4369 | "version": "0.1.0", 4370 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4371 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4372 | "engines": { 4373 | "node": ">=10" 4374 | }, 4375 | "funding": { 4376 | "url": "https://github.com/sponsors/sindresorhus" 4377 | } 4378 | }, 4379 | "node_modules/zod": { 4380 | "version": "3.21.4", 4381 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz", 4382 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==", 4383 | "funding": { 4384 | "url": "https://github.com/sponsors/colinhacks" 4385 | } 4386 | } 4387 | } 4388 | } 4389 | --------------------------------------------------------------------------------