├── .eslintrc.json ├── .gitignore ├── README.md ├── components └── toast.tsx ├── interfaces.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages ├── _app.tsx ├── _document.tsx └── index.tsx ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── favicon.ico ├── next.svg ├── thirteen.svg └── vercel.svg ├── styles ├── Home.module.css └── globals.css ├── 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 | .pnpm-debug.log* 27 | 28 | # local env files 29 | .env*.local 30 | 31 | # vercel 32 | .vercel 33 | 34 | # typescript 35 | *.tsbuildinfo 36 | next-env.d.ts 37 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Next JS x window.ai 2 | 3 | This is a simple Next JS application that demonstrates how to integrate [window.ai](windowai.io) to build a chatbot interface. The app provides a user-friendly chat interface for users to communicate with an AI assistant. 4 | 5 | ## Features 6 | 7 | - User-friendly chat interface 8 | - AI assistant powered by [window.ai](windowai.io) 9 | - Automatically scrolls to the most recent message 10 | - Loading state while waiting for the AI to respond 11 | - Responsive design 12 | 13 | Built by [Yanni](https://twitter.com/YKouloumbis) & [Nolan](https://twitter.com/nolangclement). 14 | 15 | ## Installation 16 | 17 | To get started with this app, follow these steps: 18 | 19 | 1. Clone the repository: 20 | 21 | ```bash 22 | git clone https://github.com/YanniKouloumbis/next-js-window-ai/ 23 | ``` 24 | 25 | 2. Change directory to the project folder: 26 | 27 | ```bash 28 | cd next-js-window-ai 29 | ``` 30 | 31 | 3. Install the required dependencies: 32 | 33 | ```bash 34 | pnpm install 35 | ``` 36 | 37 | 4. Start the development server: 38 | 39 | ```bash 40 | pnpm dev 41 | ``` 42 | 43 | 5. Visit `http://localhost:3000` in your browser to see the app in action. 44 | 45 | ## Usage 46 | 47 | 1. Type a message in the input field at the bottom of the chat window. 48 | 2. Press "Send" or hit "Enter" to send the message. 49 | 3. The AI assistant will respond with a message after processing your input. 50 | 4. Continue the conversation by sending more messages. 51 | 52 | ## Deployment 53 | 54 | [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/YanniKouloumbis/next-js-window-ai) 55 | 56 | 57 | ## Customization 58 | 59 | You can customize the app by modifying the `pages/index.js` file. Here are some ideas for customization: 60 | 61 | - Change the initial system message to set a different context for the AI assistant. 62 | - Adjust the streaming options like `temperature` and `maxTokens` to control the AI's response. 63 | - Update the UI to match your branding by changing colors, fonts, and other styles. 64 | 65 | ## Contributing 66 | 67 | Feel free to contribute to this project by submitting a pull request, reporting bugs, or suggesting new features. 68 | 69 | ## License 70 | 71 | This project is licensed under the MIT License. Use it for anything! 72 | 73 | ## Acknowledgments 74 | 75 | - The `window.ai` library for providing the AI assistant functionality. 76 | - The Next.js framework for simplifying the development of React applications. 77 | -------------------------------------------------------------------------------- /components/toast.tsx: -------------------------------------------------------------------------------- 1 | import Link from "next/link"; 2 | 3 | export default function InstallationToast() { 4 | return ( 5 |
6 |
Please visit
7 | 13 | windowai.io 14 | 15 |
to install window.ai
16 |
17 | ); 18 | } 19 | -------------------------------------------------------------------------------- /interfaces.ts: -------------------------------------------------------------------------------- 1 | export interface WindowAICompletionOptions { 2 | // If specified, partial updates will be streamed to this handler as they become available, 3 | // and only the first partial update will be returned by the Promise. 4 | onStreamResult?: (result: Output | null, error: string | null) => unknown 5 | // What sampling temperature to use, between 0 and 2. Higher values like 0.8 will 6 | // make the output more random, while lower values like 0.2 will make it more focused and deterministic. 7 | // Different models have different defaults. 8 | temperature?: number 9 | // How many chat completion choices to generate for each input message. Defaults to 1. 10 | // TODO n?: number 11 | // The maximum number of tokens to generate in the chat completion. Defaults to infinity, but the 12 | // total length of input tokens and generated tokens is limited by the model's context length. 13 | maxTokens?: number 14 | // Sequences where the API will stop generating further tokens. 15 | stopSequences?: string[] 16 | // Identifier of the model to use. Defaults to the user's current model, but can be overridden here. 17 | model?: LLM 18 | } 19 | export enum LLM { 20 | GPT3 = "openai/gpt3.5", 21 | GPT4 = "openai/gpt4", 22 | GPTNeo = "together/gpt-neoxt-20B", 23 | Cohere = "cohere/xlarge", 24 | Local = "local" 25 | } 26 | export type ChatMessage = { 27 | role: String, 28 | user: String, 29 | content: String 30 | } 31 | export type Output = | { 32 | text: string 33 | } | { 34 | message: ChatMessage 35 | } -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | } 5 | 6 | module.exports = nextConfig 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "window.ai next js example", 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": "18.15.11", 13 | "@types/react": "18.0.33", 14 | "@types/react-dom": "18.0.11", 15 | "eslint": "8.37.0", 16 | "eslint-config-next": "13.2.4", 17 | "next": "13.2.4", 18 | "react": "18.2.0", 19 | "react-dom": "18.2.0", 20 | "react-hot-toast": "^2.4.0", 21 | "react-toastify": "^9.1.2", 22 | "typescript": "5.0.3", 23 | "window.ai": "^0.2.2" 24 | }, 25 | "devDependencies": { 26 | "autoprefixer": "^10.4.14", 27 | "postcss": "^8.4.21", 28 | "tailwindcss": "^3.3.1" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import '@/styles/globals.css' 2 | import type { AppProps } from 'next/app' 3 | 4 | export default function App({ Component, pageProps }: AppProps) { 5 | return 6 | } 7 | -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- 1 | import { Html, Head, Main, NextScript } from 'next/document' 2 | 3 | export default function Document() { 4 | return ( 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | ) 13 | } 14 | -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- 1 | import React, { useState, useEffect, useRef } from "react"; 2 | import toast, { Toaster } from "react-hot-toast"; 3 | import InstallationToast from "@/components/toast"; 4 | import { ChatMessage, MessageOutput, WindowAI, getWindowAI } from "window.ai"; 5 | 6 | const App: React.FC = () => { 7 | const [messages, setMessages] = useState([]); 8 | const [inputValue, setInputValue] = useState(""); 9 | const [loading, setLoading] = useState(false); 10 | const messagesEndRef = useRef(null); 11 | const aiRef = useRef(null); 12 | 13 | useEffect(() => { 14 | const init = async () => { 15 | aiRef.current = await getWindowAI(); 16 | if (aiRef.current) { 17 | toast.success("window.ai detected!", { 18 | id: "window-ai-detected", 19 | }); 20 | } else { 21 | toast.custom(, { 22 | id: "window-ai-not-detected", 23 | }); 24 | } 25 | }; 26 | init(); 27 | }, []); 28 | 29 | const scrollToBottom = () => { 30 | messagesEndRef.current?.scrollIntoView({ behavior: "smooth" }); 31 | }; 32 | 33 | useEffect(() => { 34 | scrollToBottom(); 35 | }, [messages]); 36 | 37 | const handleSendMessage = async (event: React.FormEvent) => { 38 | event.preventDefault(); 39 | if (!inputValue) return; 40 | if (!aiRef.current) { 41 | toast.custom(, { 42 | id: "window-ai-not-detected", 43 | }); 44 | return; 45 | } 46 | 47 | const userMessage: ChatMessage = { role: "user", content: inputValue }; 48 | //creates a local variable to handle streaming state 49 | let updatedMessages: ChatMessage[] = [...messages, userMessage]; 50 | setMessages((prevMessages) => [...prevMessages, userMessage]); 51 | setLoading(true); 52 | setInputValue(""); 53 | 54 | //streaming options settings for window.ai 55 | const streamingOptions = { 56 | temperature: 0.7, 57 | maxTokens: 1000, 58 | onStreamResult: (result: MessageOutput | null, error: string | null) => { 59 | setLoading(false); 60 | if (error) { 61 | toast.error("window.ai streaming completion failed."); 62 | return; 63 | } else if (result) { 64 | console.log(result); 65 | const lastMessage = updatedMessages[updatedMessages.length - 1]; 66 | // if the last message is from a user, init a new message 67 | if (lastMessage.role === "user") { 68 | updatedMessages = [ 69 | ...updatedMessages, 70 | { 71 | role: "assistant", 72 | content: result.message.content, 73 | }, 74 | ]; 75 | } else { 76 | // if the last message is from the assistant, append the streaming result to the last message 77 | updatedMessages = updatedMessages.map((message, index) => { 78 | if (index === updatedMessages.length - 1) { 79 | return { 80 | ...message, 81 | content: message.content + result.message.content, 82 | }; 83 | } 84 | return message; 85 | }); 86 | } 87 | setMessages(updatedMessages); 88 | } 89 | }, 90 | }; 91 | //function call to window.ai to generate text, using our streaming options 92 | try { 93 | await aiRef.current.generateText( 94 | { 95 | messages: [ 96 | { role: "system", content: "You are a helpful assistant." }, 97 | ...updatedMessages, 98 | ], 99 | }, 100 | streamingOptions 101 | ); 102 | } catch (e) { 103 | toast.error("window.ai generation completion failed."); 104 | console.error(e); 105 | } 106 | }; 107 | 108 | return ( 109 |
110 |
111 |

Next JS x window.ai

112 |
113 | {messages.map((message, index) => ( 114 |
118 | 125 | {message.content} 126 | 127 |
128 | ))} 129 |
130 |
131 |
132 | setInputValue(e.target.value)} 136 | className="flex-grow border border-gray-300 rounded-lg p-2 text-sm focus:outline-none focus:border-blue-500" 137 | /> 138 | 147 |
148 |
149 | 150 |
151 | ); 152 | }; 153 | 154 | export default App; -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | dependencies: 4 | '@types/node': 5 | specifier: 18.15.11 6 | version: 18.15.11 7 | '@types/react': 8 | specifier: 18.0.33 9 | version: 18.0.33 10 | '@types/react-dom': 11 | specifier: 18.0.11 12 | version: 18.0.11 13 | eslint: 14 | specifier: 8.37.0 15 | version: 8.37.0 16 | eslint-config-next: 17 | specifier: 13.2.4 18 | version: 13.2.4(eslint@8.37.0)(typescript@5.0.3) 19 | next: 20 | specifier: 13.2.4 21 | version: 13.2.4(react-dom@18.2.0)(react@18.2.0) 22 | react: 23 | specifier: 18.2.0 24 | version: 18.2.0 25 | react-dom: 26 | specifier: 18.2.0 27 | version: 18.2.0(react@18.2.0) 28 | react-hot-toast: 29 | specifier: ^2.4.0 30 | version: 2.4.0(csstype@3.1.2)(react-dom@18.2.0)(react@18.2.0) 31 | react-toastify: 32 | specifier: ^9.1.2 33 | version: 9.1.2(react-dom@18.2.0)(react@18.2.0) 34 | typescript: 35 | specifier: 5.0.3 36 | version: 5.0.3 37 | window.ai: 38 | specifier: ^0.2.2 39 | version: 0.2.2 40 | 41 | devDependencies: 42 | autoprefixer: 43 | specifier: ^10.4.14 44 | version: 10.4.14(postcss@8.4.21) 45 | postcss: 46 | specifier: ^8.4.21 47 | version: 8.4.21 48 | tailwindcss: 49 | specifier: ^3.3.1 50 | version: 3.3.1(postcss@8.4.21) 51 | 52 | packages: 53 | 54 | /@babel/runtime@7.22.5: 55 | resolution: {integrity: sha512-ecjvYlnAaZ/KVneE/OdKYBYfgXV3Ptu6zQWmgEF7vwKhQnvVS6bjMD2XYgj+SNvQ1GfK/pjgokfPkC/2CO8CuA==} 56 | engines: {node: '>=6.9.0'} 57 | dependencies: 58 | regenerator-runtime: 0.13.11 59 | dev: false 60 | 61 | /@eslint-community/eslint-utils@4.4.0(eslint@8.37.0): 62 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 63 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 64 | peerDependencies: 65 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 66 | dependencies: 67 | eslint: 8.37.0 68 | eslint-visitor-keys: 3.4.1 69 | dev: false 70 | 71 | /@eslint-community/regexpp@4.5.1: 72 | resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} 73 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 74 | dev: false 75 | 76 | /@eslint/eslintrc@2.0.3: 77 | resolution: {integrity: sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==} 78 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 79 | dependencies: 80 | ajv: 6.12.6 81 | debug: 4.3.4 82 | espree: 9.5.2 83 | globals: 13.20.0 84 | ignore: 5.2.4 85 | import-fresh: 3.3.0 86 | js-yaml: 4.1.0 87 | minimatch: 3.1.2 88 | strip-json-comments: 3.1.1 89 | transitivePeerDependencies: 90 | - supports-color 91 | dev: false 92 | 93 | /@eslint/js@8.37.0: 94 | resolution: {integrity: sha512-x5vzdtOOGgFVDCUs81QRB2+liax8rFg3+7hqM+QhBG0/G3F1ZsoYl97UrqgHgQ9KKT7G6c4V+aTUCgu/n22v1A==} 95 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 96 | dev: false 97 | 98 | /@humanwhocodes/config-array@0.11.10: 99 | resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==} 100 | engines: {node: '>=10.10.0'} 101 | dependencies: 102 | '@humanwhocodes/object-schema': 1.2.1 103 | debug: 4.3.4 104 | minimatch: 3.1.2 105 | transitivePeerDependencies: 106 | - supports-color 107 | dev: false 108 | 109 | /@humanwhocodes/module-importer@1.0.1: 110 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 111 | engines: {node: '>=12.22'} 112 | dev: false 113 | 114 | /@humanwhocodes/object-schema@1.2.1: 115 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 116 | dev: false 117 | 118 | /@jridgewell/gen-mapping@0.3.3: 119 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 120 | engines: {node: '>=6.0.0'} 121 | dependencies: 122 | '@jridgewell/set-array': 1.1.2 123 | '@jridgewell/sourcemap-codec': 1.4.15 124 | '@jridgewell/trace-mapping': 0.3.18 125 | dev: true 126 | 127 | /@jridgewell/resolve-uri@3.1.0: 128 | resolution: {integrity: sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==} 129 | engines: {node: '>=6.0.0'} 130 | dev: true 131 | 132 | /@jridgewell/set-array@1.1.2: 133 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 134 | engines: {node: '>=6.0.0'} 135 | dev: true 136 | 137 | /@jridgewell/sourcemap-codec@1.4.14: 138 | resolution: {integrity: sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==} 139 | dev: true 140 | 141 | /@jridgewell/sourcemap-codec@1.4.15: 142 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 143 | dev: true 144 | 145 | /@jridgewell/trace-mapping@0.3.18: 146 | resolution: {integrity: sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==} 147 | dependencies: 148 | '@jridgewell/resolve-uri': 3.1.0 149 | '@jridgewell/sourcemap-codec': 1.4.14 150 | dev: true 151 | 152 | /@next/env@13.2.4: 153 | resolution: {integrity: sha512-+Mq3TtpkeeKFZanPturjcXt+KHfKYnLlX6jMLyCrmpq6OOs4i1GqBOAauSkii9QeKCMTYzGppar21JU57b/GEA==} 154 | dev: false 155 | 156 | /@next/eslint-plugin-next@13.2.4: 157 | resolution: {integrity: sha512-ck1lI+7r1mMJpqLNa3LJ5pxCfOB1lfJncKmRJeJxcJqcngaFwylreLP7da6Rrjr6u2gVRTfmnkSkjc80IiQCwQ==} 158 | dependencies: 159 | glob: 7.1.7 160 | dev: false 161 | 162 | /@next/swc-android-arm-eabi@13.2.4: 163 | resolution: {integrity: sha512-DWlalTSkLjDU11MY11jg17O1gGQzpRccM9Oes2yTqj2DpHndajrXHGxj9HGtJ+idq2k7ImUdJVWS2h2l/EDJOw==} 164 | engines: {node: '>= 10'} 165 | cpu: [arm] 166 | os: [android] 167 | requiresBuild: true 168 | dev: false 169 | optional: true 170 | 171 | /@next/swc-android-arm64@13.2.4: 172 | resolution: {integrity: sha512-sRavmUImUCf332Gy+PjIfLkMhiRX1Ez4SI+3vFDRs1N5eXp+uNzjFUK/oLMMOzk6KFSkbiK/3Wt8+dHQR/flNg==} 173 | engines: {node: '>= 10'} 174 | cpu: [arm64] 175 | os: [android] 176 | requiresBuild: true 177 | dev: false 178 | optional: true 179 | 180 | /@next/swc-darwin-arm64@13.2.4: 181 | resolution: {integrity: sha512-S6vBl+OrInP47TM3LlYx65betocKUUlTZDDKzTiRDbsRESeyIkBtZ6Qi5uT2zQs4imqllJznVjFd1bXLx3Aa6A==} 182 | engines: {node: '>= 10'} 183 | cpu: [arm64] 184 | os: [darwin] 185 | requiresBuild: true 186 | dev: false 187 | optional: true 188 | 189 | /@next/swc-darwin-x64@13.2.4: 190 | resolution: {integrity: sha512-a6LBuoYGcFOPGd4o8TPo7wmv5FnMr+Prz+vYHopEDuhDoMSHOnC+v+Ab4D7F0NMZkvQjEJQdJS3rqgFhlZmKlw==} 191 | engines: {node: '>= 10'} 192 | cpu: [x64] 193 | os: [darwin] 194 | requiresBuild: true 195 | dev: false 196 | optional: true 197 | 198 | /@next/swc-freebsd-x64@13.2.4: 199 | resolution: {integrity: sha512-kkbzKVZGPaXRBPisoAQkh3xh22r+TD+5HwoC5bOkALraJ0dsOQgSMAvzMXKsN3tMzJUPS0tjtRf1cTzrQ0I5vQ==} 200 | engines: {node: '>= 10'} 201 | cpu: [x64] 202 | os: [freebsd] 203 | requiresBuild: true 204 | dev: false 205 | optional: true 206 | 207 | /@next/swc-linux-arm-gnueabihf@13.2.4: 208 | resolution: {integrity: sha512-7qA1++UY0fjprqtjBZaOA6cas/7GekpjVsZn/0uHvquuITFCdKGFCsKNBx3S0Rpxmx6WYo0GcmhNRM9ru08BGg==} 209 | engines: {node: '>= 10'} 210 | cpu: [arm] 211 | os: [linux] 212 | requiresBuild: true 213 | dev: false 214 | optional: true 215 | 216 | /@next/swc-linux-arm64-gnu@13.2.4: 217 | resolution: {integrity: sha512-xzYZdAeq883MwXgcwc72hqo/F/dwUxCukpDOkx/j1HTq/J0wJthMGjinN9wH5bPR98Mfeh1MZJ91WWPnZOedOg==} 218 | engines: {node: '>= 10'} 219 | cpu: [arm64] 220 | os: [linux] 221 | requiresBuild: true 222 | dev: false 223 | optional: true 224 | 225 | /@next/swc-linux-arm64-musl@13.2.4: 226 | resolution: {integrity: sha512-8rXr3WfmqSiYkb71qzuDP6I6R2T2tpkmf83elDN8z783N9nvTJf2E7eLx86wu2OJCi4T05nuxCsh4IOU3LQ5xw==} 227 | engines: {node: '>= 10'} 228 | cpu: [arm64] 229 | os: [linux] 230 | requiresBuild: true 231 | dev: false 232 | optional: true 233 | 234 | /@next/swc-linux-x64-gnu@13.2.4: 235 | resolution: {integrity: sha512-Ngxh51zGSlYJ4EfpKG4LI6WfquulNdtmHg1yuOYlaAr33KyPJp4HeN/tivBnAHcZkoNy0hh/SbwDyCnz5PFJQQ==} 236 | engines: {node: '>= 10'} 237 | cpu: [x64] 238 | os: [linux] 239 | requiresBuild: true 240 | dev: false 241 | optional: true 242 | 243 | /@next/swc-linux-x64-musl@13.2.4: 244 | resolution: {integrity: sha512-gOvwIYoSxd+j14LOcvJr+ekd9fwYT1RyMAHOp7znA10+l40wkFiMONPLWiZuHxfRk+Dy7YdNdDh3ImumvL6VwA==} 245 | engines: {node: '>= 10'} 246 | cpu: [x64] 247 | os: [linux] 248 | requiresBuild: true 249 | dev: false 250 | optional: true 251 | 252 | /@next/swc-win32-arm64-msvc@13.2.4: 253 | resolution: {integrity: sha512-q3NJzcfClgBm4HvdcnoEncmztxrA5GXqKeiZ/hADvC56pwNALt3ngDC6t6qr1YW9V/EPDxCYeaX4zYxHciW4Dw==} 254 | engines: {node: '>= 10'} 255 | cpu: [arm64] 256 | os: [win32] 257 | requiresBuild: true 258 | dev: false 259 | optional: true 260 | 261 | /@next/swc-win32-ia32-msvc@13.2.4: 262 | resolution: {integrity: sha512-/eZ5ncmHUYtD2fc6EUmAIZlAJnVT2YmxDsKs1Ourx0ttTtvtma/WKlMV5NoUsyOez0f9ExLyOpeCoz5aj+MPXw==} 263 | engines: {node: '>= 10'} 264 | cpu: [ia32] 265 | os: [win32] 266 | requiresBuild: true 267 | dev: false 268 | optional: true 269 | 270 | /@next/swc-win32-x64-msvc@13.2.4: 271 | resolution: {integrity: sha512-0MffFmyv7tBLlji01qc0IaPP/LVExzvj7/R5x1Jph1bTAIj4Vu81yFQWHHQAP6r4ff9Ukj1mBK6MDNVXm7Tcvw==} 272 | engines: {node: '>= 10'} 273 | cpu: [x64] 274 | os: [win32] 275 | requiresBuild: true 276 | dev: false 277 | optional: true 278 | 279 | /@nodelib/fs.scandir@2.1.5: 280 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 281 | engines: {node: '>= 8'} 282 | dependencies: 283 | '@nodelib/fs.stat': 2.0.5 284 | run-parallel: 1.2.0 285 | 286 | /@nodelib/fs.stat@2.0.5: 287 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 288 | engines: {node: '>= 8'} 289 | 290 | /@nodelib/fs.walk@1.2.8: 291 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 292 | engines: {node: '>= 8'} 293 | dependencies: 294 | '@nodelib/fs.scandir': 2.1.5 295 | fastq: 1.15.0 296 | 297 | /@pkgr/utils@2.4.1: 298 | resolution: {integrity: sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==} 299 | engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 300 | dependencies: 301 | cross-spawn: 7.0.3 302 | fast-glob: 3.2.12 303 | is-glob: 4.0.3 304 | open: 9.1.0 305 | picocolors: 1.0.0 306 | tslib: 2.5.3 307 | dev: false 308 | 309 | /@rushstack/eslint-patch@1.3.2: 310 | resolution: {integrity: sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw==} 311 | dev: false 312 | 313 | /@swc/helpers@0.4.14: 314 | resolution: {integrity: sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==} 315 | dependencies: 316 | tslib: 2.5.3 317 | dev: false 318 | 319 | /@types/json5@0.0.29: 320 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 321 | dev: false 322 | 323 | /@types/node@18.15.11: 324 | resolution: {integrity: sha512-E5Kwq2n4SbMzQOn6wnmBjuK9ouqlURrcZDVfbo9ftDDTFt3nk7ZKK4GMOzoYgnpQJKcxwQw+lGaBvvlMo0qN/Q==} 325 | dev: false 326 | 327 | /@types/prop-types@15.7.5: 328 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} 329 | dev: false 330 | 331 | /@types/react-dom@18.0.11: 332 | resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==} 333 | dependencies: 334 | '@types/react': 18.0.33 335 | dev: false 336 | 337 | /@types/react@18.0.33: 338 | resolution: {integrity: sha512-sHxzVxeanvQyQ1lr8NSHaj0kDzcNiGpILEVt69g9S31/7PfMvNCKLKcsHw4lYKjs3cGNJjXSP4mYzX43QlnjNA==} 339 | dependencies: 340 | '@types/prop-types': 15.7.5 341 | '@types/scheduler': 0.16.3 342 | csstype: 3.1.2 343 | dev: false 344 | 345 | /@types/scheduler@0.16.3: 346 | resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} 347 | dev: false 348 | 349 | /@typescript-eslint/parser@5.60.0(eslint@8.37.0)(typescript@5.0.3): 350 | resolution: {integrity: sha512-jBONcBsDJ9UoTWrARkRRCgDz6wUggmH5RpQVlt7BimSwaTkTjwypGzKORXbR4/2Hqjk9hgwlon2rVQAjWNpkyQ==} 351 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 352 | peerDependencies: 353 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 354 | typescript: '*' 355 | peerDependenciesMeta: 356 | typescript: 357 | optional: true 358 | dependencies: 359 | '@typescript-eslint/scope-manager': 5.60.0 360 | '@typescript-eslint/types': 5.60.0 361 | '@typescript-eslint/typescript-estree': 5.60.0(typescript@5.0.3) 362 | debug: 4.3.4 363 | eslint: 8.37.0 364 | typescript: 5.0.3 365 | transitivePeerDependencies: 366 | - supports-color 367 | dev: false 368 | 369 | /@typescript-eslint/scope-manager@5.60.0: 370 | resolution: {integrity: sha512-hakuzcxPwXi2ihf9WQu1BbRj1e/Pd8ZZwVTG9kfbxAMZstKz8/9OoexIwnmLzShtsdap5U/CoQGRCWlSuPbYxQ==} 371 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 372 | dependencies: 373 | '@typescript-eslint/types': 5.60.0 374 | '@typescript-eslint/visitor-keys': 5.60.0 375 | dev: false 376 | 377 | /@typescript-eslint/types@5.60.0: 378 | resolution: {integrity: sha512-ascOuoCpNZBccFVNJRSC6rPq4EmJ2NkuoKnd6LDNyAQmdDnziAtxbCGWCbefG1CNzmDvd05zO36AmB7H8RzKPA==} 379 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 380 | dev: false 381 | 382 | /@typescript-eslint/typescript-estree@5.60.0(typescript@5.0.3): 383 | resolution: {integrity: sha512-R43thAuwarC99SnvrBmh26tc7F6sPa2B3evkXp/8q954kYL6Ro56AwASYWtEEi+4j09GbiNAHqYwNNZuNlARGQ==} 384 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 385 | peerDependencies: 386 | typescript: '*' 387 | peerDependenciesMeta: 388 | typescript: 389 | optional: true 390 | dependencies: 391 | '@typescript-eslint/types': 5.60.0 392 | '@typescript-eslint/visitor-keys': 5.60.0 393 | debug: 4.3.4 394 | globby: 11.1.0 395 | is-glob: 4.0.3 396 | semver: 7.5.3 397 | tsutils: 3.21.0(typescript@5.0.3) 398 | typescript: 5.0.3 399 | transitivePeerDependencies: 400 | - supports-color 401 | dev: false 402 | 403 | /@typescript-eslint/visitor-keys@5.60.0: 404 | resolution: {integrity: sha512-wm9Uz71SbCyhUKgcaPRauBdTegUyY/ZWl8gLwD/i/ybJqscrrdVSFImpvUz16BLPChIeKBK5Fa9s6KDQjsjyWw==} 405 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 406 | dependencies: 407 | '@typescript-eslint/types': 5.60.0 408 | eslint-visitor-keys: 3.4.1 409 | dev: false 410 | 411 | /acorn-jsx@5.3.2(acorn@8.9.0): 412 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 413 | peerDependencies: 414 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 415 | dependencies: 416 | acorn: 8.9.0 417 | dev: false 418 | 419 | /acorn@8.9.0: 420 | resolution: {integrity: sha512-jaVNAFBHNLXspO543WnNNPZFRtavh3skAkITqD0/2aeMkKZTN+254PyhwxFYrk3vQ1xfY+2wbesJMs/JC8/PwQ==} 421 | engines: {node: '>=0.4.0'} 422 | hasBin: true 423 | dev: false 424 | 425 | /ajv@6.12.6: 426 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 427 | dependencies: 428 | fast-deep-equal: 3.1.3 429 | fast-json-stable-stringify: 2.1.0 430 | json-schema-traverse: 0.4.1 431 | uri-js: 4.4.1 432 | dev: false 433 | 434 | /ansi-regex@5.0.1: 435 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 436 | engines: {node: '>=8'} 437 | dev: false 438 | 439 | /ansi-styles@4.3.0: 440 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 441 | engines: {node: '>=8'} 442 | dependencies: 443 | color-convert: 2.0.1 444 | dev: false 445 | 446 | /any-promise@1.3.0: 447 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 448 | dev: true 449 | 450 | /anymatch@3.1.3: 451 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 452 | engines: {node: '>= 8'} 453 | dependencies: 454 | normalize-path: 3.0.0 455 | picomatch: 2.3.1 456 | dev: true 457 | 458 | /arg@5.0.2: 459 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 460 | dev: true 461 | 462 | /argparse@2.0.1: 463 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 464 | dev: false 465 | 466 | /aria-query@5.3.0: 467 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 468 | dependencies: 469 | dequal: 2.0.3 470 | dev: false 471 | 472 | /array-buffer-byte-length@1.0.0: 473 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 474 | dependencies: 475 | call-bind: 1.0.2 476 | is-array-buffer: 3.0.2 477 | dev: false 478 | 479 | /array-includes@3.1.6: 480 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} 481 | engines: {node: '>= 0.4'} 482 | dependencies: 483 | call-bind: 1.0.2 484 | define-properties: 1.2.0 485 | es-abstract: 1.21.2 486 | get-intrinsic: 1.2.1 487 | is-string: 1.0.7 488 | dev: false 489 | 490 | /array-union@2.1.0: 491 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 492 | engines: {node: '>=8'} 493 | dev: false 494 | 495 | /array.prototype.flat@1.3.1: 496 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} 497 | engines: {node: '>= 0.4'} 498 | dependencies: 499 | call-bind: 1.0.2 500 | define-properties: 1.2.0 501 | es-abstract: 1.21.2 502 | es-shim-unscopables: 1.0.0 503 | dev: false 504 | 505 | /array.prototype.flatmap@1.3.1: 506 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} 507 | engines: {node: '>= 0.4'} 508 | dependencies: 509 | call-bind: 1.0.2 510 | define-properties: 1.2.0 511 | es-abstract: 1.21.2 512 | es-shim-unscopables: 1.0.0 513 | dev: false 514 | 515 | /array.prototype.tosorted@1.1.1: 516 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} 517 | dependencies: 518 | call-bind: 1.0.2 519 | define-properties: 1.2.0 520 | es-abstract: 1.21.2 521 | es-shim-unscopables: 1.0.0 522 | get-intrinsic: 1.2.1 523 | dev: false 524 | 525 | /ast-types-flow@0.0.7: 526 | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} 527 | dev: false 528 | 529 | /autoprefixer@10.4.14(postcss@8.4.21): 530 | resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} 531 | engines: {node: ^10 || ^12 || >=14} 532 | hasBin: true 533 | peerDependencies: 534 | postcss: ^8.1.0 535 | dependencies: 536 | browserslist: 4.21.9 537 | caniuse-lite: 1.0.30001507 538 | fraction.js: 4.2.0 539 | normalize-range: 0.1.2 540 | picocolors: 1.0.0 541 | postcss: 8.4.21 542 | postcss-value-parser: 4.2.0 543 | dev: true 544 | 545 | /available-typed-arrays@1.0.5: 546 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 547 | engines: {node: '>= 0.4'} 548 | dev: false 549 | 550 | /axe-core@4.7.2: 551 | resolution: {integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==} 552 | engines: {node: '>=4'} 553 | dev: false 554 | 555 | /axobject-query@3.2.1: 556 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 557 | dependencies: 558 | dequal: 2.0.3 559 | dev: false 560 | 561 | /balanced-match@1.0.2: 562 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 563 | 564 | /big-integer@1.6.51: 565 | resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} 566 | engines: {node: '>=0.6'} 567 | dev: false 568 | 569 | /binary-extensions@2.2.0: 570 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 571 | engines: {node: '>=8'} 572 | dev: true 573 | 574 | /bplist-parser@0.2.0: 575 | resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} 576 | engines: {node: '>= 5.10.0'} 577 | dependencies: 578 | big-integer: 1.6.51 579 | dev: false 580 | 581 | /brace-expansion@1.1.11: 582 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 583 | dependencies: 584 | balanced-match: 1.0.2 585 | concat-map: 0.0.1 586 | 587 | /braces@3.0.2: 588 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 589 | engines: {node: '>=8'} 590 | dependencies: 591 | fill-range: 7.0.1 592 | 593 | /browserslist@4.21.9: 594 | resolution: {integrity: sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==} 595 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 596 | hasBin: true 597 | dependencies: 598 | caniuse-lite: 1.0.30001507 599 | electron-to-chromium: 1.4.440 600 | node-releases: 2.0.12 601 | update-browserslist-db: 1.0.11(browserslist@4.21.9) 602 | dev: true 603 | 604 | /bundle-name@3.0.0: 605 | resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} 606 | engines: {node: '>=12'} 607 | dependencies: 608 | run-applescript: 5.0.0 609 | dev: false 610 | 611 | /call-bind@1.0.2: 612 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 613 | dependencies: 614 | function-bind: 1.1.1 615 | get-intrinsic: 1.2.1 616 | dev: false 617 | 618 | /callsites@3.1.0: 619 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 620 | engines: {node: '>=6'} 621 | dev: false 622 | 623 | /camelcase-css@2.0.1: 624 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 625 | engines: {node: '>= 6'} 626 | dev: true 627 | 628 | /caniuse-lite@1.0.30001507: 629 | resolution: {integrity: sha512-SFpUDoSLCaE5XYL2jfqe9ova/pbQHEmbheDf5r4diNwbAgR3qxM9NQtfsiSscjqoya5K7kFcHPUQ+VsUkIJR4A==} 630 | 631 | /chalk@4.1.2: 632 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 633 | engines: {node: '>=10'} 634 | dependencies: 635 | ansi-styles: 4.3.0 636 | supports-color: 7.2.0 637 | dev: false 638 | 639 | /chokidar@3.5.3: 640 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 641 | engines: {node: '>= 8.10.0'} 642 | dependencies: 643 | anymatch: 3.1.3 644 | braces: 3.0.2 645 | glob-parent: 5.1.2 646 | is-binary-path: 2.1.0 647 | is-glob: 4.0.3 648 | normalize-path: 3.0.0 649 | readdirp: 3.6.0 650 | optionalDependencies: 651 | fsevents: 2.3.2 652 | dev: true 653 | 654 | /client-only@0.0.1: 655 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 656 | dev: false 657 | 658 | /clsx@1.2.1: 659 | resolution: {integrity: sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==} 660 | engines: {node: '>=6'} 661 | dev: false 662 | 663 | /color-convert@2.0.1: 664 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 665 | engines: {node: '>=7.0.0'} 666 | dependencies: 667 | color-name: 1.1.4 668 | dev: false 669 | 670 | /color-name@1.1.4: 671 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 672 | 673 | /commander@4.1.1: 674 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 675 | engines: {node: '>= 6'} 676 | dev: true 677 | 678 | /concat-map@0.0.1: 679 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 680 | 681 | /cross-spawn@7.0.3: 682 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 683 | engines: {node: '>= 8'} 684 | dependencies: 685 | path-key: 3.1.1 686 | shebang-command: 2.0.0 687 | which: 2.0.2 688 | dev: false 689 | 690 | /cssesc@3.0.0: 691 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 692 | engines: {node: '>=4'} 693 | hasBin: true 694 | dev: true 695 | 696 | /csstype@3.1.2: 697 | resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} 698 | dev: false 699 | 700 | /damerau-levenshtein@1.0.8: 701 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 702 | dev: false 703 | 704 | /debug@3.2.7: 705 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 706 | peerDependencies: 707 | supports-color: '*' 708 | peerDependenciesMeta: 709 | supports-color: 710 | optional: true 711 | dependencies: 712 | ms: 2.1.3 713 | dev: false 714 | 715 | /debug@4.3.4: 716 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 717 | engines: {node: '>=6.0'} 718 | peerDependencies: 719 | supports-color: '*' 720 | peerDependenciesMeta: 721 | supports-color: 722 | optional: true 723 | dependencies: 724 | ms: 2.1.2 725 | dev: false 726 | 727 | /deep-is@0.1.4: 728 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 729 | dev: false 730 | 731 | /default-browser-id@3.0.0: 732 | resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} 733 | engines: {node: '>=12'} 734 | dependencies: 735 | bplist-parser: 0.2.0 736 | untildify: 4.0.0 737 | dev: false 738 | 739 | /default-browser@4.0.0: 740 | resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} 741 | engines: {node: '>=14.16'} 742 | dependencies: 743 | bundle-name: 3.0.0 744 | default-browser-id: 3.0.0 745 | execa: 7.1.1 746 | titleize: 3.0.0 747 | dev: false 748 | 749 | /define-lazy-prop@3.0.0: 750 | resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} 751 | engines: {node: '>=12'} 752 | dev: false 753 | 754 | /define-properties@1.2.0: 755 | resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} 756 | engines: {node: '>= 0.4'} 757 | dependencies: 758 | has-property-descriptors: 1.0.0 759 | object-keys: 1.1.1 760 | dev: false 761 | 762 | /dequal@2.0.3: 763 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 764 | engines: {node: '>=6'} 765 | dev: false 766 | 767 | /didyoumean@1.2.2: 768 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 769 | dev: true 770 | 771 | /dir-glob@3.0.1: 772 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 773 | engines: {node: '>=8'} 774 | dependencies: 775 | path-type: 4.0.0 776 | dev: false 777 | 778 | /dlv@1.1.3: 779 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 780 | dev: true 781 | 782 | /doctrine@2.1.0: 783 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 784 | engines: {node: '>=0.10.0'} 785 | dependencies: 786 | esutils: 2.0.3 787 | dev: false 788 | 789 | /doctrine@3.0.0: 790 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 791 | engines: {node: '>=6.0.0'} 792 | dependencies: 793 | esutils: 2.0.3 794 | dev: false 795 | 796 | /electron-to-chromium@1.4.440: 797 | resolution: {integrity: sha512-r6dCgNpRhPwiWlxbHzZQ/d9swfPaEJGi8ekqRBwQYaR3WmA5VkqQfBWSDDjuJU1ntO+W9tHx8OHV/96Q8e0dVw==} 798 | dev: true 799 | 800 | /emoji-regex@9.2.2: 801 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 802 | dev: false 803 | 804 | /enhanced-resolve@5.15.0: 805 | resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} 806 | engines: {node: '>=10.13.0'} 807 | dependencies: 808 | graceful-fs: 4.2.11 809 | tapable: 2.2.1 810 | dev: false 811 | 812 | /es-abstract@1.21.2: 813 | resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} 814 | engines: {node: '>= 0.4'} 815 | dependencies: 816 | array-buffer-byte-length: 1.0.0 817 | available-typed-arrays: 1.0.5 818 | call-bind: 1.0.2 819 | es-set-tostringtag: 2.0.1 820 | es-to-primitive: 1.2.1 821 | function.prototype.name: 1.1.5 822 | get-intrinsic: 1.2.1 823 | get-symbol-description: 1.0.0 824 | globalthis: 1.0.3 825 | gopd: 1.0.1 826 | has: 1.0.3 827 | has-property-descriptors: 1.0.0 828 | has-proto: 1.0.1 829 | has-symbols: 1.0.3 830 | internal-slot: 1.0.5 831 | is-array-buffer: 3.0.2 832 | is-callable: 1.2.7 833 | is-negative-zero: 2.0.2 834 | is-regex: 1.1.4 835 | is-shared-array-buffer: 1.0.2 836 | is-string: 1.0.7 837 | is-typed-array: 1.1.10 838 | is-weakref: 1.0.2 839 | object-inspect: 1.12.3 840 | object-keys: 1.1.1 841 | object.assign: 4.1.4 842 | regexp.prototype.flags: 1.5.0 843 | safe-regex-test: 1.0.0 844 | string.prototype.trim: 1.2.7 845 | string.prototype.trimend: 1.0.6 846 | string.prototype.trimstart: 1.0.6 847 | typed-array-length: 1.0.4 848 | unbox-primitive: 1.0.2 849 | which-typed-array: 1.1.9 850 | dev: false 851 | 852 | /es-set-tostringtag@2.0.1: 853 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} 854 | engines: {node: '>= 0.4'} 855 | dependencies: 856 | get-intrinsic: 1.2.1 857 | has: 1.0.3 858 | has-tostringtag: 1.0.0 859 | dev: false 860 | 861 | /es-shim-unscopables@1.0.0: 862 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 863 | dependencies: 864 | has: 1.0.3 865 | dev: false 866 | 867 | /es-to-primitive@1.2.1: 868 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 869 | engines: {node: '>= 0.4'} 870 | dependencies: 871 | is-callable: 1.2.7 872 | is-date-object: 1.0.5 873 | is-symbol: 1.0.4 874 | dev: false 875 | 876 | /escalade@3.1.1: 877 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 878 | engines: {node: '>=6'} 879 | dev: true 880 | 881 | /escape-string-regexp@4.0.0: 882 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 883 | engines: {node: '>=10'} 884 | dev: false 885 | 886 | /eslint-config-next@13.2.4(eslint@8.37.0)(typescript@5.0.3): 887 | resolution: {integrity: sha512-lunIBhsoeqw6/Lfkd6zPt25w1bn0znLA/JCL+au1HoEpSb4/PpsOYsYtgV/q+YPsoKIOzFyU5xnb04iZnXjUvg==} 888 | peerDependencies: 889 | eslint: ^7.23.0 || ^8.0.0 890 | typescript: '>=3.3.1' 891 | peerDependenciesMeta: 892 | typescript: 893 | optional: true 894 | dependencies: 895 | '@next/eslint-plugin-next': 13.2.4 896 | '@rushstack/eslint-patch': 1.3.2 897 | '@typescript-eslint/parser': 5.60.0(eslint@8.37.0)(typescript@5.0.3) 898 | eslint: 8.37.0 899 | eslint-import-resolver-node: 0.3.7 900 | eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.60.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.27.5)(eslint@8.37.0) 901 | eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.60.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.37.0) 902 | eslint-plugin-jsx-a11y: 6.7.1(eslint@8.37.0) 903 | eslint-plugin-react: 7.32.2(eslint@8.37.0) 904 | eslint-plugin-react-hooks: 4.6.0(eslint@8.37.0) 905 | typescript: 5.0.3 906 | transitivePeerDependencies: 907 | - eslint-import-resolver-webpack 908 | - supports-color 909 | dev: false 910 | 911 | /eslint-import-resolver-node@0.3.7: 912 | resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} 913 | dependencies: 914 | debug: 3.2.7 915 | is-core-module: 2.12.1 916 | resolve: 1.22.2 917 | transitivePeerDependencies: 918 | - supports-color 919 | dev: false 920 | 921 | /eslint-import-resolver-typescript@3.5.5(@typescript-eslint/parser@5.60.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.27.5)(eslint@8.37.0): 922 | resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==} 923 | engines: {node: ^14.18.0 || >=16.0.0} 924 | peerDependencies: 925 | eslint: '*' 926 | eslint-plugin-import: '*' 927 | dependencies: 928 | debug: 4.3.4 929 | enhanced-resolve: 5.15.0 930 | eslint: 8.37.0 931 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.60.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.37.0) 932 | eslint-plugin-import: 2.27.5(@typescript-eslint/parser@5.60.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.37.0) 933 | get-tsconfig: 4.6.0 934 | globby: 13.2.0 935 | is-core-module: 2.12.1 936 | is-glob: 4.0.3 937 | synckit: 0.8.5 938 | transitivePeerDependencies: 939 | - '@typescript-eslint/parser' 940 | - eslint-import-resolver-node 941 | - eslint-import-resolver-webpack 942 | - supports-color 943 | dev: false 944 | 945 | /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.60.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.37.0): 946 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 947 | engines: {node: '>=4'} 948 | peerDependencies: 949 | '@typescript-eslint/parser': '*' 950 | eslint: '*' 951 | eslint-import-resolver-node: '*' 952 | eslint-import-resolver-typescript: '*' 953 | eslint-import-resolver-webpack: '*' 954 | peerDependenciesMeta: 955 | '@typescript-eslint/parser': 956 | optional: true 957 | eslint: 958 | optional: true 959 | eslint-import-resolver-node: 960 | optional: true 961 | eslint-import-resolver-typescript: 962 | optional: true 963 | eslint-import-resolver-webpack: 964 | optional: true 965 | dependencies: 966 | '@typescript-eslint/parser': 5.60.0(eslint@8.37.0)(typescript@5.0.3) 967 | debug: 3.2.7 968 | eslint: 8.37.0 969 | eslint-import-resolver-node: 0.3.7 970 | eslint-import-resolver-typescript: 3.5.5(@typescript-eslint/parser@5.60.0)(eslint-import-resolver-node@0.3.7)(eslint-plugin-import@2.27.5)(eslint@8.37.0) 971 | transitivePeerDependencies: 972 | - supports-color 973 | dev: false 974 | 975 | /eslint-plugin-import@2.27.5(@typescript-eslint/parser@5.60.0)(eslint-import-resolver-typescript@3.5.5)(eslint@8.37.0): 976 | resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} 977 | engines: {node: '>=4'} 978 | peerDependencies: 979 | '@typescript-eslint/parser': '*' 980 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 981 | peerDependenciesMeta: 982 | '@typescript-eslint/parser': 983 | optional: true 984 | dependencies: 985 | '@typescript-eslint/parser': 5.60.0(eslint@8.37.0)(typescript@5.0.3) 986 | array-includes: 3.1.6 987 | array.prototype.flat: 1.3.1 988 | array.prototype.flatmap: 1.3.1 989 | debug: 3.2.7 990 | doctrine: 2.1.0 991 | eslint: 8.37.0 992 | eslint-import-resolver-node: 0.3.7 993 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.60.0)(eslint-import-resolver-node@0.3.7)(eslint-import-resolver-typescript@3.5.5)(eslint@8.37.0) 994 | has: 1.0.3 995 | is-core-module: 2.12.1 996 | is-glob: 4.0.3 997 | minimatch: 3.1.2 998 | object.values: 1.1.6 999 | resolve: 1.22.2 1000 | semver: 6.3.0 1001 | tsconfig-paths: 3.14.2 1002 | transitivePeerDependencies: 1003 | - eslint-import-resolver-typescript 1004 | - eslint-import-resolver-webpack 1005 | - supports-color 1006 | dev: false 1007 | 1008 | /eslint-plugin-jsx-a11y@6.7.1(eslint@8.37.0): 1009 | resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} 1010 | engines: {node: '>=4.0'} 1011 | peerDependencies: 1012 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1013 | dependencies: 1014 | '@babel/runtime': 7.22.5 1015 | aria-query: 5.3.0 1016 | array-includes: 3.1.6 1017 | array.prototype.flatmap: 1.3.1 1018 | ast-types-flow: 0.0.7 1019 | axe-core: 4.7.2 1020 | axobject-query: 3.2.1 1021 | damerau-levenshtein: 1.0.8 1022 | emoji-regex: 9.2.2 1023 | eslint: 8.37.0 1024 | has: 1.0.3 1025 | jsx-ast-utils: 3.3.3 1026 | language-tags: 1.0.5 1027 | minimatch: 3.1.2 1028 | object.entries: 1.1.6 1029 | object.fromentries: 2.0.6 1030 | semver: 6.3.0 1031 | dev: false 1032 | 1033 | /eslint-plugin-react-hooks@4.6.0(eslint@8.37.0): 1034 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 1035 | engines: {node: '>=10'} 1036 | peerDependencies: 1037 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1038 | dependencies: 1039 | eslint: 8.37.0 1040 | dev: false 1041 | 1042 | /eslint-plugin-react@7.32.2(eslint@8.37.0): 1043 | resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} 1044 | engines: {node: '>=4'} 1045 | peerDependencies: 1046 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1047 | dependencies: 1048 | array-includes: 3.1.6 1049 | array.prototype.flatmap: 1.3.1 1050 | array.prototype.tosorted: 1.1.1 1051 | doctrine: 2.1.0 1052 | eslint: 8.37.0 1053 | estraverse: 5.3.0 1054 | jsx-ast-utils: 3.3.3 1055 | minimatch: 3.1.2 1056 | object.entries: 1.1.6 1057 | object.fromentries: 2.0.6 1058 | object.hasown: 1.1.2 1059 | object.values: 1.1.6 1060 | prop-types: 15.8.1 1061 | resolve: 2.0.0-next.4 1062 | semver: 6.3.0 1063 | string.prototype.matchall: 4.0.8 1064 | dev: false 1065 | 1066 | /eslint-scope@7.2.0: 1067 | resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} 1068 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1069 | dependencies: 1070 | esrecurse: 4.3.0 1071 | estraverse: 5.3.0 1072 | dev: false 1073 | 1074 | /eslint-visitor-keys@3.4.1: 1075 | resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==} 1076 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1077 | dev: false 1078 | 1079 | /eslint@8.37.0: 1080 | resolution: {integrity: sha512-NU3Ps9nI05GUoVMxcZx1J8CNR6xOvUT4jAUMH5+z8lpp3aEdPVCImKw6PWG4PY+Vfkpr+jvMpxs/qoE7wq0sPw==} 1081 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1082 | hasBin: true 1083 | dependencies: 1084 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.37.0) 1085 | '@eslint-community/regexpp': 4.5.1 1086 | '@eslint/eslintrc': 2.0.3 1087 | '@eslint/js': 8.37.0 1088 | '@humanwhocodes/config-array': 0.11.10 1089 | '@humanwhocodes/module-importer': 1.0.1 1090 | '@nodelib/fs.walk': 1.2.8 1091 | ajv: 6.12.6 1092 | chalk: 4.1.2 1093 | cross-spawn: 7.0.3 1094 | debug: 4.3.4 1095 | doctrine: 3.0.0 1096 | escape-string-regexp: 4.0.0 1097 | eslint-scope: 7.2.0 1098 | eslint-visitor-keys: 3.4.1 1099 | espree: 9.5.2 1100 | esquery: 1.5.0 1101 | esutils: 2.0.3 1102 | fast-deep-equal: 3.1.3 1103 | file-entry-cache: 6.0.1 1104 | find-up: 5.0.0 1105 | glob-parent: 6.0.2 1106 | globals: 13.20.0 1107 | grapheme-splitter: 1.0.4 1108 | ignore: 5.2.4 1109 | import-fresh: 3.3.0 1110 | imurmurhash: 0.1.4 1111 | is-glob: 4.0.3 1112 | is-path-inside: 3.0.3 1113 | js-sdsl: 4.4.1 1114 | js-yaml: 4.1.0 1115 | json-stable-stringify-without-jsonify: 1.0.1 1116 | levn: 0.4.1 1117 | lodash.merge: 4.6.2 1118 | minimatch: 3.1.2 1119 | natural-compare: 1.4.0 1120 | optionator: 0.9.1 1121 | strip-ansi: 6.0.1 1122 | strip-json-comments: 3.1.1 1123 | text-table: 0.2.0 1124 | transitivePeerDependencies: 1125 | - supports-color 1126 | dev: false 1127 | 1128 | /espree@9.5.2: 1129 | resolution: {integrity: sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==} 1130 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1131 | dependencies: 1132 | acorn: 8.9.0 1133 | acorn-jsx: 5.3.2(acorn@8.9.0) 1134 | eslint-visitor-keys: 3.4.1 1135 | dev: false 1136 | 1137 | /esquery@1.5.0: 1138 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1139 | engines: {node: '>=0.10'} 1140 | dependencies: 1141 | estraverse: 5.3.0 1142 | dev: false 1143 | 1144 | /esrecurse@4.3.0: 1145 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1146 | engines: {node: '>=4.0'} 1147 | dependencies: 1148 | estraverse: 5.3.0 1149 | dev: false 1150 | 1151 | /estraverse@5.3.0: 1152 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1153 | engines: {node: '>=4.0'} 1154 | dev: false 1155 | 1156 | /esutils@2.0.3: 1157 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1158 | engines: {node: '>=0.10.0'} 1159 | dev: false 1160 | 1161 | /execa@5.1.1: 1162 | resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 1163 | engines: {node: '>=10'} 1164 | dependencies: 1165 | cross-spawn: 7.0.3 1166 | get-stream: 6.0.1 1167 | human-signals: 2.1.0 1168 | is-stream: 2.0.1 1169 | merge-stream: 2.0.0 1170 | npm-run-path: 4.0.1 1171 | onetime: 5.1.2 1172 | signal-exit: 3.0.7 1173 | strip-final-newline: 2.0.0 1174 | dev: false 1175 | 1176 | /execa@7.1.1: 1177 | resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==} 1178 | engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} 1179 | dependencies: 1180 | cross-spawn: 7.0.3 1181 | get-stream: 6.0.1 1182 | human-signals: 4.3.1 1183 | is-stream: 3.0.0 1184 | merge-stream: 2.0.0 1185 | npm-run-path: 5.1.0 1186 | onetime: 6.0.0 1187 | signal-exit: 3.0.7 1188 | strip-final-newline: 3.0.0 1189 | dev: false 1190 | 1191 | /fast-deep-equal@3.1.3: 1192 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1193 | dev: false 1194 | 1195 | /fast-glob@3.2.12: 1196 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} 1197 | engines: {node: '>=8.6.0'} 1198 | dependencies: 1199 | '@nodelib/fs.stat': 2.0.5 1200 | '@nodelib/fs.walk': 1.2.8 1201 | glob-parent: 5.1.2 1202 | merge2: 1.4.1 1203 | micromatch: 4.0.5 1204 | 1205 | /fast-json-stable-stringify@2.1.0: 1206 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1207 | dev: false 1208 | 1209 | /fast-levenshtein@2.0.6: 1210 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1211 | dev: false 1212 | 1213 | /fastq@1.15.0: 1214 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 1215 | dependencies: 1216 | reusify: 1.0.4 1217 | 1218 | /file-entry-cache@6.0.1: 1219 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1220 | engines: {node: ^10.12.0 || >=12.0.0} 1221 | dependencies: 1222 | flat-cache: 3.0.4 1223 | dev: false 1224 | 1225 | /fill-range@7.0.1: 1226 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1227 | engines: {node: '>=8'} 1228 | dependencies: 1229 | to-regex-range: 5.0.1 1230 | 1231 | /find-up@5.0.0: 1232 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1233 | engines: {node: '>=10'} 1234 | dependencies: 1235 | locate-path: 6.0.0 1236 | path-exists: 4.0.0 1237 | dev: false 1238 | 1239 | /flat-cache@3.0.4: 1240 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1241 | engines: {node: ^10.12.0 || >=12.0.0} 1242 | dependencies: 1243 | flatted: 3.2.7 1244 | rimraf: 3.0.2 1245 | dev: false 1246 | 1247 | /flatted@3.2.7: 1248 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 1249 | dev: false 1250 | 1251 | /for-each@0.3.3: 1252 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1253 | dependencies: 1254 | is-callable: 1.2.7 1255 | dev: false 1256 | 1257 | /fraction.js@4.2.0: 1258 | resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} 1259 | dev: true 1260 | 1261 | /fs.realpath@1.0.0: 1262 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1263 | 1264 | /fsevents@2.3.2: 1265 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 1266 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1267 | os: [darwin] 1268 | requiresBuild: true 1269 | dev: true 1270 | optional: true 1271 | 1272 | /function-bind@1.1.1: 1273 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1274 | 1275 | /function.prototype.name@1.1.5: 1276 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 1277 | engines: {node: '>= 0.4'} 1278 | dependencies: 1279 | call-bind: 1.0.2 1280 | define-properties: 1.2.0 1281 | es-abstract: 1.21.2 1282 | functions-have-names: 1.2.3 1283 | dev: false 1284 | 1285 | /functions-have-names@1.2.3: 1286 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1287 | dev: false 1288 | 1289 | /get-intrinsic@1.2.1: 1290 | resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} 1291 | dependencies: 1292 | function-bind: 1.1.1 1293 | has: 1.0.3 1294 | has-proto: 1.0.1 1295 | has-symbols: 1.0.3 1296 | dev: false 1297 | 1298 | /get-stream@6.0.1: 1299 | resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1300 | engines: {node: '>=10'} 1301 | dev: false 1302 | 1303 | /get-symbol-description@1.0.0: 1304 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1305 | engines: {node: '>= 0.4'} 1306 | dependencies: 1307 | call-bind: 1.0.2 1308 | get-intrinsic: 1.2.1 1309 | dev: false 1310 | 1311 | /get-tsconfig@4.6.0: 1312 | resolution: {integrity: sha512-lgbo68hHTQnFddybKbbs/RDRJnJT5YyGy2kQzVwbq+g67X73i+5MVTval34QxGkOe9X5Ujf1UYpCaphLyltjEg==} 1313 | dependencies: 1314 | resolve-pkg-maps: 1.0.0 1315 | dev: false 1316 | 1317 | /glob-parent@5.1.2: 1318 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1319 | engines: {node: '>= 6'} 1320 | dependencies: 1321 | is-glob: 4.0.3 1322 | 1323 | /glob-parent@6.0.2: 1324 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1325 | engines: {node: '>=10.13.0'} 1326 | dependencies: 1327 | is-glob: 4.0.3 1328 | 1329 | /glob@7.1.6: 1330 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 1331 | dependencies: 1332 | fs.realpath: 1.0.0 1333 | inflight: 1.0.6 1334 | inherits: 2.0.4 1335 | minimatch: 3.1.2 1336 | once: 1.4.0 1337 | path-is-absolute: 1.0.1 1338 | dev: true 1339 | 1340 | /glob@7.1.7: 1341 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 1342 | dependencies: 1343 | fs.realpath: 1.0.0 1344 | inflight: 1.0.6 1345 | inherits: 2.0.4 1346 | minimatch: 3.1.2 1347 | once: 1.4.0 1348 | path-is-absolute: 1.0.1 1349 | dev: false 1350 | 1351 | /glob@7.2.3: 1352 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1353 | dependencies: 1354 | fs.realpath: 1.0.0 1355 | inflight: 1.0.6 1356 | inherits: 2.0.4 1357 | minimatch: 3.1.2 1358 | once: 1.4.0 1359 | path-is-absolute: 1.0.1 1360 | dev: false 1361 | 1362 | /globals@13.20.0: 1363 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} 1364 | engines: {node: '>=8'} 1365 | dependencies: 1366 | type-fest: 0.20.2 1367 | dev: false 1368 | 1369 | /globalthis@1.0.3: 1370 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1371 | engines: {node: '>= 0.4'} 1372 | dependencies: 1373 | define-properties: 1.2.0 1374 | dev: false 1375 | 1376 | /globby@11.1.0: 1377 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1378 | engines: {node: '>=10'} 1379 | dependencies: 1380 | array-union: 2.1.0 1381 | dir-glob: 3.0.1 1382 | fast-glob: 3.2.12 1383 | ignore: 5.2.4 1384 | merge2: 1.4.1 1385 | slash: 3.0.0 1386 | dev: false 1387 | 1388 | /globby@13.2.0: 1389 | resolution: {integrity: sha512-jWsQfayf13NvqKUIL3Ta+CIqMnvlaIDFveWE/dpOZ9+3AMEJozsxDvKA02zync9UuvOM8rOXzsD5GqKP4OnWPQ==} 1390 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1391 | dependencies: 1392 | dir-glob: 3.0.1 1393 | fast-glob: 3.2.12 1394 | ignore: 5.2.4 1395 | merge2: 1.4.1 1396 | slash: 4.0.0 1397 | dev: false 1398 | 1399 | /goober@2.1.13(csstype@3.1.2): 1400 | resolution: {integrity: sha512-jFj3BQeleOoy7t93E9rZ2de+ScC4lQICLwiAQmKMg9F6roKGaLSHoCDYKkWlSafg138jejvq/mTdvmnwDQgqoQ==} 1401 | peerDependencies: 1402 | csstype: ^3.0.10 1403 | dependencies: 1404 | csstype: 3.1.2 1405 | dev: false 1406 | 1407 | /gopd@1.0.1: 1408 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1409 | dependencies: 1410 | get-intrinsic: 1.2.1 1411 | dev: false 1412 | 1413 | /graceful-fs@4.2.11: 1414 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1415 | dev: false 1416 | 1417 | /grapheme-splitter@1.0.4: 1418 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 1419 | dev: false 1420 | 1421 | /has-bigints@1.0.2: 1422 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1423 | dev: false 1424 | 1425 | /has-flag@4.0.0: 1426 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1427 | engines: {node: '>=8'} 1428 | dev: false 1429 | 1430 | /has-property-descriptors@1.0.0: 1431 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 1432 | dependencies: 1433 | get-intrinsic: 1.2.1 1434 | dev: false 1435 | 1436 | /has-proto@1.0.1: 1437 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 1438 | engines: {node: '>= 0.4'} 1439 | dev: false 1440 | 1441 | /has-symbols@1.0.3: 1442 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1443 | engines: {node: '>= 0.4'} 1444 | dev: false 1445 | 1446 | /has-tostringtag@1.0.0: 1447 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 1448 | engines: {node: '>= 0.4'} 1449 | dependencies: 1450 | has-symbols: 1.0.3 1451 | dev: false 1452 | 1453 | /has@1.0.3: 1454 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1455 | engines: {node: '>= 0.4.0'} 1456 | dependencies: 1457 | function-bind: 1.1.1 1458 | 1459 | /human-signals@2.1.0: 1460 | resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 1461 | engines: {node: '>=10.17.0'} 1462 | dev: false 1463 | 1464 | /human-signals@4.3.1: 1465 | resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} 1466 | engines: {node: '>=14.18.0'} 1467 | dev: false 1468 | 1469 | /ignore@5.2.4: 1470 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 1471 | engines: {node: '>= 4'} 1472 | dev: false 1473 | 1474 | /import-fresh@3.3.0: 1475 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1476 | engines: {node: '>=6'} 1477 | dependencies: 1478 | parent-module: 1.0.1 1479 | resolve-from: 4.0.0 1480 | dev: false 1481 | 1482 | /imurmurhash@0.1.4: 1483 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1484 | engines: {node: '>=0.8.19'} 1485 | dev: false 1486 | 1487 | /inflight@1.0.6: 1488 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1489 | dependencies: 1490 | once: 1.4.0 1491 | wrappy: 1.0.2 1492 | 1493 | /inherits@2.0.4: 1494 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1495 | 1496 | /internal-slot@1.0.5: 1497 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} 1498 | engines: {node: '>= 0.4'} 1499 | dependencies: 1500 | get-intrinsic: 1.2.1 1501 | has: 1.0.3 1502 | side-channel: 1.0.4 1503 | dev: false 1504 | 1505 | /is-array-buffer@3.0.2: 1506 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 1507 | dependencies: 1508 | call-bind: 1.0.2 1509 | get-intrinsic: 1.2.1 1510 | is-typed-array: 1.1.10 1511 | dev: false 1512 | 1513 | /is-bigint@1.0.4: 1514 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1515 | dependencies: 1516 | has-bigints: 1.0.2 1517 | dev: false 1518 | 1519 | /is-binary-path@2.1.0: 1520 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1521 | engines: {node: '>=8'} 1522 | dependencies: 1523 | binary-extensions: 2.2.0 1524 | dev: true 1525 | 1526 | /is-boolean-object@1.1.2: 1527 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1528 | engines: {node: '>= 0.4'} 1529 | dependencies: 1530 | call-bind: 1.0.2 1531 | has-tostringtag: 1.0.0 1532 | dev: false 1533 | 1534 | /is-callable@1.2.7: 1535 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1536 | engines: {node: '>= 0.4'} 1537 | dev: false 1538 | 1539 | /is-core-module@2.12.1: 1540 | resolution: {integrity: sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==} 1541 | dependencies: 1542 | has: 1.0.3 1543 | 1544 | /is-date-object@1.0.5: 1545 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1546 | engines: {node: '>= 0.4'} 1547 | dependencies: 1548 | has-tostringtag: 1.0.0 1549 | dev: false 1550 | 1551 | /is-docker@2.2.1: 1552 | resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 1553 | engines: {node: '>=8'} 1554 | hasBin: true 1555 | dev: false 1556 | 1557 | /is-docker@3.0.0: 1558 | resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 1559 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1560 | hasBin: true 1561 | dev: false 1562 | 1563 | /is-extglob@2.1.1: 1564 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1565 | engines: {node: '>=0.10.0'} 1566 | 1567 | /is-glob@4.0.3: 1568 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1569 | engines: {node: '>=0.10.0'} 1570 | dependencies: 1571 | is-extglob: 2.1.1 1572 | 1573 | /is-inside-container@1.0.0: 1574 | resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 1575 | engines: {node: '>=14.16'} 1576 | hasBin: true 1577 | dependencies: 1578 | is-docker: 3.0.0 1579 | dev: false 1580 | 1581 | /is-negative-zero@2.0.2: 1582 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 1583 | engines: {node: '>= 0.4'} 1584 | dev: false 1585 | 1586 | /is-number-object@1.0.7: 1587 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1588 | engines: {node: '>= 0.4'} 1589 | dependencies: 1590 | has-tostringtag: 1.0.0 1591 | dev: false 1592 | 1593 | /is-number@7.0.0: 1594 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1595 | engines: {node: '>=0.12.0'} 1596 | 1597 | /is-path-inside@3.0.3: 1598 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1599 | engines: {node: '>=8'} 1600 | dev: false 1601 | 1602 | /is-regex@1.1.4: 1603 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1604 | engines: {node: '>= 0.4'} 1605 | dependencies: 1606 | call-bind: 1.0.2 1607 | has-tostringtag: 1.0.0 1608 | dev: false 1609 | 1610 | /is-shared-array-buffer@1.0.2: 1611 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 1612 | dependencies: 1613 | call-bind: 1.0.2 1614 | dev: false 1615 | 1616 | /is-stream@2.0.1: 1617 | resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 1618 | engines: {node: '>=8'} 1619 | dev: false 1620 | 1621 | /is-stream@3.0.0: 1622 | resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 1623 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1624 | dev: false 1625 | 1626 | /is-string@1.0.7: 1627 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1628 | engines: {node: '>= 0.4'} 1629 | dependencies: 1630 | has-tostringtag: 1.0.0 1631 | dev: false 1632 | 1633 | /is-symbol@1.0.4: 1634 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1635 | engines: {node: '>= 0.4'} 1636 | dependencies: 1637 | has-symbols: 1.0.3 1638 | dev: false 1639 | 1640 | /is-typed-array@1.1.10: 1641 | resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} 1642 | engines: {node: '>= 0.4'} 1643 | dependencies: 1644 | available-typed-arrays: 1.0.5 1645 | call-bind: 1.0.2 1646 | for-each: 0.3.3 1647 | gopd: 1.0.1 1648 | has-tostringtag: 1.0.0 1649 | dev: false 1650 | 1651 | /is-weakref@1.0.2: 1652 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1653 | dependencies: 1654 | call-bind: 1.0.2 1655 | dev: false 1656 | 1657 | /is-wsl@2.2.0: 1658 | resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 1659 | engines: {node: '>=8'} 1660 | dependencies: 1661 | is-docker: 2.2.1 1662 | dev: false 1663 | 1664 | /isexe@2.0.0: 1665 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1666 | dev: false 1667 | 1668 | /jiti@1.18.2: 1669 | resolution: {integrity: sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==} 1670 | hasBin: true 1671 | dev: true 1672 | 1673 | /js-sdsl@4.4.1: 1674 | resolution: {integrity: sha512-6Gsx8R0RucyePbWqPssR8DyfuXmLBooYN5cZFZKjHGnQuaf7pEzhtpceagJxVu4LqhYY5EYA7nko3FmeHZ1KbA==} 1675 | dev: false 1676 | 1677 | /js-tokens@4.0.0: 1678 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1679 | dev: false 1680 | 1681 | /js-yaml@4.1.0: 1682 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1683 | hasBin: true 1684 | dependencies: 1685 | argparse: 2.0.1 1686 | dev: false 1687 | 1688 | /json-schema-traverse@0.4.1: 1689 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1690 | dev: false 1691 | 1692 | /json-stable-stringify-without-jsonify@1.0.1: 1693 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1694 | dev: false 1695 | 1696 | /json5@1.0.2: 1697 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1698 | hasBin: true 1699 | dependencies: 1700 | minimist: 1.2.8 1701 | dev: false 1702 | 1703 | /jsx-ast-utils@3.3.3: 1704 | resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} 1705 | engines: {node: '>=4.0'} 1706 | dependencies: 1707 | array-includes: 3.1.6 1708 | object.assign: 4.1.4 1709 | dev: false 1710 | 1711 | /language-subtag-registry@0.3.22: 1712 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 1713 | dev: false 1714 | 1715 | /language-tags@1.0.5: 1716 | resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} 1717 | dependencies: 1718 | language-subtag-registry: 0.3.22 1719 | dev: false 1720 | 1721 | /levn@0.4.1: 1722 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1723 | engines: {node: '>= 0.8.0'} 1724 | dependencies: 1725 | prelude-ls: 1.2.1 1726 | type-check: 0.4.0 1727 | dev: false 1728 | 1729 | /lilconfig@2.1.0: 1730 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 1731 | engines: {node: '>=10'} 1732 | dev: true 1733 | 1734 | /lines-and-columns@1.2.4: 1735 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1736 | dev: true 1737 | 1738 | /locate-path@6.0.0: 1739 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1740 | engines: {node: '>=10'} 1741 | dependencies: 1742 | p-locate: 5.0.0 1743 | dev: false 1744 | 1745 | /lodash.merge@4.6.2: 1746 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1747 | dev: false 1748 | 1749 | /loose-envify@1.4.0: 1750 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1751 | hasBin: true 1752 | dependencies: 1753 | js-tokens: 4.0.0 1754 | dev: false 1755 | 1756 | /lru-cache@6.0.0: 1757 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1758 | engines: {node: '>=10'} 1759 | dependencies: 1760 | yallist: 4.0.0 1761 | dev: false 1762 | 1763 | /merge-stream@2.0.0: 1764 | resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 1765 | dev: false 1766 | 1767 | /merge2@1.4.1: 1768 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1769 | engines: {node: '>= 8'} 1770 | 1771 | /micromatch@4.0.5: 1772 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1773 | engines: {node: '>=8.6'} 1774 | dependencies: 1775 | braces: 3.0.2 1776 | picomatch: 2.3.1 1777 | 1778 | /mimic-fn@2.1.0: 1779 | resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 1780 | engines: {node: '>=6'} 1781 | dev: false 1782 | 1783 | /mimic-fn@4.0.0: 1784 | resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 1785 | engines: {node: '>=12'} 1786 | dev: false 1787 | 1788 | /minimatch@3.1.2: 1789 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1790 | dependencies: 1791 | brace-expansion: 1.1.11 1792 | 1793 | /minimist@1.2.8: 1794 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1795 | dev: false 1796 | 1797 | /ms@2.1.2: 1798 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1799 | dev: false 1800 | 1801 | /ms@2.1.3: 1802 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1803 | dev: false 1804 | 1805 | /mz@2.7.0: 1806 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1807 | dependencies: 1808 | any-promise: 1.3.0 1809 | object-assign: 4.1.1 1810 | thenify-all: 1.6.0 1811 | dev: true 1812 | 1813 | /nanoid@3.3.6: 1814 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} 1815 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1816 | hasBin: true 1817 | 1818 | /natural-compare@1.4.0: 1819 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1820 | dev: false 1821 | 1822 | /next@13.2.4(react-dom@18.2.0)(react@18.2.0): 1823 | resolution: {integrity: sha512-g1I30317cThkEpvzfXujf0O4wtaQHtDCLhlivwlTJ885Ld+eOgcz7r3TGQzeU+cSRoNHtD8tsJgzxVdYojFssw==} 1824 | engines: {node: '>=14.6.0'} 1825 | hasBin: true 1826 | peerDependencies: 1827 | '@opentelemetry/api': ^1.4.0 1828 | fibers: '>= 3.1.0' 1829 | node-sass: ^6.0.0 || ^7.0.0 1830 | react: ^18.2.0 1831 | react-dom: ^18.2.0 1832 | sass: ^1.3.0 1833 | peerDependenciesMeta: 1834 | '@opentelemetry/api': 1835 | optional: true 1836 | fibers: 1837 | optional: true 1838 | node-sass: 1839 | optional: true 1840 | sass: 1841 | optional: true 1842 | dependencies: 1843 | '@next/env': 13.2.4 1844 | '@swc/helpers': 0.4.14 1845 | caniuse-lite: 1.0.30001507 1846 | postcss: 8.4.14 1847 | react: 18.2.0 1848 | react-dom: 18.2.0(react@18.2.0) 1849 | styled-jsx: 5.1.1(react@18.2.0) 1850 | optionalDependencies: 1851 | '@next/swc-android-arm-eabi': 13.2.4 1852 | '@next/swc-android-arm64': 13.2.4 1853 | '@next/swc-darwin-arm64': 13.2.4 1854 | '@next/swc-darwin-x64': 13.2.4 1855 | '@next/swc-freebsd-x64': 13.2.4 1856 | '@next/swc-linux-arm-gnueabihf': 13.2.4 1857 | '@next/swc-linux-arm64-gnu': 13.2.4 1858 | '@next/swc-linux-arm64-musl': 13.2.4 1859 | '@next/swc-linux-x64-gnu': 13.2.4 1860 | '@next/swc-linux-x64-musl': 13.2.4 1861 | '@next/swc-win32-arm64-msvc': 13.2.4 1862 | '@next/swc-win32-ia32-msvc': 13.2.4 1863 | '@next/swc-win32-x64-msvc': 13.2.4 1864 | transitivePeerDependencies: 1865 | - '@babel/core' 1866 | - babel-plugin-macros 1867 | dev: false 1868 | 1869 | /node-releases@2.0.12: 1870 | resolution: {integrity: sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ==} 1871 | dev: true 1872 | 1873 | /normalize-path@3.0.0: 1874 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1875 | engines: {node: '>=0.10.0'} 1876 | dev: true 1877 | 1878 | /normalize-range@0.1.2: 1879 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 1880 | engines: {node: '>=0.10.0'} 1881 | dev: true 1882 | 1883 | /npm-run-path@4.0.1: 1884 | resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 1885 | engines: {node: '>=8'} 1886 | dependencies: 1887 | path-key: 3.1.1 1888 | dev: false 1889 | 1890 | /npm-run-path@5.1.0: 1891 | resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} 1892 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1893 | dependencies: 1894 | path-key: 4.0.0 1895 | dev: false 1896 | 1897 | /object-assign@4.1.1: 1898 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1899 | engines: {node: '>=0.10.0'} 1900 | 1901 | /object-hash@3.0.0: 1902 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1903 | engines: {node: '>= 6'} 1904 | dev: true 1905 | 1906 | /object-inspect@1.12.3: 1907 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} 1908 | dev: false 1909 | 1910 | /object-keys@1.1.1: 1911 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1912 | engines: {node: '>= 0.4'} 1913 | dev: false 1914 | 1915 | /object.assign@4.1.4: 1916 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 1917 | engines: {node: '>= 0.4'} 1918 | dependencies: 1919 | call-bind: 1.0.2 1920 | define-properties: 1.2.0 1921 | has-symbols: 1.0.3 1922 | object-keys: 1.1.1 1923 | dev: false 1924 | 1925 | /object.entries@1.1.6: 1926 | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} 1927 | engines: {node: '>= 0.4'} 1928 | dependencies: 1929 | call-bind: 1.0.2 1930 | define-properties: 1.2.0 1931 | es-abstract: 1.21.2 1932 | dev: false 1933 | 1934 | /object.fromentries@2.0.6: 1935 | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} 1936 | engines: {node: '>= 0.4'} 1937 | dependencies: 1938 | call-bind: 1.0.2 1939 | define-properties: 1.2.0 1940 | es-abstract: 1.21.2 1941 | dev: false 1942 | 1943 | /object.hasown@1.1.2: 1944 | resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} 1945 | dependencies: 1946 | define-properties: 1.2.0 1947 | es-abstract: 1.21.2 1948 | dev: false 1949 | 1950 | /object.values@1.1.6: 1951 | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} 1952 | engines: {node: '>= 0.4'} 1953 | dependencies: 1954 | call-bind: 1.0.2 1955 | define-properties: 1.2.0 1956 | es-abstract: 1.21.2 1957 | dev: false 1958 | 1959 | /once@1.4.0: 1960 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1961 | dependencies: 1962 | wrappy: 1.0.2 1963 | 1964 | /onetime@5.1.2: 1965 | resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 1966 | engines: {node: '>=6'} 1967 | dependencies: 1968 | mimic-fn: 2.1.0 1969 | dev: false 1970 | 1971 | /onetime@6.0.0: 1972 | resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 1973 | engines: {node: '>=12'} 1974 | dependencies: 1975 | mimic-fn: 4.0.0 1976 | dev: false 1977 | 1978 | /open@9.1.0: 1979 | resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} 1980 | engines: {node: '>=14.16'} 1981 | dependencies: 1982 | default-browser: 4.0.0 1983 | define-lazy-prop: 3.0.0 1984 | is-inside-container: 1.0.0 1985 | is-wsl: 2.2.0 1986 | dev: false 1987 | 1988 | /optionator@0.9.1: 1989 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 1990 | engines: {node: '>= 0.8.0'} 1991 | dependencies: 1992 | deep-is: 0.1.4 1993 | fast-levenshtein: 2.0.6 1994 | levn: 0.4.1 1995 | prelude-ls: 1.2.1 1996 | type-check: 0.4.0 1997 | word-wrap: 1.2.3 1998 | dev: false 1999 | 2000 | /p-limit@3.1.0: 2001 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2002 | engines: {node: '>=10'} 2003 | dependencies: 2004 | yocto-queue: 0.1.0 2005 | dev: false 2006 | 2007 | /p-locate@5.0.0: 2008 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2009 | engines: {node: '>=10'} 2010 | dependencies: 2011 | p-limit: 3.1.0 2012 | dev: false 2013 | 2014 | /parent-module@1.0.1: 2015 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2016 | engines: {node: '>=6'} 2017 | dependencies: 2018 | callsites: 3.1.0 2019 | dev: false 2020 | 2021 | /path-exists@4.0.0: 2022 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2023 | engines: {node: '>=8'} 2024 | dev: false 2025 | 2026 | /path-is-absolute@1.0.1: 2027 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2028 | engines: {node: '>=0.10.0'} 2029 | 2030 | /path-key@3.1.1: 2031 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2032 | engines: {node: '>=8'} 2033 | dev: false 2034 | 2035 | /path-key@4.0.0: 2036 | resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 2037 | engines: {node: '>=12'} 2038 | dev: false 2039 | 2040 | /path-parse@1.0.7: 2041 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2042 | 2043 | /path-type@4.0.0: 2044 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2045 | engines: {node: '>=8'} 2046 | dev: false 2047 | 2048 | /picocolors@1.0.0: 2049 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2050 | 2051 | /picomatch@2.3.1: 2052 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2053 | engines: {node: '>=8.6'} 2054 | 2055 | /pify@2.3.0: 2056 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 2057 | engines: {node: '>=0.10.0'} 2058 | dev: true 2059 | 2060 | /pirates@4.0.6: 2061 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 2062 | engines: {node: '>= 6'} 2063 | dev: true 2064 | 2065 | /postcss-import@14.1.0(postcss@8.4.21): 2066 | resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==} 2067 | engines: {node: '>=10.0.0'} 2068 | peerDependencies: 2069 | postcss: ^8.0.0 2070 | dependencies: 2071 | postcss: 8.4.21 2072 | postcss-value-parser: 4.2.0 2073 | read-cache: 1.0.0 2074 | resolve: 1.22.2 2075 | dev: true 2076 | 2077 | /postcss-js@4.0.1(postcss@8.4.21): 2078 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 2079 | engines: {node: ^12 || ^14 || >= 16} 2080 | peerDependencies: 2081 | postcss: ^8.4.21 2082 | dependencies: 2083 | camelcase-css: 2.0.1 2084 | postcss: 8.4.21 2085 | dev: true 2086 | 2087 | /postcss-load-config@3.1.4(postcss@8.4.21): 2088 | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==} 2089 | engines: {node: '>= 10'} 2090 | peerDependencies: 2091 | postcss: '>=8.0.9' 2092 | ts-node: '>=9.0.0' 2093 | peerDependenciesMeta: 2094 | postcss: 2095 | optional: true 2096 | ts-node: 2097 | optional: true 2098 | dependencies: 2099 | lilconfig: 2.1.0 2100 | postcss: 8.4.21 2101 | yaml: 1.10.2 2102 | dev: true 2103 | 2104 | /postcss-nested@6.0.0(postcss@8.4.21): 2105 | resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==} 2106 | engines: {node: '>=12.0'} 2107 | peerDependencies: 2108 | postcss: ^8.2.14 2109 | dependencies: 2110 | postcss: 8.4.21 2111 | postcss-selector-parser: 6.0.13 2112 | dev: true 2113 | 2114 | /postcss-selector-parser@6.0.13: 2115 | resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} 2116 | engines: {node: '>=4'} 2117 | dependencies: 2118 | cssesc: 3.0.0 2119 | util-deprecate: 1.0.2 2120 | dev: true 2121 | 2122 | /postcss-value-parser@4.2.0: 2123 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 2124 | dev: true 2125 | 2126 | /postcss@8.4.14: 2127 | resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} 2128 | engines: {node: ^10 || ^12 || >=14} 2129 | dependencies: 2130 | nanoid: 3.3.6 2131 | picocolors: 1.0.0 2132 | source-map-js: 1.0.2 2133 | dev: false 2134 | 2135 | /postcss@8.4.21: 2136 | resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==} 2137 | engines: {node: ^10 || ^12 || >=14} 2138 | dependencies: 2139 | nanoid: 3.3.6 2140 | picocolors: 1.0.0 2141 | source-map-js: 1.0.2 2142 | dev: true 2143 | 2144 | /prelude-ls@1.2.1: 2145 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2146 | engines: {node: '>= 0.8.0'} 2147 | dev: false 2148 | 2149 | /prop-types@15.8.1: 2150 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 2151 | dependencies: 2152 | loose-envify: 1.4.0 2153 | object-assign: 4.1.1 2154 | react-is: 16.13.1 2155 | dev: false 2156 | 2157 | /punycode@2.3.0: 2158 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 2159 | engines: {node: '>=6'} 2160 | dev: false 2161 | 2162 | /queue-microtask@1.2.3: 2163 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2164 | 2165 | /quick-lru@5.1.1: 2166 | resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==} 2167 | engines: {node: '>=10'} 2168 | dev: true 2169 | 2170 | /react-dom@18.2.0(react@18.2.0): 2171 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 2172 | peerDependencies: 2173 | react: ^18.2.0 2174 | dependencies: 2175 | loose-envify: 1.4.0 2176 | react: 18.2.0 2177 | scheduler: 0.23.0 2178 | dev: false 2179 | 2180 | /react-hot-toast@2.4.0(csstype@3.1.2)(react-dom@18.2.0)(react@18.2.0): 2181 | resolution: {integrity: sha512-qnnVbXropKuwUpriVVosgo8QrB+IaPJCpL8oBI6Ov84uvHZ5QQcTp2qg6ku2wNfgJl6rlQXJIQU5q+5lmPOutA==} 2182 | engines: {node: '>=10'} 2183 | peerDependencies: 2184 | react: '>=16' 2185 | react-dom: '>=16' 2186 | dependencies: 2187 | goober: 2.1.13(csstype@3.1.2) 2188 | react: 18.2.0 2189 | react-dom: 18.2.0(react@18.2.0) 2190 | transitivePeerDependencies: 2191 | - csstype 2192 | dev: false 2193 | 2194 | /react-is@16.13.1: 2195 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 2196 | dev: false 2197 | 2198 | /react-toastify@9.1.2(react-dom@18.2.0)(react@18.2.0): 2199 | resolution: {integrity: sha512-PBfzXO5jMGEtdYR5jxrORlNZZe/EuOkwvwKijMatsZZm8IZwLj01YvobeJYNjFcA6uy6CVrx2fzL9GWbhWPTDA==} 2200 | peerDependencies: 2201 | react: '>=16' 2202 | react-dom: '>=16' 2203 | dependencies: 2204 | clsx: 1.2.1 2205 | react: 18.2.0 2206 | react-dom: 18.2.0(react@18.2.0) 2207 | dev: false 2208 | 2209 | /react@18.2.0: 2210 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 2211 | engines: {node: '>=0.10.0'} 2212 | dependencies: 2213 | loose-envify: 1.4.0 2214 | dev: false 2215 | 2216 | /read-cache@1.0.0: 2217 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 2218 | dependencies: 2219 | pify: 2.3.0 2220 | dev: true 2221 | 2222 | /readdirp@3.6.0: 2223 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2224 | engines: {node: '>=8.10.0'} 2225 | dependencies: 2226 | picomatch: 2.3.1 2227 | dev: true 2228 | 2229 | /regenerator-runtime@0.13.11: 2230 | resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 2231 | dev: false 2232 | 2233 | /regexp.prototype.flags@1.5.0: 2234 | resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} 2235 | engines: {node: '>= 0.4'} 2236 | dependencies: 2237 | call-bind: 1.0.2 2238 | define-properties: 1.2.0 2239 | functions-have-names: 1.2.3 2240 | dev: false 2241 | 2242 | /resolve-from@4.0.0: 2243 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2244 | engines: {node: '>=4'} 2245 | dev: false 2246 | 2247 | /resolve-pkg-maps@1.0.0: 2248 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 2249 | dev: false 2250 | 2251 | /resolve@1.22.2: 2252 | resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} 2253 | hasBin: true 2254 | dependencies: 2255 | is-core-module: 2.12.1 2256 | path-parse: 1.0.7 2257 | supports-preserve-symlinks-flag: 1.0.0 2258 | 2259 | /resolve@2.0.0-next.4: 2260 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} 2261 | hasBin: true 2262 | dependencies: 2263 | is-core-module: 2.12.1 2264 | path-parse: 1.0.7 2265 | supports-preserve-symlinks-flag: 1.0.0 2266 | dev: false 2267 | 2268 | /reusify@1.0.4: 2269 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2270 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2271 | 2272 | /rimraf@3.0.2: 2273 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2274 | hasBin: true 2275 | dependencies: 2276 | glob: 7.2.3 2277 | dev: false 2278 | 2279 | /run-applescript@5.0.0: 2280 | resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} 2281 | engines: {node: '>=12'} 2282 | dependencies: 2283 | execa: 5.1.1 2284 | dev: false 2285 | 2286 | /run-parallel@1.2.0: 2287 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2288 | dependencies: 2289 | queue-microtask: 1.2.3 2290 | 2291 | /safe-regex-test@1.0.0: 2292 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 2293 | dependencies: 2294 | call-bind: 1.0.2 2295 | get-intrinsic: 1.2.1 2296 | is-regex: 1.1.4 2297 | dev: false 2298 | 2299 | /scheduler@0.23.0: 2300 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 2301 | dependencies: 2302 | loose-envify: 1.4.0 2303 | dev: false 2304 | 2305 | /semver@6.3.0: 2306 | resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 2307 | hasBin: true 2308 | dev: false 2309 | 2310 | /semver@7.5.3: 2311 | resolution: {integrity: sha512-QBlUtyVk/5EeHbi7X0fw6liDZc7BBmEaSYn01fMU1OUYbf6GPsbTtd8WmnqbI20SeycoHSeiybkE/q1Q+qlThQ==} 2312 | engines: {node: '>=10'} 2313 | hasBin: true 2314 | dependencies: 2315 | lru-cache: 6.0.0 2316 | dev: false 2317 | 2318 | /shebang-command@2.0.0: 2319 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2320 | engines: {node: '>=8'} 2321 | dependencies: 2322 | shebang-regex: 3.0.0 2323 | dev: false 2324 | 2325 | /shebang-regex@3.0.0: 2326 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2327 | engines: {node: '>=8'} 2328 | dev: false 2329 | 2330 | /side-channel@1.0.4: 2331 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 2332 | dependencies: 2333 | call-bind: 1.0.2 2334 | get-intrinsic: 1.2.1 2335 | object-inspect: 1.12.3 2336 | dev: false 2337 | 2338 | /signal-exit@3.0.7: 2339 | resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 2340 | dev: false 2341 | 2342 | /slash@3.0.0: 2343 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2344 | engines: {node: '>=8'} 2345 | dev: false 2346 | 2347 | /slash@4.0.0: 2348 | resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} 2349 | engines: {node: '>=12'} 2350 | dev: false 2351 | 2352 | /source-map-js@1.0.2: 2353 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 2354 | engines: {node: '>=0.10.0'} 2355 | 2356 | /string.prototype.matchall@4.0.8: 2357 | resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} 2358 | dependencies: 2359 | call-bind: 1.0.2 2360 | define-properties: 1.2.0 2361 | es-abstract: 1.21.2 2362 | get-intrinsic: 1.2.1 2363 | has-symbols: 1.0.3 2364 | internal-slot: 1.0.5 2365 | regexp.prototype.flags: 1.5.0 2366 | side-channel: 1.0.4 2367 | dev: false 2368 | 2369 | /string.prototype.trim@1.2.7: 2370 | resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} 2371 | engines: {node: '>= 0.4'} 2372 | dependencies: 2373 | call-bind: 1.0.2 2374 | define-properties: 1.2.0 2375 | es-abstract: 1.21.2 2376 | dev: false 2377 | 2378 | /string.prototype.trimend@1.0.6: 2379 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} 2380 | dependencies: 2381 | call-bind: 1.0.2 2382 | define-properties: 1.2.0 2383 | es-abstract: 1.21.2 2384 | dev: false 2385 | 2386 | /string.prototype.trimstart@1.0.6: 2387 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} 2388 | dependencies: 2389 | call-bind: 1.0.2 2390 | define-properties: 1.2.0 2391 | es-abstract: 1.21.2 2392 | dev: false 2393 | 2394 | /strip-ansi@6.0.1: 2395 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2396 | engines: {node: '>=8'} 2397 | dependencies: 2398 | ansi-regex: 5.0.1 2399 | dev: false 2400 | 2401 | /strip-bom@3.0.0: 2402 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2403 | engines: {node: '>=4'} 2404 | dev: false 2405 | 2406 | /strip-final-newline@2.0.0: 2407 | resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 2408 | engines: {node: '>=6'} 2409 | dev: false 2410 | 2411 | /strip-final-newline@3.0.0: 2412 | resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 2413 | engines: {node: '>=12'} 2414 | dev: false 2415 | 2416 | /strip-json-comments@3.1.1: 2417 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2418 | engines: {node: '>=8'} 2419 | dev: false 2420 | 2421 | /styled-jsx@5.1.1(react@18.2.0): 2422 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 2423 | engines: {node: '>= 12.0.0'} 2424 | peerDependencies: 2425 | '@babel/core': '*' 2426 | babel-plugin-macros: '*' 2427 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 2428 | peerDependenciesMeta: 2429 | '@babel/core': 2430 | optional: true 2431 | babel-plugin-macros: 2432 | optional: true 2433 | dependencies: 2434 | client-only: 0.0.1 2435 | react: 18.2.0 2436 | dev: false 2437 | 2438 | /sucrase@3.32.0: 2439 | resolution: {integrity: sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==} 2440 | engines: {node: '>=8'} 2441 | hasBin: true 2442 | dependencies: 2443 | '@jridgewell/gen-mapping': 0.3.3 2444 | commander: 4.1.1 2445 | glob: 7.1.6 2446 | lines-and-columns: 1.2.4 2447 | mz: 2.7.0 2448 | pirates: 4.0.6 2449 | ts-interface-checker: 0.1.13 2450 | dev: true 2451 | 2452 | /supports-color@7.2.0: 2453 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2454 | engines: {node: '>=8'} 2455 | dependencies: 2456 | has-flag: 4.0.0 2457 | dev: false 2458 | 2459 | /supports-preserve-symlinks-flag@1.0.0: 2460 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2461 | engines: {node: '>= 0.4'} 2462 | 2463 | /synckit@0.8.5: 2464 | resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} 2465 | engines: {node: ^14.18.0 || >=16.0.0} 2466 | dependencies: 2467 | '@pkgr/utils': 2.4.1 2468 | tslib: 2.5.3 2469 | dev: false 2470 | 2471 | /tailwindcss@3.3.1(postcss@8.4.21): 2472 | resolution: {integrity: sha512-Vkiouc41d4CEq0ujXl6oiGFQ7bA3WEhUZdTgXAhtKxSy49OmKs8rEfQmupsfF0IGW8fv2iQkp1EVUuapCFrZ9g==} 2473 | engines: {node: '>=12.13.0'} 2474 | hasBin: true 2475 | peerDependencies: 2476 | postcss: ^8.0.9 2477 | dependencies: 2478 | arg: 5.0.2 2479 | chokidar: 3.5.3 2480 | color-name: 1.1.4 2481 | didyoumean: 1.2.2 2482 | dlv: 1.1.3 2483 | fast-glob: 3.2.12 2484 | glob-parent: 6.0.2 2485 | is-glob: 4.0.3 2486 | jiti: 1.18.2 2487 | lilconfig: 2.1.0 2488 | micromatch: 4.0.5 2489 | normalize-path: 3.0.0 2490 | object-hash: 3.0.0 2491 | picocolors: 1.0.0 2492 | postcss: 8.4.21 2493 | postcss-import: 14.1.0(postcss@8.4.21) 2494 | postcss-js: 4.0.1(postcss@8.4.21) 2495 | postcss-load-config: 3.1.4(postcss@8.4.21) 2496 | postcss-nested: 6.0.0(postcss@8.4.21) 2497 | postcss-selector-parser: 6.0.13 2498 | postcss-value-parser: 4.2.0 2499 | quick-lru: 5.1.1 2500 | resolve: 1.22.2 2501 | sucrase: 3.32.0 2502 | transitivePeerDependencies: 2503 | - ts-node 2504 | dev: true 2505 | 2506 | /tapable@2.2.1: 2507 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 2508 | engines: {node: '>=6'} 2509 | dev: false 2510 | 2511 | /text-table@0.2.0: 2512 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2513 | dev: false 2514 | 2515 | /thenify-all@1.6.0: 2516 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 2517 | engines: {node: '>=0.8'} 2518 | dependencies: 2519 | thenify: 3.3.1 2520 | dev: true 2521 | 2522 | /thenify@3.3.1: 2523 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 2524 | dependencies: 2525 | any-promise: 1.3.0 2526 | dev: true 2527 | 2528 | /titleize@3.0.0: 2529 | resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} 2530 | engines: {node: '>=12'} 2531 | dev: false 2532 | 2533 | /to-regex-range@5.0.1: 2534 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2535 | engines: {node: '>=8.0'} 2536 | dependencies: 2537 | is-number: 7.0.0 2538 | 2539 | /ts-interface-checker@0.1.13: 2540 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 2541 | dev: true 2542 | 2543 | /tsconfig-paths@3.14.2: 2544 | resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} 2545 | dependencies: 2546 | '@types/json5': 0.0.29 2547 | json5: 1.0.2 2548 | minimist: 1.2.8 2549 | strip-bom: 3.0.0 2550 | dev: false 2551 | 2552 | /tslib@1.14.1: 2553 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 2554 | dev: false 2555 | 2556 | /tslib@2.5.3: 2557 | resolution: {integrity: sha512-mSxlJJwl3BMEQCUNnxXBU9jP4JBktcEGhURcPR6VQVlnP0FdDEsIaz0C35dXNGLyRfrATNofF0F5p2KPxQgB+w==} 2558 | dev: false 2559 | 2560 | /tsutils@3.21.0(typescript@5.0.3): 2561 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 2562 | engines: {node: '>= 6'} 2563 | peerDependencies: 2564 | 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' 2565 | dependencies: 2566 | tslib: 1.14.1 2567 | typescript: 5.0.3 2568 | dev: false 2569 | 2570 | /type-check@0.4.0: 2571 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2572 | engines: {node: '>= 0.8.0'} 2573 | dependencies: 2574 | prelude-ls: 1.2.1 2575 | dev: false 2576 | 2577 | /type-fest@0.20.2: 2578 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2579 | engines: {node: '>=10'} 2580 | dev: false 2581 | 2582 | /typed-array-length@1.0.4: 2583 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 2584 | dependencies: 2585 | call-bind: 1.0.2 2586 | for-each: 0.3.3 2587 | is-typed-array: 1.1.10 2588 | dev: false 2589 | 2590 | /typescript@5.0.3: 2591 | resolution: {integrity: sha512-xv8mOEDnigb/tN9PSMTwSEqAnUvkoXMQlicOb0IUVDBSQCgBSaAAROUZYy2IcUy5qU6XajK5jjjO7TMWqBTKZA==} 2592 | engines: {node: '>=12.20'} 2593 | hasBin: true 2594 | dev: false 2595 | 2596 | /unbox-primitive@1.0.2: 2597 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2598 | dependencies: 2599 | call-bind: 1.0.2 2600 | has-bigints: 1.0.2 2601 | has-symbols: 1.0.3 2602 | which-boxed-primitive: 1.0.2 2603 | dev: false 2604 | 2605 | /untildify@4.0.0: 2606 | resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} 2607 | engines: {node: '>=8'} 2608 | dev: false 2609 | 2610 | /update-browserslist-db@1.0.11(browserslist@4.21.9): 2611 | resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} 2612 | hasBin: true 2613 | peerDependencies: 2614 | browserslist: '>= 4.21.0' 2615 | dependencies: 2616 | browserslist: 4.21.9 2617 | escalade: 3.1.1 2618 | picocolors: 1.0.0 2619 | dev: true 2620 | 2621 | /uri-js@4.4.1: 2622 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2623 | dependencies: 2624 | punycode: 2.3.0 2625 | dev: false 2626 | 2627 | /util-deprecate@1.0.2: 2628 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2629 | dev: true 2630 | 2631 | /which-boxed-primitive@1.0.2: 2632 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2633 | dependencies: 2634 | is-bigint: 1.0.4 2635 | is-boolean-object: 1.1.2 2636 | is-number-object: 1.0.7 2637 | is-string: 1.0.7 2638 | is-symbol: 1.0.4 2639 | dev: false 2640 | 2641 | /which-typed-array@1.1.9: 2642 | resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} 2643 | engines: {node: '>= 0.4'} 2644 | dependencies: 2645 | available-typed-arrays: 1.0.5 2646 | call-bind: 1.0.2 2647 | for-each: 0.3.3 2648 | gopd: 1.0.1 2649 | has-tostringtag: 1.0.0 2650 | is-typed-array: 1.1.10 2651 | dev: false 2652 | 2653 | /which@2.0.2: 2654 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2655 | engines: {node: '>= 8'} 2656 | hasBin: true 2657 | dependencies: 2658 | isexe: 2.0.0 2659 | dev: false 2660 | 2661 | /window.ai@0.2.2: 2662 | resolution: {integrity: sha512-wOQN+M+cshrXxW0koAsXevoFLelBlzmiWFK1OsX00aYmUZ1VPcAbL7HhTEMCG0/pKIVRGM0jLDGgPTTZEvzA4Q==} 2663 | dev: false 2664 | 2665 | /word-wrap@1.2.3: 2666 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 2667 | engines: {node: '>=0.10.0'} 2668 | dev: false 2669 | 2670 | /wrappy@1.0.2: 2671 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2672 | 2673 | /yallist@4.0.0: 2674 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2675 | dev: false 2676 | 2677 | /yaml@1.10.2: 2678 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} 2679 | engines: {node: '>= 6'} 2680 | dev: true 2681 | 2682 | /yocto-queue@0.1.0: 2683 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2684 | engines: {node: '>=10'} 2685 | dev: false 2686 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YanniKouloumbis/next-js-window-ai/7cdb2184214a57aeef456d195deb309728ef1c6b/public/favicon.ico -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/thirteen.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- 1 | .main { 2 | display: flex; 3 | flex-direction: column; 4 | justify-content: space-between; 5 | align-items: center; 6 | padding: 6rem; 7 | min-height: 100vh; 8 | } 9 | 10 | .description { 11 | display: inherit; 12 | justify-content: inherit; 13 | align-items: inherit; 14 | font-size: 0.85rem; 15 | max-width: var(--max-width); 16 | width: 100%; 17 | z-index: 2; 18 | font-family: var(--font-mono); 19 | } 20 | 21 | .description a { 22 | display: flex; 23 | justify-content: center; 24 | align-items: center; 25 | gap: 0.5rem; 26 | } 27 | 28 | .description p { 29 | position: relative; 30 | margin: 0; 31 | padding: 1rem; 32 | background-color: rgba(var(--callout-rgb), 0.5); 33 | border: 1px solid rgba(var(--callout-border-rgb), 0.3); 34 | border-radius: var(--border-radius); 35 | } 36 | 37 | .code { 38 | font-weight: 700; 39 | font-family: var(--font-mono); 40 | } 41 | 42 | .grid { 43 | display: grid; 44 | grid-template-columns: repeat(4, minmax(25%, auto)); 45 | width: var(--max-width); 46 | max-width: 100%; 47 | } 48 | 49 | .card { 50 | padding: 1rem 1.2rem; 51 | border-radius: var(--border-radius); 52 | background: rgba(var(--card-rgb), 0); 53 | border: 1px solid rgba(var(--card-border-rgb), 0); 54 | transition: background 200ms, border 200ms; 55 | } 56 | 57 | .card span { 58 | display: inline-block; 59 | transition: transform 200ms; 60 | } 61 | 62 | .card h2 { 63 | font-weight: 600; 64 | margin-bottom: 0.7rem; 65 | } 66 | 67 | .card p { 68 | margin: 0; 69 | opacity: 0.6; 70 | font-size: 0.9rem; 71 | line-height: 1.5; 72 | max-width: 30ch; 73 | } 74 | 75 | .center { 76 | display: flex; 77 | justify-content: center; 78 | align-items: center; 79 | position: relative; 80 | padding: 4rem 0; 81 | } 82 | 83 | .center::before { 84 | background: var(--secondary-glow); 85 | border-radius: 50%; 86 | width: 480px; 87 | height: 360px; 88 | margin-left: -400px; 89 | } 90 | 91 | .center::after { 92 | background: var(--primary-glow); 93 | width: 240px; 94 | height: 180px; 95 | z-index: -1; 96 | } 97 | 98 | .center::before, 99 | .center::after { 100 | content: ''; 101 | left: 50%; 102 | position: absolute; 103 | filter: blur(45px); 104 | transform: translateZ(0); 105 | } 106 | 107 | .logo, 108 | .thirteen { 109 | position: relative; 110 | } 111 | 112 | .thirteen { 113 | display: flex; 114 | justify-content: center; 115 | align-items: center; 116 | width: 75px; 117 | height: 75px; 118 | padding: 25px 10px; 119 | margin-left: 16px; 120 | transform: translateZ(0); 121 | border-radius: var(--border-radius); 122 | overflow: hidden; 123 | box-shadow: 0px 2px 8px -1px #0000001a; 124 | } 125 | 126 | .thirteen::before, 127 | .thirteen::after { 128 | content: ''; 129 | position: absolute; 130 | z-index: -1; 131 | } 132 | 133 | /* Conic Gradient Animation */ 134 | .thirteen::before { 135 | animation: 6s rotate linear infinite; 136 | width: 200%; 137 | height: 200%; 138 | background: var(--tile-border); 139 | } 140 | 141 | /* Inner Square */ 142 | .thirteen::after { 143 | inset: 0; 144 | padding: 1px; 145 | border-radius: var(--border-radius); 146 | background: linear-gradient( 147 | to bottom right, 148 | rgba(var(--tile-start-rgb), 1), 149 | rgba(var(--tile-end-rgb), 1) 150 | ); 151 | background-clip: content-box; 152 | } 153 | 154 | /* Enable hover only on non-touch devices */ 155 | @media (hover: hover) and (pointer: fine) { 156 | .card:hover { 157 | background: rgba(var(--card-rgb), 0.1); 158 | border: 1px solid rgba(var(--card-border-rgb), 0.15); 159 | } 160 | 161 | .card:hover span { 162 | transform: translateX(4px); 163 | } 164 | } 165 | 166 | @media (prefers-reduced-motion) { 167 | .thirteen::before { 168 | animation: none; 169 | } 170 | 171 | .card:hover span { 172 | transform: none; 173 | } 174 | } 175 | 176 | /* Mobile */ 177 | @media (max-width: 700px) { 178 | .content { 179 | padding: 4rem; 180 | } 181 | 182 | .grid { 183 | grid-template-columns: 1fr; 184 | margin-bottom: 120px; 185 | max-width: 320px; 186 | text-align: center; 187 | } 188 | 189 | .card { 190 | padding: 1rem 2.5rem; 191 | } 192 | 193 | .card h2 { 194 | margin-bottom: 0.5rem; 195 | } 196 | 197 | .center { 198 | padding: 8rem 0 6rem; 199 | } 200 | 201 | .center::before { 202 | transform: none; 203 | height: 300px; 204 | } 205 | 206 | .description { 207 | font-size: 0.8rem; 208 | } 209 | 210 | .description a { 211 | padding: 1rem; 212 | } 213 | 214 | .description p, 215 | .description div { 216 | display: flex; 217 | justify-content: center; 218 | position: fixed; 219 | width: 100%; 220 | } 221 | 222 | .description p { 223 | align-items: center; 224 | inset: 0 0 auto; 225 | padding: 2rem 1rem 1.4rem; 226 | border-radius: 0; 227 | border: none; 228 | border-bottom: 1px solid rgba(var(--callout-border-rgb), 0.25); 229 | background: linear-gradient( 230 | to bottom, 231 | rgba(var(--background-start-rgb), 1), 232 | rgba(var(--callout-rgb), 0.5) 233 | ); 234 | background-clip: padding-box; 235 | backdrop-filter: blur(24px); 236 | } 237 | 238 | .description div { 239 | align-items: flex-end; 240 | pointer-events: none; 241 | inset: auto 0 0; 242 | padding: 2rem; 243 | height: 200px; 244 | background: linear-gradient( 245 | to bottom, 246 | transparent 0%, 247 | rgb(var(--background-end-rgb)) 40% 248 | ); 249 | z-index: 1; 250 | } 251 | } 252 | 253 | /* Tablet and Smaller Desktop */ 254 | @media (min-width: 701px) and (max-width: 1120px) { 255 | .grid { 256 | grid-template-columns: repeat(2, 50%); 257 | } 258 | } 259 | 260 | @media (prefers-color-scheme: dark) { 261 | .vercelLogo { 262 | filter: invert(1); 263 | } 264 | 265 | .logo, 266 | .thirteen img { 267 | filter: invert(1) drop-shadow(0 0 0.3rem #ffffff70); 268 | } 269 | } 270 | 271 | @keyframes rotate { 272 | from { 273 | transform: rotate(360deg); 274 | } 275 | to { 276 | transform: rotate(0deg); 277 | } 278 | } 279 | -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: ["./pages/**/*.{js,ts,jsx,tsx}", 4 | "./components/**/*.{js,ts,jsx,tsx}", 5 | ], 6 | theme: { 7 | extend: {}, 8 | }, 9 | plugins: [], 10 | } 11 | 12 | -------------------------------------------------------------------------------- /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 | "paths": { 18 | "@/*": ["./*"] 19 | } 20 | }, 21 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 22 | "exclude": ["node_modules"] 23 | } 24 | --------------------------------------------------------------------------------