├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── ClientPage.tsx ├── components │ ├── DataFetcher.tsx │ ├── Pagination.tsx │ └── indexedDbService.ts ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── next.config.js ├── package-lock.json ├── package.json ├── pages └── api │ └── og.tsx ├── postcss.config.js ├── public ├── next.svg ├── vercel.svg └── worker.js ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /app/ClientPage.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import React, { useEffect, useState } from "react"; 3 | import DataFetcher from "./components/DataFetcher"; 4 | 5 | const ClientPage = () => { 6 | const [showComponent, setShowComponent] = useState(false); 7 | // For performance testing 8 | useEffect(() => { 9 | const timer = setTimeout(() => { 10 | setShowComponent(true); 11 | }, 100); 12 | 13 | return () => { 14 | clearTimeout(timer); 15 | }; 16 | }, []); 17 | 18 | return <>{showComponent && }; 19 | }; 20 | 21 | export default ClientPage; 22 | -------------------------------------------------------------------------------- /app/components/DataFetcher.tsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | import { useEffect, useState } from "react"; 3 | import { 4 | Product, 5 | getJSONFromIndexedDB, 6 | saveJSONToIndexedDB, 7 | } from "./indexedDbService"; 8 | import Pagination from "./Pagination"; 9 | 10 | export default function DataFetcher() { 11 | const [data, setData] = useState([]); 12 | const [status, setStatus] = useState("idle"); 13 | const [dbStatus, setDbStatus] = useState("idle"); 14 | const [currentPage, setCurrentPage] = useState(1); 15 | const [totalPages, setTotalPages] = useState(0); 16 | const pageSize = 10; 17 | useEffect(() => { 18 | setStatus("fetching"); 19 | 20 | const worker = new Worker("worker.js"); 21 | 22 | worker.addEventListener("message", async (event) => { 23 | const jsonData = event.data; 24 | saveJSONToIndexedDB(jsonData); 25 | setStatus("fetched"); 26 | }); 27 | 28 | worker.postMessage("start"); 29 | 30 | return () => { 31 | worker.terminate(); 32 | }; 33 | }, []); 34 | 35 | useEffect(() => { 36 | if (status === "fetched") { 37 | fetchData(currentPage); 38 | } 39 | }, [currentPage, status]); 40 | 41 | const fetchData = async (page: number) => { 42 | setDbStatus("dbOpening"); 43 | const { 44 | data: fetchedData, 45 | totalCount, 46 | totalPages, 47 | } = await getJSONFromIndexedDB(pageSize, currentPage); 48 | setDbStatus("dbOpened"); 49 | 50 | setData(fetchedData); 51 | setTotalPages(totalPages); 52 | }; 53 | 54 | const handlePageChange = (page: number) => { 55 | setCurrentPage(page); 56 | }; 57 | 58 | if (status === "fetching") { 59 | return
Fetching
; 60 | } 61 | 62 | if (status === "fetched") { 63 | return ( 64 | <> 65 |
Fetched
66 |
{dbStatus}
67 |
68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | {data.map((product) => ( 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | ))} 90 | 91 |
IdNameCategoryDescPriceQty
{product.id} {product.name} {product.category} {product.description} {product.price} {product.quantity}
92 |
93 | 98 | 99 | ); 100 | } 101 | 102 | return

Idle

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