├── .env ├── .eslintrc.json ├── .github └── workflows │ └── issues.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── components └── profile.tsx ├── next-auth.d.ts ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── api │ ├── auth │ │ └── [...nextauth].tsx │ └── userinfo.ts ├── index.tsx └── profile.tsx ├── public ├── favicon.ico ├── zitadel-logo-dark.svg └── zitadel-logo-light.svg ├── styles ├── Home.module.css └── globals.css ├── tsconfig.json └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | NEXTAUTH_URL=http://localhost:3000 2 | ZITADEL_CLIENT_ID=[yourClientId] 3 | ZITADEL_CLIENT_SECRET=[randomvalue] 4 | ZITADEL_ISSUER=[yourIssuerUrl] 5 | NEXTAUTH_SECRET=[randomvalue] 6 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- 1 | name: Add new issues to product management project 2 | 3 | on: 4 | issues: 5 | types: 6 | - opened 7 | pull_request_target: 8 | types: 9 | - opened 10 | 11 | jobs: 12 | add-to-project: 13 | name: Add issue and community pr to project 14 | runs-on: ubuntu-latest 15 | steps: 16 | - name: add issue 17 | uses: actions/add-to-project@v0.5.0 18 | if: ${{ github.event_name == 'issues' }} 19 | with: 20 | # You can target a repository in a different organization 21 | # to the issue 22 | project-url: https://github.com/orgs/zitadel/projects/2 23 | github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} 24 | - uses: tspascoal/get-user-teams-membership@v3 25 | id: checkUserMember 26 | if: github.actor != 'dependabot[bot]' 27 | with: 28 | username: ${{ github.actor }} 29 | GITHUB_TOKEN: ${{ secrets.ADD_TO_PROJECT_PAT }} 30 | - name: add pr 31 | uses: actions/add-to-project@v0.5.0 32 | if: ${{ github.event_name == 'pull_request_target' && github.actor != 'dependabot[bot]' && !contains(steps.checkUserMember.outputs.teams, 'engineers')}} 33 | with: 34 | # You can target a repository in a different organization 35 | # to the issue 36 | project-url: https://github.com/orgs/zitadel/projects/2 37 | github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} 38 | - uses: actions-ecosystem/action-add-labels@v1.1.0 39 | if: ${{ github.event_name == 'pull_request_target' && github.actor != 'dependabot[bot]' && !contains(steps.checkUserMember.outputs.teams, 'staff')}} 40 | with: 41 | github_token: ${{ secrets.ADD_TO_PROJECT_PAT }} 42 | labels: | 43 | os-contribution 44 | -------------------------------------------------------------------------------- /.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 | .env.development.local 30 | .env.test.local 31 | .env.production.local 32 | 33 | # vercel 34 | .vercel 35 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 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 | yarn-lock.json 8 | 9 | # testing 10 | /coverage 11 | 12 | # next.js 13 | /.next/ 14 | /out/ 15 | 16 | # production 17 | /build 18 | 19 | # misc 20 | .DS_Store 21 | *.pem 22 | 23 | # debug 24 | npm-debug.log* 25 | yarn-debug.log* 26 | yarn-error.log* 27 | 28 | # local env files 29 | .env.local 30 | .env.development.local 31 | .env.test.local 32 | .env.production.local 33 | 34 | # vercel 35 | .vercel 36 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 125, 3 | "singleQuote": true, 4 | "trailingComma": "all" 5 | } 6 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | - Demonstrating empathy and kindness toward other people 21 | - Being respectful of differing opinions, viewpoints, and experiences 22 | - Giving and gracefully accepting constructive feedback 23 | - Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | - Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | - The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | - Trolling, insulting or derogatory comments, and personal or political attacks 33 | - Public or private harassment 34 | - Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | - Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | legal@zitadel.com. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to ZITADEL-nextjs 2 | 3 | ## Introduction 4 | 5 | Thank you for your interest about how to contribute! As you might know there is more than code to contribute. You can find all information needed to start contributing here. 6 | 7 | Please give us and our community the chance to get rid of security vulnerabilities by responsibly disclose this kind of issues by contacting [security@zitadel.com](mailto:security@zitadel.com). 8 | 9 | The strongest part of a community is the possibility to share thoughts. That's why we try to react as soon as possible to your ideas, thoughts and feedback. 10 | We love to discuss as much as possible in an open space like in the ZITADEL [issues](https://github.com/zitadel/zitadel/issues) and [discussions](https://github.com/zitadel/zitadel/discussions) section or in our [chat](https://zitadel.com/chat), but we understand your doubts and provide further contact options [here](https://zitadel.com/contact). 11 | 12 | If you want to give an answer or be part of discussions please be kind. Treat others like you want to be treated. Read more about our code of conduct [here](CODE_OF_CONDUCT.md). 13 | 14 | ## How to contribute 15 | 16 | Anyone can be a contributor. Either you found a typo, or you have an awesome feature request you could implement, we encourage you to create a Pull Request. 17 | 18 | ### Pull Requests 19 | 20 | - The latest changes are always in `main`, so please make your Pull Request against that branch. 21 | - Pull Requests should be raised for any change 22 | - Pull Requests need approval of an ZITADEL core engineer @zitadel/engineers before merging 23 | - We use ESLint/Prettier for linting/formatting, so please run `npm run lint:fix` before committing to make resolving conflicts easier (VSCode users, check out [this ESLint extension](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) and [this Prettier extension](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) to fix lint and formatting issues in development) 24 | - We encourage you to test your changes, and if you have the opportunity, please make those tests part of the Pull Request 25 | - If you add new functionality, please provide the corresponding documentation as well and make it part of the Pull Request 26 | 27 | ### Setting up local environment 28 | 29 | A quick guide on how to setup your ZITADEL app locally to work on it and test out any changes: 30 | 31 | 1. Clone the repo: 32 | 33 | ```sh 34 | git clone https://github.com/zitadel/zitadel-nextjs.git 35 | cd zitadel-nextjs 36 | ``` 37 | 38 | 3. Install packages. Developing requires Node.js v16: 39 | 40 | ```sh 41 | yarn install 42 | ``` 43 | 44 | 4. Populate `.env.local`: 45 | 46 | Copy `.env` to `.env.local`, and add your instance env variables for each entry. 47 | 48 | ```sh 49 | cp .env .env.local 50 | ``` 51 | 52 | 5. Start the developer application/server: 53 | 54 | ```sh 55 | npm run dev 56 | ``` 57 | 58 | Your developer application will be available on `http://localhost:3000` 59 | 60 | That's it! 🎉 61 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 ZITADEL 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is our ZITADEL [Next.js](https://nextjs.org/) template. It shows how to authenticate as a user and retrieve user information from the OIDC endpoint. 2 | 3 | ## Deploy your own 4 | 5 | [![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fzitadel%2Fzitadel-nextjs&env=NEXTAUTH_URL,ZITADEL_CLIENT_ID,ZITADEL_CLIENT_SECRET,ZITADEL_ISSUER,NEXTAUTH_SECRET&envDescription=Navigate%20to%20your%20ZITADEL%20cloud%20application%20and%20copy%20the%20required%20information.%20Provide%20a%20random%20value%20for%20ZITADEL_CLIENT_SECRET%20and%20NEXTAUTH_SECRET&project-name=zitadel-nextjs&repo-name=zitadel-nextjs&redirect-url=https%3A%2F%2Fzitadel.cloud) 6 | 7 | ## Getting Started 8 | 9 | First, to install the dependencies run: 10 | 11 | ```bash 12 | yarn install 13 | ``` 14 | 15 | then create a file `.env` in the root of the project and add the following keys to it. 16 | You can find your Issuer Url on the application detail page in console. 17 | 18 | ``` 19 | NEXTAUTH_URL=http://localhost:3000 20 | ZITADEL_ISSUER=[yourIssuerUrl] 21 | ZITADEL_CLIENT_ID=[yourClientId] 22 | ZITADEL_CLIENT_SECRET=[randomvalue] 23 | NEXTAUTH_SECRET=[randomvalue] 24 | ``` 25 | 26 | next-auth requires a secret for all providers, so just define a random value here. 27 | then open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 28 | 29 | # Configuration 30 | 31 | NextAuth.js exposes a REST API which is used by your client. 32 | To setup your configuration, create a file called [...nextauth].tsx in `pages/api/auth`. 33 | You can directly import our ZITADEL provider from [next-auth](https://next-auth.js.org/providers/zitadel). 34 | 35 | ```ts 36 | import NextAuth from 'next-auth'; 37 | import ZitadelProvider from 'next-auth/providers/zitadel'; 38 | 39 | export default NextAuth({ 40 | providers: [ 41 | ZitadelProvider({ 42 | issuer: process.env.ZITADEL_ISSUER, 43 | clientId: process.env.ZITADEL_CLIENT_ID, 44 | clientSecret: process.env.ZITADEL_CLIENT_SECRET, 45 | }), 46 | ], 47 | }); 48 | ``` 49 | 50 | You can overwrite the default callbacks too, just append them to the ZITADEL provider. 51 | 52 | ```ts 53 | ... 54 | ZitadelProvider({ 55 | issuer: process.env.ZITADEL_ISSUER, 56 | clientId: process.env.ZITADEL_CLIENT_ID, 57 | clientSecret: process.env.ZITADEL_CLIENT_SECRET, 58 | async profile(profile) { 59 | return { 60 | id: profile.sub, 61 | name: profile.name, 62 | firstName: profile.given_name, 63 | lastName: profile.family_name, 64 | email: profile.email, 65 | loginName: profile.preferred_username, 66 | image: profile.picture, 67 | }; 68 | }, 69 | }), 70 | ... 71 | ``` 72 | 73 | We recommend using the Authentication Code flow secured by PKCE for the Authentication flow. 74 | To be able to connect to ZITADEL, navigate to your Console Projects, create or select an existing project and add your app selecting WEB, then CODE, and then add `http://localhost:3000/api/auth/callback/zitadel` as redirect url to your app. 75 | 76 | For simplicity reasons we set the default to the one that next-auth provides us. You'll be able to change the redirect later if you want to. 77 | 78 | Hit Create, then in the detail view of your application make sure to enable dev mode. Dev mode ensures that you can start an auth flow from a non https endpoint for testing. 79 | 80 | > Once you have created the application, you will see a dialog providing the clientId and clientSecret. 81 | 82 | Copy the secret as it will not be shown again. 83 | 84 | Now go to Token settings and check the checkbox for **User Info inside ID Token** to get your users name directly on authentication. 85 | 86 | # User interface 87 | 88 | Now we can start editing the homepage by modifying `pages/index.tsx`. 89 | Add this snippet your file. This code gets your auth session from next-auth, renders a Logout button if your authenticated or shows a Signup button if your not. 90 | Note that signIn method requires the id of the provider we provided earlier, and provides a possibilty to add a callback url, Auth Next will redirect you to the specified route if logged in successfully. 91 | 92 | ```ts 93 | import { signIn, signOut, useSession } from 'next-auth/client'; 94 | 95 | export default function Page() { 96 | const { data: session } = useSession(); 97 | ... 98 | {!session && <> 99 | Not signed in
100 | 103 | } 104 | {session && <> 105 | Signed in as {session.user.email}
106 | 107 | } 108 | ... 109 | } 110 | ``` 111 | 112 | ### Session state 113 | 114 | To allow session state to be shared between pages - which improves performance, reduces network traffic and avoids component state changes while rendering - you can use the NextAuth.js Provider in `/pages/_app.tsx`. 115 | Take a loot at the template `_app.tsx`. 116 | 117 | ```ts 118 | import { SessionProvider } from 'next-auth/react'; 119 | 120 | function MyApp({ Component, pageProps }) { 121 | return ( 122 | 123 | 124 | 125 | ); 126 | } 127 | 128 | export default MyApp; 129 | ``` 130 | 131 | Last thing: create a `profile.tsx` in /pages which renders the callback page. 132 | 133 | ## Learn More 134 | 135 | To learn more about Next.js, take a look at the following resources: 136 | 137 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 138 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 139 | 140 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 141 | 142 | ## Deploy on Vercel 143 | 144 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 145 | 146 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 147 | -------------------------------------------------------------------------------- /components/profile.tsx: -------------------------------------------------------------------------------- 1 | import { signIn, signOut, useSession } from 'next-auth/react'; 2 | import Image from 'next/image'; 3 | import useSWR from 'swr'; 4 | 5 | const loadData = (url: string) => 6 | fetch(url).then((resp) => { 7 | if (resp.ok) { 8 | return resp.json() as Promise; 9 | } else { 10 | return resp.json().then((error) => { 11 | throw error; 12 | }); 13 | } 14 | }); 15 | 16 | export default function Profile() { 17 | const { data: session, status } = useSession(); 18 | 19 | const loading = status === 'loading'; 20 | 21 | const { data: user, isValidating } = useSWR(`/api/userinfo`, (url) => loadData(url)); 22 | 23 | const scope = 'urn:zitadel:iam:org:project:roles'; 24 | 25 | return ( 26 | <> 27 | {!session && ( 28 | <> 29 |

Not signed in

30 |
31 | 32 | 41 | 42 | )} 43 | {(loading || isValidating) && loading...} 44 | {user && ( 45 | <> 46 |
47 | {user.picture && ( 48 | user avatar 55 | )} 56 |

57 | Signed in as {user.name} 58 |
59 |

60 |
61 | {user && user[scope] && ( 62 |
[{user[scope] && Object.keys(user[scope]).join(',')}]
63 | )} 64 | 65 | 66 | )} 67 | 68 | ); 69 | } 70 | -------------------------------------------------------------------------------- /next-auth.d.ts: -------------------------------------------------------------------------------- 1 | import { DefaultSession, User } from 'next-auth'; 2 | import 'next-auth/jwt'; 3 | 4 | // Read more at: https://next-auth.js.org/getting-started/typescript#module-augmentation 5 | 6 | declare module 'next-auth' { 7 | interface Session { 8 | user?: { 9 | id?: string; 10 | loginName?: string; 11 | orgName?: string; 12 | } & DefaultSession['user']; 13 | error?: string; 14 | clientId: string; 15 | } 16 | 17 | interface User { 18 | id: string; 19 | name: string; 20 | firstName: string; 21 | lastName: string; 22 | email: string; 23 | loginName: string; 24 | image: string; 25 | } 26 | } 27 | 28 | declare module 'next-auth/jwt' { 29 | interface JWT { 30 | user?: User; 31 | accessToken?: string; 32 | refreshToken?: string; 33 | expiresAt?: number; 34 | error?: string; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/basic-features/typescript for more information. 6 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | module.exports = { 3 | reactStrictMode: true, 4 | images: { 5 | remotePatterns: [ 6 | { 7 | protocol: 'https', 8 | hostname: process.env.ZITADEL_ISSUER.slice(8), 9 | pathname: '/assets/v1/**', 10 | }, 11 | ], 12 | }, 13 | }; 14 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "zitadel-nextjs-template", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint && prettier --check .", 10 | "lint:fix": "prettier --write ." 11 | }, 12 | "dependencies": { 13 | "next": "^13.2.3", 14 | "next-auth": "^4.20.1", 15 | "openid-client": "^5.4.0", 16 | "react": "^18.2.0", 17 | "react-dom": "^18.2.0", 18 | "swr": "^2.1.0" 19 | }, 20 | "devDependencies": { 21 | "@next/eslint-plugin-next": "12.3.1", 22 | "@types/node": "^18.14.6", 23 | "@types/react": "^18.0.28", 24 | "eslint": "^8.35.0", 25 | "eslint-config-next": "^13.2.3", 26 | "prettier": "^2.8.4", 27 | "typescript": "^4.9.5" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- 1 | import '../styles/globals.css'; 2 | 3 | import { SessionProvider } from 'next-auth/react'; 4 | 5 | function MyApp({ Component, pageProps }) { 6 | return ( 7 | 8 | 9 | 10 | ); 11 | } 12 | 13 | export default MyApp; 14 | -------------------------------------------------------------------------------- /pages/api/auth/[...nextauth].tsx: -------------------------------------------------------------------------------- 1 | import NextAuth from 'next-auth'; 2 | import { JWT } from 'next-auth/jwt'; 3 | import ZitadelProvider from 'next-auth/providers/zitadel'; 4 | import { Issuer } from 'openid-client'; 5 | 6 | async function refreshAccessToken(token: JWT): Promise { 7 | try { 8 | const issuer = await Issuer.discover(process.env.ZITADEL_ISSUER ?? ''); 9 | const client = new issuer.Client({ 10 | client_id: process.env.ZITADEL_CLIENT_ID || '', 11 | token_endpoint_auth_method: 'none', 12 | }); 13 | 14 | const { refresh_token, access_token, expires_at } = await client.refresh(token.refreshToken as string); 15 | 16 | return { 17 | ...token, 18 | accessToken: access_token, 19 | expiresAt: (expires_at ?? 0) * 1000, 20 | refreshToken: refresh_token, // Fall back to old refresh token 21 | }; 22 | } catch (error) { 23 | console.error('Error during refreshAccessToken', error); 24 | 25 | return { 26 | ...token, 27 | error: 'RefreshAccessTokenError', 28 | }; 29 | } 30 | } 31 | 32 | export default NextAuth({ 33 | providers: [ 34 | ZitadelProvider({ 35 | issuer: process.env.ZITADEL_ISSUER, 36 | clientId: process.env.ZITADEL_CLIENT_ID, 37 | clientSecret: process.env.ZITADEL_CLIENT_SECRET, 38 | authorization: { 39 | params: { 40 | scope: `openid email profile offline_access`, 41 | }, 42 | }, 43 | async profile(profile) { 44 | return { 45 | id: profile.sub, 46 | name: profile.name, 47 | firstName: profile.given_name, 48 | lastName: profile.family_name, 49 | email: profile.email, 50 | loginName: profile.preferred_username, 51 | image: profile.picture, 52 | }; 53 | }, 54 | }), 55 | ], 56 | callbacks: { 57 | async jwt({ token, user, account }) { 58 | token.user ??= user; 59 | token.accessToken ??= account?.access_token; 60 | token.refreshToken ??= account?.refresh_token; 61 | token.expiresAt ??= (account?.expires_at ?? 0) * 1000; 62 | token.error = undefined; 63 | // Return previous token if the access token has not expired yet 64 | if (Date.now() < (token.expiresAt as number)) { 65 | return token; 66 | } 67 | 68 | // Access token has expired, try to update it 69 | return refreshAccessToken(token); 70 | }, 71 | async session({ session, token: { user, error: tokenError } }) { 72 | session.user = { 73 | id: user?.id, 74 | email: user?.email, 75 | image: user?.image, 76 | name: user?.name, 77 | loginName: user?.loginName, 78 | }; 79 | session.clientId = process.env.ZITADEL_CLIENT_ID; 80 | session.error = tokenError; 81 | return session; 82 | }, 83 | }, 84 | }); 85 | -------------------------------------------------------------------------------- /pages/api/userinfo.ts: -------------------------------------------------------------------------------- 1 | import { getToken } from 'next-auth/jwt'; 2 | 3 | import type { NextApiRequest, NextApiResponse } from 'next'; 4 | 5 | const getDataFromUserInfo = (req: NextApiRequest, res: NextApiResponse, token: string) => { 6 | const userInfoEndpoint = `${process.env.ZITADEL_ISSUER}/oidc/v1/userinfo`; 7 | 8 | return fetch(userInfoEndpoint, { 9 | headers: { 10 | authorization: `Bearer ${token}`, 11 | 'content-type': 'application/json', 12 | }, 13 | method: 'GET', 14 | }) 15 | .then((resp) => { 16 | return resp.json(); 17 | }) 18 | .then((resp) => { 19 | return res.status(200).send(resp); 20 | }) 21 | .catch((error) => { 22 | return res.status(500).send(error); 23 | }); 24 | }; 25 | 26 | const handler = async (req: NextApiRequest, res: NextApiResponse) => { 27 | const token = await getToken({ req }); 28 | if (!token?.accessToken) { 29 | return res.status(401).end(); 30 | } 31 | 32 | switch (req.method) { 33 | case 'GET': 34 | return getDataFromUserInfo(req, res, token.accessToken); 35 | default: 36 | return res.status(405).end(); 37 | } 38 | }; 39 | 40 | export default handler; 41 | -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- 1 | import Head from 'next/head'; 2 | import Image from 'next/image'; 3 | 4 | import Profile from '../components/profile'; 5 | import styles from '../styles/Home.module.css'; 6 | 7 | export default function Home() { 8 | return ( 9 |
10 | 11 | Create Next App 12 | 13 | 14 | 15 | 16 |
17 |

18 | Welcome to Next.js with ZITADEL! 19 |

20 | 21 |

22 | Get started by editing pages/index.tsx 23 |

24 | 25 | 26 |
27 | 28 | 36 |
37 | ); 38 | } 39 | -------------------------------------------------------------------------------- /pages/profile.tsx: -------------------------------------------------------------------------------- 1 | import Link from 'next/link'; 2 | 3 | import styles from '../styles/Home.module.css'; 4 | 5 | export default function ProfileView() { 6 | return ( 7 |
8 |

Login successful

9 | 10 | 11 | 12 |
13 | ); 14 | } 15 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zitadel/zitadel-nextjs/868291c77ff37a56dcfea0378ddfea075dcdbc37/public/favicon.ico -------------------------------------------------------------------------------- /public/zitadel-logo-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /public/zitadel-logo-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | -------------------------------------------------------------------------------- /styles/Home.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | min-height: 100vh; 3 | padding: 0 0.5rem; 4 | display: flex; 5 | flex-direction: column; 6 | justify-content: center; 7 | align-items: center; 8 | height: 100vh; 9 | } 10 | 11 | .main { 12 | padding: 5rem 0; 13 | flex: 1; 14 | display: flex; 15 | flex-direction: column; 16 | justify-content: center; 17 | align-items: center; 18 | } 19 | 20 | .footer { 21 | width: 100%; 22 | height: 100px; 23 | border-top: 1px solid #eaeaea; 24 | display: flex; 25 | justify-content: center; 26 | align-items: center; 27 | } 28 | 29 | .footer a { 30 | display: flex; 31 | justify-content: center; 32 | align-items: center; 33 | flex-grow: 1; 34 | } 35 | 36 | .title a { 37 | color: #0070f3; 38 | text-decoration: none; 39 | } 40 | 41 | .title a:hover, 42 | .title a:focus, 43 | .title a:active { 44 | text-decoration: underline; 45 | } 46 | 47 | .title { 48 | margin: 0; 49 | line-height: 1.15; 50 | font-size: 4rem; 51 | } 52 | 53 | .title, 54 | .description { 55 | text-align: center; 56 | } 57 | 58 | .description { 59 | line-height: 1.5; 60 | font-size: 1.5rem; 61 | } 62 | -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | padding: 0; 4 | margin: 0; 5 | font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, 6 | Helvetica Neue, sans-serif; 7 | } 8 | 9 | a { 10 | color: inherit; 11 | text-decoration: none; 12 | } 13 | 14 | * { 15 | box-sizing: border-box; 16 | } 17 | 18 | button { 19 | padding: 0.5rem 1rem; 20 | border-radius: 0.5rem; 21 | background-color: #0070f3; 22 | color: white; 23 | border: none; 24 | cursor: pointer; 25 | } 26 | 27 | button:hover { 28 | background-color: #1a7ef0; 29 | } 30 | 31 | .profile-row { 32 | display: flex; 33 | align-items: center; 34 | margin-bottom: 1rem; 35 | } 36 | 37 | .user-roles-row { 38 | display: flex; 39 | align-items: center; 40 | margin-bottom: 1rem; 41 | } 42 | 43 | .spinner { 44 | height: 2rem; 45 | width: 2rem; 46 | } 47 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": ["dom", "dom.iterable", "esnext"], 5 | "allowJs": true, 6 | "skipLibCheck": true, 7 | "strict": false, 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 | }, 18 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"], 19 | "exclude": ["node_modules"] 20 | } 21 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/runtime@^7.20.13", "@babel/runtime@^7.20.7": 6 | version "7.21.0" 7 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.21.0.tgz#5b55c9d394e5fcf304909a8b00c07dc217b56673" 8 | integrity sha512-xwII0//EObnq89Ji5AKYQaRYiW/nZ3llSv29d49IuxPhKbtJoLP+9QUUZ4nVragQVtaVGeZrpB+ZtG/Pdy/POw== 9 | dependencies: 10 | regenerator-runtime "^0.13.11" 11 | 12 | "@eslint/eslintrc@^2.0.0": 13 | version "2.0.0" 14 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.0.tgz#943309d8697c52fc82c076e90c1c74fbbe69dbff" 15 | integrity sha512-fluIaaV+GyV24CCu/ggiHdV+j4RNh85yQnAYS/G2mZODZgGmmlrgCydjUcV3YvxCm9x8nMAfThsqTni4KiXT4A== 16 | dependencies: 17 | ajv "^6.12.4" 18 | debug "^4.3.2" 19 | espree "^9.4.0" 20 | globals "^13.19.0" 21 | ignore "^5.2.0" 22 | import-fresh "^3.2.1" 23 | js-yaml "^4.1.0" 24 | minimatch "^3.1.2" 25 | strip-json-comments "^3.1.1" 26 | 27 | "@eslint/js@8.35.0": 28 | version "8.35.0" 29 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.35.0.tgz#b7569632b0b788a0ca0e438235154e45d42813a7" 30 | integrity sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw== 31 | 32 | "@humanwhocodes/config-array@^0.11.8": 33 | version "0.11.8" 34 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" 35 | integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== 36 | dependencies: 37 | "@humanwhocodes/object-schema" "^1.2.1" 38 | debug "^4.1.1" 39 | minimatch "^3.0.5" 40 | 41 | "@humanwhocodes/module-importer@^1.0.1": 42 | version "1.0.1" 43 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 44 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 45 | 46 | "@humanwhocodes/object-schema@^1.2.1": 47 | version "1.2.1" 48 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" 49 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== 50 | 51 | "@next/env@13.2.3": 52 | version "13.2.3" 53 | resolved "https://registry.yarnpkg.com/@next/env/-/env-13.2.3.tgz#77ca49edb3c1d7c5263bb8f2ebe686080e98279e" 54 | integrity sha512-FN50r/E+b8wuqyRjmGaqvqNDuWBWYWQiigfZ50KnSFH0f+AMQQyaZl+Zm2+CIpKk0fL9QxhLxOpTVA3xFHgFow== 55 | 56 | "@next/eslint-plugin-next@12.3.1": 57 | version "12.3.1" 58 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.3.1.tgz#b821f27b0f175954d8d18e5d323fce040ecc79a6" 59 | integrity sha512-sw+lTf6r6P0j+g/n9y4qdWWI2syPqZx+uc0+B/fRENqfR3KpSid6MIKqc9gNwGhJASazEQ5b3w8h4cAET213jw== 60 | dependencies: 61 | glob "7.1.7" 62 | 63 | "@next/eslint-plugin-next@13.2.3": 64 | version "13.2.3" 65 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-13.2.3.tgz#5af8ddeac6dbe028c812a0e59c41952c004d95d5" 66 | integrity sha512-QmMPItnU7VeojI1KnuwL9SLFWEwmaNHNlnOGpoTwdLoSiP9sc8KYiAHWEc4/44L+cAdCxcZYvn7frcRNP5l84Q== 67 | dependencies: 68 | glob "7.1.7" 69 | 70 | "@next/swc-android-arm-eabi@13.2.3": 71 | version "13.2.3" 72 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.2.3.tgz#85eed560c87c7996558c868a117be9780778f192" 73 | integrity sha512-mykdVaAXX/gm+eFO2kPeVjnOCKwanJ9mV2U0lsUGLrEdMUifPUjiXKc6qFAIs08PvmTMOLMNnUxqhGsJlWGKSw== 74 | 75 | "@next/swc-android-arm64@13.2.3": 76 | version "13.2.3" 77 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.2.3.tgz#8ac54ca9795a48afc4631b4823a4864bd5db0129" 78 | integrity sha512-8XwHPpA12gdIFtope+n9xCtJZM3U4gH4vVTpUwJ2w1kfxFmCpwQ4xmeGSkR67uOg80yRMuF0h9V1ueo05sws5w== 79 | 80 | "@next/swc-darwin-arm64@13.2.3": 81 | version "13.2.3" 82 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.2.3.tgz#f674e3c65aec505b6d218a662ade3fe248ccdbda" 83 | integrity sha512-TXOubiFdLpMfMtaRu1K5d1I9ipKbW5iS2BNbu8zJhoqrhk3Kp7aRKTxqFfWrbliAHhWVE/3fQZUYZOWSXVQi1w== 84 | 85 | "@next/swc-darwin-x64@13.2.3": 86 | version "13.2.3" 87 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.2.3.tgz#a15ea7fb4c46034a8f5e387906d0cad08387075a" 88 | integrity sha512-GZctkN6bJbpjlFiS5pylgB2pifHvgkqLAPumJzxnxkf7kqNm6rOGuNjsROvOWVWXmKhrzQkREO/WPS2aWsr/yw== 89 | 90 | "@next/swc-freebsd-x64@13.2.3": 91 | version "13.2.3" 92 | resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.2.3.tgz#f7ac6ae4f7d706ff2431f33e40230a554c8c2cbc" 93 | integrity sha512-rK6GpmMt/mU6MPuav0/M7hJ/3t8HbKPCELw/Uqhi4732xoq2hJ2zbo2FkYs56y6w0KiXrIp4IOwNB9K8L/q62g== 94 | 95 | "@next/swc-linux-arm-gnueabihf@13.2.3": 96 | version "13.2.3" 97 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.2.3.tgz#84ad9e9679d55542a23b590ad9f2e1e9b2df62f7" 98 | integrity sha512-yeiCp/Odt1UJ4KUE89XkeaaboIDiVFqKP4esvoLKGJ0fcqJXMofj4ad3tuQxAMs3F+qqrz9MclqhAHkex1aPZA== 99 | 100 | "@next/swc-linux-arm64-gnu@13.2.3": 101 | version "13.2.3" 102 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.2.3.tgz#56f9175bc632d647c60b9e8bedc0875edf92d8b7" 103 | integrity sha512-/miIopDOUsuNlvjBjTipvoyjjaxgkOuvlz+cIbbPcm1eFvzX2ltSfgMgty15GuOiR8Hub4FeTSiq3g2dmCkzGA== 104 | 105 | "@next/swc-linux-arm64-musl@13.2.3": 106 | version "13.2.3" 107 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.2.3.tgz#7d4cf00e8f1729a3de464da0624773f5d0d14888" 108 | integrity sha512-sujxFDhMMDjqhruup8LLGV/y+nCPi6nm5DlFoThMJFvaaKr/imhkXuk8uCTq4YJDbtRxnjydFv2y8laBSJVC2g== 109 | 110 | "@next/swc-linux-x64-gnu@13.2.3": 111 | version "13.2.3" 112 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.2.3.tgz#17de404910c4ebf7a1d366b19334d7e27e126ab0" 113 | integrity sha512-w5MyxPknVvC9LVnMenAYMXMx4KxPwXuJRMQFvY71uXg68n7cvcas85U5zkdrbmuZ+JvsO5SIG8k36/6X3nUhmQ== 114 | 115 | "@next/swc-linux-x64-musl@13.2.3": 116 | version "13.2.3" 117 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.2.3.tgz#07cb7b7f3a3a98034e2533f82638a9b099ba4ab1" 118 | integrity sha512-CTeelh8OzSOVqpzMFMFnVRJIFAFQoTsI9RmVJWW/92S4xfECGcOzgsX37CZ8K982WHRzKU7exeh7vYdG/Eh4CA== 119 | 120 | "@next/swc-win32-arm64-msvc@13.2.3": 121 | version "13.2.3" 122 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.2.3.tgz#b9ac98c954c71ec9de45d3497a8585096b873152" 123 | integrity sha512-7N1KBQP5mo4xf52cFCHgMjzbc9jizIlkTepe9tMa2WFvEIlKDfdt38QYcr9mbtny17yuaIw02FXOVEytGzqdOQ== 124 | 125 | "@next/swc-win32-ia32-msvc@13.2.3": 126 | version "13.2.3" 127 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.2.3.tgz#5ec48653a48fd664e940c69c96bba698fdae92eb" 128 | integrity sha512-LzWD5pTSipUXTEMRjtxES/NBYktuZdo7xExJqGDMnZU8WOI+v9mQzsmQgZS/q02eIv78JOCSemqVVKZBGCgUvA== 129 | 130 | "@next/swc-win32-x64-msvc@13.2.3": 131 | version "13.2.3" 132 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.2.3.tgz#cd432f280beb8d8de5b7cd2501e9f502e9f3dd72" 133 | integrity sha512-aLG2MaFs4y7IwaMTosz2r4mVbqRyCnMoFqOcmfTi7/mAS+G4IMH0vJp4oLdbshqiVoiVuKrAfqtXj55/m7Qu1Q== 134 | 135 | "@nodelib/fs.scandir@2.1.5": 136 | version "2.1.5" 137 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 138 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 139 | dependencies: 140 | "@nodelib/fs.stat" "2.0.5" 141 | run-parallel "^1.1.9" 142 | 143 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 144 | version "2.0.5" 145 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 146 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 147 | 148 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 149 | version "1.2.8" 150 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 151 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 152 | dependencies: 153 | "@nodelib/fs.scandir" "2.1.5" 154 | fastq "^1.6.0" 155 | 156 | "@panva/hkdf@^1.0.2": 157 | version "1.0.4" 158 | resolved "https://registry.yarnpkg.com/@panva/hkdf/-/hkdf-1.0.4.tgz#4e02bb248402ff6c5c024e23a68438e2b0e69d67" 159 | integrity sha512-003xWiCuvePbLaPHT+CRuaV4GlyCAVm6XYSbBZDHoWZGn1mNkVKFaDbGJjjxmEFvizUwlCoM6O18FCBMMky2zQ== 160 | 161 | "@pkgr/utils@^2.3.1": 162 | version "2.3.1" 163 | resolved "https://registry.yarnpkg.com/@pkgr/utils/-/utils-2.3.1.tgz#0a9b06ffddee364d6642b3cd562ca76f55b34a03" 164 | integrity sha512-wfzX8kc1PMyUILA+1Z/EqoE4UCXGy0iRGMhPwdfae1+f0OXlLqCk+By+aMzgJBzR9AzS4CDizioG6Ss1gvAFJw== 165 | dependencies: 166 | cross-spawn "^7.0.3" 167 | is-glob "^4.0.3" 168 | open "^8.4.0" 169 | picocolors "^1.0.0" 170 | tiny-glob "^0.2.9" 171 | tslib "^2.4.0" 172 | 173 | "@rushstack/eslint-patch@^1.1.3": 174 | version "1.2.0" 175 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz#8be36a1f66f3265389e90b5f9c9962146758f728" 176 | integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg== 177 | 178 | "@swc/helpers@0.4.14": 179 | version "0.4.14" 180 | resolved "https://registry.yarnpkg.com/@swc/helpers/-/helpers-0.4.14.tgz#1352ac6d95e3617ccb7c1498ff019654f1e12a74" 181 | integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw== 182 | dependencies: 183 | tslib "^2.4.0" 184 | 185 | "@types/json5@^0.0.29": 186 | version "0.0.29" 187 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 188 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== 189 | 190 | "@types/node@^18.14.6": 191 | version "18.14.6" 192 | resolved "https://registry.yarnpkg.com/@types/node/-/node-18.14.6.tgz#ae1973dd2b1eeb1825695bb11ebfb746d27e3e93" 193 | integrity sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA== 194 | 195 | "@types/prop-types@*": 196 | version "15.7.5" 197 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf" 198 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w== 199 | 200 | "@types/react@^18.0.28": 201 | version "18.0.28" 202 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.28.tgz#accaeb8b86f4908057ad629a26635fe641480065" 203 | integrity sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew== 204 | dependencies: 205 | "@types/prop-types" "*" 206 | "@types/scheduler" "*" 207 | csstype "^3.0.2" 208 | 209 | "@types/scheduler@*": 210 | version "0.16.2" 211 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39" 212 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew== 213 | 214 | "@typescript-eslint/parser@^5.42.0": 215 | version "5.54.1" 216 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.54.1.tgz#05761d7f777ef1c37c971d3af6631715099b084c" 217 | integrity sha512-8zaIXJp/nG9Ff9vQNh7TI+C3nA6q6iIsGJ4B4L6MhZ7mHnTMR4YP5vp2xydmFXIy8rpyIVbNAG44871LMt6ujg== 218 | dependencies: 219 | "@typescript-eslint/scope-manager" "5.54.1" 220 | "@typescript-eslint/types" "5.54.1" 221 | "@typescript-eslint/typescript-estree" "5.54.1" 222 | debug "^4.3.4" 223 | 224 | "@typescript-eslint/scope-manager@5.54.1": 225 | version "5.54.1" 226 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.54.1.tgz#6d864b4915741c608a58ce9912edf5a02bb58735" 227 | integrity sha512-zWKuGliXxvuxyM71UA/EcPxaviw39dB2504LqAmFDjmkpO8qNLHcmzlh6pbHs1h/7YQ9bnsO8CCcYCSA8sykUg== 228 | dependencies: 229 | "@typescript-eslint/types" "5.54.1" 230 | "@typescript-eslint/visitor-keys" "5.54.1" 231 | 232 | "@typescript-eslint/types@5.54.1": 233 | version "5.54.1" 234 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.54.1.tgz#29fbac29a716d0f08c62fe5de70c9b6735de215c" 235 | integrity sha512-G9+1vVazrfAfbtmCapJX8jRo2E4MDXxgm/IMOF4oGh3kq7XuK3JRkOg6y2Qu1VsTRmWETyTkWt1wxy7X7/yLkw== 236 | 237 | "@typescript-eslint/typescript-estree@5.54.1": 238 | version "5.54.1" 239 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.54.1.tgz#df7b6ae05fd8fef724a87afa7e2f57fa4a599be1" 240 | integrity sha512-bjK5t+S6ffHnVwA0qRPTZrxKSaFYocwFIkZx5k7pvWfsB1I57pO/0M0Skatzzw1sCkjJ83AfGTL0oFIFiDX3bg== 241 | dependencies: 242 | "@typescript-eslint/types" "5.54.1" 243 | "@typescript-eslint/visitor-keys" "5.54.1" 244 | debug "^4.3.4" 245 | globby "^11.1.0" 246 | is-glob "^4.0.3" 247 | semver "^7.3.7" 248 | tsutils "^3.21.0" 249 | 250 | "@typescript-eslint/visitor-keys@5.54.1": 251 | version "5.54.1" 252 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.54.1.tgz#d7a8a0f7181d6ac748f4d47b2306e0513b98bf8b" 253 | integrity sha512-q8iSoHTgwCfgcRJ2l2x+xCbu8nBlRAlsQ33k24Adj8eoVBE0f8dUeI+bAa8F84Mv05UGbAx57g2zrRsYIooqQg== 254 | dependencies: 255 | "@typescript-eslint/types" "5.54.1" 256 | eslint-visitor-keys "^3.3.0" 257 | 258 | acorn-jsx@^5.3.2: 259 | version "5.3.2" 260 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 261 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 262 | 263 | acorn@^8.8.0: 264 | version "8.8.2" 265 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" 266 | integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== 267 | 268 | ajv@^6.10.0, ajv@^6.12.4: 269 | version "6.12.6" 270 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 271 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 272 | dependencies: 273 | fast-deep-equal "^3.1.1" 274 | fast-json-stable-stringify "^2.0.0" 275 | json-schema-traverse "^0.4.1" 276 | uri-js "^4.2.2" 277 | 278 | ansi-regex@^5.0.1: 279 | version "5.0.1" 280 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 281 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 282 | 283 | ansi-styles@^4.1.0: 284 | version "4.3.0" 285 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 286 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 287 | dependencies: 288 | color-convert "^2.0.1" 289 | 290 | argparse@^2.0.1: 291 | version "2.0.1" 292 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 293 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 294 | 295 | aria-query@^5.1.3: 296 | version "5.1.3" 297 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.1.3.tgz#19db27cd101152773631396f7a95a3b58c22c35e" 298 | integrity sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ== 299 | dependencies: 300 | deep-equal "^2.0.5" 301 | 302 | array-includes@^3.1.5, array-includes@^3.1.6: 303 | version "3.1.6" 304 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" 305 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== 306 | dependencies: 307 | call-bind "^1.0.2" 308 | define-properties "^1.1.4" 309 | es-abstract "^1.20.4" 310 | get-intrinsic "^1.1.3" 311 | is-string "^1.0.7" 312 | 313 | array-union@^2.1.0: 314 | version "2.1.0" 315 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 316 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 317 | 318 | array.prototype.flat@^1.3.1: 319 | version "1.3.1" 320 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" 321 | integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== 322 | dependencies: 323 | call-bind "^1.0.2" 324 | define-properties "^1.1.4" 325 | es-abstract "^1.20.4" 326 | es-shim-unscopables "^1.0.0" 327 | 328 | array.prototype.flatmap@^1.3.1: 329 | version "1.3.1" 330 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" 331 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== 332 | dependencies: 333 | call-bind "^1.0.2" 334 | define-properties "^1.1.4" 335 | es-abstract "^1.20.4" 336 | es-shim-unscopables "^1.0.0" 337 | 338 | array.prototype.tosorted@^1.1.1: 339 | version "1.1.1" 340 | resolved "https://registry.yarnpkg.com/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz#ccf44738aa2b5ac56578ffda97c03fd3e23dd532" 341 | integrity sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ== 342 | dependencies: 343 | call-bind "^1.0.2" 344 | define-properties "^1.1.4" 345 | es-abstract "^1.20.4" 346 | es-shim-unscopables "^1.0.0" 347 | get-intrinsic "^1.1.3" 348 | 349 | ast-types-flow@^0.0.7: 350 | version "0.0.7" 351 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad" 352 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag== 353 | 354 | available-typed-arrays@^1.0.5: 355 | version "1.0.5" 356 | resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" 357 | integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== 358 | 359 | axe-core@^4.6.2: 360 | version "4.6.3" 361 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.6.3.tgz#fc0db6fdb65cc7a80ccf85286d91d64ababa3ece" 362 | integrity sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg== 363 | 364 | axobject-query@^3.1.1: 365 | version "3.1.1" 366 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-3.1.1.tgz#3b6e5c6d4e43ca7ba51c5babf99d22a9c68485e1" 367 | integrity sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg== 368 | dependencies: 369 | deep-equal "^2.0.5" 370 | 371 | balanced-match@^1.0.0: 372 | version "1.0.2" 373 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 374 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 375 | 376 | brace-expansion@^1.1.7: 377 | version "1.1.11" 378 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 379 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 380 | dependencies: 381 | balanced-match "^1.0.0" 382 | concat-map "0.0.1" 383 | 384 | braces@^3.0.2: 385 | version "3.0.2" 386 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 387 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 388 | dependencies: 389 | fill-range "^7.0.1" 390 | 391 | call-bind@^1.0.0, call-bind@^1.0.2: 392 | version "1.0.2" 393 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 394 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== 395 | dependencies: 396 | function-bind "^1.1.1" 397 | get-intrinsic "^1.0.2" 398 | 399 | callsites@^3.0.0: 400 | version "3.1.0" 401 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 402 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 403 | 404 | caniuse-lite@^1.0.30001406: 405 | version "1.0.30001418" 406 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001418.tgz#5f459215192a024c99e3e3a53aac310fc7cf24e6" 407 | integrity sha512-oIs7+JL3K9JRQ3jPZjlH6qyYDp+nBTCais7hjh0s+fuBwufc7uZ7hPYMXrDOJhV360KGMTcczMRObk0/iMqZRg== 408 | 409 | chalk@^4.0.0: 410 | version "4.1.2" 411 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 412 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 413 | dependencies: 414 | ansi-styles "^4.1.0" 415 | supports-color "^7.1.0" 416 | 417 | client-only@0.0.1: 418 | version "0.0.1" 419 | resolved "https://registry.yarnpkg.com/client-only/-/client-only-0.0.1.tgz#38bba5d403c41ab150bff64a95c85013cf73bca1" 420 | integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA== 421 | 422 | color-convert@^2.0.1: 423 | version "2.0.1" 424 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 425 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 426 | dependencies: 427 | color-name "~1.1.4" 428 | 429 | color-name@~1.1.4: 430 | version "1.1.4" 431 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 432 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 433 | 434 | concat-map@0.0.1: 435 | version "0.0.1" 436 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 437 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 438 | 439 | cookie@^0.5.0: 440 | version "0.5.0" 441 | resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.5.0.tgz#d1f5d71adec6558c58f389987c366aa47e994f8b" 442 | integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw== 443 | 444 | cross-spawn@^7.0.2, cross-spawn@^7.0.3: 445 | version "7.0.3" 446 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 447 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 448 | dependencies: 449 | path-key "^3.1.0" 450 | shebang-command "^2.0.0" 451 | which "^2.0.1" 452 | 453 | csstype@^3.0.2: 454 | version "3.1.0" 455 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2" 456 | integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA== 457 | 458 | damerau-levenshtein@^1.0.8: 459 | version "1.0.8" 460 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7" 461 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA== 462 | 463 | debug@^3.2.7: 464 | version "3.2.7" 465 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 466 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 467 | dependencies: 468 | ms "^2.1.1" 469 | 470 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: 471 | version "4.3.4" 472 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 473 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 474 | dependencies: 475 | ms "2.1.2" 476 | 477 | deep-equal@^2.0.5: 478 | version "2.2.0" 479 | resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.2.0.tgz#5caeace9c781028b9ff459f33b779346637c43e6" 480 | integrity sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw== 481 | dependencies: 482 | call-bind "^1.0.2" 483 | es-get-iterator "^1.1.2" 484 | get-intrinsic "^1.1.3" 485 | is-arguments "^1.1.1" 486 | is-array-buffer "^3.0.1" 487 | is-date-object "^1.0.5" 488 | is-regex "^1.1.4" 489 | is-shared-array-buffer "^1.0.2" 490 | isarray "^2.0.5" 491 | object-is "^1.1.5" 492 | object-keys "^1.1.1" 493 | object.assign "^4.1.4" 494 | regexp.prototype.flags "^1.4.3" 495 | side-channel "^1.0.4" 496 | which-boxed-primitive "^1.0.2" 497 | which-collection "^1.0.1" 498 | which-typed-array "^1.1.9" 499 | 500 | deep-is@^0.1.3: 501 | version "0.1.4" 502 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 503 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 504 | 505 | define-lazy-prop@^2.0.0: 506 | version "2.0.0" 507 | resolved "https://registry.yarnpkg.com/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz#3f7ae421129bcaaac9bc74905c98a0009ec9ee7f" 508 | integrity sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og== 509 | 510 | define-properties@^1.1.3, define-properties@^1.1.4: 511 | version "1.2.0" 512 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" 513 | integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== 514 | dependencies: 515 | has-property-descriptors "^1.0.0" 516 | object-keys "^1.1.1" 517 | 518 | dir-glob@^3.0.1: 519 | version "3.0.1" 520 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 521 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 522 | dependencies: 523 | path-type "^4.0.0" 524 | 525 | doctrine@^2.1.0: 526 | version "2.1.0" 527 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" 528 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== 529 | dependencies: 530 | esutils "^2.0.2" 531 | 532 | doctrine@^3.0.0: 533 | version "3.0.0" 534 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 535 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 536 | dependencies: 537 | esutils "^2.0.2" 538 | 539 | emoji-regex@^9.2.2: 540 | version "9.2.2" 541 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" 542 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== 543 | 544 | enhanced-resolve@^5.10.0: 545 | version "5.12.0" 546 | resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.12.0.tgz#300e1c90228f5b570c4d35babf263f6da7155634" 547 | integrity sha512-QHTXI/sZQmko1cbDoNAa3mJ5qhWUUNAq3vR0/YiD379fWQrcfuoX1+HW2S0MTt7XmoPLapdaDKUtelUSPic7hQ== 548 | dependencies: 549 | graceful-fs "^4.2.4" 550 | tapable "^2.2.0" 551 | 552 | es-abstract@^1.19.0, es-abstract@^1.20.4: 553 | version "1.21.1" 554 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.1.tgz#e6105a099967c08377830a0c9cb589d570dd86c6" 555 | integrity sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg== 556 | dependencies: 557 | available-typed-arrays "^1.0.5" 558 | call-bind "^1.0.2" 559 | es-set-tostringtag "^2.0.1" 560 | es-to-primitive "^1.2.1" 561 | function-bind "^1.1.1" 562 | function.prototype.name "^1.1.5" 563 | get-intrinsic "^1.1.3" 564 | get-symbol-description "^1.0.0" 565 | globalthis "^1.0.3" 566 | gopd "^1.0.1" 567 | has "^1.0.3" 568 | has-property-descriptors "^1.0.0" 569 | has-proto "^1.0.1" 570 | has-symbols "^1.0.3" 571 | internal-slot "^1.0.4" 572 | is-array-buffer "^3.0.1" 573 | is-callable "^1.2.7" 574 | is-negative-zero "^2.0.2" 575 | is-regex "^1.1.4" 576 | is-shared-array-buffer "^1.0.2" 577 | is-string "^1.0.7" 578 | is-typed-array "^1.1.10" 579 | is-weakref "^1.0.2" 580 | object-inspect "^1.12.2" 581 | object-keys "^1.1.1" 582 | object.assign "^4.1.4" 583 | regexp.prototype.flags "^1.4.3" 584 | safe-regex-test "^1.0.0" 585 | string.prototype.trimend "^1.0.6" 586 | string.prototype.trimstart "^1.0.6" 587 | typed-array-length "^1.0.4" 588 | unbox-primitive "^1.0.2" 589 | which-typed-array "^1.1.9" 590 | 591 | es-get-iterator@^1.1.2: 592 | version "1.1.3" 593 | resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.3.tgz#3ef87523c5d464d41084b2c3c9c214f1199763d6" 594 | integrity sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw== 595 | dependencies: 596 | call-bind "^1.0.2" 597 | get-intrinsic "^1.1.3" 598 | has-symbols "^1.0.3" 599 | is-arguments "^1.1.1" 600 | is-map "^2.0.2" 601 | is-set "^2.0.2" 602 | is-string "^1.0.7" 603 | isarray "^2.0.5" 604 | stop-iteration-iterator "^1.0.0" 605 | 606 | es-set-tostringtag@^2.0.1: 607 | version "2.0.1" 608 | resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" 609 | integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== 610 | dependencies: 611 | get-intrinsic "^1.1.3" 612 | has "^1.0.3" 613 | has-tostringtag "^1.0.0" 614 | 615 | es-shim-unscopables@^1.0.0: 616 | version "1.0.0" 617 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" 618 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== 619 | dependencies: 620 | has "^1.0.3" 621 | 622 | es-to-primitive@^1.2.1: 623 | version "1.2.1" 624 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" 625 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== 626 | dependencies: 627 | is-callable "^1.1.4" 628 | is-date-object "^1.0.1" 629 | is-symbol "^1.0.2" 630 | 631 | escape-string-regexp@^4.0.0: 632 | version "4.0.0" 633 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 634 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 635 | 636 | eslint-config-next@^13.2.3: 637 | version "13.2.3" 638 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-13.2.3.tgz#8a952bfd856f492684a30dd5fcdc8979c97c1cc2" 639 | integrity sha512-kPulHiQEHGei9hIaaNGygHRc0UzlWM+3euOmYbxNkd2Nbhci5rrCDeMBMPSV8xgUssphDGmwDHWbk4VZz3rlZQ== 640 | dependencies: 641 | "@next/eslint-plugin-next" "13.2.3" 642 | "@rushstack/eslint-patch" "^1.1.3" 643 | "@typescript-eslint/parser" "^5.42.0" 644 | eslint-import-resolver-node "^0.3.6" 645 | eslint-import-resolver-typescript "^3.5.2" 646 | eslint-plugin-import "^2.26.0" 647 | eslint-plugin-jsx-a11y "^6.5.1" 648 | eslint-plugin-react "^7.31.7" 649 | eslint-plugin-react-hooks "^4.5.0" 650 | 651 | eslint-import-resolver-node@^0.3.6, eslint-import-resolver-node@^0.3.7: 652 | version "0.3.7" 653 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7" 654 | integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== 655 | dependencies: 656 | debug "^3.2.7" 657 | is-core-module "^2.11.0" 658 | resolve "^1.22.1" 659 | 660 | eslint-import-resolver-typescript@^3.5.2: 661 | version "3.5.3" 662 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.3.tgz#db5ed9e906651b7a59dd84870aaef0e78c663a05" 663 | integrity sha512-njRcKYBc3isE42LaTcJNVANR3R99H9bAxBDMNDr2W7yq5gYPxbU3MkdhsQukxZ/Xg9C2vcyLlDsbKfRDg0QvCQ== 664 | dependencies: 665 | debug "^4.3.4" 666 | enhanced-resolve "^5.10.0" 667 | get-tsconfig "^4.2.0" 668 | globby "^13.1.2" 669 | is-core-module "^2.10.0" 670 | is-glob "^4.0.3" 671 | synckit "^0.8.4" 672 | 673 | eslint-module-utils@^2.7.4: 674 | version "2.7.4" 675 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" 676 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== 677 | dependencies: 678 | debug "^3.2.7" 679 | 680 | eslint-plugin-import@^2.26.0: 681 | version "2.27.5" 682 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65" 683 | integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== 684 | dependencies: 685 | array-includes "^3.1.6" 686 | array.prototype.flat "^1.3.1" 687 | array.prototype.flatmap "^1.3.1" 688 | debug "^3.2.7" 689 | doctrine "^2.1.0" 690 | eslint-import-resolver-node "^0.3.7" 691 | eslint-module-utils "^2.7.4" 692 | has "^1.0.3" 693 | is-core-module "^2.11.0" 694 | is-glob "^4.0.3" 695 | minimatch "^3.1.2" 696 | object.values "^1.1.6" 697 | resolve "^1.22.1" 698 | semver "^6.3.0" 699 | tsconfig-paths "^3.14.1" 700 | 701 | eslint-plugin-jsx-a11y@^6.5.1: 702 | version "6.7.1" 703 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz#fca5e02d115f48c9a597a6894d5bcec2f7a76976" 704 | integrity sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA== 705 | dependencies: 706 | "@babel/runtime" "^7.20.7" 707 | aria-query "^5.1.3" 708 | array-includes "^3.1.6" 709 | array.prototype.flatmap "^1.3.1" 710 | ast-types-flow "^0.0.7" 711 | axe-core "^4.6.2" 712 | axobject-query "^3.1.1" 713 | damerau-levenshtein "^1.0.8" 714 | emoji-regex "^9.2.2" 715 | has "^1.0.3" 716 | jsx-ast-utils "^3.3.3" 717 | language-tags "=1.0.5" 718 | minimatch "^3.1.2" 719 | object.entries "^1.1.6" 720 | object.fromentries "^2.0.6" 721 | semver "^6.3.0" 722 | 723 | eslint-plugin-react-hooks@^4.5.0: 724 | version "4.6.0" 725 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3" 726 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g== 727 | 728 | eslint-plugin-react@^7.31.7: 729 | version "7.32.2" 730 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz#e71f21c7c265ebce01bcbc9d0955170c55571f10" 731 | integrity sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg== 732 | dependencies: 733 | array-includes "^3.1.6" 734 | array.prototype.flatmap "^1.3.1" 735 | array.prototype.tosorted "^1.1.1" 736 | doctrine "^2.1.0" 737 | estraverse "^5.3.0" 738 | jsx-ast-utils "^2.4.1 || ^3.0.0" 739 | minimatch "^3.1.2" 740 | object.entries "^1.1.6" 741 | object.fromentries "^2.0.6" 742 | object.hasown "^1.1.2" 743 | object.values "^1.1.6" 744 | prop-types "^15.8.1" 745 | resolve "^2.0.0-next.4" 746 | semver "^6.3.0" 747 | string.prototype.matchall "^4.0.8" 748 | 749 | eslint-scope@^7.1.1: 750 | version "7.1.1" 751 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" 752 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== 753 | dependencies: 754 | esrecurse "^4.3.0" 755 | estraverse "^5.2.0" 756 | 757 | eslint-utils@^3.0.0: 758 | version "3.0.0" 759 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" 760 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== 761 | dependencies: 762 | eslint-visitor-keys "^2.0.0" 763 | 764 | eslint-visitor-keys@^2.0.0: 765 | version "2.1.0" 766 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 767 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 768 | 769 | eslint-visitor-keys@^3.3.0: 770 | version "3.3.0" 771 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" 772 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== 773 | 774 | eslint@^8.35.0: 775 | version "8.35.0" 776 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.35.0.tgz#fffad7c7e326bae606f0e8f436a6158566d42323" 777 | integrity sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw== 778 | dependencies: 779 | "@eslint/eslintrc" "^2.0.0" 780 | "@eslint/js" "8.35.0" 781 | "@humanwhocodes/config-array" "^0.11.8" 782 | "@humanwhocodes/module-importer" "^1.0.1" 783 | "@nodelib/fs.walk" "^1.2.8" 784 | ajv "^6.10.0" 785 | chalk "^4.0.0" 786 | cross-spawn "^7.0.2" 787 | debug "^4.3.2" 788 | doctrine "^3.0.0" 789 | escape-string-regexp "^4.0.0" 790 | eslint-scope "^7.1.1" 791 | eslint-utils "^3.0.0" 792 | eslint-visitor-keys "^3.3.0" 793 | espree "^9.4.0" 794 | esquery "^1.4.2" 795 | esutils "^2.0.2" 796 | fast-deep-equal "^3.1.3" 797 | file-entry-cache "^6.0.1" 798 | find-up "^5.0.0" 799 | glob-parent "^6.0.2" 800 | globals "^13.19.0" 801 | grapheme-splitter "^1.0.4" 802 | ignore "^5.2.0" 803 | import-fresh "^3.0.0" 804 | imurmurhash "^0.1.4" 805 | is-glob "^4.0.0" 806 | is-path-inside "^3.0.3" 807 | js-sdsl "^4.1.4" 808 | js-yaml "^4.1.0" 809 | json-stable-stringify-without-jsonify "^1.0.1" 810 | levn "^0.4.1" 811 | lodash.merge "^4.6.2" 812 | minimatch "^3.1.2" 813 | natural-compare "^1.4.0" 814 | optionator "^0.9.1" 815 | regexpp "^3.2.0" 816 | strip-ansi "^6.0.1" 817 | strip-json-comments "^3.1.0" 818 | text-table "^0.2.0" 819 | 820 | espree@^9.4.0: 821 | version "9.4.1" 822 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd" 823 | integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== 824 | dependencies: 825 | acorn "^8.8.0" 826 | acorn-jsx "^5.3.2" 827 | eslint-visitor-keys "^3.3.0" 828 | 829 | esquery@^1.4.2: 830 | version "1.5.0" 831 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" 832 | integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== 833 | dependencies: 834 | estraverse "^5.1.0" 835 | 836 | esrecurse@^4.3.0: 837 | version "4.3.0" 838 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 839 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 840 | dependencies: 841 | estraverse "^5.2.0" 842 | 843 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0: 844 | version "5.3.0" 845 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 846 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 847 | 848 | esutils@^2.0.2: 849 | version "2.0.3" 850 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 851 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 852 | 853 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 854 | version "3.1.3" 855 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 856 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 857 | 858 | fast-glob@^3.2.11, fast-glob@^3.2.9: 859 | version "3.2.12" 860 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" 861 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== 862 | dependencies: 863 | "@nodelib/fs.stat" "^2.0.2" 864 | "@nodelib/fs.walk" "^1.2.3" 865 | glob-parent "^5.1.2" 866 | merge2 "^1.3.0" 867 | micromatch "^4.0.4" 868 | 869 | fast-json-stable-stringify@^2.0.0: 870 | version "2.1.0" 871 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 872 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 873 | 874 | fast-levenshtein@^2.0.6: 875 | version "2.0.6" 876 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 877 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 878 | 879 | fastq@^1.6.0: 880 | version "1.15.0" 881 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" 882 | integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== 883 | dependencies: 884 | reusify "^1.0.4" 885 | 886 | file-entry-cache@^6.0.1: 887 | version "6.0.1" 888 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 889 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 890 | dependencies: 891 | flat-cache "^3.0.4" 892 | 893 | fill-range@^7.0.1: 894 | version "7.0.1" 895 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 896 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 897 | dependencies: 898 | to-regex-range "^5.0.1" 899 | 900 | find-up@^5.0.0: 901 | version "5.0.0" 902 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 903 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 904 | dependencies: 905 | locate-path "^6.0.0" 906 | path-exists "^4.0.0" 907 | 908 | flat-cache@^3.0.4: 909 | version "3.0.4" 910 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 911 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 912 | dependencies: 913 | flatted "^3.1.0" 914 | rimraf "^3.0.2" 915 | 916 | flatted@^3.1.0: 917 | version "3.2.7" 918 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" 919 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== 920 | 921 | for-each@^0.3.3: 922 | version "0.3.3" 923 | resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" 924 | integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== 925 | dependencies: 926 | is-callable "^1.1.3" 927 | 928 | fs.realpath@^1.0.0: 929 | version "1.0.0" 930 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 931 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 932 | 933 | function-bind@^1.1.1: 934 | version "1.1.1" 935 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 936 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 937 | 938 | function.prototype.name@^1.1.5: 939 | version "1.1.5" 940 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" 941 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== 942 | dependencies: 943 | call-bind "^1.0.2" 944 | define-properties "^1.1.3" 945 | es-abstract "^1.19.0" 946 | functions-have-names "^1.2.2" 947 | 948 | functions-have-names@^1.2.2: 949 | version "1.2.3" 950 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" 951 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== 952 | 953 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: 954 | version "1.2.0" 955 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" 956 | integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== 957 | dependencies: 958 | function-bind "^1.1.1" 959 | has "^1.0.3" 960 | has-symbols "^1.0.3" 961 | 962 | get-symbol-description@^1.0.0: 963 | version "1.0.0" 964 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" 965 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== 966 | dependencies: 967 | call-bind "^1.0.2" 968 | get-intrinsic "^1.1.1" 969 | 970 | get-tsconfig@^4.2.0: 971 | version "4.4.0" 972 | resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.4.0.tgz#64eee64596668a81b8fce18403f94f245ee0d4e5" 973 | integrity sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ== 974 | 975 | glob-parent@^5.1.2: 976 | version "5.1.2" 977 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 978 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 979 | dependencies: 980 | is-glob "^4.0.1" 981 | 982 | glob-parent@^6.0.2: 983 | version "6.0.2" 984 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 985 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 986 | dependencies: 987 | is-glob "^4.0.3" 988 | 989 | glob@7.1.7: 990 | version "7.1.7" 991 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 992 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 993 | dependencies: 994 | fs.realpath "^1.0.0" 995 | inflight "^1.0.4" 996 | inherits "2" 997 | minimatch "^3.0.4" 998 | once "^1.3.0" 999 | path-is-absolute "^1.0.0" 1000 | 1001 | glob@^7.1.3: 1002 | version "7.2.3" 1003 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1004 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1005 | dependencies: 1006 | fs.realpath "^1.0.0" 1007 | inflight "^1.0.4" 1008 | inherits "2" 1009 | minimatch "^3.1.1" 1010 | once "^1.3.0" 1011 | path-is-absolute "^1.0.0" 1012 | 1013 | globals@^13.19.0: 1014 | version "13.20.0" 1015 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" 1016 | integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== 1017 | dependencies: 1018 | type-fest "^0.20.2" 1019 | 1020 | globalthis@^1.0.3: 1021 | version "1.0.3" 1022 | resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" 1023 | integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== 1024 | dependencies: 1025 | define-properties "^1.1.3" 1026 | 1027 | globalyzer@0.1.0: 1028 | version "0.1.0" 1029 | resolved "https://registry.yarnpkg.com/globalyzer/-/globalyzer-0.1.0.tgz#cb76da79555669a1519d5a8edf093afaa0bf1465" 1030 | integrity sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q== 1031 | 1032 | globby@^11.1.0: 1033 | version "11.1.0" 1034 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1035 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1036 | dependencies: 1037 | array-union "^2.1.0" 1038 | dir-glob "^3.0.1" 1039 | fast-glob "^3.2.9" 1040 | ignore "^5.2.0" 1041 | merge2 "^1.4.1" 1042 | slash "^3.0.0" 1043 | 1044 | globby@^13.1.2: 1045 | version "13.1.3" 1046 | resolved "https://registry.yarnpkg.com/globby/-/globby-13.1.3.tgz#f62baf5720bcb2c1330c8d4ef222ee12318563ff" 1047 | integrity sha512-8krCNHXvlCgHDpegPzleMq07yMYTO2sXKASmZmquEYWEmCx6J5UTRbp5RwMJkTJGtcQ44YpiUYUiN0b9mzy8Bw== 1048 | dependencies: 1049 | dir-glob "^3.0.1" 1050 | fast-glob "^3.2.11" 1051 | ignore "^5.2.0" 1052 | merge2 "^1.4.1" 1053 | slash "^4.0.0" 1054 | 1055 | globrex@^0.1.2: 1056 | version "0.1.2" 1057 | resolved "https://registry.yarnpkg.com/globrex/-/globrex-0.1.2.tgz#dd5d9ec826232730cd6793a5e33a9302985e6098" 1058 | integrity sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg== 1059 | 1060 | gopd@^1.0.1: 1061 | version "1.0.1" 1062 | resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" 1063 | integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== 1064 | dependencies: 1065 | get-intrinsic "^1.1.3" 1066 | 1067 | graceful-fs@^4.2.4: 1068 | version "4.2.10" 1069 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" 1070 | integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== 1071 | 1072 | grapheme-splitter@^1.0.4: 1073 | version "1.0.4" 1074 | resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" 1075 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== 1076 | 1077 | has-bigints@^1.0.1, has-bigints@^1.0.2: 1078 | version "1.0.2" 1079 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" 1080 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== 1081 | 1082 | has-flag@^4.0.0: 1083 | version "4.0.0" 1084 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1085 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1086 | 1087 | has-property-descriptors@^1.0.0: 1088 | version "1.0.0" 1089 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" 1090 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== 1091 | dependencies: 1092 | get-intrinsic "^1.1.1" 1093 | 1094 | has-proto@^1.0.1: 1095 | version "1.0.1" 1096 | resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" 1097 | integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== 1098 | 1099 | has-symbols@^1.0.2, has-symbols@^1.0.3: 1100 | version "1.0.3" 1101 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" 1102 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== 1103 | 1104 | has-tostringtag@^1.0.0: 1105 | version "1.0.0" 1106 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" 1107 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== 1108 | dependencies: 1109 | has-symbols "^1.0.2" 1110 | 1111 | has@^1.0.3: 1112 | version "1.0.3" 1113 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1114 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1115 | dependencies: 1116 | function-bind "^1.1.1" 1117 | 1118 | ignore@^5.2.0: 1119 | version "5.2.4" 1120 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" 1121 | integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== 1122 | 1123 | import-fresh@^3.0.0, import-fresh@^3.2.1: 1124 | version "3.3.0" 1125 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1126 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1127 | dependencies: 1128 | parent-module "^1.0.0" 1129 | resolve-from "^4.0.0" 1130 | 1131 | imurmurhash@^0.1.4: 1132 | version "0.1.4" 1133 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1134 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1135 | 1136 | inflight@^1.0.4: 1137 | version "1.0.6" 1138 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1139 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1140 | dependencies: 1141 | once "^1.3.0" 1142 | wrappy "1" 1143 | 1144 | inherits@2: 1145 | version "2.0.4" 1146 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1147 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1148 | 1149 | internal-slot@^1.0.3, internal-slot@^1.0.4: 1150 | version "1.0.5" 1151 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" 1152 | integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== 1153 | dependencies: 1154 | get-intrinsic "^1.2.0" 1155 | has "^1.0.3" 1156 | side-channel "^1.0.4" 1157 | 1158 | is-arguments@^1.1.1: 1159 | version "1.1.1" 1160 | resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.1.tgz#15b3f88fda01f2a97fec84ca761a560f123efa9b" 1161 | integrity sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA== 1162 | dependencies: 1163 | call-bind "^1.0.2" 1164 | has-tostringtag "^1.0.0" 1165 | 1166 | is-array-buffer@^3.0.1: 1167 | version "3.0.2" 1168 | resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" 1169 | integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== 1170 | dependencies: 1171 | call-bind "^1.0.2" 1172 | get-intrinsic "^1.2.0" 1173 | is-typed-array "^1.1.10" 1174 | 1175 | is-bigint@^1.0.1: 1176 | version "1.0.4" 1177 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" 1178 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== 1179 | dependencies: 1180 | has-bigints "^1.0.1" 1181 | 1182 | is-boolean-object@^1.1.0: 1183 | version "1.1.2" 1184 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" 1185 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== 1186 | dependencies: 1187 | call-bind "^1.0.2" 1188 | has-tostringtag "^1.0.0" 1189 | 1190 | is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: 1191 | version "1.2.7" 1192 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" 1193 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== 1194 | 1195 | is-core-module@^2.10.0, is-core-module@^2.11.0, is-core-module@^2.9.0: 1196 | version "2.11.0" 1197 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" 1198 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== 1199 | dependencies: 1200 | has "^1.0.3" 1201 | 1202 | is-date-object@^1.0.1, is-date-object@^1.0.5: 1203 | version "1.0.5" 1204 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" 1205 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== 1206 | dependencies: 1207 | has-tostringtag "^1.0.0" 1208 | 1209 | is-docker@^2.0.0, is-docker@^2.1.1: 1210 | version "2.2.1" 1211 | resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" 1212 | integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 1213 | 1214 | is-extglob@^2.1.1: 1215 | version "2.1.1" 1216 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1217 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1218 | 1219 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 1220 | version "4.0.3" 1221 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1222 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1223 | dependencies: 1224 | is-extglob "^2.1.1" 1225 | 1226 | is-map@^2.0.1, is-map@^2.0.2: 1227 | version "2.0.2" 1228 | resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" 1229 | integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== 1230 | 1231 | is-negative-zero@^2.0.2: 1232 | version "2.0.2" 1233 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" 1234 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== 1235 | 1236 | is-number-object@^1.0.4: 1237 | version "1.0.7" 1238 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" 1239 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== 1240 | dependencies: 1241 | has-tostringtag "^1.0.0" 1242 | 1243 | is-number@^7.0.0: 1244 | version "7.0.0" 1245 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1246 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1247 | 1248 | is-path-inside@^3.0.3: 1249 | version "3.0.3" 1250 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1251 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1252 | 1253 | is-regex@^1.1.4: 1254 | version "1.1.4" 1255 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" 1256 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== 1257 | dependencies: 1258 | call-bind "^1.0.2" 1259 | has-tostringtag "^1.0.0" 1260 | 1261 | is-set@^2.0.1, is-set@^2.0.2: 1262 | version "2.0.2" 1263 | resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" 1264 | integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== 1265 | 1266 | is-shared-array-buffer@^1.0.2: 1267 | version "1.0.2" 1268 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" 1269 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== 1270 | dependencies: 1271 | call-bind "^1.0.2" 1272 | 1273 | is-string@^1.0.5, is-string@^1.0.7: 1274 | version "1.0.7" 1275 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" 1276 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== 1277 | dependencies: 1278 | has-tostringtag "^1.0.0" 1279 | 1280 | is-symbol@^1.0.2, is-symbol@^1.0.3: 1281 | version "1.0.4" 1282 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" 1283 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== 1284 | dependencies: 1285 | has-symbols "^1.0.2" 1286 | 1287 | is-typed-array@^1.1.10, is-typed-array@^1.1.9: 1288 | version "1.1.10" 1289 | resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" 1290 | integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== 1291 | dependencies: 1292 | available-typed-arrays "^1.0.5" 1293 | call-bind "^1.0.2" 1294 | for-each "^0.3.3" 1295 | gopd "^1.0.1" 1296 | has-tostringtag "^1.0.0" 1297 | 1298 | is-weakmap@^2.0.1: 1299 | version "2.0.1" 1300 | resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" 1301 | integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== 1302 | 1303 | is-weakref@^1.0.2: 1304 | version "1.0.2" 1305 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" 1306 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== 1307 | dependencies: 1308 | call-bind "^1.0.2" 1309 | 1310 | is-weakset@^2.0.1: 1311 | version "2.0.2" 1312 | resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.2.tgz#4569d67a747a1ce5a994dfd4ef6dcea76e7c0a1d" 1313 | integrity sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg== 1314 | dependencies: 1315 | call-bind "^1.0.2" 1316 | get-intrinsic "^1.1.1" 1317 | 1318 | is-wsl@^2.2.0: 1319 | version "2.2.0" 1320 | resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-2.2.0.tgz#74a4c76e77ca9fd3f932f290c17ea326cd157271" 1321 | integrity sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww== 1322 | dependencies: 1323 | is-docker "^2.0.0" 1324 | 1325 | isarray@^2.0.5: 1326 | version "2.0.5" 1327 | resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" 1328 | integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== 1329 | 1330 | isexe@^2.0.0: 1331 | version "2.0.0" 1332 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1333 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1334 | 1335 | jose@^4.10.0, jose@^4.11.4: 1336 | version "4.13.1" 1337 | resolved "https://registry.yarnpkg.com/jose/-/jose-4.13.1.tgz#449111bb5ab171db85c03f1bd2cb1647ca06db1c" 1338 | integrity sha512-MSJQC5vXco5Br38mzaQKiq9mwt7lwj2eXpgpRyQYNHYt2lq1PjkWa7DLXX0WVcQLE9HhMh3jPiufS7fhJf+CLQ== 1339 | 1340 | js-sdsl@^4.1.4: 1341 | version "4.3.0" 1342 | resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.3.0.tgz#aeefe32a451f7af88425b11fdb5f58c90ae1d711" 1343 | integrity sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ== 1344 | 1345 | "js-tokens@^3.0.0 || ^4.0.0": 1346 | version "4.0.0" 1347 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1348 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1349 | 1350 | js-yaml@^4.1.0: 1351 | version "4.1.0" 1352 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 1353 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 1354 | dependencies: 1355 | argparse "^2.0.1" 1356 | 1357 | json-schema-traverse@^0.4.1: 1358 | version "0.4.1" 1359 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 1360 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 1361 | 1362 | json-stable-stringify-without-jsonify@^1.0.1: 1363 | version "1.0.1" 1364 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 1365 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 1366 | 1367 | json5@^1.0.2: 1368 | version "1.0.2" 1369 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" 1370 | integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== 1371 | dependencies: 1372 | minimist "^1.2.0" 1373 | 1374 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.3: 1375 | version "3.3.3" 1376 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz#76b3e6e6cece5c69d49a5792c3d01bd1a0cdc7ea" 1377 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw== 1378 | dependencies: 1379 | array-includes "^3.1.5" 1380 | object.assign "^4.1.3" 1381 | 1382 | language-subtag-registry@~0.3.2: 1383 | version "0.3.22" 1384 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz#2e1500861b2e457eba7e7ae86877cbd08fa1fd1d" 1385 | integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w== 1386 | 1387 | language-tags@=1.0.5: 1388 | version "1.0.5" 1389 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a" 1390 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ== 1391 | dependencies: 1392 | language-subtag-registry "~0.3.2" 1393 | 1394 | levn@^0.4.1: 1395 | version "0.4.1" 1396 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 1397 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 1398 | dependencies: 1399 | prelude-ls "^1.2.1" 1400 | type-check "~0.4.0" 1401 | 1402 | locate-path@^6.0.0: 1403 | version "6.0.0" 1404 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 1405 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 1406 | dependencies: 1407 | p-locate "^5.0.0" 1408 | 1409 | lodash.merge@^4.6.2: 1410 | version "4.6.2" 1411 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 1412 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 1413 | 1414 | loose-envify@^1.1.0, loose-envify@^1.4.0: 1415 | version "1.4.0" 1416 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" 1417 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== 1418 | dependencies: 1419 | js-tokens "^3.0.0 || ^4.0.0" 1420 | 1421 | lru-cache@^6.0.0: 1422 | version "6.0.0" 1423 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1424 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1425 | dependencies: 1426 | yallist "^4.0.0" 1427 | 1428 | merge2@^1.3.0, merge2@^1.4.1: 1429 | version "1.4.1" 1430 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 1431 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 1432 | 1433 | micromatch@^4.0.4: 1434 | version "4.0.5" 1435 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1436 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1437 | dependencies: 1438 | braces "^3.0.2" 1439 | picomatch "^2.3.1" 1440 | 1441 | minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: 1442 | version "3.1.2" 1443 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1444 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1445 | dependencies: 1446 | brace-expansion "^1.1.7" 1447 | 1448 | minimist@^1.2.0, minimist@^1.2.6: 1449 | version "1.2.8" 1450 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" 1451 | integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== 1452 | 1453 | ms@2.1.2: 1454 | version "2.1.2" 1455 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1456 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1457 | 1458 | ms@^2.1.1: 1459 | version "2.1.3" 1460 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 1461 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 1462 | 1463 | nanoid@^3.3.4: 1464 | version "3.3.4" 1465 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab" 1466 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw== 1467 | 1468 | natural-compare@^1.4.0: 1469 | version "1.4.0" 1470 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1471 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1472 | 1473 | next-auth@^4.20.1: 1474 | version "4.20.1" 1475 | resolved "https://registry.yarnpkg.com/next-auth/-/next-auth-4.20.1.tgz#6e65c4fde14171f6ce64f05f672f80f39fc418c7" 1476 | integrity sha512-ZcTUN4qzzZ/zJYgOW0hMXccpheWtAol8QOMdMts+LYRcsPGsqf2hEityyaKyECQVw1cWInb9dF3wYwI5GZdEmQ== 1477 | dependencies: 1478 | "@babel/runtime" "^7.20.13" 1479 | "@panva/hkdf" "^1.0.2" 1480 | cookie "^0.5.0" 1481 | jose "^4.11.4" 1482 | oauth "^0.9.15" 1483 | openid-client "^5.4.0" 1484 | preact "^10.6.3" 1485 | preact-render-to-string "^5.1.19" 1486 | uuid "^8.3.2" 1487 | 1488 | next@^13.2.3: 1489 | version "13.2.3" 1490 | resolved "https://registry.yarnpkg.com/next/-/next-13.2.3.tgz#92d170e7aca421321f230ff80c35c4751035f42e" 1491 | integrity sha512-nKFJC6upCPN7DWRx4+0S/1PIOT7vNlCT157w9AzbXEgKy6zkiPKEt5YyRUsRZkmpEqBVrGgOqNfwecTociyg+w== 1492 | dependencies: 1493 | "@next/env" "13.2.3" 1494 | "@swc/helpers" "0.4.14" 1495 | caniuse-lite "^1.0.30001406" 1496 | postcss "8.4.14" 1497 | styled-jsx "5.1.1" 1498 | optionalDependencies: 1499 | "@next/swc-android-arm-eabi" "13.2.3" 1500 | "@next/swc-android-arm64" "13.2.3" 1501 | "@next/swc-darwin-arm64" "13.2.3" 1502 | "@next/swc-darwin-x64" "13.2.3" 1503 | "@next/swc-freebsd-x64" "13.2.3" 1504 | "@next/swc-linux-arm-gnueabihf" "13.2.3" 1505 | "@next/swc-linux-arm64-gnu" "13.2.3" 1506 | "@next/swc-linux-arm64-musl" "13.2.3" 1507 | "@next/swc-linux-x64-gnu" "13.2.3" 1508 | "@next/swc-linux-x64-musl" "13.2.3" 1509 | "@next/swc-win32-arm64-msvc" "13.2.3" 1510 | "@next/swc-win32-ia32-msvc" "13.2.3" 1511 | "@next/swc-win32-x64-msvc" "13.2.3" 1512 | 1513 | oauth@^0.9.15: 1514 | version "0.9.15" 1515 | resolved "https://registry.yarnpkg.com/oauth/-/oauth-0.9.15.tgz#bd1fefaf686c96b75475aed5196412ff60cfb9c1" 1516 | integrity sha1-vR/vr2hslrdUda7VGWQS/2DPucE= 1517 | 1518 | object-assign@^4.1.1: 1519 | version "4.1.1" 1520 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 1521 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg== 1522 | 1523 | object-hash@^2.0.1: 1524 | version "2.2.0" 1525 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.2.0.tgz#5ad518581eefc443bd763472b8ff2e9c2c0d54a5" 1526 | integrity sha512-gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw== 1527 | 1528 | object-inspect@^1.12.2, object-inspect@^1.9.0: 1529 | version "1.12.3" 1530 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" 1531 | integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== 1532 | 1533 | object-is@^1.1.5: 1534 | version "1.1.5" 1535 | resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" 1536 | integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== 1537 | dependencies: 1538 | call-bind "^1.0.2" 1539 | define-properties "^1.1.3" 1540 | 1541 | object-keys@^1.1.1: 1542 | version "1.1.1" 1543 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" 1544 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== 1545 | 1546 | object.assign@^4.1.3, object.assign@^4.1.4: 1547 | version "4.1.4" 1548 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" 1549 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== 1550 | dependencies: 1551 | call-bind "^1.0.2" 1552 | define-properties "^1.1.4" 1553 | has-symbols "^1.0.3" 1554 | object-keys "^1.1.1" 1555 | 1556 | object.entries@^1.1.6: 1557 | version "1.1.6" 1558 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" 1559 | integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== 1560 | dependencies: 1561 | call-bind "^1.0.2" 1562 | define-properties "^1.1.4" 1563 | es-abstract "^1.20.4" 1564 | 1565 | object.fromentries@^2.0.6: 1566 | version "2.0.6" 1567 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.6.tgz#cdb04da08c539cffa912dcd368b886e0904bfa73" 1568 | integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg== 1569 | dependencies: 1570 | call-bind "^1.0.2" 1571 | define-properties "^1.1.4" 1572 | es-abstract "^1.20.4" 1573 | 1574 | object.hasown@^1.1.2: 1575 | version "1.1.2" 1576 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.2.tgz#f919e21fad4eb38a57bc6345b3afd496515c3f92" 1577 | integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw== 1578 | dependencies: 1579 | define-properties "^1.1.4" 1580 | es-abstract "^1.20.4" 1581 | 1582 | object.values@^1.1.6: 1583 | version "1.1.6" 1584 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" 1585 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== 1586 | dependencies: 1587 | call-bind "^1.0.2" 1588 | define-properties "^1.1.4" 1589 | es-abstract "^1.20.4" 1590 | 1591 | oidc-token-hash@^5.0.1: 1592 | version "5.0.1" 1593 | resolved "https://registry.yarnpkg.com/oidc-token-hash/-/oidc-token-hash-5.0.1.tgz#ae6beec3ec20f0fd885e5400d175191d6e2f10c6" 1594 | integrity sha512-EvoOtz6FIEBzE+9q253HsLCVRiK/0doEJ2HCvvqMQb3dHZrP3WlJKYtJ55CRTw4jmYomzH4wkPuCj/I3ZvpKxQ== 1595 | 1596 | once@^1.3.0: 1597 | version "1.4.0" 1598 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1599 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1600 | dependencies: 1601 | wrappy "1" 1602 | 1603 | open@^8.4.0: 1604 | version "8.4.2" 1605 | resolved "https://registry.yarnpkg.com/open/-/open-8.4.2.tgz#5b5ffe2a8f793dcd2aad73e550cb87b59cb084f9" 1606 | integrity sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ== 1607 | dependencies: 1608 | define-lazy-prop "^2.0.0" 1609 | is-docker "^2.1.1" 1610 | is-wsl "^2.2.0" 1611 | 1612 | openid-client@^5.4.0: 1613 | version "5.4.0" 1614 | resolved "https://registry.yarnpkg.com/openid-client/-/openid-client-5.4.0.tgz#77f1cda14e2911446f16ea3f455fc7c405103eac" 1615 | integrity sha512-hgJa2aQKcM2hn3eyVtN12tEA45ECjTJPXCgUh5YzTzy9qwapCvmDTVPWOcWVL0d34zeQoQ/hbG9lJhl3AYxJlQ== 1616 | dependencies: 1617 | jose "^4.10.0" 1618 | lru-cache "^6.0.0" 1619 | object-hash "^2.0.1" 1620 | oidc-token-hash "^5.0.1" 1621 | 1622 | optionator@^0.9.1: 1623 | version "0.9.1" 1624 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 1625 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 1626 | dependencies: 1627 | deep-is "^0.1.3" 1628 | fast-levenshtein "^2.0.6" 1629 | levn "^0.4.1" 1630 | prelude-ls "^1.2.1" 1631 | type-check "^0.4.0" 1632 | word-wrap "^1.2.3" 1633 | 1634 | p-limit@^3.0.2: 1635 | version "3.1.0" 1636 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1637 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1638 | dependencies: 1639 | yocto-queue "^0.1.0" 1640 | 1641 | p-locate@^5.0.0: 1642 | version "5.0.0" 1643 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 1644 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 1645 | dependencies: 1646 | p-limit "^3.0.2" 1647 | 1648 | parent-module@^1.0.0: 1649 | version "1.0.1" 1650 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 1651 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 1652 | dependencies: 1653 | callsites "^3.0.0" 1654 | 1655 | path-exists@^4.0.0: 1656 | version "4.0.0" 1657 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1658 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1659 | 1660 | path-is-absolute@^1.0.0: 1661 | version "1.0.1" 1662 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1663 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1664 | 1665 | path-key@^3.1.0: 1666 | version "3.1.1" 1667 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1668 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1669 | 1670 | path-parse@^1.0.7: 1671 | version "1.0.7" 1672 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1673 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1674 | 1675 | path-type@^4.0.0: 1676 | version "4.0.0" 1677 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 1678 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 1679 | 1680 | picocolors@^1.0.0: 1681 | version "1.0.0" 1682 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1683 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1684 | 1685 | picomatch@^2.3.1: 1686 | version "2.3.1" 1687 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1688 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1689 | 1690 | postcss@8.4.14: 1691 | version "8.4.14" 1692 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf" 1693 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig== 1694 | dependencies: 1695 | nanoid "^3.3.4" 1696 | picocolors "^1.0.0" 1697 | source-map-js "^1.0.2" 1698 | 1699 | preact-render-to-string@^5.1.19: 1700 | version "5.2.0" 1701 | resolved "https://registry.yarnpkg.com/preact-render-to-string/-/preact-render-to-string-5.2.0.tgz#3d3c4f9c570229b76d33353ed02ce662bd13dec1" 1702 | integrity sha512-+RGwSW78Cl+NsZRUbFW1MGB++didsfqRk+IyRVTaqy+3OjtpKK/6HgBtfszUX0YXMfo41k2iaQSseAHGKEwrbg== 1703 | dependencies: 1704 | pretty-format "^3.8.0" 1705 | 1706 | preact@^10.6.3: 1707 | version "10.7.3" 1708 | resolved "https://registry.yarnpkg.com/preact/-/preact-10.7.3.tgz#f98c09a29cb8dbb22e5fc824a1edcc377fc42b5a" 1709 | integrity sha512-giqJXP8VbtA1tyGa3f1n9wiN7PrHtONrDyE3T+ifjr/tTkg+2N4d/6sjC9WyJKv8wM7rOYDveqy5ZoFmYlwo4w== 1710 | 1711 | prelude-ls@^1.2.1: 1712 | version "1.2.1" 1713 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 1714 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 1715 | 1716 | prettier@^2.8.4: 1717 | version "2.8.4" 1718 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.4.tgz#34dd2595629bfbb79d344ac4a91ff948694463c3" 1719 | integrity sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw== 1720 | 1721 | pretty-format@^3.8.0: 1722 | version "3.8.0" 1723 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-3.8.0.tgz#bfbed56d5e9a776645f4b1ff7aa1a3ac4fa3c385" 1724 | integrity sha1-v77VbV6ad2ZF9LH/eqGjrE+jw4U= 1725 | 1726 | prop-types@^15.8.1: 1727 | version "15.8.1" 1728 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5" 1729 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg== 1730 | dependencies: 1731 | loose-envify "^1.4.0" 1732 | object-assign "^4.1.1" 1733 | react-is "^16.13.1" 1734 | 1735 | punycode@^2.1.0: 1736 | version "2.3.0" 1737 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" 1738 | integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== 1739 | 1740 | queue-microtask@^1.2.2: 1741 | version "1.2.3" 1742 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 1743 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 1744 | 1745 | react-dom@^18.2.0: 1746 | version "18.2.0" 1747 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.2.0.tgz#22aaf38708db2674ed9ada224ca4aa708d821e3d" 1748 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g== 1749 | dependencies: 1750 | loose-envify "^1.1.0" 1751 | scheduler "^0.23.0" 1752 | 1753 | react-is@^16.13.1: 1754 | version "16.13.1" 1755 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" 1756 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== 1757 | 1758 | react@^18.2.0: 1759 | version "18.2.0" 1760 | resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" 1761 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== 1762 | dependencies: 1763 | loose-envify "^1.1.0" 1764 | 1765 | regenerator-runtime@^0.13.11: 1766 | version "0.13.11" 1767 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" 1768 | integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== 1769 | 1770 | regexp.prototype.flags@^1.4.3: 1771 | version "1.4.3" 1772 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" 1773 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== 1774 | dependencies: 1775 | call-bind "^1.0.2" 1776 | define-properties "^1.1.3" 1777 | functions-have-names "^1.2.2" 1778 | 1779 | regexpp@^3.2.0: 1780 | version "3.2.0" 1781 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" 1782 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== 1783 | 1784 | resolve-from@^4.0.0: 1785 | version "4.0.0" 1786 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 1787 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 1788 | 1789 | resolve@^1.22.1: 1790 | version "1.22.1" 1791 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" 1792 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== 1793 | dependencies: 1794 | is-core-module "^2.9.0" 1795 | path-parse "^1.0.7" 1796 | supports-preserve-symlinks-flag "^1.0.0" 1797 | 1798 | resolve@^2.0.0-next.4: 1799 | version "2.0.0-next.4" 1800 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660" 1801 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ== 1802 | dependencies: 1803 | is-core-module "^2.9.0" 1804 | path-parse "^1.0.7" 1805 | supports-preserve-symlinks-flag "^1.0.0" 1806 | 1807 | reusify@^1.0.4: 1808 | version "1.0.4" 1809 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 1810 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 1811 | 1812 | rimraf@^3.0.2: 1813 | version "3.0.2" 1814 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 1815 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 1816 | dependencies: 1817 | glob "^7.1.3" 1818 | 1819 | run-parallel@^1.1.9: 1820 | version "1.2.0" 1821 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 1822 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 1823 | dependencies: 1824 | queue-microtask "^1.2.2" 1825 | 1826 | safe-regex-test@^1.0.0: 1827 | version "1.0.0" 1828 | resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" 1829 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== 1830 | dependencies: 1831 | call-bind "^1.0.2" 1832 | get-intrinsic "^1.1.3" 1833 | is-regex "^1.1.4" 1834 | 1835 | scheduler@^0.23.0: 1836 | version "0.23.0" 1837 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.0.tgz#ba8041afc3d30eb206a487b6b384002e4e61fdfe" 1838 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw== 1839 | dependencies: 1840 | loose-envify "^1.1.0" 1841 | 1842 | semver@^6.3.0: 1843 | version "6.3.0" 1844 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 1845 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 1846 | 1847 | semver@^7.3.7: 1848 | version "7.3.8" 1849 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" 1850 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== 1851 | dependencies: 1852 | lru-cache "^6.0.0" 1853 | 1854 | shebang-command@^2.0.0: 1855 | version "2.0.0" 1856 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1857 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1858 | dependencies: 1859 | shebang-regex "^3.0.0" 1860 | 1861 | shebang-regex@^3.0.0: 1862 | version "3.0.0" 1863 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1864 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1865 | 1866 | side-channel@^1.0.4: 1867 | version "1.0.4" 1868 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 1869 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 1870 | dependencies: 1871 | call-bind "^1.0.0" 1872 | get-intrinsic "^1.0.2" 1873 | object-inspect "^1.9.0" 1874 | 1875 | slash@^3.0.0: 1876 | version "3.0.0" 1877 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 1878 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 1879 | 1880 | slash@^4.0.0: 1881 | version "4.0.0" 1882 | resolved "https://registry.yarnpkg.com/slash/-/slash-4.0.0.tgz#2422372176c4c6c5addb5e2ada885af984b396a7" 1883 | integrity sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew== 1884 | 1885 | source-map-js@^1.0.2: 1886 | version "1.0.2" 1887 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" 1888 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== 1889 | 1890 | stop-iteration-iterator@^1.0.0: 1891 | version "1.0.0" 1892 | resolved "https://registry.yarnpkg.com/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz#6a60be0b4ee757d1ed5254858ec66b10c49285e4" 1893 | integrity sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ== 1894 | dependencies: 1895 | internal-slot "^1.0.4" 1896 | 1897 | string.prototype.matchall@^4.0.8: 1898 | version "4.0.8" 1899 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz#3bf85722021816dcd1bf38bb714915887ca79fd3" 1900 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg== 1901 | dependencies: 1902 | call-bind "^1.0.2" 1903 | define-properties "^1.1.4" 1904 | es-abstract "^1.20.4" 1905 | get-intrinsic "^1.1.3" 1906 | has-symbols "^1.0.3" 1907 | internal-slot "^1.0.3" 1908 | regexp.prototype.flags "^1.4.3" 1909 | side-channel "^1.0.4" 1910 | 1911 | string.prototype.trimend@^1.0.6: 1912 | version "1.0.6" 1913 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" 1914 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== 1915 | dependencies: 1916 | call-bind "^1.0.2" 1917 | define-properties "^1.1.4" 1918 | es-abstract "^1.20.4" 1919 | 1920 | string.prototype.trimstart@^1.0.6: 1921 | version "1.0.6" 1922 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" 1923 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== 1924 | dependencies: 1925 | call-bind "^1.0.2" 1926 | define-properties "^1.1.4" 1927 | es-abstract "^1.20.4" 1928 | 1929 | strip-ansi@^6.0.1: 1930 | version "6.0.1" 1931 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 1932 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 1933 | dependencies: 1934 | ansi-regex "^5.0.1" 1935 | 1936 | strip-bom@^3.0.0: 1937 | version "3.0.0" 1938 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 1939 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== 1940 | 1941 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1942 | version "3.1.1" 1943 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1944 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1945 | 1946 | styled-jsx@5.1.1: 1947 | version "5.1.1" 1948 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.1.1.tgz#839a1c3aaacc4e735fed0781b8619ea5d0009d1f" 1949 | integrity sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw== 1950 | dependencies: 1951 | client-only "0.0.1" 1952 | 1953 | supports-color@^7.1.0: 1954 | version "7.2.0" 1955 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1956 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1957 | dependencies: 1958 | has-flag "^4.0.0" 1959 | 1960 | supports-preserve-symlinks-flag@^1.0.0: 1961 | version "1.0.0" 1962 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 1963 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 1964 | 1965 | swr@^2.1.0: 1966 | version "2.1.0" 1967 | resolved "https://registry.yarnpkg.com/swr/-/swr-2.1.0.tgz#10245d5a50f6d5d208ea9278f76839ab3058d5b8" 1968 | integrity sha512-4hYl5p3/KalQ1MORealM79g/DtLohmud6yyfXw5l4wjtFksYUnocRFudvyaoUtgj3FrVNK9lS25Av9dsZYvz0g== 1969 | dependencies: 1970 | use-sync-external-store "^1.2.0" 1971 | 1972 | synckit@^0.8.4: 1973 | version "0.8.5" 1974 | resolved "https://registry.yarnpkg.com/synckit/-/synckit-0.8.5.tgz#b7f4358f9bb559437f9f167eb6bc46b3c9818fa3" 1975 | integrity sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q== 1976 | dependencies: 1977 | "@pkgr/utils" "^2.3.1" 1978 | tslib "^2.5.0" 1979 | 1980 | tapable@^2.2.0: 1981 | version "2.2.1" 1982 | resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0" 1983 | integrity sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ== 1984 | 1985 | text-table@^0.2.0: 1986 | version "0.2.0" 1987 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1988 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 1989 | 1990 | tiny-glob@^0.2.9: 1991 | version "0.2.9" 1992 | resolved "https://registry.yarnpkg.com/tiny-glob/-/tiny-glob-0.2.9.tgz#2212d441ac17928033b110f8b3640683129d31e2" 1993 | integrity sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg== 1994 | dependencies: 1995 | globalyzer "0.1.0" 1996 | globrex "^0.1.2" 1997 | 1998 | to-regex-range@^5.0.1: 1999 | version "5.0.1" 2000 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2001 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2002 | dependencies: 2003 | is-number "^7.0.0" 2004 | 2005 | tsconfig-paths@^3.14.1: 2006 | version "3.14.2" 2007 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" 2008 | integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== 2009 | dependencies: 2010 | "@types/json5" "^0.0.29" 2011 | json5 "^1.0.2" 2012 | minimist "^1.2.6" 2013 | strip-bom "^3.0.0" 2014 | 2015 | tslib@^1.8.1: 2016 | version "1.14.1" 2017 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 2018 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 2019 | 2020 | tslib@^2.4.0: 2021 | version "2.4.0" 2022 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3" 2023 | integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ== 2024 | 2025 | tslib@^2.5.0: 2026 | version "2.5.0" 2027 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf" 2028 | integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg== 2029 | 2030 | tsutils@^3.21.0: 2031 | version "3.21.0" 2032 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" 2033 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== 2034 | dependencies: 2035 | tslib "^1.8.1" 2036 | 2037 | type-check@^0.4.0, type-check@~0.4.0: 2038 | version "0.4.0" 2039 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2040 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2041 | dependencies: 2042 | prelude-ls "^1.2.1" 2043 | 2044 | type-fest@^0.20.2: 2045 | version "0.20.2" 2046 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 2047 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 2048 | 2049 | typed-array-length@^1.0.4: 2050 | version "1.0.4" 2051 | resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" 2052 | integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== 2053 | dependencies: 2054 | call-bind "^1.0.2" 2055 | for-each "^0.3.3" 2056 | is-typed-array "^1.1.9" 2057 | 2058 | typescript@^4.9.5: 2059 | version "4.9.5" 2060 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a" 2061 | integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g== 2062 | 2063 | unbox-primitive@^1.0.2: 2064 | version "1.0.2" 2065 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" 2066 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== 2067 | dependencies: 2068 | call-bind "^1.0.2" 2069 | has-bigints "^1.0.2" 2070 | has-symbols "^1.0.3" 2071 | which-boxed-primitive "^1.0.2" 2072 | 2073 | uri-js@^4.2.2: 2074 | version "4.4.1" 2075 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2076 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2077 | dependencies: 2078 | punycode "^2.1.0" 2079 | 2080 | use-sync-external-store@^1.2.0: 2081 | version "1.2.0" 2082 | resolved "https://registry.yarnpkg.com/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz#7dbefd6ef3fe4e767a0cf5d7287aacfb5846928a" 2083 | integrity sha512-eEgnFxGQ1Ife9bzYs6VLi8/4X6CObHMw9Qr9tPY43iKwsPw8xE8+EFsf/2cFZ5S3esXgpWgtSCtLNS41F+sKPA== 2084 | 2085 | uuid@^8.3.2: 2086 | version "8.3.2" 2087 | resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" 2088 | integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 2089 | 2090 | which-boxed-primitive@^1.0.2: 2091 | version "1.0.2" 2092 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 2093 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 2094 | dependencies: 2095 | is-bigint "^1.0.1" 2096 | is-boolean-object "^1.1.0" 2097 | is-number-object "^1.0.4" 2098 | is-string "^1.0.5" 2099 | is-symbol "^1.0.3" 2100 | 2101 | which-collection@^1.0.1: 2102 | version "1.0.1" 2103 | resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" 2104 | integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== 2105 | dependencies: 2106 | is-map "^2.0.1" 2107 | is-set "^2.0.1" 2108 | is-weakmap "^2.0.1" 2109 | is-weakset "^2.0.1" 2110 | 2111 | which-typed-array@^1.1.9: 2112 | version "1.1.9" 2113 | resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" 2114 | integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== 2115 | dependencies: 2116 | available-typed-arrays "^1.0.5" 2117 | call-bind "^1.0.2" 2118 | for-each "^0.3.3" 2119 | gopd "^1.0.1" 2120 | has-tostringtag "^1.0.0" 2121 | is-typed-array "^1.1.10" 2122 | 2123 | which@^2.0.1: 2124 | version "2.0.2" 2125 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2126 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2127 | dependencies: 2128 | isexe "^2.0.0" 2129 | 2130 | word-wrap@^1.2.3: 2131 | version "1.2.3" 2132 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2133 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2134 | 2135 | wrappy@1: 2136 | version "1.0.2" 2137 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2138 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2139 | 2140 | yallist@^4.0.0: 2141 | version "4.0.0" 2142 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2143 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2144 | 2145 | yocto-queue@^0.1.0: 2146 | version "0.1.0" 2147 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2148 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2149 | --------------------------------------------------------------------------------