├── .eslintrc.json ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx └── page.tsx ├── extras ├── diagram.png └── sidecar-logo.png ├── next.config.js ├── package-lock.json ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── requirements.txt ├── src-tauri ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── build.rs ├── src │ └── main.rs └── tauri.conf.json ├── src └── backends │ ├── inference │ └── infer_text_api.py │ └── main.py ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | 37 | # python 38 | **/__pycache__ 39 | *.spec 40 | /src-tauri/bin 41 | 42 | # local test model files 43 | /src/backends/models -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "[python]": { 3 | "editor.formatOnSave": true 4 | }, 5 | "python.formatting.provider": "black" 6 | } 7 | 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Example Tauri v1 app using Python sidecar 2 | 3 | A native app built with Tauri v1 that spawns a Python sub-process (sidecar) which starts a FastAPI server. 4 | 5 | ![Python](https://img.shields.io/badge/-Python-000?&logo=Python) 6 | ![TypeScript](https://img.shields.io/badge/-TypeScript-000?&logo=TypeScript) 7 | ![Rust](https://img.shields.io/badge/-Rust-000?&logo=Rust) 8 |
9 | ![FastAPI](https://img.shields.io/badge/-FastAPI-000?&logo=fastapi) 10 | ![NextJS](https://img.shields.io/badge/-NextJS-000?&logo=nextdotjs) 11 | ![Tauri](https://img.shields.io/badge/-Tauri-000?&logo=Tauri) 12 | 13 | > [!IMPORTANT] 14 | > 15 | > Tauri v2 example is now available 👇 16 | > 17 | > example-tauri-v2-python-server-sidecar 18 | > 19 | > More features and documentation with example app.exe. 20 | 21 | 23 | 24 | ![logo](extras/sidecar-logo.png "python sidecar logo") 25 | 26 | ## Introduction 27 | 28 | This example app uses Next.js as the frontend and Python (FastAPI) as the backend. Tauri is a Rust framework that orchestrates the frontend and backend(s) into a native app experience. 29 | 30 | ## How It Works 31 | 32 | ![python sidecar architecture](extras/diagram.png "python sidecar architecture") 33 | 34 | Tauri takes your frontend UI written in html/javascript and displays it in a native webview. This makes the resulting file size smaller since it does not need to include a web browser. 35 | 36 | ## Getting Started 37 | 38 | ### Dependencies 39 | 40 | Install dependencies for javascript: 41 | 42 | ```bash 43 | pnpm install 44 | ``` 45 | 46 | To install python dependencies listed in requirements.txt: 47 | 48 | ```bash 49 | pnpm dev-reqs 50 | ``` 51 | 52 | In case you dont have PyInstaller installed: 53 | 54 | ```bash 55 | pip install -U pyinstaller 56 | ``` 57 | 58 | ### Run 59 | 60 | To run the app in development mode with hot-reload (js): 61 | 62 | ```bash 63 | pnpm tauri dev 64 | ``` 65 | 66 | ### Build 67 | 68 | #### Compile python sidecar 69 | 70 | Run this at least once before running `pnpm tauri dev` and each time you make changes to your python code. This command is also called by `pnpm tauri build`: 71 | 72 | ```bash 73 | pnpm build:fastapi 74 | ``` 75 | 76 | #### Build app for production: 77 | 78 | ```bash 79 | pnpm tauri build 80 | ``` 81 | 82 | This creates an installer located here: 83 | 84 | - \\src-tauri\target\release\bundle\nsis 85 | 86 | ## Learn More 87 | 88 | - [Tauri Framework](https://tauri.app/) - learn about native app development in javascript and rust. 89 | - [NextJS](https://nextjs.org/docs) - learn about the popular react framework Next.js 90 | - [FastAPI](https://fastapi.tiangolo.com/) - learn about FastAPI server features and API. 91 | - [PyInstaller](https://pyinstaller.org/en/stable/) - learn about packaging python code. 92 | -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dieharders/example-tauri-python-server-sidecar/1cd93c94ee5f0b6b65d08bb5aad2dabeb0bb40b8/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | :root { 6 | --foreground-rgb: 0, 0, 0; 7 | --background-start-rgb: 214, 219, 220; 8 | --background-end-rgb: 255, 255, 255; 9 | } 10 | 11 | @media (prefers-color-scheme: dark) { 12 | :root { 13 | --foreground-rgb: 255, 255, 255; 14 | --background-start-rgb: 0, 0, 0; 15 | --background-end-rgb: 0, 0, 0; 16 | } 17 | } 18 | 19 | body { 20 | color: rgb(var(--foreground-rgb)); 21 | background: linear-gradient( 22 | to bottom, 23 | transparent, 24 | rgb(var(--background-end-rgb)) 25 | ) 26 | rgb(var(--background-start-rgb)); 27 | } 28 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import './globals.css' 2 | import { Inter } from 'next/font/google' 3 | 4 | const inter = Inter({ subsets: ['latin'] }) 5 | 6 | export const metadata = { 7 | title: 'Create Next App', 8 | description: 'Generated by create next app', 9 | } 10 | 11 | export default function RootLayout({ 12 | children, 13 | }: { 14 | children: React.ReactNode 15 | }) { 16 | return ( 17 | 18 | {children} 19 | 20 | ) 21 | } 22 | -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | import Link from "next/link"; 3 | // import { useEffect } from "react"; 4 | // import { Command } from '@tauri-apps/api/shell' 5 | // import { appWindow } from '@tauri-apps/api/window' 6 | 7 | // declare global { 8 | // interface Window { __TAURI__: any; } 9 | // } 10 | 11 | export default function Home() { 12 | // Start python api server 13 | // This does the same thing as in the main.rs file but in js. Left here for your info. 14 | 15 | // useEffect(() => { 16 | // // console.log('@@ window', window); 17 | // const start = async () => { 18 | // // const { Command } = window.__TAURI__.shell; 19 | // const command = Command.sidecar("bin/api/main"); 20 | // const { stdout, stderr } = await command.execute(); 21 | // console.log('@@ stdout:', stdout, stderr); 22 | // await appWindow.onCloseRequested(async (event) => { 23 | // console.log('@@ onCloseRequested', event); 24 | // // shutdown the api server 25 | // return 26 | // }) 27 | // return; 28 | // } 29 | // start() 30 | // }, []) 31 | 32 | return ( 33 |
34 |
35 |

36 | Get started by editing  37 | 38 | api/main.py 39 | 40 |

41 |
42 | 48 | By{" "} 49 | Vercel Logo 57 | 58 |
59 |
60 | 61 |
62 | Next.js Logo 70 |
71 | 72 |
73 | 79 |

80 | Docs{" "} 81 | 82 | -> 83 | 84 |

85 |

86 | Find in-depth information about Next.js features and API. 87 |

88 |
89 | 90 | 96 |

97 | Learn{" "} 98 | 99 | -> 100 | 101 |

102 |

103 | Learn about Next.js in an interactive course with quizzes! 104 |

105 |
106 | 107 | 113 |

114 | Templates{" "} 115 | 116 | -> 117 | 118 |

119 |

120 | Explore the Next.js 13 playground. 121 |

122 |
123 | 124 | 130 |

131 | Deploy{" "} 132 | 133 | -> 134 | 135 |

136 |

137 | Instantly deploy your Next.js site to a shareable URL with Vercel. 138 |

139 |
140 |
141 |
142 | ); 143 | } 144 | -------------------------------------------------------------------------------- /extras/diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dieharders/example-tauri-python-server-sidecar/1cd93c94ee5f0b6b65d08bb5aad2dabeb0bb40b8/extras/diagram.png -------------------------------------------------------------------------------- /extras/sidecar-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dieharders/example-tauri-python-server-sidecar/1cd93c94ee5f0b6b65d08bb5aad2dabeb0bb40b8/extras/sidecar-logo.png -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | output: "export", 4 | // Re-writes dont work with Tauri...since output above is set to "export" 5 | // rewrites: async () => { 6 | // return [ 7 | // { 8 | // source: "/api/v1/text/:path*", 9 | // destination: 10 | // process.env.NODE_ENV === "development" 11 | // ? "http://127.0.0.1:8008/api/v1/text/:path*" 12 | // : "/api/v1/text/:path*", 13 | // }, 14 | // ]; 15 | // }, 16 | }; 17 | 18 | module.exports = nextConfig; 19 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "example-tauri-v1-python-server-sidecar", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev-reqs": "pip3 install -r requirements.txt", 7 | "dev": "next dev", 8 | "build:fastapi": "pyinstaller -c -F --clean --name main-x86_64-pc-windows-msvc --distpath src-tauri/bin/api src/backends/main.py", 9 | "build": "npm run build:fastapi && next build", 10 | "tauri": "tauri", 11 | "export": "next export", 12 | "start": "next start", 13 | "lint": "next lint" 14 | }, 15 | "dependencies": { 16 | "@tauri-apps/api": "^1.4.0", 17 | "@types/node": "20.2.4", 18 | "@types/react": "18.2.7", 19 | "@types/react-dom": "18.2.4", 20 | "autoprefixer": "10.4.14", 21 | "concurrently": "^8.0.1", 22 | "cors": "^2.8.5", 23 | "eslint": "8.41.0", 24 | "eslint-config-next": "13.4.4", 25 | "next": "13.4.4", 26 | "postcss": "8.4.23", 27 | "react": "18.2.0", 28 | "react-dom": "18.2.0", 29 | "tailwindcss": "3.3.2", 30 | "typescript": "5.0.4" 31 | }, 32 | "devDependencies": { 33 | "@tauri-apps/cli": "^1.4.0", 34 | "@types/cors": "^2.8.13" 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '6.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | dependencies: 8 | '@tauri-apps/api': 9 | specifier: ^1.4.0 10 | version: 1.4.0 11 | '@types/node': 12 | specifier: 20.2.4 13 | version: 20.2.4 14 | '@types/react': 15 | specifier: 18.2.7 16 | version: 18.2.7 17 | '@types/react-dom': 18 | specifier: 18.2.4 19 | version: 18.2.4 20 | autoprefixer: 21 | specifier: 10.4.14 22 | version: 10.4.14(postcss@8.4.23) 23 | concurrently: 24 | specifier: ^8.0.1 25 | version: 8.0.1 26 | cors: 27 | specifier: ^2.8.5 28 | version: 2.8.5 29 | eslint: 30 | specifier: 8.41.0 31 | version: 8.41.0 32 | eslint-config-next: 33 | specifier: 13.4.4 34 | version: 13.4.4(eslint@8.41.0)(typescript@5.0.4) 35 | next: 36 | specifier: 13.4.4 37 | version: 13.4.4(react-dom@18.2.0)(react@18.2.0) 38 | postcss: 39 | specifier: 8.4.23 40 | version: 8.4.23 41 | react: 42 | specifier: 18.2.0 43 | version: 18.2.0 44 | react-dom: 45 | specifier: 18.2.0 46 | version: 18.2.0(react@18.2.0) 47 | tailwindcss: 48 | specifier: 3.3.2 49 | version: 3.3.2 50 | typescript: 51 | specifier: 5.0.4 52 | version: 5.0.4 53 | 54 | devDependencies: 55 | '@tauri-apps/cli': 56 | specifier: ^1.4.0 57 | version: 1.4.0 58 | '@types/cors': 59 | specifier: ^2.8.13 60 | version: 2.8.13 61 | 62 | packages: 63 | 64 | /@aashutoshrathi/word-wrap@1.2.6: 65 | resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} 66 | engines: {node: '>=0.10.0'} 67 | dev: false 68 | 69 | /@alloc/quick-lru@5.2.0: 70 | resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} 71 | engines: {node: '>=10'} 72 | dev: false 73 | 74 | /@babel/runtime@7.22.10: 75 | resolution: {integrity: sha512-21t/fkKLMZI4pqP2wlmsQAWnYW1PDyKyyUV4vCi+B25ydmdaYTKXPwCj0BzSUnZf4seIiYvSA3jcZ3gdsMFkLQ==} 76 | engines: {node: '>=6.9.0'} 77 | dependencies: 78 | regenerator-runtime: 0.14.0 79 | dev: false 80 | 81 | /@eslint-community/eslint-utils@4.4.0(eslint@8.41.0): 82 | resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 83 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 84 | peerDependencies: 85 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 86 | dependencies: 87 | eslint: 8.41.0 88 | eslint-visitor-keys: 3.4.2 89 | dev: false 90 | 91 | /@eslint-community/regexpp@4.6.2: 92 | resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} 93 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 94 | dev: false 95 | 96 | /@eslint/eslintrc@2.1.1: 97 | resolution: {integrity: sha512-9t7ZA7NGGK8ckelF0PQCfcxIUzs1Md5rrO6U/c+FIQNanea5UZC0wqKXH4vHBccmu4ZJgZ2idtPeW7+Q2npOEA==} 98 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 99 | dependencies: 100 | ajv: 6.12.6 101 | debug: 4.3.4 102 | espree: 9.6.1 103 | globals: 13.20.0 104 | ignore: 5.2.4 105 | import-fresh: 3.3.0 106 | js-yaml: 4.1.0 107 | minimatch: 3.1.2 108 | strip-json-comments: 3.1.1 109 | transitivePeerDependencies: 110 | - supports-color 111 | dev: false 112 | 113 | /@eslint/js@8.41.0: 114 | resolution: {integrity: sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA==} 115 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 116 | dev: false 117 | 118 | /@humanwhocodes/config-array@0.11.10: 119 | resolution: {integrity: sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==} 120 | engines: {node: '>=10.10.0'} 121 | dependencies: 122 | '@humanwhocodes/object-schema': 1.2.1 123 | debug: 4.3.4 124 | minimatch: 3.1.2 125 | transitivePeerDependencies: 126 | - supports-color 127 | dev: false 128 | 129 | /@humanwhocodes/module-importer@1.0.1: 130 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 131 | engines: {node: '>=12.22'} 132 | dev: false 133 | 134 | /@humanwhocodes/object-schema@1.2.1: 135 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 136 | dev: false 137 | 138 | /@jridgewell/gen-mapping@0.3.3: 139 | resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} 140 | engines: {node: '>=6.0.0'} 141 | dependencies: 142 | '@jridgewell/set-array': 1.1.2 143 | '@jridgewell/sourcemap-codec': 1.4.15 144 | '@jridgewell/trace-mapping': 0.3.19 145 | dev: false 146 | 147 | /@jridgewell/resolve-uri@3.1.1: 148 | resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 149 | engines: {node: '>=6.0.0'} 150 | dev: false 151 | 152 | /@jridgewell/set-array@1.1.2: 153 | resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} 154 | engines: {node: '>=6.0.0'} 155 | dev: false 156 | 157 | /@jridgewell/sourcemap-codec@1.4.15: 158 | resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 159 | dev: false 160 | 161 | /@jridgewell/trace-mapping@0.3.19: 162 | resolution: {integrity: sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==} 163 | dependencies: 164 | '@jridgewell/resolve-uri': 3.1.1 165 | '@jridgewell/sourcemap-codec': 1.4.15 166 | dev: false 167 | 168 | /@next/env@13.4.4: 169 | resolution: {integrity: sha512-q/y7VZj/9YpgzDe64Zi6rY1xPizx80JjlU2BTevlajtaE3w1LqweH1gGgxou2N7hdFosXHjGrI4OUvtFXXhGLg==} 170 | dev: false 171 | 172 | /@next/eslint-plugin-next@13.4.4: 173 | resolution: {integrity: sha512-5jnh7q6I15efnjR/rR+/TGTc9hn53g3JTbEjAMjmeQiExKqEUgIXqrHI5zlTNlNyzCPkBB860/ctxXheZaF2Vw==} 174 | dependencies: 175 | glob: 7.1.7 176 | dev: false 177 | 178 | /@next/swc-darwin-arm64@13.4.4: 179 | resolution: {integrity: sha512-xfjgXvp4KalNUKZMHmsFxr1Ug+aGmmO6NWP0uoh4G3WFqP/mJ1xxfww0gMOeMeSq/Jyr5k7DvoZ2Pv+XOITTtw==} 180 | engines: {node: '>= 10'} 181 | cpu: [arm64] 182 | os: [darwin] 183 | requiresBuild: true 184 | dev: false 185 | optional: true 186 | 187 | /@next/swc-darwin-x64@13.4.4: 188 | resolution: {integrity: sha512-ZY9Ti1hkIwJsxGus3nlubIkvYyB0gNOYxKrfsOrLEqD0I2iCX8D7w8v6QQZ2H+dDl6UT29oeEUdDUNGk4UEpfg==} 189 | engines: {node: '>= 10'} 190 | cpu: [x64] 191 | os: [darwin] 192 | requiresBuild: true 193 | dev: false 194 | optional: true 195 | 196 | /@next/swc-linux-arm64-gnu@13.4.4: 197 | resolution: {integrity: sha512-+KZnDeMShYkpkqAvGCEDeqYTRADJXc6SY1jWXz+Uo6qWQO/Jd9CoyhTJwRSxvQA16MoYzvILkGaDqirkRNctyA==} 198 | engines: {node: '>= 10'} 199 | cpu: [arm64] 200 | os: [linux] 201 | requiresBuild: true 202 | dev: false 203 | optional: true 204 | 205 | /@next/swc-linux-arm64-musl@13.4.4: 206 | resolution: {integrity: sha512-evC1twrny2XDT4uOftoubZvW3EG0zs0ZxMwEtu/dDGVRO5n5pT48S8qqEIBGBUZYu/Xx4zzpOkIxx1vpWdE+9A==} 207 | engines: {node: '>= 10'} 208 | cpu: [arm64] 209 | os: [linux] 210 | requiresBuild: true 211 | dev: false 212 | optional: true 213 | 214 | /@next/swc-linux-x64-gnu@13.4.4: 215 | resolution: {integrity: sha512-PX706XcCHr2FfkyhP2lpf+pX/tUvq6/ke7JYnnr0ykNdEMo+sb7cC/o91gnURh4sPYSiZJhsF2gbIqg9rciOHQ==} 216 | engines: {node: '>= 10'} 217 | cpu: [x64] 218 | os: [linux] 219 | requiresBuild: true 220 | dev: false 221 | optional: true 222 | 223 | /@next/swc-linux-x64-musl@13.4.4: 224 | resolution: {integrity: sha512-TKUUx3Ftd95JlHV6XagEnqpT204Y+IsEa3awaYIjayn0MOGjgKZMZibqarK3B1FsMSPaieJf2FEAcu9z0yT5aA==} 225 | engines: {node: '>= 10'} 226 | cpu: [x64] 227 | os: [linux] 228 | requiresBuild: true 229 | dev: false 230 | optional: true 231 | 232 | /@next/swc-win32-arm64-msvc@13.4.4: 233 | resolution: {integrity: sha512-FP8AadgSq4+HPtim7WBkCMGbhr5vh9FePXiWx9+YOdjwdQocwoCK5ZVC3OW8oh3TWth6iJ0AXJ/yQ1q1cwSZ3A==} 234 | engines: {node: '>= 10'} 235 | cpu: [arm64] 236 | os: [win32] 237 | requiresBuild: true 238 | dev: false 239 | optional: true 240 | 241 | /@next/swc-win32-ia32-msvc@13.4.4: 242 | resolution: {integrity: sha512-3WekVmtuA2MCdcAOrgrI+PuFiFURtSyyrN1I3UPtS0ckR2HtLqyqmS334Eulf15g1/bdwMteePdK363X/Y9JMg==} 243 | engines: {node: '>= 10'} 244 | cpu: [ia32] 245 | os: [win32] 246 | requiresBuild: true 247 | dev: false 248 | optional: true 249 | 250 | /@next/swc-win32-x64-msvc@13.4.4: 251 | resolution: {integrity: sha512-AHRITu/CrlQ+qzoqQtEMfaTu7GHaQ6bziQln/pVWpOYC1wU+Mq6VQQFlsDtMCnDztPZtppAXdvvbNS7pcfRzlw==} 252 | engines: {node: '>= 10'} 253 | cpu: [x64] 254 | os: [win32] 255 | requiresBuild: true 256 | dev: false 257 | optional: true 258 | 259 | /@nodelib/fs.scandir@2.1.5: 260 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 261 | engines: {node: '>= 8'} 262 | dependencies: 263 | '@nodelib/fs.stat': 2.0.5 264 | run-parallel: 1.2.0 265 | dev: false 266 | 267 | /@nodelib/fs.stat@2.0.5: 268 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 269 | engines: {node: '>= 8'} 270 | dev: false 271 | 272 | /@nodelib/fs.walk@1.2.8: 273 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 274 | engines: {node: '>= 8'} 275 | dependencies: 276 | '@nodelib/fs.scandir': 2.1.5 277 | fastq: 1.15.0 278 | dev: false 279 | 280 | /@rushstack/eslint-patch@1.3.3: 281 | resolution: {integrity: sha512-0xd7qez0AQ+MbHatZTlI1gu5vkG8r7MYRUJAHPAHJBmGLs16zpkrpAVLvjQKQOqaXPDUBwOiJzNc00znHSCVBw==} 282 | dev: false 283 | 284 | /@swc/helpers@0.5.1: 285 | resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==} 286 | dependencies: 287 | tslib: 2.6.1 288 | dev: false 289 | 290 | /@tauri-apps/api@1.4.0: 291 | resolution: {integrity: sha512-Jd6HPoTM1PZSFIzq7FB8VmMu3qSSyo/3lSwLpoapW+lQ41CL5Dow2KryLg+gyazA/58DRWI9vu/XpEeHK4uMdw==} 292 | engines: {node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'} 293 | dev: false 294 | 295 | /@tauri-apps/cli-darwin-arm64@1.4.0: 296 | resolution: {integrity: sha512-nA/ml0SfUt6/CYLVbHmT500Y+ijqsuv5+s9EBnVXYSLVg9kbPUZJJHluEYK+xKuOj6xzyuT/+rZFMRapmJD3jQ==} 297 | engines: {node: '>= 10'} 298 | cpu: [arm64] 299 | os: [darwin] 300 | requiresBuild: true 301 | dev: true 302 | optional: true 303 | 304 | /@tauri-apps/cli-darwin-x64@1.4.0: 305 | resolution: {integrity: sha512-ov/F6Zr+dg9B0PtRu65stFo2G0ow2TUlneqYYrkj+vA3n+moWDHfVty0raDjMLQbQt3rv3uayFMXGPMgble9OA==} 306 | engines: {node: '>= 10'} 307 | cpu: [x64] 308 | os: [darwin] 309 | requiresBuild: true 310 | dev: true 311 | optional: true 312 | 313 | /@tauri-apps/cli-linux-arm-gnueabihf@1.4.0: 314 | resolution: {integrity: sha512-zwjbiMncycXDV7doovymyKD7sCg53ouAmfgpUqEBOTY3vgBi9TwijyPhJOqoG5vUVWhouNBC08akGmE4dja15g==} 315 | engines: {node: '>= 10'} 316 | cpu: [arm] 317 | os: [linux] 318 | requiresBuild: true 319 | dev: true 320 | optional: true 321 | 322 | /@tauri-apps/cli-linux-arm64-gnu@1.4.0: 323 | resolution: {integrity: sha512-5MCBcziqXC72mMXnkZU68mutXIR6zavDxopArE2gQtK841IlE06bIgtLi0kUUhlFJk2nhPRgiDgdLbrPlyt7fw==} 324 | engines: {node: '>= 10'} 325 | cpu: [arm64] 326 | os: [linux] 327 | requiresBuild: true 328 | dev: true 329 | optional: true 330 | 331 | /@tauri-apps/cli-linux-arm64-musl@1.4.0: 332 | resolution: {integrity: sha512-7J3pRB6n6uNYgIfCeKt2Oz8J7oSaz2s8GGFRRH2HPxuTHrBNCinzVYm68UhVpJrL3bnGkU0ziVZLsW/iaOGfUg==} 333 | engines: {node: '>= 10'} 334 | cpu: [arm64] 335 | os: [linux] 336 | requiresBuild: true 337 | dev: true 338 | optional: true 339 | 340 | /@tauri-apps/cli-linux-x64-gnu@1.4.0: 341 | resolution: {integrity: sha512-Zh5gfAJxOv5AVWxcwuueaQ2vIAhlg0d6nZui6nMyfIJ8dbf3aZQ5ZzP38sYow5h/fbvgL+3GSQxZRBIa3c2E1w==} 342 | engines: {node: '>= 10'} 343 | cpu: [x64] 344 | os: [linux] 345 | requiresBuild: true 346 | dev: true 347 | optional: true 348 | 349 | /@tauri-apps/cli-linux-x64-musl@1.4.0: 350 | resolution: {integrity: sha512-OLAYoICU3FaYiTdBsI+lQTKnDHeMmFMXIApN0M+xGiOkoIOQcV9CConMPjgmJQ867+NHRNgUGlvBEAh9CiJodQ==} 351 | engines: {node: '>= 10'} 352 | cpu: [x64] 353 | os: [linux] 354 | requiresBuild: true 355 | dev: true 356 | optional: true 357 | 358 | /@tauri-apps/cli-win32-arm64-msvc@1.4.0: 359 | resolution: {integrity: sha512-gZ05GENFbI6CB5MlOUsLlU0kZ9UtHn9riYtSXKT6MYs8HSPRffPHaHSL0WxsJweWh9nR5Hgh/TUU8uW3sYCzCg==} 360 | engines: {node: '>= 10'} 361 | cpu: [arm64] 362 | os: [win32] 363 | requiresBuild: true 364 | dev: true 365 | optional: true 366 | 367 | /@tauri-apps/cli-win32-ia32-msvc@1.4.0: 368 | resolution: {integrity: sha512-JsetT/lTx/Zq98eo8T5CiRyF1nKeX04RO8JlJrI3ZOYsZpp/A5RJvMd/szQ17iOzwiHdge+tx7k2jHysR6oBlQ==} 369 | engines: {node: '>= 10'} 370 | cpu: [ia32] 371 | os: [win32] 372 | requiresBuild: true 373 | dev: true 374 | optional: true 375 | 376 | /@tauri-apps/cli-win32-x64-msvc@1.4.0: 377 | resolution: {integrity: sha512-z8Olcnwp5aYhzqUAarFjqF+oELCjuYWnB2HAJHlfsYNfDCAORY5kct3Fklz8PSsubC3U2EugWn8n42DwnThurg==} 378 | engines: {node: '>= 10'} 379 | cpu: [x64] 380 | os: [win32] 381 | requiresBuild: true 382 | dev: true 383 | optional: true 384 | 385 | /@tauri-apps/cli@1.4.0: 386 | resolution: {integrity: sha512-VXYr2i2iVFl98etQSQsqLzXgX96bnWiNZd1YADgatqwy/qecbd6Kl5ZAPB5R4ynsgE8A1gU7Fbzh7dCEQYFfmA==} 387 | engines: {node: '>= 10'} 388 | hasBin: true 389 | optionalDependencies: 390 | '@tauri-apps/cli-darwin-arm64': 1.4.0 391 | '@tauri-apps/cli-darwin-x64': 1.4.0 392 | '@tauri-apps/cli-linux-arm-gnueabihf': 1.4.0 393 | '@tauri-apps/cli-linux-arm64-gnu': 1.4.0 394 | '@tauri-apps/cli-linux-arm64-musl': 1.4.0 395 | '@tauri-apps/cli-linux-x64-gnu': 1.4.0 396 | '@tauri-apps/cli-linux-x64-musl': 1.4.0 397 | '@tauri-apps/cli-win32-arm64-msvc': 1.4.0 398 | '@tauri-apps/cli-win32-ia32-msvc': 1.4.0 399 | '@tauri-apps/cli-win32-x64-msvc': 1.4.0 400 | dev: true 401 | 402 | /@types/cors@2.8.13: 403 | resolution: {integrity: sha512-RG8AStHlUiV5ysZQKq97copd2UmVYw3/pRMLefISZ3S1hK104Cwm7iLQ3fTKx+lsUH2CE8FlLaYeEA2LSeqYUA==} 404 | dependencies: 405 | '@types/node': 20.2.4 406 | dev: true 407 | 408 | /@types/json5@0.0.29: 409 | resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 410 | dev: false 411 | 412 | /@types/node@20.2.4: 413 | resolution: {integrity: sha512-ni5f8Xlf4PwnT/Z3f0HURc3ZSw8UyrqMqmM3L5ysa7VjHu8c3FOmIo1nKCcLrV/OAmtf3N4kFna/aJqxsfEtnA==} 414 | 415 | /@types/prop-types@15.7.5: 416 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} 417 | dev: false 418 | 419 | /@types/react-dom@18.2.4: 420 | resolution: {integrity: sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==} 421 | dependencies: 422 | '@types/react': 18.2.7 423 | dev: false 424 | 425 | /@types/react@18.2.7: 426 | resolution: {integrity: sha512-ojrXpSH2XFCmHm7Jy3q44nXDyN54+EYKP2lBhJ2bqfyPj6cIUW/FZW/Csdia34NQgq7KYcAlHi5184m4X88+yw==} 427 | dependencies: 428 | '@types/prop-types': 15.7.5 429 | '@types/scheduler': 0.16.3 430 | csstype: 3.1.2 431 | dev: false 432 | 433 | /@types/scheduler@0.16.3: 434 | resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} 435 | dev: false 436 | 437 | /@typescript-eslint/parser@5.62.0(eslint@8.41.0)(typescript@5.0.4): 438 | resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} 439 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 440 | peerDependencies: 441 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 442 | typescript: '*' 443 | peerDependenciesMeta: 444 | typescript: 445 | optional: true 446 | dependencies: 447 | '@typescript-eslint/scope-manager': 5.62.0 448 | '@typescript-eslint/types': 5.62.0 449 | '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.0.4) 450 | debug: 4.3.4 451 | eslint: 8.41.0 452 | typescript: 5.0.4 453 | transitivePeerDependencies: 454 | - supports-color 455 | dev: false 456 | 457 | /@typescript-eslint/scope-manager@5.62.0: 458 | resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} 459 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 460 | dependencies: 461 | '@typescript-eslint/types': 5.62.0 462 | '@typescript-eslint/visitor-keys': 5.62.0 463 | dev: false 464 | 465 | /@typescript-eslint/types@5.62.0: 466 | resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} 467 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 468 | dev: false 469 | 470 | /@typescript-eslint/typescript-estree@5.62.0(typescript@5.0.4): 471 | resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} 472 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 473 | peerDependencies: 474 | typescript: '*' 475 | peerDependenciesMeta: 476 | typescript: 477 | optional: true 478 | dependencies: 479 | '@typescript-eslint/types': 5.62.0 480 | '@typescript-eslint/visitor-keys': 5.62.0 481 | debug: 4.3.4 482 | globby: 11.1.0 483 | is-glob: 4.0.3 484 | semver: 7.5.4 485 | tsutils: 3.21.0(typescript@5.0.4) 486 | typescript: 5.0.4 487 | transitivePeerDependencies: 488 | - supports-color 489 | dev: false 490 | 491 | /@typescript-eslint/visitor-keys@5.62.0: 492 | resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} 493 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 494 | dependencies: 495 | '@typescript-eslint/types': 5.62.0 496 | eslint-visitor-keys: 3.4.2 497 | dev: false 498 | 499 | /acorn-jsx@5.3.2(acorn@8.10.0): 500 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 501 | peerDependencies: 502 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 503 | dependencies: 504 | acorn: 8.10.0 505 | dev: false 506 | 507 | /acorn@8.10.0: 508 | resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} 509 | engines: {node: '>=0.4.0'} 510 | hasBin: true 511 | dev: false 512 | 513 | /ajv@6.12.6: 514 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 515 | dependencies: 516 | fast-deep-equal: 3.1.3 517 | fast-json-stable-stringify: 2.1.0 518 | json-schema-traverse: 0.4.1 519 | uri-js: 4.4.1 520 | dev: false 521 | 522 | /ansi-regex@5.0.1: 523 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 524 | engines: {node: '>=8'} 525 | dev: false 526 | 527 | /ansi-styles@4.3.0: 528 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 529 | engines: {node: '>=8'} 530 | dependencies: 531 | color-convert: 2.0.1 532 | dev: false 533 | 534 | /any-promise@1.3.0: 535 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} 536 | dev: false 537 | 538 | /anymatch@3.1.3: 539 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 540 | engines: {node: '>= 8'} 541 | dependencies: 542 | normalize-path: 3.0.0 543 | picomatch: 2.3.1 544 | dev: false 545 | 546 | /arg@5.0.2: 547 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} 548 | dev: false 549 | 550 | /argparse@2.0.1: 551 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 552 | dev: false 553 | 554 | /aria-query@5.3.0: 555 | resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} 556 | dependencies: 557 | dequal: 2.0.3 558 | dev: false 559 | 560 | /array-buffer-byte-length@1.0.0: 561 | resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 562 | dependencies: 563 | call-bind: 1.0.2 564 | is-array-buffer: 3.0.2 565 | dev: false 566 | 567 | /array-includes@3.1.6: 568 | resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} 569 | engines: {node: '>= 0.4'} 570 | dependencies: 571 | call-bind: 1.0.2 572 | define-properties: 1.2.0 573 | es-abstract: 1.22.1 574 | get-intrinsic: 1.2.1 575 | is-string: 1.0.7 576 | dev: false 577 | 578 | /array-union@2.1.0: 579 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 580 | engines: {node: '>=8'} 581 | dev: false 582 | 583 | /array.prototype.findlastindex@1.2.2: 584 | resolution: {integrity: sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==} 585 | engines: {node: '>= 0.4'} 586 | dependencies: 587 | call-bind: 1.0.2 588 | define-properties: 1.2.0 589 | es-abstract: 1.22.1 590 | es-shim-unscopables: 1.0.0 591 | get-intrinsic: 1.2.1 592 | dev: false 593 | 594 | /array.prototype.flat@1.3.1: 595 | resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} 596 | engines: {node: '>= 0.4'} 597 | dependencies: 598 | call-bind: 1.0.2 599 | define-properties: 1.2.0 600 | es-abstract: 1.22.1 601 | es-shim-unscopables: 1.0.0 602 | dev: false 603 | 604 | /array.prototype.flatmap@1.3.1: 605 | resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} 606 | engines: {node: '>= 0.4'} 607 | dependencies: 608 | call-bind: 1.0.2 609 | define-properties: 1.2.0 610 | es-abstract: 1.22.1 611 | es-shim-unscopables: 1.0.0 612 | dev: false 613 | 614 | /array.prototype.tosorted@1.1.1: 615 | resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} 616 | dependencies: 617 | call-bind: 1.0.2 618 | define-properties: 1.2.0 619 | es-abstract: 1.22.1 620 | es-shim-unscopables: 1.0.0 621 | get-intrinsic: 1.2.1 622 | dev: false 623 | 624 | /arraybuffer.prototype.slice@1.0.1: 625 | resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==} 626 | engines: {node: '>= 0.4'} 627 | dependencies: 628 | array-buffer-byte-length: 1.0.0 629 | call-bind: 1.0.2 630 | define-properties: 1.2.0 631 | get-intrinsic: 1.2.1 632 | is-array-buffer: 3.0.2 633 | is-shared-array-buffer: 1.0.2 634 | dev: false 635 | 636 | /ast-types-flow@0.0.7: 637 | resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} 638 | dev: false 639 | 640 | /autoprefixer@10.4.14(postcss@8.4.23): 641 | resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==} 642 | engines: {node: ^10 || ^12 || >=14} 643 | hasBin: true 644 | peerDependencies: 645 | postcss: ^8.1.0 646 | dependencies: 647 | browserslist: 4.21.10 648 | caniuse-lite: 1.0.30001519 649 | fraction.js: 4.2.0 650 | normalize-range: 0.1.2 651 | picocolors: 1.0.0 652 | postcss: 8.4.23 653 | postcss-value-parser: 4.2.0 654 | dev: false 655 | 656 | /available-typed-arrays@1.0.5: 657 | resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 658 | engines: {node: '>= 0.4'} 659 | dev: false 660 | 661 | /axe-core@4.7.2: 662 | resolution: {integrity: sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==} 663 | engines: {node: '>=4'} 664 | dev: false 665 | 666 | /axobject-query@3.2.1: 667 | resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==} 668 | dependencies: 669 | dequal: 2.0.3 670 | dev: false 671 | 672 | /balanced-match@1.0.2: 673 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 674 | dev: false 675 | 676 | /binary-extensions@2.2.0: 677 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} 678 | engines: {node: '>=8'} 679 | dev: false 680 | 681 | /brace-expansion@1.1.11: 682 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 683 | dependencies: 684 | balanced-match: 1.0.2 685 | concat-map: 0.0.1 686 | dev: false 687 | 688 | /braces@3.0.2: 689 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 690 | engines: {node: '>=8'} 691 | dependencies: 692 | fill-range: 7.0.1 693 | dev: false 694 | 695 | /browserslist@4.21.10: 696 | resolution: {integrity: sha512-bipEBdZfVH5/pwrvqc+Ub0kUPVfGUhlKxbvfD+z1BDnPEO/X98ruXGA1WP5ASpAFKan7Qr6j736IacbZQuAlKQ==} 697 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 698 | hasBin: true 699 | dependencies: 700 | caniuse-lite: 1.0.30001519 701 | electron-to-chromium: 1.4.488 702 | node-releases: 2.0.13 703 | update-browserslist-db: 1.0.11(browserslist@4.21.10) 704 | dev: false 705 | 706 | /busboy@1.6.0: 707 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 708 | engines: {node: '>=10.16.0'} 709 | dependencies: 710 | streamsearch: 1.1.0 711 | dev: false 712 | 713 | /call-bind@1.0.2: 714 | resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 715 | dependencies: 716 | function-bind: 1.1.1 717 | get-intrinsic: 1.2.1 718 | dev: false 719 | 720 | /callsites@3.1.0: 721 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 722 | engines: {node: '>=6'} 723 | dev: false 724 | 725 | /camelcase-css@2.0.1: 726 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==} 727 | engines: {node: '>= 6'} 728 | dev: false 729 | 730 | /caniuse-lite@1.0.30001519: 731 | resolution: {integrity: sha512-0QHgqR+Jv4bxHMp8kZ1Kn8CH55OikjKJ6JmKkZYP1F3D7w+lnFXF70nG5eNfsZS89jadi5Ywy5UCSKLAglIRkg==} 732 | dev: false 733 | 734 | /chalk@4.1.2: 735 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 736 | engines: {node: '>=10'} 737 | dependencies: 738 | ansi-styles: 4.3.0 739 | supports-color: 7.2.0 740 | dev: false 741 | 742 | /chokidar@3.5.3: 743 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} 744 | engines: {node: '>= 8.10.0'} 745 | dependencies: 746 | anymatch: 3.1.3 747 | braces: 3.0.2 748 | glob-parent: 5.1.2 749 | is-binary-path: 2.1.0 750 | is-glob: 4.0.3 751 | normalize-path: 3.0.0 752 | readdirp: 3.6.0 753 | optionalDependencies: 754 | fsevents: 2.3.2 755 | dev: false 756 | 757 | /client-only@0.0.1: 758 | resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 759 | dev: false 760 | 761 | /cliui@8.0.1: 762 | resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 763 | engines: {node: '>=12'} 764 | dependencies: 765 | string-width: 4.2.3 766 | strip-ansi: 6.0.1 767 | wrap-ansi: 7.0.0 768 | dev: false 769 | 770 | /color-convert@2.0.1: 771 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 772 | engines: {node: '>=7.0.0'} 773 | dependencies: 774 | color-name: 1.1.4 775 | dev: false 776 | 777 | /color-name@1.1.4: 778 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 779 | dev: false 780 | 781 | /commander@4.1.1: 782 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} 783 | engines: {node: '>= 6'} 784 | dev: false 785 | 786 | /concat-map@0.0.1: 787 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 788 | dev: false 789 | 790 | /concurrently@8.0.1: 791 | resolution: {integrity: sha512-Sh8bGQMEL0TAmAm2meAXMjcASHZa7V0xXQVDBLknCPa9TPtkY9yYs+0cnGGgfdkW0SV1Mlg+hVGfXcoI8d3MJA==} 792 | engines: {node: ^14.13.0 || >=16.0.0} 793 | hasBin: true 794 | dependencies: 795 | chalk: 4.1.2 796 | date-fns: 2.30.0 797 | lodash: 4.17.21 798 | rxjs: 7.8.1 799 | shell-quote: 1.8.1 800 | spawn-command: 0.0.2-1 801 | supports-color: 8.1.1 802 | tree-kill: 1.2.2 803 | yargs: 17.7.2 804 | dev: false 805 | 806 | /cors@2.8.5: 807 | resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==} 808 | engines: {node: '>= 0.10'} 809 | dependencies: 810 | object-assign: 4.1.1 811 | vary: 1.1.2 812 | dev: false 813 | 814 | /cross-spawn@7.0.3: 815 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 816 | engines: {node: '>= 8'} 817 | dependencies: 818 | path-key: 3.1.1 819 | shebang-command: 2.0.0 820 | which: 2.0.2 821 | dev: false 822 | 823 | /cssesc@3.0.0: 824 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 825 | engines: {node: '>=4'} 826 | hasBin: true 827 | dev: false 828 | 829 | /csstype@3.1.2: 830 | resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} 831 | dev: false 832 | 833 | /damerau-levenshtein@1.0.8: 834 | resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 835 | dev: false 836 | 837 | /date-fns@2.30.0: 838 | resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} 839 | engines: {node: '>=0.11'} 840 | dependencies: 841 | '@babel/runtime': 7.22.10 842 | dev: false 843 | 844 | /debug@3.2.7: 845 | resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 846 | peerDependencies: 847 | supports-color: '*' 848 | peerDependenciesMeta: 849 | supports-color: 850 | optional: true 851 | dependencies: 852 | ms: 2.1.3 853 | dev: false 854 | 855 | /debug@4.3.4: 856 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 857 | engines: {node: '>=6.0'} 858 | peerDependencies: 859 | supports-color: '*' 860 | peerDependenciesMeta: 861 | supports-color: 862 | optional: true 863 | dependencies: 864 | ms: 2.1.2 865 | dev: false 866 | 867 | /deep-is@0.1.4: 868 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 869 | dev: false 870 | 871 | /define-properties@1.2.0: 872 | resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} 873 | engines: {node: '>= 0.4'} 874 | dependencies: 875 | has-property-descriptors: 1.0.0 876 | object-keys: 1.1.1 877 | dev: false 878 | 879 | /dequal@2.0.3: 880 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 881 | engines: {node: '>=6'} 882 | dev: false 883 | 884 | /didyoumean@1.2.2: 885 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} 886 | dev: false 887 | 888 | /dir-glob@3.0.1: 889 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 890 | engines: {node: '>=8'} 891 | dependencies: 892 | path-type: 4.0.0 893 | dev: false 894 | 895 | /dlv@1.1.3: 896 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 897 | dev: false 898 | 899 | /doctrine@2.1.0: 900 | resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 901 | engines: {node: '>=0.10.0'} 902 | dependencies: 903 | esutils: 2.0.3 904 | dev: false 905 | 906 | /doctrine@3.0.0: 907 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 908 | engines: {node: '>=6.0.0'} 909 | dependencies: 910 | esutils: 2.0.3 911 | dev: false 912 | 913 | /electron-to-chromium@1.4.488: 914 | resolution: {integrity: sha512-Dv4sTjiW7t/UWGL+H8ZkgIjtUAVZDgb/PwGWvMsCT7jipzUV/u5skbLXPFKb6iV0tiddVi/bcS2/kUrczeWgIQ==} 915 | dev: false 916 | 917 | /emoji-regex@8.0.0: 918 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 919 | dev: false 920 | 921 | /emoji-regex@9.2.2: 922 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 923 | dev: false 924 | 925 | /enhanced-resolve@5.15.0: 926 | resolution: {integrity: sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==} 927 | engines: {node: '>=10.13.0'} 928 | dependencies: 929 | graceful-fs: 4.2.11 930 | tapable: 2.2.1 931 | dev: false 932 | 933 | /es-abstract@1.22.1: 934 | resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==} 935 | engines: {node: '>= 0.4'} 936 | dependencies: 937 | array-buffer-byte-length: 1.0.0 938 | arraybuffer.prototype.slice: 1.0.1 939 | available-typed-arrays: 1.0.5 940 | call-bind: 1.0.2 941 | es-set-tostringtag: 2.0.1 942 | es-to-primitive: 1.2.1 943 | function.prototype.name: 1.1.5 944 | get-intrinsic: 1.2.1 945 | get-symbol-description: 1.0.0 946 | globalthis: 1.0.3 947 | gopd: 1.0.1 948 | has: 1.0.3 949 | has-property-descriptors: 1.0.0 950 | has-proto: 1.0.1 951 | has-symbols: 1.0.3 952 | internal-slot: 1.0.5 953 | is-array-buffer: 3.0.2 954 | is-callable: 1.2.7 955 | is-negative-zero: 2.0.2 956 | is-regex: 1.1.4 957 | is-shared-array-buffer: 1.0.2 958 | is-string: 1.0.7 959 | is-typed-array: 1.1.12 960 | is-weakref: 1.0.2 961 | object-inspect: 1.12.3 962 | object-keys: 1.1.1 963 | object.assign: 4.1.4 964 | regexp.prototype.flags: 1.5.0 965 | safe-array-concat: 1.0.0 966 | safe-regex-test: 1.0.0 967 | string.prototype.trim: 1.2.7 968 | string.prototype.trimend: 1.0.6 969 | string.prototype.trimstart: 1.0.6 970 | typed-array-buffer: 1.0.0 971 | typed-array-byte-length: 1.0.0 972 | typed-array-byte-offset: 1.0.0 973 | typed-array-length: 1.0.4 974 | unbox-primitive: 1.0.2 975 | which-typed-array: 1.1.11 976 | dev: false 977 | 978 | /es-set-tostringtag@2.0.1: 979 | resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} 980 | engines: {node: '>= 0.4'} 981 | dependencies: 982 | get-intrinsic: 1.2.1 983 | has: 1.0.3 984 | has-tostringtag: 1.0.0 985 | dev: false 986 | 987 | /es-shim-unscopables@1.0.0: 988 | resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 989 | dependencies: 990 | has: 1.0.3 991 | dev: false 992 | 993 | /es-to-primitive@1.2.1: 994 | resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 995 | engines: {node: '>= 0.4'} 996 | dependencies: 997 | is-callable: 1.2.7 998 | is-date-object: 1.0.5 999 | is-symbol: 1.0.4 1000 | dev: false 1001 | 1002 | /escalade@3.1.1: 1003 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} 1004 | engines: {node: '>=6'} 1005 | dev: false 1006 | 1007 | /escape-string-regexp@4.0.0: 1008 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1009 | engines: {node: '>=10'} 1010 | dev: false 1011 | 1012 | /eslint-config-next@13.4.4(eslint@8.41.0)(typescript@5.0.4): 1013 | resolution: {integrity: sha512-z/PMbm6L0iC/fwISULxe8IVy4DtNqZk2wQY711o35klenq70O6ns82A8yuMVCFjHC0DIyB2lyugesRtuk9u8dQ==} 1014 | peerDependencies: 1015 | eslint: ^7.23.0 || ^8.0.0 1016 | typescript: '>=3.3.1' 1017 | peerDependenciesMeta: 1018 | typescript: 1019 | optional: true 1020 | dependencies: 1021 | '@next/eslint-plugin-next': 13.4.4 1022 | '@rushstack/eslint-patch': 1.3.3 1023 | '@typescript-eslint/parser': 5.62.0(eslint@8.41.0)(typescript@5.0.4) 1024 | eslint: 8.41.0 1025 | eslint-import-resolver-node: 0.3.9 1026 | eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.0)(eslint@8.41.0) 1027 | eslint-plugin-import: 2.28.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.41.0) 1028 | eslint-plugin-jsx-a11y: 6.7.1(eslint@8.41.0) 1029 | eslint-plugin-react: 7.33.1(eslint@8.41.0) 1030 | eslint-plugin-react-hooks: 4.6.0(eslint@8.41.0) 1031 | typescript: 5.0.4 1032 | transitivePeerDependencies: 1033 | - eslint-import-resolver-webpack 1034 | - supports-color 1035 | dev: false 1036 | 1037 | /eslint-import-resolver-node@0.3.9: 1038 | resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} 1039 | dependencies: 1040 | debug: 3.2.7 1041 | is-core-module: 2.13.0 1042 | resolve: 1.22.4 1043 | transitivePeerDependencies: 1044 | - supports-color 1045 | dev: false 1046 | 1047 | /eslint-import-resolver-typescript@3.6.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.0)(eslint@8.41.0): 1048 | resolution: {integrity: sha512-QTHR9ddNnn35RTxlaEnx2gCxqFlF2SEN0SE2d17SqwyM7YOSI2GHWRYp5BiRkObTUNYPupC/3Fq2a0PpT+EKpg==} 1049 | engines: {node: ^14.18.0 || >=16.0.0} 1050 | peerDependencies: 1051 | eslint: '*' 1052 | eslint-plugin-import: '*' 1053 | dependencies: 1054 | debug: 4.3.4 1055 | enhanced-resolve: 5.15.0 1056 | eslint: 8.41.0 1057 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.41.0) 1058 | eslint-plugin-import: 2.28.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.41.0) 1059 | fast-glob: 3.3.1 1060 | get-tsconfig: 4.6.2 1061 | is-core-module: 2.13.0 1062 | is-glob: 4.0.3 1063 | transitivePeerDependencies: 1064 | - '@typescript-eslint/parser' 1065 | - eslint-import-resolver-node 1066 | - eslint-import-resolver-webpack 1067 | - supports-color 1068 | dev: false 1069 | 1070 | /eslint-module-utils@2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.41.0): 1071 | resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 1072 | engines: {node: '>=4'} 1073 | peerDependencies: 1074 | '@typescript-eslint/parser': '*' 1075 | eslint: '*' 1076 | eslint-import-resolver-node: '*' 1077 | eslint-import-resolver-typescript: '*' 1078 | eslint-import-resolver-webpack: '*' 1079 | peerDependenciesMeta: 1080 | '@typescript-eslint/parser': 1081 | optional: true 1082 | eslint: 1083 | optional: true 1084 | eslint-import-resolver-node: 1085 | optional: true 1086 | eslint-import-resolver-typescript: 1087 | optional: true 1088 | eslint-import-resolver-webpack: 1089 | optional: true 1090 | dependencies: 1091 | '@typescript-eslint/parser': 5.62.0(eslint@8.41.0)(typescript@5.0.4) 1092 | debug: 3.2.7 1093 | eslint: 8.41.0 1094 | eslint-import-resolver-node: 0.3.9 1095 | eslint-import-resolver-typescript: 3.6.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.28.0)(eslint@8.41.0) 1096 | transitivePeerDependencies: 1097 | - supports-color 1098 | dev: false 1099 | 1100 | /eslint-plugin-import@2.28.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-typescript@3.6.0)(eslint@8.41.0): 1101 | resolution: {integrity: sha512-B8s/n+ZluN7sxj9eUf7/pRFERX0r5bnFA2dCaLHy2ZeaQEAz0k+ZZkFWRFHJAqxfxQDx6KLv9LeIki7cFdwW+Q==} 1102 | engines: {node: '>=4'} 1103 | peerDependencies: 1104 | '@typescript-eslint/parser': '*' 1105 | eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1106 | peerDependenciesMeta: 1107 | '@typescript-eslint/parser': 1108 | optional: true 1109 | dependencies: 1110 | '@typescript-eslint/parser': 5.62.0(eslint@8.41.0)(typescript@5.0.4) 1111 | array-includes: 3.1.6 1112 | array.prototype.findlastindex: 1.2.2 1113 | array.prototype.flat: 1.3.1 1114 | array.prototype.flatmap: 1.3.1 1115 | debug: 3.2.7 1116 | doctrine: 2.1.0 1117 | eslint: 8.41.0 1118 | eslint-import-resolver-node: 0.3.9 1119 | eslint-module-utils: 2.8.0(@typescript-eslint/parser@5.62.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.0)(eslint@8.41.0) 1120 | has: 1.0.3 1121 | is-core-module: 2.13.0 1122 | is-glob: 4.0.3 1123 | minimatch: 3.1.2 1124 | object.fromentries: 2.0.6 1125 | object.groupby: 1.0.0 1126 | object.values: 1.1.6 1127 | resolve: 1.22.4 1128 | semver: 6.3.1 1129 | tsconfig-paths: 3.14.2 1130 | transitivePeerDependencies: 1131 | - eslint-import-resolver-typescript 1132 | - eslint-import-resolver-webpack 1133 | - supports-color 1134 | dev: false 1135 | 1136 | /eslint-plugin-jsx-a11y@6.7.1(eslint@8.41.0): 1137 | resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} 1138 | engines: {node: '>=4.0'} 1139 | peerDependencies: 1140 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1141 | dependencies: 1142 | '@babel/runtime': 7.22.10 1143 | aria-query: 5.3.0 1144 | array-includes: 3.1.6 1145 | array.prototype.flatmap: 1.3.1 1146 | ast-types-flow: 0.0.7 1147 | axe-core: 4.7.2 1148 | axobject-query: 3.2.1 1149 | damerau-levenshtein: 1.0.8 1150 | emoji-regex: 9.2.2 1151 | eslint: 8.41.0 1152 | has: 1.0.3 1153 | jsx-ast-utils: 3.3.5 1154 | language-tags: 1.0.5 1155 | minimatch: 3.1.2 1156 | object.entries: 1.1.6 1157 | object.fromentries: 2.0.6 1158 | semver: 6.3.1 1159 | dev: false 1160 | 1161 | /eslint-plugin-react-hooks@4.6.0(eslint@8.41.0): 1162 | resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 1163 | engines: {node: '>=10'} 1164 | peerDependencies: 1165 | eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1166 | dependencies: 1167 | eslint: 8.41.0 1168 | dev: false 1169 | 1170 | /eslint-plugin-react@7.33.1(eslint@8.41.0): 1171 | resolution: {integrity: sha512-L093k0WAMvr6VhNwReB8VgOq5s2LesZmrpPdKz/kZElQDzqS7G7+DnKoqT+w4JwuiGeAhAvHO0fvy0Eyk4ejDA==} 1172 | engines: {node: '>=4'} 1173 | peerDependencies: 1174 | eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1175 | dependencies: 1176 | array-includes: 3.1.6 1177 | array.prototype.flatmap: 1.3.1 1178 | array.prototype.tosorted: 1.1.1 1179 | doctrine: 2.1.0 1180 | eslint: 8.41.0 1181 | estraverse: 5.3.0 1182 | jsx-ast-utils: 3.3.5 1183 | minimatch: 3.1.2 1184 | object.entries: 1.1.6 1185 | object.fromentries: 2.0.6 1186 | object.hasown: 1.1.2 1187 | object.values: 1.1.6 1188 | prop-types: 15.8.1 1189 | resolve: 2.0.0-next.4 1190 | semver: 6.3.1 1191 | string.prototype.matchall: 4.0.8 1192 | dev: false 1193 | 1194 | /eslint-scope@7.2.2: 1195 | resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} 1196 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1197 | dependencies: 1198 | esrecurse: 4.3.0 1199 | estraverse: 5.3.0 1200 | dev: false 1201 | 1202 | /eslint-visitor-keys@3.4.2: 1203 | resolution: {integrity: sha512-8drBzUEyZ2llkpCA67iYrgEssKDUu68V8ChqqOfFupIaG/LCVPUT+CoGJpT77zJprs4T/W7p07LP7zAIMuweVw==} 1204 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1205 | dev: false 1206 | 1207 | /eslint@8.41.0: 1208 | resolution: {integrity: sha512-WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q==} 1209 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1210 | hasBin: true 1211 | dependencies: 1212 | '@eslint-community/eslint-utils': 4.4.0(eslint@8.41.0) 1213 | '@eslint-community/regexpp': 4.6.2 1214 | '@eslint/eslintrc': 2.1.1 1215 | '@eslint/js': 8.41.0 1216 | '@humanwhocodes/config-array': 0.11.10 1217 | '@humanwhocodes/module-importer': 1.0.1 1218 | '@nodelib/fs.walk': 1.2.8 1219 | ajv: 6.12.6 1220 | chalk: 4.1.2 1221 | cross-spawn: 7.0.3 1222 | debug: 4.3.4 1223 | doctrine: 3.0.0 1224 | escape-string-regexp: 4.0.0 1225 | eslint-scope: 7.2.2 1226 | eslint-visitor-keys: 3.4.2 1227 | espree: 9.6.1 1228 | esquery: 1.5.0 1229 | esutils: 2.0.3 1230 | fast-deep-equal: 3.1.3 1231 | file-entry-cache: 6.0.1 1232 | find-up: 5.0.0 1233 | glob-parent: 6.0.2 1234 | globals: 13.20.0 1235 | graphemer: 1.4.0 1236 | ignore: 5.2.4 1237 | import-fresh: 3.3.0 1238 | imurmurhash: 0.1.4 1239 | is-glob: 4.0.3 1240 | is-path-inside: 3.0.3 1241 | js-yaml: 4.1.0 1242 | json-stable-stringify-without-jsonify: 1.0.1 1243 | levn: 0.4.1 1244 | lodash.merge: 4.6.2 1245 | minimatch: 3.1.2 1246 | natural-compare: 1.4.0 1247 | optionator: 0.9.3 1248 | strip-ansi: 6.0.1 1249 | strip-json-comments: 3.1.1 1250 | text-table: 0.2.0 1251 | transitivePeerDependencies: 1252 | - supports-color 1253 | dev: false 1254 | 1255 | /espree@9.6.1: 1256 | resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 1257 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1258 | dependencies: 1259 | acorn: 8.10.0 1260 | acorn-jsx: 5.3.2(acorn@8.10.0) 1261 | eslint-visitor-keys: 3.4.2 1262 | dev: false 1263 | 1264 | /esquery@1.5.0: 1265 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1266 | engines: {node: '>=0.10'} 1267 | dependencies: 1268 | estraverse: 5.3.0 1269 | dev: false 1270 | 1271 | /esrecurse@4.3.0: 1272 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1273 | engines: {node: '>=4.0'} 1274 | dependencies: 1275 | estraverse: 5.3.0 1276 | dev: false 1277 | 1278 | /estraverse@5.3.0: 1279 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1280 | engines: {node: '>=4.0'} 1281 | dev: false 1282 | 1283 | /esutils@2.0.3: 1284 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1285 | engines: {node: '>=0.10.0'} 1286 | dev: false 1287 | 1288 | /fast-deep-equal@3.1.3: 1289 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1290 | dev: false 1291 | 1292 | /fast-glob@3.3.1: 1293 | resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 1294 | engines: {node: '>=8.6.0'} 1295 | dependencies: 1296 | '@nodelib/fs.stat': 2.0.5 1297 | '@nodelib/fs.walk': 1.2.8 1298 | glob-parent: 5.1.2 1299 | merge2: 1.4.1 1300 | micromatch: 4.0.5 1301 | dev: false 1302 | 1303 | /fast-json-stable-stringify@2.1.0: 1304 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1305 | dev: false 1306 | 1307 | /fast-levenshtein@2.0.6: 1308 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1309 | dev: false 1310 | 1311 | /fastq@1.15.0: 1312 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 1313 | dependencies: 1314 | reusify: 1.0.4 1315 | dev: false 1316 | 1317 | /file-entry-cache@6.0.1: 1318 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1319 | engines: {node: ^10.12.0 || >=12.0.0} 1320 | dependencies: 1321 | flat-cache: 3.0.4 1322 | dev: false 1323 | 1324 | /fill-range@7.0.1: 1325 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1326 | engines: {node: '>=8'} 1327 | dependencies: 1328 | to-regex-range: 5.0.1 1329 | dev: false 1330 | 1331 | /find-up@5.0.0: 1332 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1333 | engines: {node: '>=10'} 1334 | dependencies: 1335 | locate-path: 6.0.0 1336 | path-exists: 4.0.0 1337 | dev: false 1338 | 1339 | /flat-cache@3.0.4: 1340 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1341 | engines: {node: ^10.12.0 || >=12.0.0} 1342 | dependencies: 1343 | flatted: 3.2.7 1344 | rimraf: 3.0.2 1345 | dev: false 1346 | 1347 | /flatted@3.2.7: 1348 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 1349 | dev: false 1350 | 1351 | /for-each@0.3.3: 1352 | resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1353 | dependencies: 1354 | is-callable: 1.2.7 1355 | dev: false 1356 | 1357 | /fraction.js@4.2.0: 1358 | resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==} 1359 | dev: false 1360 | 1361 | /fs.realpath@1.0.0: 1362 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1363 | dev: false 1364 | 1365 | /fsevents@2.3.2: 1366 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==} 1367 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 1368 | os: [darwin] 1369 | requiresBuild: true 1370 | dev: false 1371 | optional: true 1372 | 1373 | /function-bind@1.1.1: 1374 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1375 | dev: false 1376 | 1377 | /function.prototype.name@1.1.5: 1378 | resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 1379 | engines: {node: '>= 0.4'} 1380 | dependencies: 1381 | call-bind: 1.0.2 1382 | define-properties: 1.2.0 1383 | es-abstract: 1.22.1 1384 | functions-have-names: 1.2.3 1385 | dev: false 1386 | 1387 | /functions-have-names@1.2.3: 1388 | resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1389 | dev: false 1390 | 1391 | /get-caller-file@2.0.5: 1392 | resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 1393 | engines: {node: 6.* || 8.* || >= 10.*} 1394 | dev: false 1395 | 1396 | /get-intrinsic@1.2.1: 1397 | resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} 1398 | dependencies: 1399 | function-bind: 1.1.1 1400 | has: 1.0.3 1401 | has-proto: 1.0.1 1402 | has-symbols: 1.0.3 1403 | dev: false 1404 | 1405 | /get-symbol-description@1.0.0: 1406 | resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1407 | engines: {node: '>= 0.4'} 1408 | dependencies: 1409 | call-bind: 1.0.2 1410 | get-intrinsic: 1.2.1 1411 | dev: false 1412 | 1413 | /get-tsconfig@4.6.2: 1414 | resolution: {integrity: sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==} 1415 | dependencies: 1416 | resolve-pkg-maps: 1.0.0 1417 | dev: false 1418 | 1419 | /glob-parent@5.1.2: 1420 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1421 | engines: {node: '>= 6'} 1422 | dependencies: 1423 | is-glob: 4.0.3 1424 | dev: false 1425 | 1426 | /glob-parent@6.0.2: 1427 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1428 | engines: {node: '>=10.13.0'} 1429 | dependencies: 1430 | is-glob: 4.0.3 1431 | dev: false 1432 | 1433 | /glob@7.1.6: 1434 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==} 1435 | dependencies: 1436 | fs.realpath: 1.0.0 1437 | inflight: 1.0.6 1438 | inherits: 2.0.4 1439 | minimatch: 3.1.2 1440 | once: 1.4.0 1441 | path-is-absolute: 1.0.1 1442 | dev: false 1443 | 1444 | /glob@7.1.7: 1445 | resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 1446 | dependencies: 1447 | fs.realpath: 1.0.0 1448 | inflight: 1.0.6 1449 | inherits: 2.0.4 1450 | minimatch: 3.1.2 1451 | once: 1.4.0 1452 | path-is-absolute: 1.0.1 1453 | dev: false 1454 | 1455 | /glob@7.2.3: 1456 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1457 | dependencies: 1458 | fs.realpath: 1.0.0 1459 | inflight: 1.0.6 1460 | inherits: 2.0.4 1461 | minimatch: 3.1.2 1462 | once: 1.4.0 1463 | path-is-absolute: 1.0.1 1464 | dev: false 1465 | 1466 | /globals@13.20.0: 1467 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} 1468 | engines: {node: '>=8'} 1469 | dependencies: 1470 | type-fest: 0.20.2 1471 | dev: false 1472 | 1473 | /globalthis@1.0.3: 1474 | resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1475 | engines: {node: '>= 0.4'} 1476 | dependencies: 1477 | define-properties: 1.2.0 1478 | dev: false 1479 | 1480 | /globby@11.1.0: 1481 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1482 | engines: {node: '>=10'} 1483 | dependencies: 1484 | array-union: 2.1.0 1485 | dir-glob: 3.0.1 1486 | fast-glob: 3.3.1 1487 | ignore: 5.2.4 1488 | merge2: 1.4.1 1489 | slash: 3.0.0 1490 | dev: false 1491 | 1492 | /gopd@1.0.1: 1493 | resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1494 | dependencies: 1495 | get-intrinsic: 1.2.1 1496 | dev: false 1497 | 1498 | /graceful-fs@4.2.11: 1499 | resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1500 | dev: false 1501 | 1502 | /graphemer@1.4.0: 1503 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 1504 | dev: false 1505 | 1506 | /has-bigints@1.0.2: 1507 | resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1508 | dev: false 1509 | 1510 | /has-flag@4.0.0: 1511 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1512 | engines: {node: '>=8'} 1513 | dev: false 1514 | 1515 | /has-property-descriptors@1.0.0: 1516 | resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 1517 | dependencies: 1518 | get-intrinsic: 1.2.1 1519 | dev: false 1520 | 1521 | /has-proto@1.0.1: 1522 | resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 1523 | engines: {node: '>= 0.4'} 1524 | dev: false 1525 | 1526 | /has-symbols@1.0.3: 1527 | resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1528 | engines: {node: '>= 0.4'} 1529 | dev: false 1530 | 1531 | /has-tostringtag@1.0.0: 1532 | resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 1533 | engines: {node: '>= 0.4'} 1534 | dependencies: 1535 | has-symbols: 1.0.3 1536 | dev: false 1537 | 1538 | /has@1.0.3: 1539 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1540 | engines: {node: '>= 0.4.0'} 1541 | dependencies: 1542 | function-bind: 1.1.1 1543 | dev: false 1544 | 1545 | /ignore@5.2.4: 1546 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 1547 | engines: {node: '>= 4'} 1548 | dev: false 1549 | 1550 | /import-fresh@3.3.0: 1551 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1552 | engines: {node: '>=6'} 1553 | dependencies: 1554 | parent-module: 1.0.1 1555 | resolve-from: 4.0.0 1556 | dev: false 1557 | 1558 | /imurmurhash@0.1.4: 1559 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1560 | engines: {node: '>=0.8.19'} 1561 | dev: false 1562 | 1563 | /inflight@1.0.6: 1564 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1565 | dependencies: 1566 | once: 1.4.0 1567 | wrappy: 1.0.2 1568 | dev: false 1569 | 1570 | /inherits@2.0.4: 1571 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 1572 | dev: false 1573 | 1574 | /internal-slot@1.0.5: 1575 | resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} 1576 | engines: {node: '>= 0.4'} 1577 | dependencies: 1578 | get-intrinsic: 1.2.1 1579 | has: 1.0.3 1580 | side-channel: 1.0.4 1581 | dev: false 1582 | 1583 | /is-array-buffer@3.0.2: 1584 | resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 1585 | dependencies: 1586 | call-bind: 1.0.2 1587 | get-intrinsic: 1.2.1 1588 | is-typed-array: 1.1.12 1589 | dev: false 1590 | 1591 | /is-bigint@1.0.4: 1592 | resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 1593 | dependencies: 1594 | has-bigints: 1.0.2 1595 | dev: false 1596 | 1597 | /is-binary-path@2.1.0: 1598 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} 1599 | engines: {node: '>=8'} 1600 | dependencies: 1601 | binary-extensions: 2.2.0 1602 | dev: false 1603 | 1604 | /is-boolean-object@1.1.2: 1605 | resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 1606 | engines: {node: '>= 0.4'} 1607 | dependencies: 1608 | call-bind: 1.0.2 1609 | has-tostringtag: 1.0.0 1610 | dev: false 1611 | 1612 | /is-callable@1.2.7: 1613 | resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 1614 | engines: {node: '>= 0.4'} 1615 | dev: false 1616 | 1617 | /is-core-module@2.13.0: 1618 | resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} 1619 | dependencies: 1620 | has: 1.0.3 1621 | dev: false 1622 | 1623 | /is-date-object@1.0.5: 1624 | resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 1625 | engines: {node: '>= 0.4'} 1626 | dependencies: 1627 | has-tostringtag: 1.0.0 1628 | dev: false 1629 | 1630 | /is-extglob@2.1.1: 1631 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 1632 | engines: {node: '>=0.10.0'} 1633 | dev: false 1634 | 1635 | /is-fullwidth-code-point@3.0.0: 1636 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 1637 | engines: {node: '>=8'} 1638 | dev: false 1639 | 1640 | /is-glob@4.0.3: 1641 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 1642 | engines: {node: '>=0.10.0'} 1643 | dependencies: 1644 | is-extglob: 2.1.1 1645 | dev: false 1646 | 1647 | /is-negative-zero@2.0.2: 1648 | resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 1649 | engines: {node: '>= 0.4'} 1650 | dev: false 1651 | 1652 | /is-number-object@1.0.7: 1653 | resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 1654 | engines: {node: '>= 0.4'} 1655 | dependencies: 1656 | has-tostringtag: 1.0.0 1657 | dev: false 1658 | 1659 | /is-number@7.0.0: 1660 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 1661 | engines: {node: '>=0.12.0'} 1662 | dev: false 1663 | 1664 | /is-path-inside@3.0.3: 1665 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 1666 | engines: {node: '>=8'} 1667 | dev: false 1668 | 1669 | /is-regex@1.1.4: 1670 | resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 1671 | engines: {node: '>= 0.4'} 1672 | dependencies: 1673 | call-bind: 1.0.2 1674 | has-tostringtag: 1.0.0 1675 | dev: false 1676 | 1677 | /is-shared-array-buffer@1.0.2: 1678 | resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 1679 | dependencies: 1680 | call-bind: 1.0.2 1681 | dev: false 1682 | 1683 | /is-string@1.0.7: 1684 | resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 1685 | engines: {node: '>= 0.4'} 1686 | dependencies: 1687 | has-tostringtag: 1.0.0 1688 | dev: false 1689 | 1690 | /is-symbol@1.0.4: 1691 | resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 1692 | engines: {node: '>= 0.4'} 1693 | dependencies: 1694 | has-symbols: 1.0.3 1695 | dev: false 1696 | 1697 | /is-typed-array@1.1.12: 1698 | resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} 1699 | engines: {node: '>= 0.4'} 1700 | dependencies: 1701 | which-typed-array: 1.1.11 1702 | dev: false 1703 | 1704 | /is-weakref@1.0.2: 1705 | resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 1706 | dependencies: 1707 | call-bind: 1.0.2 1708 | dev: false 1709 | 1710 | /isarray@2.0.5: 1711 | resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 1712 | dev: false 1713 | 1714 | /isexe@2.0.0: 1715 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 1716 | dev: false 1717 | 1718 | /jiti@1.19.1: 1719 | resolution: {integrity: sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==} 1720 | hasBin: true 1721 | dev: false 1722 | 1723 | /js-tokens@4.0.0: 1724 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 1725 | dev: false 1726 | 1727 | /js-yaml@4.1.0: 1728 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 1729 | hasBin: true 1730 | dependencies: 1731 | argparse: 2.0.1 1732 | dev: false 1733 | 1734 | /json-schema-traverse@0.4.1: 1735 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 1736 | dev: false 1737 | 1738 | /json-stable-stringify-without-jsonify@1.0.1: 1739 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 1740 | dev: false 1741 | 1742 | /json5@1.0.2: 1743 | resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 1744 | hasBin: true 1745 | dependencies: 1746 | minimist: 1.2.8 1747 | dev: false 1748 | 1749 | /jsx-ast-utils@3.3.5: 1750 | resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==} 1751 | engines: {node: '>=4.0'} 1752 | dependencies: 1753 | array-includes: 3.1.6 1754 | array.prototype.flat: 1.3.1 1755 | object.assign: 4.1.4 1756 | object.values: 1.1.6 1757 | dev: false 1758 | 1759 | /language-subtag-registry@0.3.22: 1760 | resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 1761 | dev: false 1762 | 1763 | /language-tags@1.0.5: 1764 | resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} 1765 | dependencies: 1766 | language-subtag-registry: 0.3.22 1767 | dev: false 1768 | 1769 | /levn@0.4.1: 1770 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 1771 | engines: {node: '>= 0.8.0'} 1772 | dependencies: 1773 | prelude-ls: 1.2.1 1774 | type-check: 0.4.0 1775 | dev: false 1776 | 1777 | /lilconfig@2.1.0: 1778 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==} 1779 | engines: {node: '>=10'} 1780 | dev: false 1781 | 1782 | /lines-and-columns@1.2.4: 1783 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} 1784 | dev: false 1785 | 1786 | /locate-path@6.0.0: 1787 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 1788 | engines: {node: '>=10'} 1789 | dependencies: 1790 | p-locate: 5.0.0 1791 | dev: false 1792 | 1793 | /lodash.merge@4.6.2: 1794 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 1795 | dev: false 1796 | 1797 | /lodash@4.17.21: 1798 | resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 1799 | dev: false 1800 | 1801 | /loose-envify@1.4.0: 1802 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 1803 | hasBin: true 1804 | dependencies: 1805 | js-tokens: 4.0.0 1806 | dev: false 1807 | 1808 | /lru-cache@6.0.0: 1809 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 1810 | engines: {node: '>=10'} 1811 | dependencies: 1812 | yallist: 4.0.0 1813 | dev: false 1814 | 1815 | /merge2@1.4.1: 1816 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1817 | engines: {node: '>= 8'} 1818 | dev: false 1819 | 1820 | /micromatch@4.0.5: 1821 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 1822 | engines: {node: '>=8.6'} 1823 | dependencies: 1824 | braces: 3.0.2 1825 | picomatch: 2.3.1 1826 | dev: false 1827 | 1828 | /minimatch@3.1.2: 1829 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1830 | dependencies: 1831 | brace-expansion: 1.1.11 1832 | dev: false 1833 | 1834 | /minimist@1.2.8: 1835 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 1836 | dev: false 1837 | 1838 | /ms@2.1.2: 1839 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 1840 | dev: false 1841 | 1842 | /ms@2.1.3: 1843 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1844 | dev: false 1845 | 1846 | /mz@2.7.0: 1847 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} 1848 | dependencies: 1849 | any-promise: 1.3.0 1850 | object-assign: 4.1.1 1851 | thenify-all: 1.6.0 1852 | dev: false 1853 | 1854 | /nanoid@3.3.6: 1855 | resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} 1856 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1857 | hasBin: true 1858 | dev: false 1859 | 1860 | /natural-compare@1.4.0: 1861 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1862 | dev: false 1863 | 1864 | /next@13.4.4(react-dom@18.2.0)(react@18.2.0): 1865 | resolution: {integrity: sha512-C5S0ysM0Ily9McL4Jb48nOQHT1BukOWI59uC3X/xCMlYIh9rJZCv7nzG92J6e1cOBqQbKovlpgvHWFmz4eKKEA==} 1866 | engines: {node: '>=16.8.0'} 1867 | hasBin: true 1868 | peerDependencies: 1869 | '@opentelemetry/api': ^1.1.0 1870 | fibers: '>= 3.1.0' 1871 | react: ^18.2.0 1872 | react-dom: ^18.2.0 1873 | sass: ^1.3.0 1874 | peerDependenciesMeta: 1875 | '@opentelemetry/api': 1876 | optional: true 1877 | fibers: 1878 | optional: true 1879 | sass: 1880 | optional: true 1881 | dependencies: 1882 | '@next/env': 13.4.4 1883 | '@swc/helpers': 0.5.1 1884 | busboy: 1.6.0 1885 | caniuse-lite: 1.0.30001519 1886 | postcss: 8.4.14 1887 | react: 18.2.0 1888 | react-dom: 18.2.0(react@18.2.0) 1889 | styled-jsx: 5.1.1(react@18.2.0) 1890 | zod: 3.21.4 1891 | optionalDependencies: 1892 | '@next/swc-darwin-arm64': 13.4.4 1893 | '@next/swc-darwin-x64': 13.4.4 1894 | '@next/swc-linux-arm64-gnu': 13.4.4 1895 | '@next/swc-linux-arm64-musl': 13.4.4 1896 | '@next/swc-linux-x64-gnu': 13.4.4 1897 | '@next/swc-linux-x64-musl': 13.4.4 1898 | '@next/swc-win32-arm64-msvc': 13.4.4 1899 | '@next/swc-win32-ia32-msvc': 13.4.4 1900 | '@next/swc-win32-x64-msvc': 13.4.4 1901 | transitivePeerDependencies: 1902 | - '@babel/core' 1903 | - babel-plugin-macros 1904 | dev: false 1905 | 1906 | /node-releases@2.0.13: 1907 | resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} 1908 | dev: false 1909 | 1910 | /normalize-path@3.0.0: 1911 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 1912 | engines: {node: '>=0.10.0'} 1913 | dev: false 1914 | 1915 | /normalize-range@0.1.2: 1916 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==} 1917 | engines: {node: '>=0.10.0'} 1918 | dev: false 1919 | 1920 | /object-assign@4.1.1: 1921 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 1922 | engines: {node: '>=0.10.0'} 1923 | dev: false 1924 | 1925 | /object-hash@3.0.0: 1926 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==} 1927 | engines: {node: '>= 6'} 1928 | dev: false 1929 | 1930 | /object-inspect@1.12.3: 1931 | resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} 1932 | dev: false 1933 | 1934 | /object-keys@1.1.1: 1935 | resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 1936 | engines: {node: '>= 0.4'} 1937 | dev: false 1938 | 1939 | /object.assign@4.1.4: 1940 | resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 1941 | engines: {node: '>= 0.4'} 1942 | dependencies: 1943 | call-bind: 1.0.2 1944 | define-properties: 1.2.0 1945 | has-symbols: 1.0.3 1946 | object-keys: 1.1.1 1947 | dev: false 1948 | 1949 | /object.entries@1.1.6: 1950 | resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} 1951 | engines: {node: '>= 0.4'} 1952 | dependencies: 1953 | call-bind: 1.0.2 1954 | define-properties: 1.2.0 1955 | es-abstract: 1.22.1 1956 | dev: false 1957 | 1958 | /object.fromentries@2.0.6: 1959 | resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} 1960 | engines: {node: '>= 0.4'} 1961 | dependencies: 1962 | call-bind: 1.0.2 1963 | define-properties: 1.2.0 1964 | es-abstract: 1.22.1 1965 | dev: false 1966 | 1967 | /object.groupby@1.0.0: 1968 | resolution: {integrity: sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==} 1969 | dependencies: 1970 | call-bind: 1.0.2 1971 | define-properties: 1.2.0 1972 | es-abstract: 1.22.1 1973 | get-intrinsic: 1.2.1 1974 | dev: false 1975 | 1976 | /object.hasown@1.1.2: 1977 | resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} 1978 | dependencies: 1979 | define-properties: 1.2.0 1980 | es-abstract: 1.22.1 1981 | dev: false 1982 | 1983 | /object.values@1.1.6: 1984 | resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} 1985 | engines: {node: '>= 0.4'} 1986 | dependencies: 1987 | call-bind: 1.0.2 1988 | define-properties: 1.2.0 1989 | es-abstract: 1.22.1 1990 | dev: false 1991 | 1992 | /once@1.4.0: 1993 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 1994 | dependencies: 1995 | wrappy: 1.0.2 1996 | dev: false 1997 | 1998 | /optionator@0.9.3: 1999 | resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} 2000 | engines: {node: '>= 0.8.0'} 2001 | dependencies: 2002 | '@aashutoshrathi/word-wrap': 1.2.6 2003 | deep-is: 0.1.4 2004 | fast-levenshtein: 2.0.6 2005 | levn: 0.4.1 2006 | prelude-ls: 1.2.1 2007 | type-check: 0.4.0 2008 | dev: false 2009 | 2010 | /p-limit@3.1.0: 2011 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2012 | engines: {node: '>=10'} 2013 | dependencies: 2014 | yocto-queue: 0.1.0 2015 | dev: false 2016 | 2017 | /p-locate@5.0.0: 2018 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2019 | engines: {node: '>=10'} 2020 | dependencies: 2021 | p-limit: 3.1.0 2022 | dev: false 2023 | 2024 | /parent-module@1.0.1: 2025 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2026 | engines: {node: '>=6'} 2027 | dependencies: 2028 | callsites: 3.1.0 2029 | dev: false 2030 | 2031 | /path-exists@4.0.0: 2032 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2033 | engines: {node: '>=8'} 2034 | dev: false 2035 | 2036 | /path-is-absolute@1.0.1: 2037 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2038 | engines: {node: '>=0.10.0'} 2039 | dev: false 2040 | 2041 | /path-key@3.1.1: 2042 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2043 | engines: {node: '>=8'} 2044 | dev: false 2045 | 2046 | /path-parse@1.0.7: 2047 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2048 | dev: false 2049 | 2050 | /path-type@4.0.0: 2051 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2052 | engines: {node: '>=8'} 2053 | dev: false 2054 | 2055 | /picocolors@1.0.0: 2056 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2057 | dev: false 2058 | 2059 | /picomatch@2.3.1: 2060 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2061 | engines: {node: '>=8.6'} 2062 | dev: false 2063 | 2064 | /pify@2.3.0: 2065 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==} 2066 | engines: {node: '>=0.10.0'} 2067 | dev: false 2068 | 2069 | /pirates@4.0.6: 2070 | resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} 2071 | engines: {node: '>= 6'} 2072 | dev: false 2073 | 2074 | /postcss-import@15.1.0(postcss@8.4.23): 2075 | resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==} 2076 | engines: {node: '>=14.0.0'} 2077 | peerDependencies: 2078 | postcss: ^8.0.0 2079 | dependencies: 2080 | postcss: 8.4.23 2081 | postcss-value-parser: 4.2.0 2082 | read-cache: 1.0.0 2083 | resolve: 1.22.4 2084 | dev: false 2085 | 2086 | /postcss-js@4.0.1(postcss@8.4.23): 2087 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==} 2088 | engines: {node: ^12 || ^14 || >= 16} 2089 | peerDependencies: 2090 | postcss: ^8.4.21 2091 | dependencies: 2092 | camelcase-css: 2.0.1 2093 | postcss: 8.4.23 2094 | dev: false 2095 | 2096 | /postcss-load-config@4.0.1(postcss@8.4.23): 2097 | resolution: {integrity: sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==} 2098 | engines: {node: '>= 14'} 2099 | peerDependencies: 2100 | postcss: '>=8.0.9' 2101 | ts-node: '>=9.0.0' 2102 | peerDependenciesMeta: 2103 | postcss: 2104 | optional: true 2105 | ts-node: 2106 | optional: true 2107 | dependencies: 2108 | lilconfig: 2.1.0 2109 | postcss: 8.4.23 2110 | yaml: 2.3.1 2111 | dev: false 2112 | 2113 | /postcss-nested@6.0.1(postcss@8.4.23): 2114 | resolution: {integrity: sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==} 2115 | engines: {node: '>=12.0'} 2116 | peerDependencies: 2117 | postcss: ^8.2.14 2118 | dependencies: 2119 | postcss: 8.4.23 2120 | postcss-selector-parser: 6.0.13 2121 | dev: false 2122 | 2123 | /postcss-selector-parser@6.0.13: 2124 | resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} 2125 | engines: {node: '>=4'} 2126 | dependencies: 2127 | cssesc: 3.0.0 2128 | util-deprecate: 1.0.2 2129 | dev: false 2130 | 2131 | /postcss-value-parser@4.2.0: 2132 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==} 2133 | dev: false 2134 | 2135 | /postcss@8.4.14: 2136 | resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} 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: false 2143 | 2144 | /postcss@8.4.23: 2145 | resolution: {integrity: sha512-bQ3qMcpF6A/YjR55xtoTr0jGOlnPOKAIMdOWiv0EIT6HVPEaJiJB4NLljSbiHoC2RX7DN5Uvjtpbg1NPdwv1oA==} 2146 | engines: {node: ^10 || ^12 || >=14} 2147 | dependencies: 2148 | nanoid: 3.3.6 2149 | picocolors: 1.0.0 2150 | source-map-js: 1.0.2 2151 | dev: false 2152 | 2153 | /prelude-ls@1.2.1: 2154 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2155 | engines: {node: '>= 0.8.0'} 2156 | dev: false 2157 | 2158 | /prop-types@15.8.1: 2159 | resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 2160 | dependencies: 2161 | loose-envify: 1.4.0 2162 | object-assign: 4.1.1 2163 | react-is: 16.13.1 2164 | dev: false 2165 | 2166 | /punycode@2.3.0: 2167 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 2168 | engines: {node: '>=6'} 2169 | dev: false 2170 | 2171 | /queue-microtask@1.2.3: 2172 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2173 | dev: false 2174 | 2175 | /react-dom@18.2.0(react@18.2.0): 2176 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 2177 | peerDependencies: 2178 | react: ^18.2.0 2179 | dependencies: 2180 | loose-envify: 1.4.0 2181 | react: 18.2.0 2182 | scheduler: 0.23.0 2183 | dev: false 2184 | 2185 | /react-is@16.13.1: 2186 | resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 2187 | dev: false 2188 | 2189 | /react@18.2.0: 2190 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 2191 | engines: {node: '>=0.10.0'} 2192 | dependencies: 2193 | loose-envify: 1.4.0 2194 | dev: false 2195 | 2196 | /read-cache@1.0.0: 2197 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==} 2198 | dependencies: 2199 | pify: 2.3.0 2200 | dev: false 2201 | 2202 | /readdirp@3.6.0: 2203 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} 2204 | engines: {node: '>=8.10.0'} 2205 | dependencies: 2206 | picomatch: 2.3.1 2207 | dev: false 2208 | 2209 | /regenerator-runtime@0.14.0: 2210 | resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} 2211 | dev: false 2212 | 2213 | /regexp.prototype.flags@1.5.0: 2214 | resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} 2215 | engines: {node: '>= 0.4'} 2216 | dependencies: 2217 | call-bind: 1.0.2 2218 | define-properties: 1.2.0 2219 | functions-have-names: 1.2.3 2220 | dev: false 2221 | 2222 | /require-directory@2.1.1: 2223 | resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 2224 | engines: {node: '>=0.10.0'} 2225 | dev: false 2226 | 2227 | /resolve-from@4.0.0: 2228 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2229 | engines: {node: '>=4'} 2230 | dev: false 2231 | 2232 | /resolve-pkg-maps@1.0.0: 2233 | resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} 2234 | dev: false 2235 | 2236 | /resolve@1.22.4: 2237 | resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==} 2238 | hasBin: true 2239 | dependencies: 2240 | is-core-module: 2.13.0 2241 | path-parse: 1.0.7 2242 | supports-preserve-symlinks-flag: 1.0.0 2243 | dev: false 2244 | 2245 | /resolve@2.0.0-next.4: 2246 | resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} 2247 | hasBin: true 2248 | dependencies: 2249 | is-core-module: 2.13.0 2250 | path-parse: 1.0.7 2251 | supports-preserve-symlinks-flag: 1.0.0 2252 | dev: false 2253 | 2254 | /reusify@1.0.4: 2255 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2256 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2257 | dev: false 2258 | 2259 | /rimraf@3.0.2: 2260 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2261 | hasBin: true 2262 | dependencies: 2263 | glob: 7.2.3 2264 | dev: false 2265 | 2266 | /run-parallel@1.2.0: 2267 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2268 | dependencies: 2269 | queue-microtask: 1.2.3 2270 | dev: false 2271 | 2272 | /rxjs@7.8.1: 2273 | resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} 2274 | dependencies: 2275 | tslib: 2.6.1 2276 | dev: false 2277 | 2278 | /safe-array-concat@1.0.0: 2279 | resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} 2280 | engines: {node: '>=0.4'} 2281 | dependencies: 2282 | call-bind: 1.0.2 2283 | get-intrinsic: 1.2.1 2284 | has-symbols: 1.0.3 2285 | isarray: 2.0.5 2286 | dev: false 2287 | 2288 | /safe-regex-test@1.0.0: 2289 | resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 2290 | dependencies: 2291 | call-bind: 1.0.2 2292 | get-intrinsic: 1.2.1 2293 | is-regex: 1.1.4 2294 | dev: false 2295 | 2296 | /scheduler@0.23.0: 2297 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 2298 | dependencies: 2299 | loose-envify: 1.4.0 2300 | dev: false 2301 | 2302 | /semver@6.3.1: 2303 | resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 2304 | hasBin: true 2305 | dev: false 2306 | 2307 | /semver@7.5.4: 2308 | resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} 2309 | engines: {node: '>=10'} 2310 | hasBin: true 2311 | dependencies: 2312 | lru-cache: 6.0.0 2313 | dev: false 2314 | 2315 | /shebang-command@2.0.0: 2316 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2317 | engines: {node: '>=8'} 2318 | dependencies: 2319 | shebang-regex: 3.0.0 2320 | dev: false 2321 | 2322 | /shebang-regex@3.0.0: 2323 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 2324 | engines: {node: '>=8'} 2325 | dev: false 2326 | 2327 | /shell-quote@1.8.1: 2328 | resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==} 2329 | dev: false 2330 | 2331 | /side-channel@1.0.4: 2332 | resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 2333 | dependencies: 2334 | call-bind: 1.0.2 2335 | get-intrinsic: 1.2.1 2336 | object-inspect: 1.12.3 2337 | dev: false 2338 | 2339 | /slash@3.0.0: 2340 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 2341 | engines: {node: '>=8'} 2342 | dev: false 2343 | 2344 | /source-map-js@1.0.2: 2345 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 2346 | engines: {node: '>=0.10.0'} 2347 | dev: false 2348 | 2349 | /spawn-command@0.0.2-1: 2350 | resolution: {integrity: sha512-n98l9E2RMSJ9ON1AKisHzz7V42VDiBQGY6PB1BwRglz99wpVsSuGzQ+jOi6lFXBGVTCrRpltvjm+/XA+tpeJrg==} 2351 | dev: false 2352 | 2353 | /streamsearch@1.1.0: 2354 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 2355 | engines: {node: '>=10.0.0'} 2356 | dev: false 2357 | 2358 | /string-width@4.2.3: 2359 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 2360 | engines: {node: '>=8'} 2361 | dependencies: 2362 | emoji-regex: 8.0.0 2363 | is-fullwidth-code-point: 3.0.0 2364 | strip-ansi: 6.0.1 2365 | dev: false 2366 | 2367 | /string.prototype.matchall@4.0.8: 2368 | resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} 2369 | dependencies: 2370 | call-bind: 1.0.2 2371 | define-properties: 1.2.0 2372 | es-abstract: 1.22.1 2373 | get-intrinsic: 1.2.1 2374 | has-symbols: 1.0.3 2375 | internal-slot: 1.0.5 2376 | regexp.prototype.flags: 1.5.0 2377 | side-channel: 1.0.4 2378 | dev: false 2379 | 2380 | /string.prototype.trim@1.2.7: 2381 | resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} 2382 | engines: {node: '>= 0.4'} 2383 | dependencies: 2384 | call-bind: 1.0.2 2385 | define-properties: 1.2.0 2386 | es-abstract: 1.22.1 2387 | dev: false 2388 | 2389 | /string.prototype.trimend@1.0.6: 2390 | resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} 2391 | dependencies: 2392 | call-bind: 1.0.2 2393 | define-properties: 1.2.0 2394 | es-abstract: 1.22.1 2395 | dev: false 2396 | 2397 | /string.prototype.trimstart@1.0.6: 2398 | resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} 2399 | dependencies: 2400 | call-bind: 1.0.2 2401 | define-properties: 1.2.0 2402 | es-abstract: 1.22.1 2403 | dev: false 2404 | 2405 | /strip-ansi@6.0.1: 2406 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 2407 | engines: {node: '>=8'} 2408 | dependencies: 2409 | ansi-regex: 5.0.1 2410 | dev: false 2411 | 2412 | /strip-bom@3.0.0: 2413 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 2414 | engines: {node: '>=4'} 2415 | dev: false 2416 | 2417 | /strip-json-comments@3.1.1: 2418 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 2419 | engines: {node: '>=8'} 2420 | dev: false 2421 | 2422 | /styled-jsx@5.1.1(react@18.2.0): 2423 | resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 2424 | engines: {node: '>= 12.0.0'} 2425 | peerDependencies: 2426 | '@babel/core': '*' 2427 | babel-plugin-macros: '*' 2428 | react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 2429 | peerDependenciesMeta: 2430 | '@babel/core': 2431 | optional: true 2432 | babel-plugin-macros: 2433 | optional: true 2434 | dependencies: 2435 | client-only: 0.0.1 2436 | react: 18.2.0 2437 | dev: false 2438 | 2439 | /sucrase@3.34.0: 2440 | resolution: {integrity: sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==} 2441 | engines: {node: '>=8'} 2442 | hasBin: true 2443 | dependencies: 2444 | '@jridgewell/gen-mapping': 0.3.3 2445 | commander: 4.1.1 2446 | glob: 7.1.6 2447 | lines-and-columns: 1.2.4 2448 | mz: 2.7.0 2449 | pirates: 4.0.6 2450 | ts-interface-checker: 0.1.13 2451 | dev: false 2452 | 2453 | /supports-color@7.2.0: 2454 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 2455 | engines: {node: '>=8'} 2456 | dependencies: 2457 | has-flag: 4.0.0 2458 | dev: false 2459 | 2460 | /supports-color@8.1.1: 2461 | resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} 2462 | engines: {node: '>=10'} 2463 | dependencies: 2464 | has-flag: 4.0.0 2465 | dev: false 2466 | 2467 | /supports-preserve-symlinks-flag@1.0.0: 2468 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 2469 | engines: {node: '>= 0.4'} 2470 | dev: false 2471 | 2472 | /tailwindcss@3.3.2: 2473 | resolution: {integrity: sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==} 2474 | engines: {node: '>=14.0.0'} 2475 | hasBin: true 2476 | dependencies: 2477 | '@alloc/quick-lru': 5.2.0 2478 | arg: 5.0.2 2479 | chokidar: 3.5.3 2480 | didyoumean: 1.2.2 2481 | dlv: 1.1.3 2482 | fast-glob: 3.3.1 2483 | glob-parent: 6.0.2 2484 | is-glob: 4.0.3 2485 | jiti: 1.19.1 2486 | lilconfig: 2.1.0 2487 | micromatch: 4.0.5 2488 | normalize-path: 3.0.0 2489 | object-hash: 3.0.0 2490 | picocolors: 1.0.0 2491 | postcss: 8.4.23 2492 | postcss-import: 15.1.0(postcss@8.4.23) 2493 | postcss-js: 4.0.1(postcss@8.4.23) 2494 | postcss-load-config: 4.0.1(postcss@8.4.23) 2495 | postcss-nested: 6.0.1(postcss@8.4.23) 2496 | postcss-selector-parser: 6.0.13 2497 | postcss-value-parser: 4.2.0 2498 | resolve: 1.22.4 2499 | sucrase: 3.34.0 2500 | transitivePeerDependencies: 2501 | - ts-node 2502 | dev: false 2503 | 2504 | /tapable@2.2.1: 2505 | resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 2506 | engines: {node: '>=6'} 2507 | dev: false 2508 | 2509 | /text-table@0.2.0: 2510 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 2511 | dev: false 2512 | 2513 | /thenify-all@1.6.0: 2514 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} 2515 | engines: {node: '>=0.8'} 2516 | dependencies: 2517 | thenify: 3.3.1 2518 | dev: false 2519 | 2520 | /thenify@3.3.1: 2521 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} 2522 | dependencies: 2523 | any-promise: 1.3.0 2524 | dev: false 2525 | 2526 | /to-regex-range@5.0.1: 2527 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 2528 | engines: {node: '>=8.0'} 2529 | dependencies: 2530 | is-number: 7.0.0 2531 | dev: false 2532 | 2533 | /tree-kill@1.2.2: 2534 | resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 2535 | hasBin: true 2536 | dev: false 2537 | 2538 | /ts-interface-checker@0.1.13: 2539 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} 2540 | dev: false 2541 | 2542 | /tsconfig-paths@3.14.2: 2543 | resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} 2544 | dependencies: 2545 | '@types/json5': 0.0.29 2546 | json5: 1.0.2 2547 | minimist: 1.2.8 2548 | strip-bom: 3.0.0 2549 | dev: false 2550 | 2551 | /tslib@1.14.1: 2552 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 2553 | dev: false 2554 | 2555 | /tslib@2.6.1: 2556 | resolution: {integrity: sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig==} 2557 | dev: false 2558 | 2559 | /tsutils@3.21.0(typescript@5.0.4): 2560 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 2561 | engines: {node: '>= 6'} 2562 | peerDependencies: 2563 | 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' 2564 | dependencies: 2565 | tslib: 1.14.1 2566 | typescript: 5.0.4 2567 | dev: false 2568 | 2569 | /type-check@0.4.0: 2570 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 2571 | engines: {node: '>= 0.8.0'} 2572 | dependencies: 2573 | prelude-ls: 1.2.1 2574 | dev: false 2575 | 2576 | /type-fest@0.20.2: 2577 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 2578 | engines: {node: '>=10'} 2579 | dev: false 2580 | 2581 | /typed-array-buffer@1.0.0: 2582 | resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} 2583 | engines: {node: '>= 0.4'} 2584 | dependencies: 2585 | call-bind: 1.0.2 2586 | get-intrinsic: 1.2.1 2587 | is-typed-array: 1.1.12 2588 | dev: false 2589 | 2590 | /typed-array-byte-length@1.0.0: 2591 | resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} 2592 | engines: {node: '>= 0.4'} 2593 | dependencies: 2594 | call-bind: 1.0.2 2595 | for-each: 0.3.3 2596 | has-proto: 1.0.1 2597 | is-typed-array: 1.1.12 2598 | dev: false 2599 | 2600 | /typed-array-byte-offset@1.0.0: 2601 | resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==} 2602 | engines: {node: '>= 0.4'} 2603 | dependencies: 2604 | available-typed-arrays: 1.0.5 2605 | call-bind: 1.0.2 2606 | for-each: 0.3.3 2607 | has-proto: 1.0.1 2608 | is-typed-array: 1.1.12 2609 | dev: false 2610 | 2611 | /typed-array-length@1.0.4: 2612 | resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 2613 | dependencies: 2614 | call-bind: 1.0.2 2615 | for-each: 0.3.3 2616 | is-typed-array: 1.1.12 2617 | dev: false 2618 | 2619 | /typescript@5.0.4: 2620 | resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} 2621 | engines: {node: '>=12.20'} 2622 | hasBin: true 2623 | dev: false 2624 | 2625 | /unbox-primitive@1.0.2: 2626 | resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 2627 | dependencies: 2628 | call-bind: 1.0.2 2629 | has-bigints: 1.0.2 2630 | has-symbols: 1.0.3 2631 | which-boxed-primitive: 1.0.2 2632 | dev: false 2633 | 2634 | /update-browserslist-db@1.0.11(browserslist@4.21.10): 2635 | resolution: {integrity: sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==} 2636 | hasBin: true 2637 | peerDependencies: 2638 | browserslist: '>= 4.21.0' 2639 | dependencies: 2640 | browserslist: 4.21.10 2641 | escalade: 3.1.1 2642 | picocolors: 1.0.0 2643 | dev: false 2644 | 2645 | /uri-js@4.4.1: 2646 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 2647 | dependencies: 2648 | punycode: 2.3.0 2649 | dev: false 2650 | 2651 | /util-deprecate@1.0.2: 2652 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 2653 | dev: false 2654 | 2655 | /vary@1.1.2: 2656 | resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 2657 | engines: {node: '>= 0.8'} 2658 | dev: false 2659 | 2660 | /which-boxed-primitive@1.0.2: 2661 | resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 2662 | dependencies: 2663 | is-bigint: 1.0.4 2664 | is-boolean-object: 1.1.2 2665 | is-number-object: 1.0.7 2666 | is-string: 1.0.7 2667 | is-symbol: 1.0.4 2668 | dev: false 2669 | 2670 | /which-typed-array@1.1.11: 2671 | resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==} 2672 | engines: {node: '>= 0.4'} 2673 | dependencies: 2674 | available-typed-arrays: 1.0.5 2675 | call-bind: 1.0.2 2676 | for-each: 0.3.3 2677 | gopd: 1.0.1 2678 | has-tostringtag: 1.0.0 2679 | dev: false 2680 | 2681 | /which@2.0.2: 2682 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 2683 | engines: {node: '>= 8'} 2684 | hasBin: true 2685 | dependencies: 2686 | isexe: 2.0.0 2687 | dev: false 2688 | 2689 | /wrap-ansi@7.0.0: 2690 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 2691 | engines: {node: '>=10'} 2692 | dependencies: 2693 | ansi-styles: 4.3.0 2694 | string-width: 4.2.3 2695 | strip-ansi: 6.0.1 2696 | dev: false 2697 | 2698 | /wrappy@1.0.2: 2699 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 2700 | dev: false 2701 | 2702 | /y18n@5.0.8: 2703 | resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 2704 | engines: {node: '>=10'} 2705 | dev: false 2706 | 2707 | /yallist@4.0.0: 2708 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 2709 | dev: false 2710 | 2711 | /yaml@2.3.1: 2712 | resolution: {integrity: sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==} 2713 | engines: {node: '>= 14'} 2714 | dev: false 2715 | 2716 | /yargs-parser@21.1.1: 2717 | resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 2718 | engines: {node: '>=12'} 2719 | dev: false 2720 | 2721 | /yargs@17.7.2: 2722 | resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 2723 | engines: {node: '>=12'} 2724 | dependencies: 2725 | cliui: 8.0.1 2726 | escalade: 3.1.1 2727 | get-caller-file: 2.0.5 2728 | require-directory: 2.1.1 2729 | string-width: 4.2.3 2730 | y18n: 5.0.8 2731 | yargs-parser: 21.1.1 2732 | dev: false 2733 | 2734 | /yocto-queue@0.1.0: 2735 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 2736 | engines: {node: '>=10'} 2737 | dev: false 2738 | 2739 | /zod@3.21.4: 2740 | resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} 2741 | dev: false 2742 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fastapi==0.95.2 2 | uvicorn[standard] 3 | sse-starlette==1.6.5 4 | pyinstaller==5.13.0 -------------------------------------------------------------------------------- /src-tauri/.gitignore: -------------------------------------------------------------------------------- 1 | # Generated by Cargo 2 | # will have compiled files and executables 3 | /target/ 4 | -------------------------------------------------------------------------------- /src-tauri/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "app" 3 | version = "0.1.0" 4 | description = "A Tauri App" 5 | authors = ["you"] 6 | license = "" 7 | repository = "" 8 | default-run = "app" 9 | edition = "2021" 10 | rust-version = "1.60" 11 | 12 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 13 | 14 | [build-dependencies] 15 | tauri-build = { version = "1.4.0", features = [] } 16 | 17 | [dependencies] 18 | command-group = "2.1.0" 19 | serde_json = "1.0" 20 | serde = { version = "1.0", features = ["derive"] } 21 | tauri = { version = "1.4.0", features = [ "shell-all", "http-all", "process-command-api"] } 22 | 23 | [features] 24 | # this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled. 25 | # If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes. 26 | # DO NOT REMOVE!! 27 | custom-protocol = [ "tauri/custom-protocol" ] 28 | -------------------------------------------------------------------------------- /src-tauri/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | tauri_build::build() 3 | } 4 | -------------------------------------------------------------------------------- /src-tauri/src/main.rs: -------------------------------------------------------------------------------- 1 | // Prevents additional console window on Windows in release, DO NOT REMOVE!! 2 | #![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] 3 | 4 | use std::process::Command; 5 | use std::sync::mpsc::{sync_channel, Receiver}; 6 | use std::thread; 7 | use command_group::CommandGroup; 8 | use tauri::api::process::Command as TCommand; 9 | use tauri::WindowEvent; 10 | 11 | fn start_backend(receiver: Receiver) { 12 | // `new_sidecar()` expects just the filename, NOT the whole path 13 | let t = TCommand::new_sidecar("main") 14 | .expect("[Error] Failed to create `main.exe` binary command"); 15 | let mut group = Command::from(t).group_spawn().expect("[Error] spawning api server process."); 16 | // If anyone knows how to log out stdout msg's from this process drop a comment. Rust is not my language. 17 | thread::spawn(move || { 18 | loop{ 19 | let s = receiver.recv(); 20 | if s.unwrap()==-1 { 21 | group.kill().expect("[Error] killing api server process."); 22 | } 23 | } 24 | }); 25 | } 26 | 27 | fn main() { 28 | // Startup the python binary (api service) 29 | let (tx,rx) = sync_channel(1); 30 | start_backend(rx); 31 | 32 | tauri::Builder::default() 33 | // Tell the child process to shutdown when app exits 34 | .on_window_event(move |event| match event.event() { 35 | WindowEvent::Destroyed => { 36 | tx.send(-1).expect("[Error] sending msg."); 37 | println!("[Event] App closed, shutting down API..."); 38 | } 39 | _ => {} 40 | }) 41 | .run(tauri::generate_context!()) 42 | .expect("[Error] while running tauri application"); 43 | } 44 | -------------------------------------------------------------------------------- /src-tauri/tauri.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "../node_modules/@tauri-apps/cli/schema.json", 3 | "build": { 4 | "beforeBuildCommand": "pnpm build", 5 | "beforeDevCommand": "pnpm dev", 6 | "devPath": "http://localhost:3000", 7 | "distDir": "../out" 8 | }, 9 | "package": { 10 | "productName": "ai-knowledgebase-backend", 11 | "version": "0.1.0" 12 | }, 13 | "tauri": { 14 | "allowlist": { 15 | "all": false, 16 | "http": { 17 | "all": true, 18 | "request": true, 19 | "scope": ["http://**", "https://**"] 20 | }, 21 | "shell": { 22 | "all": true, 23 | "execute": true, 24 | "sidecar": true, 25 | "open": true, 26 | "scope": [ 27 | { 28 | "name": "bin/api/main", 29 | "sidecar": true 30 | } 31 | ] 32 | } 33 | }, 34 | "bundle": { 35 | "active": true, 36 | "category": "DeveloperTool", 37 | "copyright": "", 38 | "deb": { 39 | "depends": [] 40 | }, 41 | "externalBin": ["bin/api/main"], 42 | "icon": [ 43 | "icons/32x32.png", 44 | "icons/128x128.png", 45 | "icons/128x128@2x.png", 46 | "icons/icon.icns", 47 | "icons/icon.ico" 48 | ], 49 | "identifier": "com.ai-base.spreadshotstudios", 50 | "longDescription": "", 51 | "macOS": { 52 | "entitlements": null, 53 | "exceptionDomain": "", 54 | "frameworks": [], 55 | "providerShortName": null, 56 | "signingIdentity": null 57 | }, 58 | "resources": [], 59 | "shortDescription": "", 60 | "targets": "all", 61 | "windows": { 62 | "certificateThumbprint": null, 63 | "digestAlgorithm": "sha256", 64 | "timestampUrl": "" 65 | } 66 | }, 67 | "security": { 68 | "csp": null 69 | }, 70 | "updater": { 71 | "active": false 72 | }, 73 | "windows": [ 74 | { 75 | "fullscreen": false, 76 | "height": 600, 77 | "resizable": true, 78 | "title": "ai-knowledgebase-backend", 79 | "width": 800 80 | } 81 | ] 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /src/backends/inference/infer_text_api.py: -------------------------------------------------------------------------------- 1 | from fastapi import HTTPException 2 | 3 | 4 | # Example external script 5 | def completions(data): 6 | try: 7 | prompt: str = data["prompt"] 8 | # Example response 9 | return {"message": f"openllm completing prompt [{prompt}] ..."} 10 | except KeyError: 11 | raise HTTPException( 12 | status_code=400, detail="Invalid JSON format: 'prompt' key not found" 13 | ) 14 | -------------------------------------------------------------------------------- /src/backends/main.py: -------------------------------------------------------------------------------- 1 | # import subprocess 2 | from fastapi import FastAPI, HTTPException 3 | from fastapi.middleware.cors import CORSMiddleware 4 | from inference import infer_text_api 5 | import uvicorn 6 | 7 | PORT_API = 8008 8 | 9 | app = FastAPI( 10 | title="API server", 11 | version="1.0.0", 12 | ) 13 | 14 | # Configure CORS settings 15 | origins = [ 16 | "http://localhost:3000", 17 | "https://hoppscotch.io", 18 | "https://your-web-app.com", 19 | ] 20 | app.add_middleware( 21 | CORSMiddleware, 22 | allow_origins=origins, 23 | # allow_credentials=True, 24 | allow_methods=["*"], 25 | allow_headers=["*"], 26 | ) 27 | 28 | 29 | # Tell client we are ready to accept requests 30 | @app.get("/api/v1/connect") 31 | def connect(): 32 | return { 33 | "message": f"Connected to api server on port {PORT_API}. Refer to 'http://localhost:{PORT_API}/docs' for api docs.", 34 | } 35 | 36 | 37 | # Load in the ai model to be used for inference. Example of calling code inline. 38 | @app.post("/api/v1/text/inference/load") 39 | async def load_inference(data: dict): 40 | try: 41 | model_id: str = data["modelId"] 42 | return {"message": f"AI model [{model_id}] loaded."} 43 | except KeyError: 44 | raise HTTPException( 45 | status_code=400, detail="Invalid JSON format: 'modelId' key not found" 46 | ) 47 | 48 | 49 | # Text inference endpoint for prompting. 50 | # An example of calling external code. Anything imported in this file will be included in the binary output by PyInstaller. 51 | @app.post("/api/v1/text/inference/completions") 52 | def run_completion(data: dict): 53 | print("endpoint: /completions") 54 | return infer_text_api.completions(data) 55 | 56 | 57 | def start_api_server(): 58 | try: 59 | print("Starting API server...") 60 | # Start the ASGI server 61 | uvicorn.run(app, host="0.0.0.0", port=PORT_API, log_level="info") 62 | return True 63 | except: 64 | print("Failed to start API server") 65 | return False 66 | 67 | 68 | if __name__ == "__main__": 69 | # You can spawn sub-processes here before the main process. start_api_server() will block further code from execution. 70 | # command = ["python", "-m", "some_script", "--arg", "argValue"] 71 | 72 | # Execute the command 73 | # subprocess.Popen(command) 74 | 75 | # Starts the universal API server 76 | start_api_server() 77 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | module.exports = { 3 | content: [ 4 | './pages/**/*.{js,ts,jsx,tsx,mdx}', 5 | './components/**/*.{js,ts,jsx,tsx,mdx}', 6 | './app/**/*.{js,ts,jsx,tsx,mdx}', 7 | ], 8 | theme: { 9 | extend: { 10 | backgroundImage: { 11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))', 12 | 'gradient-conic': 13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))', 14 | }, 15 | }, 16 | }, 17 | plugins: [], 18 | } 19 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": true, 8 | "forceConsistentCasingInFileNames": true, 9 | "noEmit": true, 10 | "esModuleInterop": true, 11 | "module": "esnext", 12 | "moduleResolution": "node", 13 | "resolveJsonModule": true, 14 | "isolatedModules": true, 15 | "jsx": "preserve", 16 | "incremental": true, 17 | "plugins": [ 18 | { 19 | "name": "next" 20 | } 21 | ], 22 | "paths": { 23 | "@/*": ["./src/*"] 24 | } 25 | }, 26 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 27 | "exclude": ["node_modules"] 28 | } 29 | --------------------------------------------------------------------------------