Openstatus www.openstatus.dev

feat(create-turbo): create basic

authored by

Turbobot and committed by
Thibault Le Ouay
0850dc20

+4148
+10
.eslintrc.js
··· 1 + module.exports = { 2 + root: true, 3 + // This tells ESLint to load the config from the package `eslint-config-custom` 4 + extends: ["custom"], 5 + settings: { 6 + next: { 7 + rootDir: ["apps/*/"], 8 + }, 9 + }, 10 + };
+36
.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 + build 15 + 16 + # misc 17 + .DS_Store 18 + *.pem 19 + 20 + # debug 21 + npm-debug.log* 22 + yarn-debug.log* 23 + yarn-error.log* 24 + 25 + # local env files 26 + .env 27 + .env.local 28 + .env.development.local 29 + .env.test.local 30 + .env.production.local 31 + 32 + # turbo 33 + .turbo 34 + 35 + # vercel 36 + .vercel
+1
.npmrc
··· 1 + auto-install-peers = true
+81
README.md
··· 1 + # Turborepo starter 2 + 3 + This is an official starter Turborepo. 4 + 5 + ## Using this example 6 + 7 + Run the following command: 8 + 9 + ```sh 10 + npx create-turbo@latest 11 + ``` 12 + 13 + ## What's inside? 14 + 15 + This Turborepo includes the following packages/apps: 16 + 17 + ### Apps and Packages 18 + 19 + - `docs`: a [Next.js](https://nextjs.org/) app 20 + - `web`: another [Next.js](https://nextjs.org/) app 21 + - `ui`: a stub React component library shared by both `web` and `docs` applications 22 + - `eslint-config-custom`: `eslint` configurations (includes `eslint-config-next` and `eslint-config-prettier`) 23 + - `tsconfig`: `tsconfig.json`s used throughout the monorepo 24 + 25 + Each package/app is 100% [TypeScript](https://www.typescriptlang.org/). 26 + 27 + ### Utilities 28 + 29 + This Turborepo has some additional tools already setup for you: 30 + 31 + - [TypeScript](https://www.typescriptlang.org/) for static type checking 32 + - [ESLint](https://eslint.org/) for code linting 33 + - [Prettier](https://prettier.io) for code formatting 34 + 35 + ### Build 36 + 37 + To build all apps and packages, run the following command: 38 + 39 + ``` 40 + cd my-turborepo 41 + pnpm build 42 + ``` 43 + 44 + ### Develop 45 + 46 + To develop all apps and packages, run the following command: 47 + 48 + ``` 49 + cd my-turborepo 50 + pnpm dev 51 + ``` 52 + 53 + ### Remote Caching 54 + 55 + Turborepo can use a technique known as [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) to share cache artifacts across machines, enabling you to share build caches with your team and CI/CD pipelines. 56 + 57 + By default, Turborepo will cache locally. To enable Remote Caching you will need an account with Vercel. If you don't have an account you can [create one](https://vercel.com/signup), then enter the following commands: 58 + 59 + ``` 60 + cd my-turborepo 61 + npx turbo login 62 + ``` 63 + 64 + This will authenticate the Turborepo CLI with your [Vercel account](https://vercel.com/docs/concepts/personal-accounts/overview). 65 + 66 + Next, you can link your Turborepo to your Remote Cache by running the following command from the root of your Turborepo: 67 + 68 + ``` 69 + npx turbo link 70 + ``` 71 + 72 + ## Useful Links 73 + 74 + Learn more about the power of Turborepo: 75 + 76 + - [Tasks](https://turbo.build/repo/docs/core-concepts/monorepos/running-tasks) 77 + - [Caching](https://turbo.build/repo/docs/core-concepts/caching) 78 + - [Remote Caching](https://turbo.build/repo/docs/core-concepts/remote-caching) 79 + - [Filtering](https://turbo.build/repo/docs/core-concepts/monorepos/filtering) 80 + - [Configuration Options](https://turbo.build/repo/docs/reference/configuration) 81 + - [CLI Usage](https://turbo.build/repo/docs/reference/command-line-reference)
+4
apps/docs/.eslintrc.js
··· 1 + module.exports = { 2 + root: true, 3 + extends: ["custom"], 4 + };
+34
apps/docs/.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
+30
apps/docs/README.md
··· 1 + ## Getting Started 2 + 3 + First, run the development server: 4 + 5 + ```bash 6 + yarn dev 7 + ``` 8 + 9 + Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 10 + 11 + You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file. 12 + 13 + [API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`. 14 + 15 + The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. 16 + 17 + ## Learn More 18 + 19 + To learn more about Next.js, take a look at the following resources: 20 + 21 + - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 22 + - [Learn Next.js](https://nextjs.org/learn/foundations/about-nextjs) - an interactive Next.js tutorial. 23 + 24 + You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 25 + 26 + ## Deploy on Vercel 27 + 28 + The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_source=github.com&utm_medium=referral&utm_campaign=turborepo-readme) from the creators of Next.js. 29 + 30 + Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
+11
apps/docs/app/layout.tsx
··· 1 + export default function RootLayout({ 2 + children, 3 + }: { 4 + children: React.ReactNode; 5 + }) { 6 + return ( 7 + <html lang="en"> 8 + <body>{children}</body> 9 + </html> 10 + ); 11 + }
+10
apps/docs/app/page.tsx
··· 1 + import { Button, Header } from "ui"; 2 + 3 + export default function Page() { 4 + return ( 5 + <> 6 + <Header text="Docs" /> 7 + <Button /> 8 + </> 9 + ); 10 + }
+5
apps/docs/next-env.d.ts
··· 1 + /// <reference types="next" /> 2 + /// <reference types="next/image-types/global" /> 3 + 4 + // NOTE: This file should not be edited 5 + // see https://nextjs.org/docs/basic-features/typescript for more information.
+4
apps/docs/next.config.js
··· 1 + module.exports = { 2 + reactStrictMode: true, 3 + transpilePackages: ["ui"], 4 + };
+25
apps/docs/package.json
··· 1 + { 2 + "name": "docs", 3 + "version": "1.0.0", 4 + "private": true, 5 + "scripts": { 6 + "dev": "next dev --port 3001", 7 + "build": "next build", 8 + "start": "next start", 9 + "lint": "next lint" 10 + }, 11 + "dependencies": { 12 + "next": "^13.4.1", 13 + "react": "^18.2.0", 14 + "react-dom": "^18.2.0", 15 + "ui": "workspace:*" 16 + }, 17 + "devDependencies": { 18 + "@types/node": "^17.0.12", 19 + "@types/react": "^18.0.22", 20 + "@types/react-dom": "^18.0.7", 21 + "eslint-config-custom": "workspace:*", 22 + "tsconfig": "workspace:*", 23 + "typescript": "^4.5.3" 24 + } 25 + }
+8
apps/docs/tsconfig.json
··· 1 + { 2 + "extends": "tsconfig/nextjs.json", 3 + "compilerOptions": { 4 + "plugins": [{ "name": "next" }] 5 + }, 6 + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 7 + "exclude": ["node_modules"] 8 + }
+4
apps/web/.eslintrc.js
··· 1 + module.exports = { 2 + root: true, 3 + extends: ["custom"], 4 + };
+34
apps/web/.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
+30
apps/web/README.md
··· 1 + ## Getting Started 2 + 3 + First, run the development server: 4 + 5 + ```bash 6 + yarn dev 7 + ``` 8 + 9 + Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 10 + 11 + You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file. 12 + 13 + [API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`. 14 + 15 + The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages. 16 + 17 + ## Learn More 18 + 19 + To learn more about Next.js, take a look at the following resources: 20 + 21 + - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 22 + - [Learn Next.js](https://nextjs.org/learn/foundations/about-nextjs) - an interactive Next.js tutorial. 23 + 24 + You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 25 + 26 + ## Deploy on Vercel 27 + 28 + The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_source=github.com&utm_medium=referral&utm_campaign=turborepo-readme) from the creators of Next.js. 29 + 30 + Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
+11
apps/web/app/layout.tsx
··· 1 + export default function RootLayout({ 2 + children, 3 + }: { 4 + children: React.ReactNode; 5 + }) { 6 + return ( 7 + <html lang="en"> 8 + <body>{children}</body> 9 + </html> 10 + ); 11 + }
+10
apps/web/app/page.tsx
··· 1 + import { Button, Header } from "ui"; 2 + 3 + export default function Page() { 4 + return ( 5 + <> 6 + <Header text="Web" /> 7 + <Button /> 8 + </> 9 + ); 10 + }
+5
apps/web/next-env.d.ts
··· 1 + /// <reference types="next" /> 2 + /// <reference types="next/image-types/global" /> 3 + 4 + // NOTE: This file should not be edited 5 + // see https://nextjs.org/docs/basic-features/typescript for more information.
+4
apps/web/next.config.js
··· 1 + module.exports = { 2 + reactStrictMode: true, 3 + transpilePackages: ["ui"], 4 + };
+25
apps/web/package.json
··· 1 + { 2 + "name": "web", 3 + "version": "1.0.0", 4 + "private": true, 5 + "scripts": { 6 + "dev": "next dev", 7 + "build": "next build", 8 + "start": "next start", 9 + "lint": "next lint" 10 + }, 11 + "dependencies": { 12 + "next": "^13.4.1", 13 + "react": "^18.2.0", 14 + "react-dom": "^18.2.0", 15 + "ui": "workspace:*" 16 + }, 17 + "devDependencies": { 18 + "@types/node": "^17.0.12", 19 + "@types/react": "^18.0.22", 20 + "@types/react-dom": "^18.0.7", 21 + "eslint-config-custom": "workspace:*", 22 + "tsconfig": "workspace:*", 23 + "typescript": "^4.5.3" 24 + } 25 + }
+8
apps/web/tsconfig.json
··· 1 + { 2 + "extends": "tsconfig/nextjs.json", 3 + "compilerOptions": { 4 + "plugins": [{ "name": "next" }] 5 + }, 6 + "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 7 + "exclude": ["node_modules"] 8 + }
+7
meta.json
··· 1 + { 2 + "name": "Next.js", 3 + "description": "Minimal Turborepo example for learning the fundamentals.", 4 + "template": "https://vercel.com/templates/next.js/turborepo-next-basic", 5 + "featured": true, 6 + "boost": true 7 + }
+17
package.json
··· 1 + { 2 + "private": true, 3 + "scripts": { 4 + "build": "turbo run build", 5 + "dev": "turbo run dev", 6 + "lint": "turbo run lint", 7 + "format": "prettier --write \"**/*.{ts,tsx,md}\"" 8 + }, 9 + "devDependencies": { 10 + "@turbo/gen": "^1.9.7", 11 + "eslint": "^7.32.0", 12 + "eslint-config-custom": "workspace:*", 13 + "prettier": "^2.5.1", 14 + "turbo": "^1.9.7" 15 + }, 16 + "packageManager": "pnpm@7.15.0" 17 + }
+11
packages/eslint-config-custom/index.js
··· 1 + module.exports = { 2 + extends: ["next", "turbo", "prettier"], 3 + rules: { 4 + "@next/next/no-html-link-for-pages": "off", 5 + }, 6 + parserOptions: { 7 + babelOptions: { 8 + presets: [require.resolve("next/babel")], 9 + }, 10 + }, 11 + };
+15
packages/eslint-config-custom/package.json
··· 1 + { 2 + "name": "eslint-config-custom", 3 + "version": "0.0.0", 4 + "main": "index.js", 5 + "license": "MIT", 6 + "dependencies": { 7 + "eslint-config-next": "^13.4.1", 8 + "eslint-config-prettier": "^8.3.0", 9 + "eslint-plugin-react": "7.28.0", 10 + "eslint-config-turbo": "^1.9.3" 11 + }, 12 + "publishConfig": { 13 + "access": "public" 14 + } 15 + }
+20
packages/tsconfig/base.json
··· 1 + { 2 + "$schema": "https://json.schemastore.org/tsconfig", 3 + "display": "Default", 4 + "compilerOptions": { 5 + "composite": false, 6 + "declaration": true, 7 + "declarationMap": true, 8 + "esModuleInterop": true, 9 + "forceConsistentCasingInFileNames": true, 10 + "inlineSources": false, 11 + "isolatedModules": true, 12 + "moduleResolution": "node", 13 + "noUnusedLocals": false, 14 + "noUnusedParameters": false, 15 + "preserveWatchOutput": true, 16 + "skipLibCheck": true, 17 + "strict": true 18 + }, 19 + "exclude": ["node_modules"] 20 + }
+21
packages/tsconfig/nextjs.json
··· 1 + { 2 + "$schema": "https://json.schemastore.org/tsconfig", 3 + "display": "Next.js", 4 + "extends": "./base.json", 5 + "compilerOptions": { 6 + "plugins": [{ "name": "next" }], 7 + "allowJs": true, 8 + "declaration": false, 9 + "declarationMap": false, 10 + "incremental": true, 11 + "jsx": "preserve", 12 + "lib": ["dom", "dom.iterable", "esnext"], 13 + "module": "esnext", 14 + "noEmit": true, 15 + "resolveJsonModule": true, 16 + "strict": false, 17 + "target": "es5" 18 + }, 19 + "include": ["src", "next-env.d.ts"], 20 + "exclude": ["node_modules"] 21 + }
+9
packages/tsconfig/package.json
··· 1 + { 2 + "name": "tsconfig", 3 + "version": "0.0.0", 4 + "private": true, 5 + "license": "MIT", 6 + "publishConfig": { 7 + "access": "public" 8 + } 9 + }
+11
packages/tsconfig/react-library.json
··· 1 + { 2 + "$schema": "https://json.schemastore.org/tsconfig", 3 + "display": "React Library", 4 + "extends": "./base.json", 5 + "compilerOptions": { 6 + "jsx": "react-jsx", 7 + "lib": ["ES2015", "DOM"], 8 + "module": "ESNext", 9 + "target": "es6" 10 + } 11 + }
+7
packages/ui/Button.tsx
··· 1 + "use client"; 2 + 3 + import * as React from "react"; 4 + 5 + export const Button = () => { 6 + return <button onClick={() => alert("boop")}>Boop</button>; 7 + };
+5
packages/ui/Header.tsx
··· 1 + import * as React from "react"; 2 + 3 + export const Header = ({ text }: { text: string }) => { 4 + return <h1>{text}</h1>; 5 + };
+5
packages/ui/index.tsx
··· 1 + import * as React from "react"; 2 + 3 + // component exports 4 + export * from "./Button"; 5 + export * from "./Header";
+20
packages/ui/package.json
··· 1 + { 2 + "name": "ui", 3 + "version": "0.0.0", 4 + "main": "./index.tsx", 5 + "types": "./index.tsx", 6 + "license": "MIT", 7 + "scripts": { 8 + "lint": "eslint \"**/*.ts*\"", 9 + "generate:component": "turbo gen react-component" 10 + }, 11 + "devDependencies": { 12 + "@types/react": "^18.2.0", 13 + "@types/react-dom": "^18.2.0", 14 + "eslint": "^7.32.0", 15 + "eslint-config-custom": "workspace:*", 16 + "react": "^17.0.2", 17 + "tsconfig": "workspace:*", 18 + "typescript": "^4.5.2" 19 + } 20 + }
+5
packages/ui/tsconfig.json
··· 1 + { 2 + "extends": "tsconfig/react-library.json", 3 + "include": ["."], 4 + "exclude": ["dist", "build", "node_modules"] 5 + }
+30
packages/ui/turbo/generators/config.ts
··· 1 + import { PlopTypes } from "@turbo/gen"; 2 + 3 + // Learn more about Turborepo Generators at https://turbo.build/repo/docs/core-concepts/monorepos/code-generation 4 + 5 + export default function generator(plop: PlopTypes.NodePlopAPI): void { 6 + // A simple generator to add a new React component to the internal UI library 7 + plop.setGenerator("react-component", { 8 + description: "Adds a new react component", 9 + prompts: [ 10 + { 11 + type: "input", 12 + name: "name", 13 + message: "What is the name of the component?", 14 + }, 15 + ], 16 + actions: [ 17 + { 18 + type: "add", 19 + path: "{{pascalCase name}}.tsx", 20 + templateFile: "templates/component.hbs", 21 + }, 22 + { 23 + type: "append", 24 + path: "index.tsx", 25 + pattern: /(\/\/ component exports)/g, 26 + template: 'export * from "./{{pascalCase name}}";', 27 + }, 28 + ], 29 + }); 30 + }
+14
packages/ui/turbo/generators/templates/component.hbs
··· 1 + import * as React from "react"; 2 + 3 + interface Props { 4 + children?: React.ReactNode; 5 + } 6 + 7 + export const {{ pascalCase name }} = ({ children }: Props) => { 8 + return ( 9 + <div> 10 + <h1>{{ name }}</h1> 11 + {children} 12 + </div> 13 + ); 14 + };
+3543
pnpm-lock.yaml
··· 1 + lockfileVersion: 5.4 2 + 3 + importers: 4 + 5 + .: 6 + specifiers: 7 + '@turbo/gen': ^1.9.7 8 + eslint: ^7.32.0 9 + eslint-config-custom: workspace:* 10 + prettier: ^2.5.1 11 + turbo: ^1.9.7 12 + devDependencies: 13 + '@turbo/gen': 1.9.7_t7dmilwzctzfywb3oy4dmby4b4 14 + eslint: 7.32.0 15 + eslint-config-custom: link:packages/eslint-config-custom 16 + prettier: 2.8.8 17 + turbo: 1.9.7 18 + 19 + apps/docs: 20 + specifiers: 21 + '@types/node': ^17.0.12 22 + '@types/react': ^18.0.22 23 + '@types/react-dom': ^18.0.7 24 + eslint-config-custom: workspace:* 25 + next: ^13.4.1 26 + react: ^18.2.0 27 + react-dom: ^18.2.0 28 + tsconfig: workspace:* 29 + typescript: ^4.5.3 30 + ui: workspace:* 31 + dependencies: 32 + next: 13.4.1_biqbaboplfbrettd7655fr4n2y 33 + react: 18.2.0 34 + react-dom: 18.2.0_react@18.2.0 35 + ui: link:../../packages/ui 36 + devDependencies: 37 + '@types/node': 17.0.45 38 + '@types/react': 18.2.5 39 + '@types/react-dom': 18.2.3 40 + eslint-config-custom: link:../../packages/eslint-config-custom 41 + tsconfig: link:../../packages/tsconfig 42 + typescript: 4.9.5 43 + 44 + apps/web: 45 + specifiers: 46 + '@types/node': ^17.0.12 47 + '@types/react': ^18.0.22 48 + '@types/react-dom': ^18.0.7 49 + eslint-config-custom: workspace:* 50 + next: ^13.4.1 51 + react: ^18.2.0 52 + react-dom: ^18.2.0 53 + tsconfig: workspace:* 54 + typescript: ^4.5.3 55 + ui: workspace:* 56 + dependencies: 57 + next: 13.4.1_biqbaboplfbrettd7655fr4n2y 58 + react: 18.2.0 59 + react-dom: 18.2.0_react@18.2.0 60 + ui: link:../../packages/ui 61 + devDependencies: 62 + '@types/node': 17.0.45 63 + '@types/react': 18.2.5 64 + '@types/react-dom': 18.2.3 65 + eslint-config-custom: link:../../packages/eslint-config-custom 66 + tsconfig: link:../../packages/tsconfig 67 + typescript: 4.9.5 68 + 69 + packages/eslint-config-custom: 70 + specifiers: 71 + eslint-config-next: ^13.4.1 72 + eslint-config-prettier: ^8.3.0 73 + eslint-config-turbo: ^1.9.3 74 + eslint-plugin-react: 7.28.0 75 + dependencies: 76 + eslint-config-next: 13.4.1_iacogk7kkaymxepzhgcbytyi7q 77 + eslint-config-prettier: 8.8.0_eslint@8.39.0 78 + eslint-config-turbo: 1.9.3_eslint@8.39.0 79 + eslint-plugin-react: 7.28.0_eslint@8.39.0 80 + 81 + packages/tsconfig: 82 + specifiers: {} 83 + 84 + packages/ui: 85 + specifiers: 86 + '@types/react': ^18.2.0 87 + '@types/react-dom': ^18.2.0 88 + eslint: ^7.32.0 89 + eslint-config-custom: workspace:* 90 + react: ^17.0.2 91 + tsconfig: workspace:* 92 + typescript: ^4.5.2 93 + devDependencies: 94 + '@types/react': 18.2.5 95 + '@types/react-dom': 18.2.3 96 + eslint: 7.32.0 97 + eslint-config-custom: link:../eslint-config-custom 98 + react: 17.0.2 99 + tsconfig: link:../tsconfig 100 + typescript: 4.9.5 101 + 102 + packages: 103 + 104 + /@babel/code-frame/7.12.11: 105 + resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} 106 + dependencies: 107 + '@babel/highlight': 7.18.6 108 + dev: true 109 + 110 + /@babel/helper-validator-identifier/7.19.1: 111 + resolution: {integrity: sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==} 112 + engines: {node: '>=6.9.0'} 113 + dev: true 114 + 115 + /@babel/highlight/7.18.6: 116 + resolution: {integrity: sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==} 117 + engines: {node: '>=6.9.0'} 118 + dependencies: 119 + '@babel/helper-validator-identifier': 7.19.1 120 + chalk: 2.4.2 121 + js-tokens: 4.0.0 122 + dev: true 123 + 124 + /@babel/runtime-corejs3/7.21.5: 125 + resolution: {integrity: sha512-FRqFlFKNazWYykft5zvzuEl1YyTDGsIRrjV9rvxvYkUC7W/ueBng1X68Xd6uRMzAaJ0xMKn08/wem5YS1lpX8w==} 126 + engines: {node: '>=6.9.0'} 127 + dependencies: 128 + core-js-pure: 3.30.2 129 + regenerator-runtime: 0.13.11 130 + dev: true 131 + 132 + /@babel/runtime/7.21.5: 133 + resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==} 134 + engines: {node: '>=6.9.0'} 135 + dependencies: 136 + regenerator-runtime: 0.13.11 137 + dev: false 138 + 139 + /@cspotcode/source-map-support/0.8.1: 140 + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} 141 + engines: {node: '>=12'} 142 + dependencies: 143 + '@jridgewell/trace-mapping': 0.3.9 144 + dev: true 145 + 146 + /@eslint-community/eslint-utils/4.4.0_eslint@8.39.0: 147 + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 148 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 149 + peerDependencies: 150 + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 151 + dependencies: 152 + eslint: 8.39.0 153 + eslint-visitor-keys: 3.4.0 154 + dev: false 155 + 156 + /@eslint-community/regexpp/4.5.1: 157 + resolution: {integrity: sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==} 158 + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 159 + dev: false 160 + 161 + /@eslint/eslintrc/0.4.3: 162 + resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==} 163 + engines: {node: ^10.12.0 || >=12.0.0} 164 + dependencies: 165 + ajv: 6.12.6 166 + debug: 4.3.4 167 + espree: 7.3.1 168 + globals: 13.20.0 169 + ignore: 4.0.6 170 + import-fresh: 3.3.0 171 + js-yaml: 3.14.1 172 + minimatch: 3.1.2 173 + strip-json-comments: 3.1.1 174 + transitivePeerDependencies: 175 + - supports-color 176 + dev: true 177 + 178 + /@eslint/eslintrc/2.0.2: 179 + resolution: {integrity: sha512-3W4f5tDUra+pA+FzgugqL2pRimUTDJWKr7BINqOpkZrC0uYI0NIc0/JFgBROCU07HR6GieA5m3/rsPIhDmCXTQ==} 180 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 181 + dependencies: 182 + ajv: 6.12.6 183 + debug: 4.3.4 184 + espree: 9.5.1 185 + globals: 13.20.0 186 + ignore: 5.2.4 187 + import-fresh: 3.3.0 188 + js-yaml: 4.1.0 189 + minimatch: 3.1.2 190 + strip-json-comments: 3.1.1 191 + transitivePeerDependencies: 192 + - supports-color 193 + dev: false 194 + 195 + /@eslint/js/8.39.0: 196 + resolution: {integrity: sha512-kf9RB0Fg7NZfap83B3QOqOGg9QmD9yBudqQXzzOtn3i4y7ZUXe5ONeW34Gwi+TxhH4mvj72R1Zc300KUMa9Bng==} 197 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 198 + dev: false 199 + 200 + /@humanwhocodes/config-array/0.11.8: 201 + resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==} 202 + engines: {node: '>=10.10.0'} 203 + dependencies: 204 + '@humanwhocodes/object-schema': 1.2.1 205 + debug: 4.3.4 206 + minimatch: 3.1.2 207 + transitivePeerDependencies: 208 + - supports-color 209 + dev: false 210 + 211 + /@humanwhocodes/config-array/0.5.0: 212 + resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==} 213 + engines: {node: '>=10.10.0'} 214 + dependencies: 215 + '@humanwhocodes/object-schema': 1.2.1 216 + debug: 4.3.4 217 + minimatch: 3.1.2 218 + transitivePeerDependencies: 219 + - supports-color 220 + dev: true 221 + 222 + /@humanwhocodes/module-importer/1.0.1: 223 + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 224 + engines: {node: '>=12.22'} 225 + dev: false 226 + 227 + /@humanwhocodes/object-schema/1.2.1: 228 + resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 229 + 230 + /@jridgewell/resolve-uri/3.1.1: 231 + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} 232 + engines: {node: '>=6.0.0'} 233 + dev: true 234 + 235 + /@jridgewell/sourcemap-codec/1.4.15: 236 + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} 237 + dev: true 238 + 239 + /@jridgewell/trace-mapping/0.3.9: 240 + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} 241 + dependencies: 242 + '@jridgewell/resolve-uri': 3.1.1 243 + '@jridgewell/sourcemap-codec': 1.4.15 244 + dev: true 245 + 246 + /@next/env/13.4.1: 247 + resolution: {integrity: sha512-eD6WCBMFjLFooLM19SIhSkWBHtaFrZFfg2Cxnyl3vS3DAdFRfnx5TY2RxlkuKXdIRCC0ySbtK9JXXt8qLCqzZg==} 248 + dev: false 249 + 250 + /@next/eslint-plugin-next/13.4.1: 251 + resolution: {integrity: sha512-tVPS/2FKlA3ANCRCYZVT5jdbUKasBU8LG6bYqcNhyORDFTlDYa4cAWQJjZ7msIgLwMQIbL8CAsxrOL8maa/4Lg==} 252 + dependencies: 253 + glob: 7.1.7 254 + dev: false 255 + 256 + /@next/swc-darwin-arm64/13.4.1: 257 + resolution: {integrity: sha512-eF8ARHtYfnoYtDa6xFHriUKA/Mfj/cCbmKb3NofeKhMccs65G6/loZ15a6wYCCx4rPAd6x4t1WmVYtri7EdeBg==} 258 + engines: {node: '>= 10'} 259 + cpu: [arm64] 260 + os: [darwin] 261 + requiresBuild: true 262 + dev: false 263 + optional: true 264 + 265 + /@next/swc-darwin-x64/13.4.1: 266 + resolution: {integrity: sha512-7cmDgF9tGWTgn5Gw+vP17miJbH4wcraMHDCOHTYWkO/VeKT73dUWG23TNRLfgtCNSPgH4V5B4uLHoZTanx9bAw==} 267 + engines: {node: '>= 10'} 268 + cpu: [x64] 269 + os: [darwin] 270 + requiresBuild: true 271 + dev: false 272 + optional: true 273 + 274 + /@next/swc-linux-arm64-gnu/13.4.1: 275 + resolution: {integrity: sha512-qwJqmCri2ie8aTtE5gjTSr8S6O8B67KCYgVZhv9gKH44yvc/zXbAY8u23QGULsYOyh1islWE5sWfQNLOj9iryg==} 276 + engines: {node: '>= 10'} 277 + cpu: [arm64] 278 + os: [linux] 279 + requiresBuild: true 280 + dev: false 281 + optional: true 282 + 283 + /@next/swc-linux-arm64-musl/13.4.1: 284 + resolution: {integrity: sha512-qcC54tWNGDv/VVIFkazxhqH1Bnagjfs4enzELVRlUOoJPD2BGJTPI7z08pQPbbgxLtRiu8gl2mXvpB8WlOkMeA==} 285 + engines: {node: '>= 10'} 286 + cpu: [arm64] 287 + os: [linux] 288 + requiresBuild: true 289 + dev: false 290 + optional: true 291 + 292 + /@next/swc-linux-x64-gnu/13.4.1: 293 + resolution: {integrity: sha512-9TeWFlpLsBosZ+tsm/rWBaMwt5It9tPH8m3nawZqFUUrZyGRfGcI67js774vtx0k3rL9qbyY6+3pw9BCVpaYUA==} 294 + engines: {node: '>= 10'} 295 + cpu: [x64] 296 + os: [linux] 297 + requiresBuild: true 298 + dev: false 299 + optional: true 300 + 301 + /@next/swc-linux-x64-musl/13.4.1: 302 + resolution: {integrity: sha512-sNDGaWmSqTS4QRUzw61wl4mVPeSqNIr1OOjLlQTRuyInxMxtqImRqdvzDvFTlDfdeUMU/DZhWGYoHrXLlZXe6A==} 303 + engines: {node: '>= 10'} 304 + cpu: [x64] 305 + os: [linux] 306 + requiresBuild: true 307 + dev: false 308 + optional: true 309 + 310 + /@next/swc-win32-arm64-msvc/13.4.1: 311 + resolution: {integrity: sha512-+CXZC7u1iXdLRudecoUYbhbsXpglYv8KFYsFxKBPn7kg+bk7eJo738wAA4jXIl8grTF2mPdmO93JOQym+BlYGA==} 312 + engines: {node: '>= 10'} 313 + cpu: [arm64] 314 + os: [win32] 315 + requiresBuild: true 316 + dev: false 317 + optional: true 318 + 319 + /@next/swc-win32-ia32-msvc/13.4.1: 320 + resolution: {integrity: sha512-vIoXVVc7UYO68VwVMDKwJC2+HqAZQtCYiVlApyKEeIPIQpz2gpufzGxk1z3/gwrJt/kJ5CDZjlhYDCzd3hdz+g==} 321 + engines: {node: '>= 10'} 322 + cpu: [ia32] 323 + os: [win32] 324 + requiresBuild: true 325 + dev: false 326 + optional: true 327 + 328 + /@next/swc-win32-x64-msvc/13.4.1: 329 + resolution: {integrity: sha512-n8V5ImLQZibKTu10UUdI3nIeTLkliEXe628qxqW9v8My3BAH2a7H0SaCqkV2OgqFnn8sG1wxKYw9/SNJ632kSA==} 330 + engines: {node: '>= 10'} 331 + cpu: [x64] 332 + os: [win32] 333 + requiresBuild: true 334 + dev: false 335 + optional: true 336 + 337 + /@nodelib/fs.scandir/2.1.5: 338 + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 339 + engines: {node: '>= 8'} 340 + dependencies: 341 + '@nodelib/fs.stat': 2.0.5 342 + run-parallel: 1.2.0 343 + 344 + /@nodelib/fs.stat/2.0.5: 345 + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 346 + engines: {node: '>= 8'} 347 + 348 + /@nodelib/fs.walk/1.2.8: 349 + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 350 + engines: {node: '>= 8'} 351 + dependencies: 352 + '@nodelib/fs.scandir': 2.1.5 353 + fastq: 1.15.0 354 + 355 + /@pkgr/utils/2.4.0: 356 + resolution: {integrity: sha512-2OCURAmRtdlL8iUDTypMrrxfwe8frXTeXaxGsVOaYtc/wrUyk8Z/0OBetM7cdlsy7ZFWlMX72VogKeh+A4Xcjw==} 357 + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 358 + dependencies: 359 + cross-spawn: 7.0.3 360 + fast-glob: 3.2.12 361 + is-glob: 4.0.3 362 + open: 9.1.0 363 + picocolors: 1.0.0 364 + tslib: 2.5.0 365 + dev: false 366 + 367 + /@rushstack/eslint-patch/1.2.0: 368 + resolution: {integrity: sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==} 369 + dev: false 370 + 371 + /@swc/helpers/0.5.1: 372 + resolution: {integrity: sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==} 373 + dependencies: 374 + tslib: 2.5.0 375 + dev: false 376 + 377 + /@tsconfig/node10/1.0.9: 378 + resolution: {integrity: sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==} 379 + dev: true 380 + 381 + /@tsconfig/node12/1.0.11: 382 + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} 383 + dev: true 384 + 385 + /@tsconfig/node14/1.0.3: 386 + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} 387 + dev: true 388 + 389 + /@tsconfig/node16/1.0.4: 390 + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} 391 + dev: true 392 + 393 + /@turbo/gen/1.9.7_t7dmilwzctzfywb3oy4dmby4b4: 394 + resolution: {integrity: sha512-mjenROdRNvYxZixNfamJY/XxwKMT+01PuQby8+qdRUUa5ZLBPOv4rw11n+II1O8ZnpFpBJIGGFJcnRNY+lCddw==} 395 + hasBin: true 396 + dependencies: 397 + chalk: 2.4.2 398 + commander: 10.0.1 399 + fs-extra: 10.1.0 400 + inquirer: 8.2.5 401 + minimatch: 9.0.0 402 + node-plop: 0.26.3 403 + semver: 7.5.0 404 + ts-node: 10.9.1_t7dmilwzctzfywb3oy4dmby4b4 405 + update-check: 1.5.4 406 + validate-npm-package-name: 5.0.0 407 + transitivePeerDependencies: 408 + - '@swc/core' 409 + - '@swc/wasm' 410 + - '@types/node' 411 + - typescript 412 + dev: true 413 + 414 + /@types/glob/7.2.0: 415 + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} 416 + dependencies: 417 + '@types/minimatch': 5.1.2 418 + '@types/node': 17.0.45 419 + dev: true 420 + 421 + /@types/inquirer/6.5.0: 422 + resolution: {integrity: sha512-rjaYQ9b9y/VFGOpqBEXRavc3jh0a+e6evAbI31tMda8VlPaSy0AZJfXsvmIe3wklc7W6C3zCSfleuMXR7NOyXw==} 423 + dependencies: 424 + '@types/through': 0.0.30 425 + rxjs: 6.6.7 426 + dev: true 427 + 428 + /@types/json5/0.0.29: 429 + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 430 + dev: false 431 + 432 + /@types/minimatch/5.1.2: 433 + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} 434 + dev: true 435 + 436 + /@types/node/17.0.45: 437 + resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==} 438 + dev: true 439 + 440 + /@types/prop-types/15.7.5: 441 + resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==} 442 + dev: true 443 + 444 + /@types/react-dom/18.2.3: 445 + resolution: {integrity: sha512-hxXEXWxFJXbY0LMj/T69mznqOZJXNtQMqVxIiirVAZnnpeYiD4zt+lPsgcr/cfWg2VLsxZ1y26vigG03prYB+Q==} 446 + dependencies: 447 + '@types/react': 18.2.5 448 + dev: true 449 + 450 + /@types/react/18.2.5: 451 + resolution: {integrity: sha512-RuoMedzJ5AOh23Dvws13LU9jpZHIc/k90AgmK7CecAYeWmSr3553L4u5rk4sWAPBuQosfT7HmTfG4Rg5o4nGEA==} 452 + dependencies: 453 + '@types/prop-types': 15.7.5 454 + '@types/scheduler': 0.16.3 455 + csstype: 3.1.2 456 + dev: true 457 + 458 + /@types/scheduler/0.16.3: 459 + resolution: {integrity: sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ==} 460 + dev: true 461 + 462 + /@types/through/0.0.30: 463 + resolution: {integrity: sha512-FvnCJljyxhPM3gkRgWmxmDZyAQSiBQQWLI0A0VFL0K7W1oRUrPJSqNO0NvTnLkBcotdlp3lKvaT0JrnyRDkzOg==} 464 + dependencies: 465 + '@types/node': 17.0.45 466 + dev: true 467 + 468 + /@typescript-eslint/parser/5.59.2_iacogk7kkaymxepzhgcbytyi7q: 469 + resolution: {integrity: sha512-uq0sKyw6ao1iFOZZGk9F8Nro/8+gfB5ezl1cA06SrqbgJAt0SRoFhb9pXaHvkrxUpZaoLxt8KlovHNk8Gp6/HQ==} 470 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 471 + peerDependencies: 472 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 473 + typescript: '*' 474 + peerDependenciesMeta: 475 + typescript: 476 + optional: true 477 + dependencies: 478 + '@typescript-eslint/scope-manager': 5.59.2 479 + '@typescript-eslint/types': 5.59.2 480 + '@typescript-eslint/typescript-estree': 5.59.2_typescript@5.0.4 481 + debug: 4.3.4 482 + eslint: 8.39.0 483 + typescript: 5.0.4 484 + transitivePeerDependencies: 485 + - supports-color 486 + dev: false 487 + 488 + /@typescript-eslint/scope-manager/5.59.2: 489 + resolution: {integrity: sha512-dB1v7ROySwQWKqQ8rEWcdbTsFjh2G0vn8KUyvTXdPoyzSL6lLGkiXEV5CvpJsEe9xIdKV+8Zqb7wif2issoOFA==} 490 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 491 + dependencies: 492 + '@typescript-eslint/types': 5.59.2 493 + '@typescript-eslint/visitor-keys': 5.59.2 494 + dev: false 495 + 496 + /@typescript-eslint/types/5.59.2: 497 + resolution: {integrity: sha512-LbJ/HqoVs2XTGq5shkiKaNTuVv5tTejdHgfdjqRUGdYhjW1crm/M7og2jhVskMt8/4wS3T1+PfFvL1K3wqYj4w==} 498 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 499 + dev: false 500 + 501 + /@typescript-eslint/typescript-estree/5.59.2_typescript@5.0.4: 502 + resolution: {integrity: sha512-+j4SmbwVmZsQ9jEyBMgpuBD0rKwi9RxRpjX71Brr73RsYnEr3Lt5QZ624Bxphp8HUkSKfqGnPJp1kA5nl0Sh7Q==} 503 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 504 + peerDependencies: 505 + typescript: '*' 506 + peerDependenciesMeta: 507 + typescript: 508 + optional: true 509 + dependencies: 510 + '@typescript-eslint/types': 5.59.2 511 + '@typescript-eslint/visitor-keys': 5.59.2 512 + debug: 4.3.4 513 + globby: 11.1.0 514 + is-glob: 4.0.3 515 + semver: 7.5.0 516 + tsutils: 3.21.0_typescript@5.0.4 517 + typescript: 5.0.4 518 + transitivePeerDependencies: 519 + - supports-color 520 + dev: false 521 + 522 + /@typescript-eslint/visitor-keys/5.59.2: 523 + resolution: {integrity: sha512-EEpsO8m3RASrKAHI9jpavNv9NlEUebV4qmF1OWxSTtKSFBpC1NCmWazDQHFivRf0O1DV11BA645yrLEVQ0/Lig==} 524 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 525 + dependencies: 526 + '@typescript-eslint/types': 5.59.2 527 + eslint-visitor-keys: 3.4.0 528 + dev: false 529 + 530 + /acorn-jsx/5.3.2_acorn@7.4.1: 531 + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 532 + peerDependencies: 533 + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 534 + dependencies: 535 + acorn: 7.4.1 536 + dev: true 537 + 538 + /acorn-jsx/5.3.2_acorn@8.8.2: 539 + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 540 + peerDependencies: 541 + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 542 + dependencies: 543 + acorn: 8.8.2 544 + dev: false 545 + 546 + /acorn-walk/8.2.0: 547 + resolution: {integrity: sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA==} 548 + engines: {node: '>=0.4.0'} 549 + dev: true 550 + 551 + /acorn/7.4.1: 552 + resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==} 553 + engines: {node: '>=0.4.0'} 554 + hasBin: true 555 + dev: true 556 + 557 + /acorn/8.8.2: 558 + resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==} 559 + engines: {node: '>=0.4.0'} 560 + hasBin: true 561 + 562 + /aggregate-error/3.1.0: 563 + resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==} 564 + engines: {node: '>=8'} 565 + dependencies: 566 + clean-stack: 2.2.0 567 + indent-string: 4.0.0 568 + dev: true 569 + 570 + /ajv/6.12.6: 571 + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 572 + dependencies: 573 + fast-deep-equal: 3.1.3 574 + fast-json-stable-stringify: 2.1.0 575 + json-schema-traverse: 0.4.1 576 + uri-js: 4.4.1 577 + 578 + /ajv/8.12.0: 579 + resolution: {integrity: sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==} 580 + dependencies: 581 + fast-deep-equal: 3.1.3 582 + json-schema-traverse: 1.0.0 583 + require-from-string: 2.0.2 584 + uri-js: 4.4.1 585 + dev: true 586 + 587 + /ansi-colors/4.1.3: 588 + resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==} 589 + engines: {node: '>=6'} 590 + dev: true 591 + 592 + /ansi-escapes/4.3.2: 593 + resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==} 594 + engines: {node: '>=8'} 595 + dependencies: 596 + type-fest: 0.21.3 597 + dev: true 598 + 599 + /ansi-regex/5.0.1: 600 + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 601 + engines: {node: '>=8'} 602 + 603 + /ansi-styles/3.2.1: 604 + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} 605 + engines: {node: '>=4'} 606 + dependencies: 607 + color-convert: 1.9.3 608 + dev: true 609 + 610 + /ansi-styles/4.3.0: 611 + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 612 + engines: {node: '>=8'} 613 + dependencies: 614 + color-convert: 2.0.1 615 + 616 + /arg/4.1.3: 617 + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} 618 + dev: true 619 + 620 + /argparse/1.0.10: 621 + resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==} 622 + dependencies: 623 + sprintf-js: 1.0.3 624 + dev: true 625 + 626 + /argparse/2.0.1: 627 + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 628 + dev: false 629 + 630 + /aria-query/5.1.3: 631 + resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} 632 + dependencies: 633 + deep-equal: 2.2.1 634 + dev: false 635 + 636 + /array-buffer-byte-length/1.0.0: 637 + resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 638 + dependencies: 639 + call-bind: 1.0.2 640 + is-array-buffer: 3.0.2 641 + dev: false 642 + 643 + /array-includes/3.1.6: 644 + resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} 645 + engines: {node: '>= 0.4'} 646 + dependencies: 647 + call-bind: 1.0.2 648 + define-properties: 1.2.0 649 + es-abstract: 1.21.2 650 + get-intrinsic: 1.2.0 651 + is-string: 1.0.7 652 + dev: false 653 + 654 + /array-union/2.1.0: 655 + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} 656 + engines: {node: '>=8'} 657 + 658 + /array.prototype.flat/1.3.1: 659 + resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} 660 + engines: {node: '>= 0.4'} 661 + dependencies: 662 + call-bind: 1.0.2 663 + define-properties: 1.2.0 664 + es-abstract: 1.21.2 665 + es-shim-unscopables: 1.0.0 666 + dev: false 667 + 668 + /array.prototype.flatmap/1.3.1: 669 + resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} 670 + engines: {node: '>= 0.4'} 671 + dependencies: 672 + call-bind: 1.0.2 673 + define-properties: 1.2.0 674 + es-abstract: 1.21.2 675 + es-shim-unscopables: 1.0.0 676 + dev: false 677 + 678 + /array.prototype.tosorted/1.1.1: 679 + resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} 680 + dependencies: 681 + call-bind: 1.0.2 682 + define-properties: 1.2.0 683 + es-abstract: 1.21.2 684 + es-shim-unscopables: 1.0.0 685 + get-intrinsic: 1.2.0 686 + dev: false 687 + 688 + /ast-types-flow/0.0.7: 689 + resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} 690 + dev: false 691 + 692 + /astral-regex/2.0.0: 693 + resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==} 694 + engines: {node: '>=8'} 695 + dev: true 696 + 697 + /available-typed-arrays/1.0.5: 698 + resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==} 699 + engines: {node: '>= 0.4'} 700 + dev: false 701 + 702 + /axe-core/4.7.0: 703 + resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==} 704 + engines: {node: '>=4'} 705 + dev: false 706 + 707 + /axobject-query/3.1.1: 708 + resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} 709 + dependencies: 710 + deep-equal: 2.2.1 711 + dev: false 712 + 713 + /balanced-match/1.0.2: 714 + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 715 + 716 + /base64-js/1.5.1: 717 + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 718 + dev: true 719 + 720 + /big-integer/1.6.51: 721 + resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} 722 + engines: {node: '>=0.6'} 723 + dev: false 724 + 725 + /bl/4.1.0: 726 + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} 727 + dependencies: 728 + buffer: 5.7.1 729 + inherits: 2.0.4 730 + readable-stream: 3.6.2 731 + dev: true 732 + 733 + /bplist-parser/0.2.0: 734 + resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} 735 + engines: {node: '>= 5.10.0'} 736 + dependencies: 737 + big-integer: 1.6.51 738 + dev: false 739 + 740 + /brace-expansion/1.1.11: 741 + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 742 + dependencies: 743 + balanced-match: 1.0.2 744 + concat-map: 0.0.1 745 + 746 + /brace-expansion/2.0.1: 747 + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 748 + dependencies: 749 + balanced-match: 1.0.2 750 + dev: true 751 + 752 + /braces/3.0.2: 753 + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} 754 + engines: {node: '>=8'} 755 + dependencies: 756 + fill-range: 7.0.1 757 + 758 + /buffer/5.7.1: 759 + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 760 + dependencies: 761 + base64-js: 1.5.1 762 + ieee754: 1.2.1 763 + dev: true 764 + 765 + /builtins/5.0.1: 766 + resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} 767 + dependencies: 768 + semver: 7.5.0 769 + dev: true 770 + 771 + /bundle-name/3.0.0: 772 + resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} 773 + engines: {node: '>=12'} 774 + dependencies: 775 + run-applescript: 5.0.0 776 + dev: false 777 + 778 + /busboy/1.6.0: 779 + resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==} 780 + engines: {node: '>=10.16.0'} 781 + dependencies: 782 + streamsearch: 1.1.0 783 + dev: false 784 + 785 + /call-bind/1.0.2: 786 + resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 787 + dependencies: 788 + function-bind: 1.1.1 789 + get-intrinsic: 1.2.0 790 + dev: false 791 + 792 + /callsites/3.1.0: 793 + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 794 + engines: {node: '>=6'} 795 + 796 + /camel-case/3.0.0: 797 + resolution: {integrity: sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==} 798 + dependencies: 799 + no-case: 2.3.2 800 + upper-case: 1.1.3 801 + dev: true 802 + 803 + /caniuse-lite/1.0.30001482: 804 + resolution: {integrity: sha512-F1ZInsg53cegyjroxLNW9DmrEQ1SuGRTO1QlpA0o2/6OpQ0gFeDRoq1yFmnr8Sakn9qwwt9DmbxHB6w167OSuQ==} 805 + dev: false 806 + 807 + /chalk/2.4.2: 808 + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} 809 + engines: {node: '>=4'} 810 + dependencies: 811 + ansi-styles: 3.2.1 812 + escape-string-regexp: 1.0.5 813 + supports-color: 5.5.0 814 + dev: true 815 + 816 + /chalk/4.1.2: 817 + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 818 + engines: {node: '>=10'} 819 + dependencies: 820 + ansi-styles: 4.3.0 821 + supports-color: 7.2.0 822 + 823 + /change-case/3.1.0: 824 + resolution: {integrity: sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==} 825 + dependencies: 826 + camel-case: 3.0.0 827 + constant-case: 2.0.0 828 + dot-case: 2.1.1 829 + header-case: 1.0.1 830 + is-lower-case: 1.1.3 831 + is-upper-case: 1.1.2 832 + lower-case: 1.1.4 833 + lower-case-first: 1.0.2 834 + no-case: 2.3.2 835 + param-case: 2.1.1 836 + pascal-case: 2.0.1 837 + path-case: 2.1.1 838 + sentence-case: 2.1.1 839 + snake-case: 2.1.0 840 + swap-case: 1.1.2 841 + title-case: 2.1.1 842 + upper-case: 1.1.3 843 + upper-case-first: 1.1.2 844 + dev: true 845 + 846 + /chardet/0.7.0: 847 + resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==} 848 + dev: true 849 + 850 + /clean-stack/2.2.0: 851 + resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==} 852 + engines: {node: '>=6'} 853 + dev: true 854 + 855 + /cli-cursor/3.1.0: 856 + resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==} 857 + engines: {node: '>=8'} 858 + dependencies: 859 + restore-cursor: 3.1.0 860 + dev: true 861 + 862 + /cli-spinners/2.9.0: 863 + resolution: {integrity: sha512-4/aL9X3Wh0yiMQlE+eeRhWP6vclO3QRtw1JHKIT0FFUs5FjpFmESqtMvYZ0+lbzBw900b95mS0hohy+qn2VK/g==} 864 + engines: {node: '>=6'} 865 + dev: true 866 + 867 + /cli-width/3.0.0: 868 + resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==} 869 + engines: {node: '>= 10'} 870 + dev: true 871 + 872 + /client-only/0.0.1: 873 + resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==} 874 + dev: false 875 + 876 + /clone/1.0.4: 877 + resolution: {integrity: sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==} 878 + engines: {node: '>=0.8'} 879 + dev: true 880 + 881 + /color-convert/1.9.3: 882 + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} 883 + dependencies: 884 + color-name: 1.1.3 885 + dev: true 886 + 887 + /color-convert/2.0.1: 888 + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 889 + engines: {node: '>=7.0.0'} 890 + dependencies: 891 + color-name: 1.1.4 892 + 893 + /color-name/1.1.3: 894 + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} 895 + dev: true 896 + 897 + /color-name/1.1.4: 898 + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 899 + 900 + /commander/10.0.1: 901 + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} 902 + engines: {node: '>=14'} 903 + dev: true 904 + 905 + /concat-map/0.0.1: 906 + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 907 + 908 + /constant-case/2.0.0: 909 + resolution: {integrity: sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==} 910 + dependencies: 911 + snake-case: 2.1.0 912 + upper-case: 1.1.3 913 + dev: true 914 + 915 + /core-js-pure/3.30.2: 916 + resolution: {integrity: sha512-p/npFUJXXBkCCTIlEGBdghofn00jWG6ZOtdoIXSJmAu2QBvN0IqpZXWweOytcwE6cfx8ZvVUy1vw8zxhe4Y2vg==} 917 + requiresBuild: true 918 + dev: true 919 + 920 + /create-require/1.1.1: 921 + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} 922 + dev: true 923 + 924 + /cross-spawn/7.0.3: 925 + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} 926 + engines: {node: '>= 8'} 927 + dependencies: 928 + path-key: 3.1.1 929 + shebang-command: 2.0.0 930 + which: 2.0.2 931 + 932 + /csstype/3.1.2: 933 + resolution: {integrity: sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ==} 934 + dev: true 935 + 936 + /damerau-levenshtein/1.0.8: 937 + resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==} 938 + dev: false 939 + 940 + /debug/3.2.7: 941 + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} 942 + peerDependencies: 943 + supports-color: '*' 944 + peerDependenciesMeta: 945 + supports-color: 946 + optional: true 947 + dependencies: 948 + ms: 2.1.3 949 + dev: false 950 + 951 + /debug/4.3.4: 952 + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} 953 + engines: {node: '>=6.0'} 954 + peerDependencies: 955 + supports-color: '*' 956 + peerDependenciesMeta: 957 + supports-color: 958 + optional: true 959 + dependencies: 960 + ms: 2.1.2 961 + 962 + /deep-equal/2.2.1: 963 + resolution: {integrity: sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==} 964 + dependencies: 965 + array-buffer-byte-length: 1.0.0 966 + call-bind: 1.0.2 967 + es-get-iterator: 1.1.3 968 + get-intrinsic: 1.2.0 969 + is-arguments: 1.1.1 970 + is-array-buffer: 3.0.2 971 + is-date-object: 1.0.5 972 + is-regex: 1.1.4 973 + is-shared-array-buffer: 1.0.2 974 + isarray: 2.0.5 975 + object-is: 1.1.5 976 + object-keys: 1.1.1 977 + object.assign: 4.1.4 978 + regexp.prototype.flags: 1.5.0 979 + side-channel: 1.0.4 980 + which-boxed-primitive: 1.0.2 981 + which-collection: 1.0.1 982 + which-typed-array: 1.1.9 983 + dev: false 984 + 985 + /deep-extend/0.6.0: 986 + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} 987 + engines: {node: '>=4.0.0'} 988 + dev: true 989 + 990 + /deep-is/0.1.4: 991 + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 992 + 993 + /default-browser-id/3.0.0: 994 + resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} 995 + engines: {node: '>=12'} 996 + dependencies: 997 + bplist-parser: 0.2.0 998 + untildify: 4.0.0 999 + dev: false 1000 + 1001 + /default-browser/4.0.0: 1002 + resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} 1003 + engines: {node: '>=14.16'} 1004 + dependencies: 1005 + bundle-name: 3.0.0 1006 + default-browser-id: 3.0.0 1007 + execa: 7.1.1 1008 + titleize: 3.0.0 1009 + dev: false 1010 + 1011 + /defaults/1.0.4: 1012 + resolution: {integrity: sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==} 1013 + dependencies: 1014 + clone: 1.0.4 1015 + dev: true 1016 + 1017 + /define-lazy-prop/3.0.0: 1018 + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} 1019 + engines: {node: '>=12'} 1020 + dev: false 1021 + 1022 + /define-properties/1.2.0: 1023 + resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} 1024 + engines: {node: '>= 0.4'} 1025 + dependencies: 1026 + has-property-descriptors: 1.0.0 1027 + object-keys: 1.1.1 1028 + dev: false 1029 + 1030 + /del/5.1.0: 1031 + resolution: {integrity: sha512-wH9xOVHnczo9jN2IW68BabcecVPxacIA3g/7z6vhSU/4stOKQzeCRK0yD0A24WiAAUJmmVpWqrERcTxnLo3AnA==} 1032 + engines: {node: '>=8'} 1033 + dependencies: 1034 + globby: 10.0.2 1035 + graceful-fs: 4.2.11 1036 + is-glob: 4.0.3 1037 + is-path-cwd: 2.2.0 1038 + is-path-inside: 3.0.3 1039 + p-map: 3.0.0 1040 + rimraf: 3.0.2 1041 + slash: 3.0.0 1042 + dev: true 1043 + 1044 + /diff/4.0.2: 1045 + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} 1046 + engines: {node: '>=0.3.1'} 1047 + dev: true 1048 + 1049 + /dir-glob/3.0.1: 1050 + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} 1051 + engines: {node: '>=8'} 1052 + dependencies: 1053 + path-type: 4.0.0 1054 + 1055 + /doctrine/2.1.0: 1056 + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} 1057 + engines: {node: '>=0.10.0'} 1058 + dependencies: 1059 + esutils: 2.0.3 1060 + dev: false 1061 + 1062 + /doctrine/3.0.0: 1063 + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} 1064 + engines: {node: '>=6.0.0'} 1065 + dependencies: 1066 + esutils: 2.0.3 1067 + 1068 + /dot-case/2.1.1: 1069 + resolution: {integrity: sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==} 1070 + dependencies: 1071 + no-case: 2.3.2 1072 + dev: true 1073 + 1074 + /emoji-regex/8.0.0: 1075 + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 1076 + dev: true 1077 + 1078 + /emoji-regex/9.2.2: 1079 + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 1080 + dev: false 1081 + 1082 + /enhanced-resolve/5.13.0: 1083 + resolution: {integrity: sha512-eyV8f0y1+bzyfh8xAwW/WTSZpLbjhqc4ne9eGSH4Zo2ejdyiNG9pU6mf9DG8a7+Auk6MFTlNOT4Y2y/9k8GKVg==} 1084 + engines: {node: '>=10.13.0'} 1085 + dependencies: 1086 + graceful-fs: 4.2.11 1087 + tapable: 2.2.1 1088 + dev: false 1089 + 1090 + /enquirer/2.3.6: 1091 + resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==} 1092 + engines: {node: '>=8.6'} 1093 + dependencies: 1094 + ansi-colors: 4.1.3 1095 + dev: true 1096 + 1097 + /es-abstract/1.21.2: 1098 + resolution: {integrity: sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==} 1099 + engines: {node: '>= 0.4'} 1100 + dependencies: 1101 + array-buffer-byte-length: 1.0.0 1102 + available-typed-arrays: 1.0.5 1103 + call-bind: 1.0.2 1104 + es-set-tostringtag: 2.0.1 1105 + es-to-primitive: 1.2.1 1106 + function.prototype.name: 1.1.5 1107 + get-intrinsic: 1.2.0 1108 + get-symbol-description: 1.0.0 1109 + globalthis: 1.0.3 1110 + gopd: 1.0.1 1111 + has: 1.0.3 1112 + has-property-descriptors: 1.0.0 1113 + has-proto: 1.0.1 1114 + has-symbols: 1.0.3 1115 + internal-slot: 1.0.5 1116 + is-array-buffer: 3.0.2 1117 + is-callable: 1.2.7 1118 + is-negative-zero: 2.0.2 1119 + is-regex: 1.1.4 1120 + is-shared-array-buffer: 1.0.2 1121 + is-string: 1.0.7 1122 + is-typed-array: 1.1.10 1123 + is-weakref: 1.0.2 1124 + object-inspect: 1.12.3 1125 + object-keys: 1.1.1 1126 + object.assign: 4.1.4 1127 + regexp.prototype.flags: 1.5.0 1128 + safe-regex-test: 1.0.0 1129 + string.prototype.trim: 1.2.7 1130 + string.prototype.trimend: 1.0.6 1131 + string.prototype.trimstart: 1.0.6 1132 + typed-array-length: 1.0.4 1133 + unbox-primitive: 1.0.2 1134 + which-typed-array: 1.1.9 1135 + dev: false 1136 + 1137 + /es-get-iterator/1.1.3: 1138 + resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==} 1139 + dependencies: 1140 + call-bind: 1.0.2 1141 + get-intrinsic: 1.2.0 1142 + has-symbols: 1.0.3 1143 + is-arguments: 1.1.1 1144 + is-map: 2.0.2 1145 + is-set: 2.0.2 1146 + is-string: 1.0.7 1147 + isarray: 2.0.5 1148 + stop-iteration-iterator: 1.0.0 1149 + dev: false 1150 + 1151 + /es-set-tostringtag/2.0.1: 1152 + resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} 1153 + engines: {node: '>= 0.4'} 1154 + dependencies: 1155 + get-intrinsic: 1.2.0 1156 + has: 1.0.3 1157 + has-tostringtag: 1.0.0 1158 + dev: false 1159 + 1160 + /es-shim-unscopables/1.0.0: 1161 + resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 1162 + dependencies: 1163 + has: 1.0.3 1164 + dev: false 1165 + 1166 + /es-to-primitive/1.2.1: 1167 + resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==} 1168 + engines: {node: '>= 0.4'} 1169 + dependencies: 1170 + is-callable: 1.2.7 1171 + is-date-object: 1.0.5 1172 + is-symbol: 1.0.4 1173 + dev: false 1174 + 1175 + /escape-string-regexp/1.0.5: 1176 + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} 1177 + engines: {node: '>=0.8.0'} 1178 + dev: true 1179 + 1180 + /escape-string-regexp/4.0.0: 1181 + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 1182 + engines: {node: '>=10'} 1183 + 1184 + /eslint-config-next/13.4.1_iacogk7kkaymxepzhgcbytyi7q: 1185 + resolution: {integrity: sha512-ajuxjCkW1hvirr0EQZb3/B/bFH52Z7CT89uCtTcICFL9l30i5c8hN4p0LXvTjdOXNPV5fEDcxBgGHgXdzTj1/A==} 1186 + peerDependencies: 1187 + eslint: ^7.23.0 || ^8.0.0 1188 + typescript: '>=3.3.1' 1189 + peerDependenciesMeta: 1190 + typescript: 1191 + optional: true 1192 + dependencies: 1193 + '@next/eslint-plugin-next': 13.4.1 1194 + '@rushstack/eslint-patch': 1.2.0 1195 + '@typescript-eslint/parser': 5.59.2_iacogk7kkaymxepzhgcbytyi7q 1196 + eslint: 8.39.0 1197 + eslint-import-resolver-node: 0.3.7 1198 + eslint-import-resolver-typescript: 3.5.5_dcxjpn7zkhfkza34okghut2zbm 1199 + eslint-plugin-import: 2.27.5_eslint@8.39.0 1200 + eslint-plugin-jsx-a11y: 6.7.1_eslint@8.39.0 1201 + eslint-plugin-react: 7.32.2_eslint@8.39.0 1202 + eslint-plugin-react-hooks: 4.6.0_eslint@8.39.0 1203 + typescript: 5.0.4 1204 + transitivePeerDependencies: 1205 + - eslint-import-resolver-webpack 1206 + - supports-color 1207 + dev: false 1208 + 1209 + /eslint-config-prettier/8.8.0_eslint@8.39.0: 1210 + resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} 1211 + hasBin: true 1212 + peerDependencies: 1213 + eslint: '>=7.0.0' 1214 + dependencies: 1215 + eslint: 8.39.0 1216 + dev: false 1217 + 1218 + /eslint-config-turbo/1.9.3_eslint@8.39.0: 1219 + resolution: {integrity: sha512-QG6jxFQkrGSpQqlFKefPdtgUfr20EbU0s4tGGIuGFOcPuJEdsY6VYZpZUxNJvmMcTGqPgMyOPjAFBKhy/DPHLA==} 1220 + peerDependencies: 1221 + eslint: '>6.6.0' 1222 + dependencies: 1223 + eslint: 8.39.0 1224 + eslint-plugin-turbo: 1.9.3_eslint@8.39.0 1225 + dev: false 1226 + 1227 + /eslint-import-resolver-node/0.3.7: 1228 + resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} 1229 + dependencies: 1230 + debug: 3.2.7 1231 + is-core-module: 2.12.0 1232 + resolve: 1.22.2 1233 + transitivePeerDependencies: 1234 + - supports-color 1235 + dev: false 1236 + 1237 + /eslint-import-resolver-typescript/3.5.5_dcxjpn7zkhfkza34okghut2zbm: 1238 + resolution: {integrity: sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==} 1239 + engines: {node: ^14.18.0 || >=16.0.0} 1240 + peerDependencies: 1241 + eslint: '*' 1242 + eslint-plugin-import: '*' 1243 + dependencies: 1244 + debug: 4.3.4 1245 + enhanced-resolve: 5.13.0 1246 + eslint: 8.39.0 1247 + eslint-module-utils: 2.8.0_6dl3jzo7iyec4iovyemxyi4mpy 1248 + eslint-plugin-import: 2.27.5_eslint@8.39.0 1249 + get-tsconfig: 4.5.0 1250 + globby: 13.1.4 1251 + is-core-module: 2.12.0 1252 + is-glob: 4.0.3 1253 + synckit: 0.8.5 1254 + transitivePeerDependencies: 1255 + - '@typescript-eslint/parser' 1256 + - eslint-import-resolver-node 1257 + - eslint-import-resolver-webpack 1258 + - supports-color 1259 + dev: false 1260 + 1261 + /eslint-module-utils/2.8.0_6dl3jzo7iyec4iovyemxyi4mpy: 1262 + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 1263 + engines: {node: '>=4'} 1264 + peerDependencies: 1265 + '@typescript-eslint/parser': '*' 1266 + eslint: '*' 1267 + eslint-import-resolver-node: '*' 1268 + eslint-import-resolver-typescript: '*' 1269 + eslint-import-resolver-webpack: '*' 1270 + peerDependenciesMeta: 1271 + '@typescript-eslint/parser': 1272 + optional: true 1273 + eslint: 1274 + optional: true 1275 + eslint-import-resolver-node: 1276 + optional: true 1277 + eslint-import-resolver-typescript: 1278 + optional: true 1279 + eslint-import-resolver-webpack: 1280 + optional: true 1281 + dependencies: 1282 + '@typescript-eslint/parser': 5.59.2_iacogk7kkaymxepzhgcbytyi7q 1283 + debug: 3.2.7 1284 + eslint: 8.39.0 1285 + eslint-import-resolver-node: 0.3.7 1286 + eslint-import-resolver-typescript: 3.5.5_dcxjpn7zkhfkza34okghut2zbm 1287 + transitivePeerDependencies: 1288 + - supports-color 1289 + dev: false 1290 + 1291 + /eslint-module-utils/2.8.0_xyhqqhv6xsioubgdj4wdf2yaay: 1292 + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 1293 + engines: {node: '>=4'} 1294 + peerDependencies: 1295 + '@typescript-eslint/parser': '*' 1296 + eslint: '*' 1297 + eslint-import-resolver-node: '*' 1298 + eslint-import-resolver-typescript: '*' 1299 + eslint-import-resolver-webpack: '*' 1300 + peerDependenciesMeta: 1301 + '@typescript-eslint/parser': 1302 + optional: true 1303 + eslint: 1304 + optional: true 1305 + eslint-import-resolver-node: 1306 + optional: true 1307 + eslint-import-resolver-typescript: 1308 + optional: true 1309 + eslint-import-resolver-webpack: 1310 + optional: true 1311 + dependencies: 1312 + debug: 3.2.7 1313 + eslint: 8.39.0 1314 + eslint-import-resolver-node: 0.3.7 1315 + transitivePeerDependencies: 1316 + - supports-color 1317 + dev: false 1318 + 1319 + /eslint-plugin-import/2.27.5_eslint@8.39.0: 1320 + resolution: {integrity: sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==} 1321 + engines: {node: '>=4'} 1322 + peerDependencies: 1323 + '@typescript-eslint/parser': '*' 1324 + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 1325 + peerDependenciesMeta: 1326 + '@typescript-eslint/parser': 1327 + optional: true 1328 + dependencies: 1329 + array-includes: 3.1.6 1330 + array.prototype.flat: 1.3.1 1331 + array.prototype.flatmap: 1.3.1 1332 + debug: 3.2.7 1333 + doctrine: 2.1.0 1334 + eslint: 8.39.0 1335 + eslint-import-resolver-node: 0.3.7 1336 + eslint-module-utils: 2.8.0_xyhqqhv6xsioubgdj4wdf2yaay 1337 + has: 1.0.3 1338 + is-core-module: 2.12.0 1339 + is-glob: 4.0.3 1340 + minimatch: 3.1.2 1341 + object.values: 1.1.6 1342 + resolve: 1.22.2 1343 + semver: 6.3.0 1344 + tsconfig-paths: 3.14.2 1345 + transitivePeerDependencies: 1346 + - eslint-import-resolver-typescript 1347 + - eslint-import-resolver-webpack 1348 + - supports-color 1349 + dev: false 1350 + 1351 + /eslint-plugin-jsx-a11y/6.7.1_eslint@8.39.0: 1352 + resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} 1353 + engines: {node: '>=4.0'} 1354 + peerDependencies: 1355 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1356 + dependencies: 1357 + '@babel/runtime': 7.21.5 1358 + aria-query: 5.1.3 1359 + array-includes: 3.1.6 1360 + array.prototype.flatmap: 1.3.1 1361 + ast-types-flow: 0.0.7 1362 + axe-core: 4.7.0 1363 + axobject-query: 3.1.1 1364 + damerau-levenshtein: 1.0.8 1365 + emoji-regex: 9.2.2 1366 + eslint: 8.39.0 1367 + has: 1.0.3 1368 + jsx-ast-utils: 3.3.3 1369 + language-tags: 1.0.5 1370 + minimatch: 3.1.2 1371 + object.entries: 1.1.6 1372 + object.fromentries: 2.0.6 1373 + semver: 6.3.0 1374 + dev: false 1375 + 1376 + /eslint-plugin-react-hooks/4.6.0_eslint@8.39.0: 1377 + resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 1378 + engines: {node: '>=10'} 1379 + peerDependencies: 1380 + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 1381 + dependencies: 1382 + eslint: 8.39.0 1383 + dev: false 1384 + 1385 + /eslint-plugin-react/7.28.0_eslint@8.39.0: 1386 + resolution: {integrity: sha512-IOlFIRHzWfEQQKcAD4iyYDndHwTQiCMcJVJjxempf203jnNLUnW34AXLrV33+nEXoifJE2ZEGmcjKPL8957eSw==} 1387 + engines: {node: '>=4'} 1388 + peerDependencies: 1389 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1390 + dependencies: 1391 + array-includes: 3.1.6 1392 + array.prototype.flatmap: 1.3.1 1393 + doctrine: 2.1.0 1394 + eslint: 8.39.0 1395 + estraverse: 5.3.0 1396 + jsx-ast-utils: 3.3.3 1397 + minimatch: 3.1.2 1398 + object.entries: 1.1.6 1399 + object.fromentries: 2.0.6 1400 + object.hasown: 1.1.2 1401 + object.values: 1.1.6 1402 + prop-types: 15.8.1 1403 + resolve: 2.0.0-next.4 1404 + semver: 6.3.0 1405 + string.prototype.matchall: 4.0.8 1406 + dev: false 1407 + 1408 + /eslint-plugin-react/7.32.2_eslint@8.39.0: 1409 + resolution: {integrity: sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==} 1410 + engines: {node: '>=4'} 1411 + peerDependencies: 1412 + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 1413 + dependencies: 1414 + array-includes: 3.1.6 1415 + array.prototype.flatmap: 1.3.1 1416 + array.prototype.tosorted: 1.1.1 1417 + doctrine: 2.1.0 1418 + eslint: 8.39.0 1419 + estraverse: 5.3.0 1420 + jsx-ast-utils: 3.3.3 1421 + minimatch: 3.1.2 1422 + object.entries: 1.1.6 1423 + object.fromentries: 2.0.6 1424 + object.hasown: 1.1.2 1425 + object.values: 1.1.6 1426 + prop-types: 15.8.1 1427 + resolve: 2.0.0-next.4 1428 + semver: 6.3.0 1429 + string.prototype.matchall: 4.0.8 1430 + dev: false 1431 + 1432 + /eslint-plugin-turbo/1.9.3_eslint@8.39.0: 1433 + resolution: {integrity: sha512-ZsRtksdzk3v+z5/I/K4E50E4lfZ7oYmLX395gkrUMBz4/spJlYbr+GC8hP9oVNLj9s5Pvnm9rLv/zoj5PVYaVw==} 1434 + peerDependencies: 1435 + eslint: '>6.6.0' 1436 + dependencies: 1437 + eslint: 8.39.0 1438 + dev: false 1439 + 1440 + /eslint-scope/5.1.1: 1441 + resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} 1442 + engines: {node: '>=8.0.0'} 1443 + dependencies: 1444 + esrecurse: 4.3.0 1445 + estraverse: 4.3.0 1446 + dev: true 1447 + 1448 + /eslint-scope/7.2.0: 1449 + resolution: {integrity: sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==} 1450 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1451 + dependencies: 1452 + esrecurse: 4.3.0 1453 + estraverse: 5.3.0 1454 + dev: false 1455 + 1456 + /eslint-utils/2.1.0: 1457 + resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==} 1458 + engines: {node: '>=6'} 1459 + dependencies: 1460 + eslint-visitor-keys: 1.3.0 1461 + dev: true 1462 + 1463 + /eslint-visitor-keys/1.3.0: 1464 + resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==} 1465 + engines: {node: '>=4'} 1466 + dev: true 1467 + 1468 + /eslint-visitor-keys/2.1.0: 1469 + resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==} 1470 + engines: {node: '>=10'} 1471 + dev: true 1472 + 1473 + /eslint-visitor-keys/3.4.0: 1474 + resolution: {integrity: sha512-HPpKPUBQcAsZOsHAFwTtIKcYlCje62XB7SEAcxjtmW6TD1WVpkS6i6/hOVtTZIl4zGj/mBqpFVGvaDneik+VoQ==} 1475 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1476 + dev: false 1477 + 1478 + /eslint/7.32.0: 1479 + resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==} 1480 + engines: {node: ^10.12.0 || >=12.0.0} 1481 + hasBin: true 1482 + dependencies: 1483 + '@babel/code-frame': 7.12.11 1484 + '@eslint/eslintrc': 0.4.3 1485 + '@humanwhocodes/config-array': 0.5.0 1486 + ajv: 6.12.6 1487 + chalk: 4.1.2 1488 + cross-spawn: 7.0.3 1489 + debug: 4.3.4 1490 + doctrine: 3.0.0 1491 + enquirer: 2.3.6 1492 + escape-string-regexp: 4.0.0 1493 + eslint-scope: 5.1.1 1494 + eslint-utils: 2.1.0 1495 + eslint-visitor-keys: 2.1.0 1496 + espree: 7.3.1 1497 + esquery: 1.5.0 1498 + esutils: 2.0.3 1499 + fast-deep-equal: 3.1.3 1500 + file-entry-cache: 6.0.1 1501 + functional-red-black-tree: 1.0.1 1502 + glob-parent: 5.1.2 1503 + globals: 13.20.0 1504 + ignore: 4.0.6 1505 + import-fresh: 3.3.0 1506 + imurmurhash: 0.1.4 1507 + is-glob: 4.0.3 1508 + js-yaml: 3.14.1 1509 + json-stable-stringify-without-jsonify: 1.0.1 1510 + levn: 0.4.1 1511 + lodash.merge: 4.6.2 1512 + minimatch: 3.1.2 1513 + natural-compare: 1.4.0 1514 + optionator: 0.9.1 1515 + progress: 2.0.3 1516 + regexpp: 3.2.0 1517 + semver: 7.5.0 1518 + strip-ansi: 6.0.1 1519 + strip-json-comments: 3.1.1 1520 + table: 6.8.1 1521 + text-table: 0.2.0 1522 + v8-compile-cache: 2.3.0 1523 + transitivePeerDependencies: 1524 + - supports-color 1525 + dev: true 1526 + 1527 + /eslint/8.39.0: 1528 + resolution: {integrity: sha512-mwiok6cy7KTW7rBpo05k6+p4YVZByLNjAZ/ACB9DRCu4YDRwjXI01tWHp6KAUWelsBetTxKK/2sHB0vdS8Z2Og==} 1529 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1530 + hasBin: true 1531 + dependencies: 1532 + '@eslint-community/eslint-utils': 4.4.0_eslint@8.39.0 1533 + '@eslint-community/regexpp': 4.5.1 1534 + '@eslint/eslintrc': 2.0.2 1535 + '@eslint/js': 8.39.0 1536 + '@humanwhocodes/config-array': 0.11.8 1537 + '@humanwhocodes/module-importer': 1.0.1 1538 + '@nodelib/fs.walk': 1.2.8 1539 + ajv: 6.12.6 1540 + chalk: 4.1.2 1541 + cross-spawn: 7.0.3 1542 + debug: 4.3.4 1543 + doctrine: 3.0.0 1544 + escape-string-regexp: 4.0.0 1545 + eslint-scope: 7.2.0 1546 + eslint-visitor-keys: 3.4.0 1547 + espree: 9.5.1 1548 + esquery: 1.5.0 1549 + esutils: 2.0.3 1550 + fast-deep-equal: 3.1.3 1551 + file-entry-cache: 6.0.1 1552 + find-up: 5.0.0 1553 + glob-parent: 6.0.2 1554 + globals: 13.20.0 1555 + grapheme-splitter: 1.0.4 1556 + ignore: 5.2.4 1557 + import-fresh: 3.3.0 1558 + imurmurhash: 0.1.4 1559 + is-glob: 4.0.3 1560 + is-path-inside: 3.0.3 1561 + js-sdsl: 4.4.0 1562 + js-yaml: 4.1.0 1563 + json-stable-stringify-without-jsonify: 1.0.1 1564 + levn: 0.4.1 1565 + lodash.merge: 4.6.2 1566 + minimatch: 3.1.2 1567 + natural-compare: 1.4.0 1568 + optionator: 0.9.1 1569 + strip-ansi: 6.0.1 1570 + strip-json-comments: 3.1.1 1571 + text-table: 0.2.0 1572 + transitivePeerDependencies: 1573 + - supports-color 1574 + dev: false 1575 + 1576 + /espree/7.3.1: 1577 + resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==} 1578 + engines: {node: ^10.12.0 || >=12.0.0} 1579 + dependencies: 1580 + acorn: 7.4.1 1581 + acorn-jsx: 5.3.2_acorn@7.4.1 1582 + eslint-visitor-keys: 1.3.0 1583 + dev: true 1584 + 1585 + /espree/9.5.1: 1586 + resolution: {integrity: sha512-5yxtHSZXRSW5pvv3hAlXM5+/Oswi1AUFqBmbibKb5s6bp3rGIDkyXU6xCoyuuLhijr4SFwPrXRoZjz0AZDN9tg==} 1587 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1588 + dependencies: 1589 + acorn: 8.8.2 1590 + acorn-jsx: 5.3.2_acorn@8.8.2 1591 + eslint-visitor-keys: 3.4.0 1592 + dev: false 1593 + 1594 + /esprima/4.0.1: 1595 + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} 1596 + engines: {node: '>=4'} 1597 + hasBin: true 1598 + dev: true 1599 + 1600 + /esquery/1.5.0: 1601 + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} 1602 + engines: {node: '>=0.10'} 1603 + dependencies: 1604 + estraverse: 5.3.0 1605 + 1606 + /esrecurse/4.3.0: 1607 + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 1608 + engines: {node: '>=4.0'} 1609 + dependencies: 1610 + estraverse: 5.3.0 1611 + 1612 + /estraverse/4.3.0: 1613 + resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==} 1614 + engines: {node: '>=4.0'} 1615 + dev: true 1616 + 1617 + /estraverse/5.3.0: 1618 + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 1619 + engines: {node: '>=4.0'} 1620 + 1621 + /esutils/2.0.3: 1622 + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 1623 + engines: {node: '>=0.10.0'} 1624 + 1625 + /execa/5.1.1: 1626 + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} 1627 + engines: {node: '>=10'} 1628 + dependencies: 1629 + cross-spawn: 7.0.3 1630 + get-stream: 6.0.1 1631 + human-signals: 2.1.0 1632 + is-stream: 2.0.1 1633 + merge-stream: 2.0.0 1634 + npm-run-path: 4.0.1 1635 + onetime: 5.1.2 1636 + signal-exit: 3.0.7 1637 + strip-final-newline: 2.0.0 1638 + dev: false 1639 + 1640 + /execa/7.1.1: 1641 + resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==} 1642 + engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} 1643 + dependencies: 1644 + cross-spawn: 7.0.3 1645 + get-stream: 6.0.1 1646 + human-signals: 4.3.1 1647 + is-stream: 3.0.0 1648 + merge-stream: 2.0.0 1649 + npm-run-path: 5.1.0 1650 + onetime: 6.0.0 1651 + signal-exit: 3.0.7 1652 + strip-final-newline: 3.0.0 1653 + dev: false 1654 + 1655 + /external-editor/3.1.0: 1656 + resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==} 1657 + engines: {node: '>=4'} 1658 + dependencies: 1659 + chardet: 0.7.0 1660 + iconv-lite: 0.4.24 1661 + tmp: 0.0.33 1662 + dev: true 1663 + 1664 + /fast-deep-equal/3.1.3: 1665 + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 1666 + 1667 + /fast-glob/3.2.12: 1668 + resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==} 1669 + engines: {node: '>=8.6.0'} 1670 + dependencies: 1671 + '@nodelib/fs.stat': 2.0.5 1672 + '@nodelib/fs.walk': 1.2.8 1673 + glob-parent: 5.1.2 1674 + merge2: 1.4.1 1675 + micromatch: 4.0.5 1676 + 1677 + /fast-json-stable-stringify/2.1.0: 1678 + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 1679 + 1680 + /fast-levenshtein/2.0.6: 1681 + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 1682 + 1683 + /fastq/1.15.0: 1684 + resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 1685 + dependencies: 1686 + reusify: 1.0.4 1687 + 1688 + /figures/3.2.0: 1689 + resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==} 1690 + engines: {node: '>=8'} 1691 + dependencies: 1692 + escape-string-regexp: 1.0.5 1693 + dev: true 1694 + 1695 + /file-entry-cache/6.0.1: 1696 + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 1697 + engines: {node: ^10.12.0 || >=12.0.0} 1698 + dependencies: 1699 + flat-cache: 3.0.4 1700 + 1701 + /fill-range/7.0.1: 1702 + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} 1703 + engines: {node: '>=8'} 1704 + dependencies: 1705 + to-regex-range: 5.0.1 1706 + 1707 + /find-up/5.0.0: 1708 + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 1709 + engines: {node: '>=10'} 1710 + dependencies: 1711 + locate-path: 6.0.0 1712 + path-exists: 4.0.0 1713 + dev: false 1714 + 1715 + /flat-cache/3.0.4: 1716 + resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 1717 + engines: {node: ^10.12.0 || >=12.0.0} 1718 + dependencies: 1719 + flatted: 3.2.7 1720 + rimraf: 3.0.2 1721 + 1722 + /flatted/3.2.7: 1723 + resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 1724 + 1725 + /for-each/0.3.3: 1726 + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} 1727 + dependencies: 1728 + is-callable: 1.2.7 1729 + dev: false 1730 + 1731 + /fs-extra/10.1.0: 1732 + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} 1733 + engines: {node: '>=12'} 1734 + dependencies: 1735 + graceful-fs: 4.2.11 1736 + jsonfile: 6.1.0 1737 + universalify: 2.0.0 1738 + dev: true 1739 + 1740 + /fs.realpath/1.0.0: 1741 + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 1742 + 1743 + /function-bind/1.1.1: 1744 + resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 1745 + 1746 + /function.prototype.name/1.1.5: 1747 + resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 1748 + engines: {node: '>= 0.4'} 1749 + dependencies: 1750 + call-bind: 1.0.2 1751 + define-properties: 1.2.0 1752 + es-abstract: 1.21.2 1753 + functions-have-names: 1.2.3 1754 + dev: false 1755 + 1756 + /functional-red-black-tree/1.0.1: 1757 + resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==} 1758 + dev: true 1759 + 1760 + /functions-have-names/1.2.3: 1761 + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} 1762 + dev: false 1763 + 1764 + /get-intrinsic/1.2.0: 1765 + resolution: {integrity: sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==} 1766 + dependencies: 1767 + function-bind: 1.1.1 1768 + has: 1.0.3 1769 + has-symbols: 1.0.3 1770 + dev: false 1771 + 1772 + /get-stream/6.0.1: 1773 + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} 1774 + engines: {node: '>=10'} 1775 + dev: false 1776 + 1777 + /get-symbol-description/1.0.0: 1778 + resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 1779 + engines: {node: '>= 0.4'} 1780 + dependencies: 1781 + call-bind: 1.0.2 1782 + get-intrinsic: 1.2.0 1783 + dev: false 1784 + 1785 + /get-tsconfig/4.5.0: 1786 + resolution: {integrity: sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==} 1787 + dev: false 1788 + 1789 + /glob-parent/5.1.2: 1790 + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 1791 + engines: {node: '>= 6'} 1792 + dependencies: 1793 + is-glob: 4.0.3 1794 + 1795 + /glob-parent/6.0.2: 1796 + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 1797 + engines: {node: '>=10.13.0'} 1798 + dependencies: 1799 + is-glob: 4.0.3 1800 + dev: false 1801 + 1802 + /glob/7.1.7: 1803 + resolution: {integrity: sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==} 1804 + dependencies: 1805 + fs.realpath: 1.0.0 1806 + inflight: 1.0.6 1807 + inherits: 2.0.4 1808 + minimatch: 3.1.2 1809 + once: 1.4.0 1810 + path-is-absolute: 1.0.1 1811 + dev: false 1812 + 1813 + /glob/7.2.3: 1814 + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 1815 + dependencies: 1816 + fs.realpath: 1.0.0 1817 + inflight: 1.0.6 1818 + inherits: 2.0.4 1819 + minimatch: 3.1.2 1820 + once: 1.4.0 1821 + path-is-absolute: 1.0.1 1822 + 1823 + /globals/13.20.0: 1824 + resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} 1825 + engines: {node: '>=8'} 1826 + dependencies: 1827 + type-fest: 0.20.2 1828 + 1829 + /globalthis/1.0.3: 1830 + resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 1831 + engines: {node: '>= 0.4'} 1832 + dependencies: 1833 + define-properties: 1.2.0 1834 + dev: false 1835 + 1836 + /globby/10.0.2: 1837 + resolution: {integrity: sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==} 1838 + engines: {node: '>=8'} 1839 + dependencies: 1840 + '@types/glob': 7.2.0 1841 + array-union: 2.1.0 1842 + dir-glob: 3.0.1 1843 + fast-glob: 3.2.12 1844 + glob: 7.2.3 1845 + ignore: 5.2.4 1846 + merge2: 1.4.1 1847 + slash: 3.0.0 1848 + dev: true 1849 + 1850 + /globby/11.1.0: 1851 + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} 1852 + engines: {node: '>=10'} 1853 + dependencies: 1854 + array-union: 2.1.0 1855 + dir-glob: 3.0.1 1856 + fast-glob: 3.2.12 1857 + ignore: 5.2.4 1858 + merge2: 1.4.1 1859 + slash: 3.0.0 1860 + dev: false 1861 + 1862 + /globby/13.1.4: 1863 + resolution: {integrity: sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==} 1864 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 1865 + dependencies: 1866 + dir-glob: 3.0.1 1867 + fast-glob: 3.2.12 1868 + ignore: 5.2.4 1869 + merge2: 1.4.1 1870 + slash: 4.0.0 1871 + dev: false 1872 + 1873 + /gopd/1.0.1: 1874 + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 1875 + dependencies: 1876 + get-intrinsic: 1.2.0 1877 + dev: false 1878 + 1879 + /graceful-fs/4.2.11: 1880 + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} 1881 + 1882 + /grapheme-splitter/1.0.4: 1883 + resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==} 1884 + dev: false 1885 + 1886 + /handlebars/4.7.7: 1887 + resolution: {integrity: sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==} 1888 + engines: {node: '>=0.4.7'} 1889 + hasBin: true 1890 + dependencies: 1891 + minimist: 1.2.8 1892 + neo-async: 2.6.2 1893 + source-map: 0.6.1 1894 + wordwrap: 1.0.0 1895 + optionalDependencies: 1896 + uglify-js: 3.17.4 1897 + dev: true 1898 + 1899 + /has-bigints/1.0.2: 1900 + resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==} 1901 + dev: false 1902 + 1903 + /has-flag/3.0.0: 1904 + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} 1905 + engines: {node: '>=4'} 1906 + dev: true 1907 + 1908 + /has-flag/4.0.0: 1909 + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 1910 + engines: {node: '>=8'} 1911 + 1912 + /has-property-descriptors/1.0.0: 1913 + resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 1914 + dependencies: 1915 + get-intrinsic: 1.2.0 1916 + dev: false 1917 + 1918 + /has-proto/1.0.1: 1919 + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 1920 + engines: {node: '>= 0.4'} 1921 + dev: false 1922 + 1923 + /has-symbols/1.0.3: 1924 + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} 1925 + engines: {node: '>= 0.4'} 1926 + dev: false 1927 + 1928 + /has-tostringtag/1.0.0: 1929 + resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==} 1930 + engines: {node: '>= 0.4'} 1931 + dependencies: 1932 + has-symbols: 1.0.3 1933 + dev: false 1934 + 1935 + /has/1.0.3: 1936 + resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 1937 + engines: {node: '>= 0.4.0'} 1938 + dependencies: 1939 + function-bind: 1.1.1 1940 + 1941 + /header-case/1.0.1: 1942 + resolution: {integrity: sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==} 1943 + dependencies: 1944 + no-case: 2.3.2 1945 + upper-case: 1.1.3 1946 + dev: true 1947 + 1948 + /human-signals/2.1.0: 1949 + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} 1950 + engines: {node: '>=10.17.0'} 1951 + dev: false 1952 + 1953 + /human-signals/4.3.1: 1954 + resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} 1955 + engines: {node: '>=14.18.0'} 1956 + dev: false 1957 + 1958 + /iconv-lite/0.4.24: 1959 + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 1960 + engines: {node: '>=0.10.0'} 1961 + dependencies: 1962 + safer-buffer: 2.1.2 1963 + dev: true 1964 + 1965 + /ieee754/1.2.1: 1966 + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 1967 + dev: true 1968 + 1969 + /ignore/4.0.6: 1970 + resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==} 1971 + engines: {node: '>= 4'} 1972 + dev: true 1973 + 1974 + /ignore/5.2.4: 1975 + resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 1976 + engines: {node: '>= 4'} 1977 + 1978 + /import-fresh/3.3.0: 1979 + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} 1980 + engines: {node: '>=6'} 1981 + dependencies: 1982 + parent-module: 1.0.1 1983 + resolve-from: 4.0.0 1984 + 1985 + /imurmurhash/0.1.4: 1986 + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 1987 + engines: {node: '>=0.8.19'} 1988 + 1989 + /indent-string/4.0.0: 1990 + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} 1991 + engines: {node: '>=8'} 1992 + dev: true 1993 + 1994 + /inflight/1.0.6: 1995 + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} 1996 + dependencies: 1997 + once: 1.4.0 1998 + wrappy: 1.0.2 1999 + 2000 + /inherits/2.0.4: 2001 + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2002 + 2003 + /ini/1.3.8: 2004 + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} 2005 + dev: true 2006 + 2007 + /inquirer/7.3.3: 2008 + resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==} 2009 + engines: {node: '>=8.0.0'} 2010 + dependencies: 2011 + ansi-escapes: 4.3.2 2012 + chalk: 4.1.2 2013 + cli-cursor: 3.1.0 2014 + cli-width: 3.0.0 2015 + external-editor: 3.1.0 2016 + figures: 3.2.0 2017 + lodash: 4.17.21 2018 + mute-stream: 0.0.8 2019 + run-async: 2.4.1 2020 + rxjs: 6.6.7 2021 + string-width: 4.2.3 2022 + strip-ansi: 6.0.1 2023 + through: 2.3.8 2024 + dev: true 2025 + 2026 + /inquirer/8.2.5: 2027 + resolution: {integrity: sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==} 2028 + engines: {node: '>=12.0.0'} 2029 + dependencies: 2030 + ansi-escapes: 4.3.2 2031 + chalk: 4.1.2 2032 + cli-cursor: 3.1.0 2033 + cli-width: 3.0.0 2034 + external-editor: 3.1.0 2035 + figures: 3.2.0 2036 + lodash: 4.17.21 2037 + mute-stream: 0.0.8 2038 + ora: 5.4.1 2039 + run-async: 2.4.1 2040 + rxjs: 7.8.1 2041 + string-width: 4.2.3 2042 + strip-ansi: 6.0.1 2043 + through: 2.3.8 2044 + wrap-ansi: 7.0.0 2045 + dev: true 2046 + 2047 + /internal-slot/1.0.5: 2048 + resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} 2049 + engines: {node: '>= 0.4'} 2050 + dependencies: 2051 + get-intrinsic: 1.2.0 2052 + has: 1.0.3 2053 + side-channel: 1.0.4 2054 + dev: false 2055 + 2056 + /is-arguments/1.1.1: 2057 + resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==} 2058 + engines: {node: '>= 0.4'} 2059 + dependencies: 2060 + call-bind: 1.0.2 2061 + has-tostringtag: 1.0.0 2062 + dev: false 2063 + 2064 + /is-array-buffer/3.0.2: 2065 + resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 2066 + dependencies: 2067 + call-bind: 1.0.2 2068 + get-intrinsic: 1.2.0 2069 + is-typed-array: 1.1.10 2070 + dev: false 2071 + 2072 + /is-bigint/1.0.4: 2073 + resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==} 2074 + dependencies: 2075 + has-bigints: 1.0.2 2076 + dev: false 2077 + 2078 + /is-boolean-object/1.1.2: 2079 + resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 2080 + engines: {node: '>= 0.4'} 2081 + dependencies: 2082 + call-bind: 1.0.2 2083 + has-tostringtag: 1.0.0 2084 + dev: false 2085 + 2086 + /is-callable/1.2.7: 2087 + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 2088 + engines: {node: '>= 0.4'} 2089 + dev: false 2090 + 2091 + /is-core-module/2.12.0: 2092 + resolution: {integrity: sha512-RECHCBCd/viahWmwj6enj19sKbHfJrddi/6cBDsNTKbNq0f7VeaUkBo60BqzvPqo/W54ChS62Z5qyun7cfOMqQ==} 2093 + dependencies: 2094 + has: 1.0.3 2095 + 2096 + /is-date-object/1.0.5: 2097 + resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==} 2098 + engines: {node: '>= 0.4'} 2099 + dependencies: 2100 + has-tostringtag: 1.0.0 2101 + dev: false 2102 + 2103 + /is-docker/2.2.1: 2104 + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} 2105 + engines: {node: '>=8'} 2106 + hasBin: true 2107 + dev: false 2108 + 2109 + /is-docker/3.0.0: 2110 + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 2111 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2112 + hasBin: true 2113 + dev: false 2114 + 2115 + /is-extglob/2.1.1: 2116 + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 2117 + engines: {node: '>=0.10.0'} 2118 + 2119 + /is-fullwidth-code-point/3.0.0: 2120 + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2121 + engines: {node: '>=8'} 2122 + dev: true 2123 + 2124 + /is-glob/4.0.3: 2125 + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2126 + engines: {node: '>=0.10.0'} 2127 + dependencies: 2128 + is-extglob: 2.1.1 2129 + 2130 + /is-inside-container/1.0.0: 2131 + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 2132 + engines: {node: '>=14.16'} 2133 + hasBin: true 2134 + dependencies: 2135 + is-docker: 3.0.0 2136 + dev: false 2137 + 2138 + /is-interactive/1.0.0: 2139 + resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} 2140 + engines: {node: '>=8'} 2141 + dev: true 2142 + 2143 + /is-lower-case/1.1.3: 2144 + resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==} 2145 + dependencies: 2146 + lower-case: 1.1.4 2147 + dev: true 2148 + 2149 + /is-map/2.0.2: 2150 + resolution: {integrity: sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==} 2151 + dev: false 2152 + 2153 + /is-negative-zero/2.0.2: 2154 + resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==} 2155 + engines: {node: '>= 0.4'} 2156 + dev: false 2157 + 2158 + /is-number-object/1.0.7: 2159 + resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==} 2160 + engines: {node: '>= 0.4'} 2161 + dependencies: 2162 + has-tostringtag: 1.0.0 2163 + dev: false 2164 + 2165 + /is-number/7.0.0: 2166 + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2167 + engines: {node: '>=0.12.0'} 2168 + 2169 + /is-path-cwd/2.2.0: 2170 + resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} 2171 + engines: {node: '>=6'} 2172 + dev: true 2173 + 2174 + /is-path-inside/3.0.3: 2175 + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} 2176 + engines: {node: '>=8'} 2177 + 2178 + /is-regex/1.1.4: 2179 + resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 2180 + engines: {node: '>= 0.4'} 2181 + dependencies: 2182 + call-bind: 1.0.2 2183 + has-tostringtag: 1.0.0 2184 + dev: false 2185 + 2186 + /is-set/2.0.2: 2187 + resolution: {integrity: sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==} 2188 + dev: false 2189 + 2190 + /is-shared-array-buffer/1.0.2: 2191 + resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 2192 + dependencies: 2193 + call-bind: 1.0.2 2194 + dev: false 2195 + 2196 + /is-stream/2.0.1: 2197 + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} 2198 + engines: {node: '>=8'} 2199 + dev: false 2200 + 2201 + /is-stream/3.0.0: 2202 + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 2203 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2204 + dev: false 2205 + 2206 + /is-string/1.0.7: 2207 + resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==} 2208 + engines: {node: '>= 0.4'} 2209 + dependencies: 2210 + has-tostringtag: 1.0.0 2211 + dev: false 2212 + 2213 + /is-symbol/1.0.4: 2214 + resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==} 2215 + engines: {node: '>= 0.4'} 2216 + dependencies: 2217 + has-symbols: 1.0.3 2218 + dev: false 2219 + 2220 + /is-typed-array/1.1.10: 2221 + resolution: {integrity: sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==} 2222 + engines: {node: '>= 0.4'} 2223 + dependencies: 2224 + available-typed-arrays: 1.0.5 2225 + call-bind: 1.0.2 2226 + for-each: 0.3.3 2227 + gopd: 1.0.1 2228 + has-tostringtag: 1.0.0 2229 + dev: false 2230 + 2231 + /is-unicode-supported/0.1.0: 2232 + resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==} 2233 + engines: {node: '>=10'} 2234 + dev: true 2235 + 2236 + /is-upper-case/1.1.2: 2237 + resolution: {integrity: sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==} 2238 + dependencies: 2239 + upper-case: 1.1.3 2240 + dev: true 2241 + 2242 + /is-weakmap/2.0.1: 2243 + resolution: {integrity: sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==} 2244 + dev: false 2245 + 2246 + /is-weakref/1.0.2: 2247 + resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 2248 + dependencies: 2249 + call-bind: 1.0.2 2250 + dev: false 2251 + 2252 + /is-weakset/2.0.2: 2253 + resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 2254 + dependencies: 2255 + call-bind: 1.0.2 2256 + get-intrinsic: 1.2.0 2257 + dev: false 2258 + 2259 + /is-wsl/2.2.0: 2260 + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} 2261 + engines: {node: '>=8'} 2262 + dependencies: 2263 + is-docker: 2.2.1 2264 + dev: false 2265 + 2266 + /isarray/2.0.5: 2267 + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 2268 + dev: false 2269 + 2270 + /isbinaryfile/4.0.10: 2271 + resolution: {integrity: sha512-iHrqe5shvBUcFbmZq9zOQHBoeOhZJu6RQGrDpBgenUm/Am+F3JM2MgQj+rK3Z601fzrL5gLZWtAPH2OBaSVcyw==} 2272 + engines: {node: '>= 8.0.0'} 2273 + dev: true 2274 + 2275 + /isexe/2.0.0: 2276 + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 2277 + 2278 + /js-sdsl/4.4.0: 2279 + resolution: {integrity: sha512-FfVSdx6pJ41Oa+CF7RDaFmTnCaFhua+SNYQX74riGOpl96x+2jQCqEfQ2bnXu/5DPCqlRuiqyvTJM0Qjz26IVg==} 2280 + dev: false 2281 + 2282 + /js-tokens/4.0.0: 2283 + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2284 + 2285 + /js-yaml/3.14.1: 2286 + resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==} 2287 + hasBin: true 2288 + dependencies: 2289 + argparse: 1.0.10 2290 + esprima: 4.0.1 2291 + dev: true 2292 + 2293 + /js-yaml/4.1.0: 2294 + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 2295 + hasBin: true 2296 + dependencies: 2297 + argparse: 2.0.1 2298 + dev: false 2299 + 2300 + /json-schema-traverse/0.4.1: 2301 + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 2302 + 2303 + /json-schema-traverse/1.0.0: 2304 + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 2305 + dev: true 2306 + 2307 + /json-stable-stringify-without-jsonify/1.0.1: 2308 + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 2309 + 2310 + /json5/1.0.2: 2311 + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} 2312 + hasBin: true 2313 + dependencies: 2314 + minimist: 1.2.8 2315 + dev: false 2316 + 2317 + /jsonfile/6.1.0: 2318 + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 2319 + dependencies: 2320 + universalify: 2.0.0 2321 + optionalDependencies: 2322 + graceful-fs: 4.2.11 2323 + dev: true 2324 + 2325 + /jsx-ast-utils/3.3.3: 2326 + resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} 2327 + engines: {node: '>=4.0'} 2328 + dependencies: 2329 + array-includes: 3.1.6 2330 + object.assign: 4.1.4 2331 + dev: false 2332 + 2333 + /language-subtag-registry/0.3.22: 2334 + resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 2335 + dev: false 2336 + 2337 + /language-tags/1.0.5: 2338 + resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} 2339 + dependencies: 2340 + language-subtag-registry: 0.3.22 2341 + dev: false 2342 + 2343 + /levn/0.4.1: 2344 + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 2345 + engines: {node: '>= 0.8.0'} 2346 + dependencies: 2347 + prelude-ls: 1.2.1 2348 + type-check: 0.4.0 2349 + 2350 + /locate-path/6.0.0: 2351 + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 2352 + engines: {node: '>=10'} 2353 + dependencies: 2354 + p-locate: 5.0.0 2355 + dev: false 2356 + 2357 + /lodash.get/4.4.2: 2358 + resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} 2359 + dev: true 2360 + 2361 + /lodash.merge/4.6.2: 2362 + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 2363 + 2364 + /lodash.truncate/4.4.2: 2365 + resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} 2366 + dev: true 2367 + 2368 + /lodash/4.17.21: 2369 + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} 2370 + dev: true 2371 + 2372 + /log-symbols/4.1.0: 2373 + resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==} 2374 + engines: {node: '>=10'} 2375 + dependencies: 2376 + chalk: 4.1.2 2377 + is-unicode-supported: 0.1.0 2378 + dev: true 2379 + 2380 + /loose-envify/1.4.0: 2381 + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 2382 + hasBin: true 2383 + dependencies: 2384 + js-tokens: 4.0.0 2385 + 2386 + /lower-case-first/1.0.2: 2387 + resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==} 2388 + dependencies: 2389 + lower-case: 1.1.4 2390 + dev: true 2391 + 2392 + /lower-case/1.1.4: 2393 + resolution: {integrity: sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==} 2394 + dev: true 2395 + 2396 + /lru-cache/6.0.0: 2397 + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} 2398 + engines: {node: '>=10'} 2399 + dependencies: 2400 + yallist: 4.0.0 2401 + 2402 + /make-error/1.3.6: 2403 + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} 2404 + dev: true 2405 + 2406 + /merge-stream/2.0.0: 2407 + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 2408 + dev: false 2409 + 2410 + /merge2/1.4.1: 2411 + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2412 + engines: {node: '>= 8'} 2413 + 2414 + /micromatch/4.0.5: 2415 + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} 2416 + engines: {node: '>=8.6'} 2417 + dependencies: 2418 + braces: 3.0.2 2419 + picomatch: 2.3.1 2420 + 2421 + /mimic-fn/2.1.0: 2422 + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} 2423 + engines: {node: '>=6'} 2424 + 2425 + /mimic-fn/4.0.0: 2426 + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 2427 + engines: {node: '>=12'} 2428 + dev: false 2429 + 2430 + /minimatch/3.1.2: 2431 + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 2432 + dependencies: 2433 + brace-expansion: 1.1.11 2434 + 2435 + /minimatch/9.0.0: 2436 + resolution: {integrity: sha512-0jJj8AvgKqWN05mrwuqi8QYKx1WmYSUoKSxu5Qhs9prezTz10sxAHGNZe9J9cqIJzta8DWsleh2KaVaLl6Ru2w==} 2437 + engines: {node: '>=16 || 14 >=14.17'} 2438 + dependencies: 2439 + brace-expansion: 2.0.1 2440 + dev: true 2441 + 2442 + /minimist/1.2.8: 2443 + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} 2444 + 2445 + /mkdirp/0.5.6: 2446 + resolution: {integrity: sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==} 2447 + hasBin: true 2448 + dependencies: 2449 + minimist: 1.2.8 2450 + dev: true 2451 + 2452 + /ms/2.1.2: 2453 + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} 2454 + 2455 + /ms/2.1.3: 2456 + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 2457 + dev: false 2458 + 2459 + /mute-stream/0.0.8: 2460 + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} 2461 + dev: true 2462 + 2463 + /nanoid/3.3.6: 2464 + resolution: {integrity: sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==} 2465 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 2466 + hasBin: true 2467 + dev: false 2468 + 2469 + /natural-compare/1.4.0: 2470 + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 2471 + 2472 + /neo-async/2.6.2: 2473 + resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} 2474 + dev: true 2475 + 2476 + /next/13.4.1_biqbaboplfbrettd7655fr4n2y: 2477 + resolution: {integrity: sha512-JBw2kAIyhKDpjhEWvNVoFeIzNp9xNxg8wrthDOtMctfn3EpqGCmW0FSviNyGgOSOSn6zDaX48pmvbdf6X2W9xA==} 2478 + engines: {node: '>=16.8.0'} 2479 + hasBin: true 2480 + peerDependencies: 2481 + '@opentelemetry/api': ^1.1.0 2482 + fibers: '>= 3.1.0' 2483 + node-sass: ^6.0.0 || ^7.0.0 2484 + react: ^18.2.0 2485 + react-dom: ^18.2.0 2486 + sass: ^1.3.0 2487 + peerDependenciesMeta: 2488 + '@opentelemetry/api': 2489 + optional: true 2490 + fibers: 2491 + optional: true 2492 + node-sass: 2493 + optional: true 2494 + sass: 2495 + optional: true 2496 + dependencies: 2497 + '@next/env': 13.4.1 2498 + '@swc/helpers': 0.5.1 2499 + busboy: 1.6.0 2500 + caniuse-lite: 1.0.30001482 2501 + postcss: 8.4.14 2502 + react: 18.2.0 2503 + react-dom: 18.2.0_react@18.2.0 2504 + styled-jsx: 5.1.1_react@18.2.0 2505 + zod: 3.21.4 2506 + optionalDependencies: 2507 + '@next/swc-darwin-arm64': 13.4.1 2508 + '@next/swc-darwin-x64': 13.4.1 2509 + '@next/swc-linux-arm64-gnu': 13.4.1 2510 + '@next/swc-linux-arm64-musl': 13.4.1 2511 + '@next/swc-linux-x64-gnu': 13.4.1 2512 + '@next/swc-linux-x64-musl': 13.4.1 2513 + '@next/swc-win32-arm64-msvc': 13.4.1 2514 + '@next/swc-win32-ia32-msvc': 13.4.1 2515 + '@next/swc-win32-x64-msvc': 13.4.1 2516 + transitivePeerDependencies: 2517 + - '@babel/core' 2518 + - babel-plugin-macros 2519 + dev: false 2520 + 2521 + /no-case/2.3.2: 2522 + resolution: {integrity: sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==} 2523 + dependencies: 2524 + lower-case: 1.1.4 2525 + dev: true 2526 + 2527 + /node-plop/0.26.3: 2528 + resolution: {integrity: sha512-Cov028YhBZ5aB7MdMWJEmwyBig43aGL5WT4vdoB28Oitau1zZAcHUn8Sgfk9HM33TqhtLJ9PlM/O0Mv+QpV/4Q==} 2529 + engines: {node: '>=8.9.4'} 2530 + dependencies: 2531 + '@babel/runtime-corejs3': 7.21.5 2532 + '@types/inquirer': 6.5.0 2533 + change-case: 3.1.0 2534 + del: 5.1.0 2535 + globby: 10.0.2 2536 + handlebars: 4.7.7 2537 + inquirer: 7.3.3 2538 + isbinaryfile: 4.0.10 2539 + lodash.get: 4.4.2 2540 + mkdirp: 0.5.6 2541 + resolve: 1.22.2 2542 + dev: true 2543 + 2544 + /npm-run-path/4.0.1: 2545 + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} 2546 + engines: {node: '>=8'} 2547 + dependencies: 2548 + path-key: 3.1.1 2549 + dev: false 2550 + 2551 + /npm-run-path/5.1.0: 2552 + resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} 2553 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2554 + dependencies: 2555 + path-key: 4.0.0 2556 + dev: false 2557 + 2558 + /object-assign/4.1.1: 2559 + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} 2560 + engines: {node: '>=0.10.0'} 2561 + 2562 + /object-inspect/1.12.3: 2563 + resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} 2564 + dev: false 2565 + 2566 + /object-is/1.1.5: 2567 + resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==} 2568 + engines: {node: '>= 0.4'} 2569 + dependencies: 2570 + call-bind: 1.0.2 2571 + define-properties: 1.2.0 2572 + dev: false 2573 + 2574 + /object-keys/1.1.1: 2575 + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 2576 + engines: {node: '>= 0.4'} 2577 + dev: false 2578 + 2579 + /object.assign/4.1.4: 2580 + resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 2581 + engines: {node: '>= 0.4'} 2582 + dependencies: 2583 + call-bind: 1.0.2 2584 + define-properties: 1.2.0 2585 + has-symbols: 1.0.3 2586 + object-keys: 1.1.1 2587 + dev: false 2588 + 2589 + /object.entries/1.1.6: 2590 + resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} 2591 + engines: {node: '>= 0.4'} 2592 + dependencies: 2593 + call-bind: 1.0.2 2594 + define-properties: 1.2.0 2595 + es-abstract: 1.21.2 2596 + dev: false 2597 + 2598 + /object.fromentries/2.0.6: 2599 + resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} 2600 + engines: {node: '>= 0.4'} 2601 + dependencies: 2602 + call-bind: 1.0.2 2603 + define-properties: 1.2.0 2604 + es-abstract: 1.21.2 2605 + dev: false 2606 + 2607 + /object.hasown/1.1.2: 2608 + resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} 2609 + dependencies: 2610 + define-properties: 1.2.0 2611 + es-abstract: 1.21.2 2612 + dev: false 2613 + 2614 + /object.values/1.1.6: 2615 + resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} 2616 + engines: {node: '>= 0.4'} 2617 + dependencies: 2618 + call-bind: 1.0.2 2619 + define-properties: 1.2.0 2620 + es-abstract: 1.21.2 2621 + dev: false 2622 + 2623 + /once/1.4.0: 2624 + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} 2625 + dependencies: 2626 + wrappy: 1.0.2 2627 + 2628 + /onetime/5.1.2: 2629 + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} 2630 + engines: {node: '>=6'} 2631 + dependencies: 2632 + mimic-fn: 2.1.0 2633 + 2634 + /onetime/6.0.0: 2635 + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 2636 + engines: {node: '>=12'} 2637 + dependencies: 2638 + mimic-fn: 4.0.0 2639 + dev: false 2640 + 2641 + /open/9.1.0: 2642 + resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} 2643 + engines: {node: '>=14.16'} 2644 + dependencies: 2645 + default-browser: 4.0.0 2646 + define-lazy-prop: 3.0.0 2647 + is-inside-container: 1.0.0 2648 + is-wsl: 2.2.0 2649 + dev: false 2650 + 2651 + /optionator/0.9.1: 2652 + resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==} 2653 + engines: {node: '>= 0.8.0'} 2654 + dependencies: 2655 + deep-is: 0.1.4 2656 + fast-levenshtein: 2.0.6 2657 + levn: 0.4.1 2658 + prelude-ls: 1.2.1 2659 + type-check: 0.4.0 2660 + word-wrap: 1.2.3 2661 + 2662 + /ora/5.4.1: 2663 + resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==} 2664 + engines: {node: '>=10'} 2665 + dependencies: 2666 + bl: 4.1.0 2667 + chalk: 4.1.2 2668 + cli-cursor: 3.1.0 2669 + cli-spinners: 2.9.0 2670 + is-interactive: 1.0.0 2671 + is-unicode-supported: 0.1.0 2672 + log-symbols: 4.1.0 2673 + strip-ansi: 6.0.1 2674 + wcwidth: 1.0.1 2675 + dev: true 2676 + 2677 + /os-tmpdir/1.0.2: 2678 + resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==} 2679 + engines: {node: '>=0.10.0'} 2680 + dev: true 2681 + 2682 + /p-limit/3.1.0: 2683 + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 2684 + engines: {node: '>=10'} 2685 + dependencies: 2686 + yocto-queue: 0.1.0 2687 + dev: false 2688 + 2689 + /p-locate/5.0.0: 2690 + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 2691 + engines: {node: '>=10'} 2692 + dependencies: 2693 + p-limit: 3.1.0 2694 + dev: false 2695 + 2696 + /p-map/3.0.0: 2697 + resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==} 2698 + engines: {node: '>=8'} 2699 + dependencies: 2700 + aggregate-error: 3.1.0 2701 + dev: true 2702 + 2703 + /param-case/2.1.1: 2704 + resolution: {integrity: sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==} 2705 + dependencies: 2706 + no-case: 2.3.2 2707 + dev: true 2708 + 2709 + /parent-module/1.0.1: 2710 + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 2711 + engines: {node: '>=6'} 2712 + dependencies: 2713 + callsites: 3.1.0 2714 + 2715 + /pascal-case/2.0.1: 2716 + resolution: {integrity: sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==} 2717 + dependencies: 2718 + camel-case: 3.0.0 2719 + upper-case-first: 1.1.2 2720 + dev: true 2721 + 2722 + /path-case/2.1.1: 2723 + resolution: {integrity: sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==} 2724 + dependencies: 2725 + no-case: 2.3.2 2726 + dev: true 2727 + 2728 + /path-exists/4.0.0: 2729 + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 2730 + engines: {node: '>=8'} 2731 + dev: false 2732 + 2733 + /path-is-absolute/1.0.1: 2734 + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} 2735 + engines: {node: '>=0.10.0'} 2736 + 2737 + /path-key/3.1.1: 2738 + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 2739 + engines: {node: '>=8'} 2740 + 2741 + /path-key/4.0.0: 2742 + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 2743 + engines: {node: '>=12'} 2744 + dev: false 2745 + 2746 + /path-parse/1.0.7: 2747 + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 2748 + 2749 + /path-type/4.0.0: 2750 + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} 2751 + engines: {node: '>=8'} 2752 + 2753 + /picocolors/1.0.0: 2754 + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} 2755 + dev: false 2756 + 2757 + /picomatch/2.3.1: 2758 + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 2759 + engines: {node: '>=8.6'} 2760 + 2761 + /postcss/8.4.14: 2762 + resolution: {integrity: sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==} 2763 + engines: {node: ^10 || ^12 || >=14} 2764 + dependencies: 2765 + nanoid: 3.3.6 2766 + picocolors: 1.0.0 2767 + source-map-js: 1.0.2 2768 + dev: false 2769 + 2770 + /prelude-ls/1.2.1: 2771 + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 2772 + engines: {node: '>= 0.8.0'} 2773 + 2774 + /prettier/2.8.8: 2775 + resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} 2776 + engines: {node: '>=10.13.0'} 2777 + hasBin: true 2778 + dev: true 2779 + 2780 + /progress/2.0.3: 2781 + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} 2782 + engines: {node: '>=0.4.0'} 2783 + dev: true 2784 + 2785 + /prop-types/15.8.1: 2786 + resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==} 2787 + dependencies: 2788 + loose-envify: 1.4.0 2789 + object-assign: 4.1.1 2790 + react-is: 16.13.1 2791 + dev: false 2792 + 2793 + /punycode/2.3.0: 2794 + resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==} 2795 + engines: {node: '>=6'} 2796 + 2797 + /queue-microtask/1.2.3: 2798 + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 2799 + 2800 + /rc/1.2.8: 2801 + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} 2802 + hasBin: true 2803 + dependencies: 2804 + deep-extend: 0.6.0 2805 + ini: 1.3.8 2806 + minimist: 1.2.8 2807 + strip-json-comments: 2.0.1 2808 + dev: true 2809 + 2810 + /react-dom/18.2.0_react@18.2.0: 2811 + resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==} 2812 + peerDependencies: 2813 + react: ^18.2.0 2814 + dependencies: 2815 + loose-envify: 1.4.0 2816 + react: 18.2.0 2817 + scheduler: 0.23.0 2818 + dev: false 2819 + 2820 + /react-is/16.13.1: 2821 + resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} 2822 + dev: false 2823 + 2824 + /react/17.0.2: 2825 + resolution: {integrity: sha512-gnhPt75i/dq/z3/6q/0asP78D0u592D5L1pd7M8P+dck6Fu/jJeL6iVVK23fptSUZj8Vjf++7wXA8UNclGQcbA==} 2826 + engines: {node: '>=0.10.0'} 2827 + dependencies: 2828 + loose-envify: 1.4.0 2829 + object-assign: 4.1.1 2830 + dev: true 2831 + 2832 + /react/18.2.0: 2833 + resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 2834 + engines: {node: '>=0.10.0'} 2835 + dependencies: 2836 + loose-envify: 1.4.0 2837 + dev: false 2838 + 2839 + /readable-stream/3.6.2: 2840 + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 2841 + engines: {node: '>= 6'} 2842 + dependencies: 2843 + inherits: 2.0.4 2844 + string_decoder: 1.3.0 2845 + util-deprecate: 1.0.2 2846 + dev: true 2847 + 2848 + /regenerator-runtime/0.13.11: 2849 + resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==} 2850 + 2851 + /regexp.prototype.flags/1.5.0: 2852 + resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} 2853 + engines: {node: '>= 0.4'} 2854 + dependencies: 2855 + call-bind: 1.0.2 2856 + define-properties: 1.2.0 2857 + functions-have-names: 1.2.3 2858 + dev: false 2859 + 2860 + /regexpp/3.2.0: 2861 + resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==} 2862 + engines: {node: '>=8'} 2863 + dev: true 2864 + 2865 + /registry-auth-token/3.3.2: 2866 + resolution: {integrity: sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ==} 2867 + dependencies: 2868 + rc: 1.2.8 2869 + safe-buffer: 5.2.1 2870 + dev: true 2871 + 2872 + /registry-url/3.1.0: 2873 + resolution: {integrity: sha512-ZbgR5aZEdf4UKZVBPYIgaglBmSF2Hi94s2PcIHhRGFjKYu+chjJdYfHn4rt3hB6eCKLJ8giVIIfgMa1ehDfZKA==} 2874 + engines: {node: '>=0.10.0'} 2875 + dependencies: 2876 + rc: 1.2.8 2877 + dev: true 2878 + 2879 + /require-from-string/2.0.2: 2880 + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 2881 + engines: {node: '>=0.10.0'} 2882 + dev: true 2883 + 2884 + /resolve-from/4.0.0: 2885 + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 2886 + engines: {node: '>=4'} 2887 + 2888 + /resolve/1.22.2: 2889 + resolution: {integrity: sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==} 2890 + hasBin: true 2891 + dependencies: 2892 + is-core-module: 2.12.0 2893 + path-parse: 1.0.7 2894 + supports-preserve-symlinks-flag: 1.0.0 2895 + 2896 + /resolve/2.0.0-next.4: 2897 + resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} 2898 + hasBin: true 2899 + dependencies: 2900 + is-core-module: 2.12.0 2901 + path-parse: 1.0.7 2902 + supports-preserve-symlinks-flag: 1.0.0 2903 + dev: false 2904 + 2905 + /restore-cursor/3.1.0: 2906 + resolution: {integrity: sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==} 2907 + engines: {node: '>=8'} 2908 + dependencies: 2909 + onetime: 5.1.2 2910 + signal-exit: 3.0.7 2911 + dev: true 2912 + 2913 + /reusify/1.0.4: 2914 + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} 2915 + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 2916 + 2917 + /rimraf/3.0.2: 2918 + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} 2919 + hasBin: true 2920 + dependencies: 2921 + glob: 7.2.3 2922 + 2923 + /run-applescript/5.0.0: 2924 + resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} 2925 + engines: {node: '>=12'} 2926 + dependencies: 2927 + execa: 5.1.1 2928 + dev: false 2929 + 2930 + /run-async/2.4.1: 2931 + resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==} 2932 + engines: {node: '>=0.12.0'} 2933 + dev: true 2934 + 2935 + /run-parallel/1.2.0: 2936 + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 2937 + dependencies: 2938 + queue-microtask: 1.2.3 2939 + 2940 + /rxjs/6.6.7: 2941 + resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==} 2942 + engines: {npm: '>=2.0.0'} 2943 + dependencies: 2944 + tslib: 1.14.1 2945 + dev: true 2946 + 2947 + /rxjs/7.8.1: 2948 + resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==} 2949 + dependencies: 2950 + tslib: 2.5.0 2951 + dev: true 2952 + 2953 + /safe-buffer/5.2.1: 2954 + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 2955 + dev: true 2956 + 2957 + /safe-regex-test/1.0.0: 2958 + resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 2959 + dependencies: 2960 + call-bind: 1.0.2 2961 + get-intrinsic: 1.2.0 2962 + is-regex: 1.1.4 2963 + dev: false 2964 + 2965 + /safer-buffer/2.1.2: 2966 + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 2967 + dev: true 2968 + 2969 + /scheduler/0.23.0: 2970 + resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 2971 + dependencies: 2972 + loose-envify: 1.4.0 2973 + dev: false 2974 + 2975 + /semver/6.3.0: 2976 + resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==} 2977 + hasBin: true 2978 + dev: false 2979 + 2980 + /semver/7.5.0: 2981 + resolution: {integrity: sha512-+XC0AD/R7Q2mPSRuy2Id0+CGTZ98+8f+KvwirxOKIEyid+XSx6HbC63p+O4IndTHuX5Z+JxQ0TghCkO5Cg/2HA==} 2982 + engines: {node: '>=10'} 2983 + hasBin: true 2984 + dependencies: 2985 + lru-cache: 6.0.0 2986 + 2987 + /sentence-case/2.1.1: 2988 + resolution: {integrity: sha512-ENl7cYHaK/Ktwk5OTD+aDbQ3uC8IByu/6Bkg+HDv8Mm+XnBnppVNalcfJTNsp1ibstKh030/JKQQWglDvtKwEQ==} 2989 + dependencies: 2990 + no-case: 2.3.2 2991 + upper-case-first: 1.1.2 2992 + dev: true 2993 + 2994 + /shebang-command/2.0.0: 2995 + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 2996 + engines: {node: '>=8'} 2997 + dependencies: 2998 + shebang-regex: 3.0.0 2999 + 3000 + /shebang-regex/3.0.0: 3001 + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3002 + engines: {node: '>=8'} 3003 + 3004 + /side-channel/1.0.4: 3005 + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 3006 + dependencies: 3007 + call-bind: 1.0.2 3008 + get-intrinsic: 1.2.0 3009 + object-inspect: 1.12.3 3010 + dev: false 3011 + 3012 + /signal-exit/3.0.7: 3013 + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 3014 + 3015 + /slash/3.0.0: 3016 + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} 3017 + engines: {node: '>=8'} 3018 + 3019 + /slash/4.0.0: 3020 + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} 3021 + engines: {node: '>=12'} 3022 + dev: false 3023 + 3024 + /slice-ansi/4.0.0: 3025 + resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==} 3026 + engines: {node: '>=10'} 3027 + dependencies: 3028 + ansi-styles: 4.3.0 3029 + astral-regex: 2.0.0 3030 + is-fullwidth-code-point: 3.0.0 3031 + dev: true 3032 + 3033 + /snake-case/2.1.0: 3034 + resolution: {integrity: sha512-FMR5YoPFwOLuh4rRz92dywJjyKYZNLpMn1R5ujVpIYkbA9p01fq8RMg0FkO4M+Yobt4MjHeLTJVm5xFFBHSV2Q==} 3035 + dependencies: 3036 + no-case: 2.3.2 3037 + dev: true 3038 + 3039 + /source-map-js/1.0.2: 3040 + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} 3041 + engines: {node: '>=0.10.0'} 3042 + dev: false 3043 + 3044 + /source-map/0.6.1: 3045 + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} 3046 + engines: {node: '>=0.10.0'} 3047 + dev: true 3048 + 3049 + /sprintf-js/1.0.3: 3050 + resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 3051 + dev: true 3052 + 3053 + /stop-iteration-iterator/1.0.0: 3054 + resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==} 3055 + engines: {node: '>= 0.4'} 3056 + dependencies: 3057 + internal-slot: 1.0.5 3058 + dev: false 3059 + 3060 + /streamsearch/1.1.0: 3061 + resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==} 3062 + engines: {node: '>=10.0.0'} 3063 + dev: false 3064 + 3065 + /string-width/4.2.3: 3066 + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 3067 + engines: {node: '>=8'} 3068 + dependencies: 3069 + emoji-regex: 8.0.0 3070 + is-fullwidth-code-point: 3.0.0 3071 + strip-ansi: 6.0.1 3072 + dev: true 3073 + 3074 + /string.prototype.matchall/4.0.8: 3075 + resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} 3076 + dependencies: 3077 + call-bind: 1.0.2 3078 + define-properties: 1.2.0 3079 + es-abstract: 1.21.2 3080 + get-intrinsic: 1.2.0 3081 + has-symbols: 1.0.3 3082 + internal-slot: 1.0.5 3083 + regexp.prototype.flags: 1.5.0 3084 + side-channel: 1.0.4 3085 + dev: false 3086 + 3087 + /string.prototype.trim/1.2.7: 3088 + resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} 3089 + engines: {node: '>= 0.4'} 3090 + dependencies: 3091 + call-bind: 1.0.2 3092 + define-properties: 1.2.0 3093 + es-abstract: 1.21.2 3094 + dev: false 3095 + 3096 + /string.prototype.trimend/1.0.6: 3097 + resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} 3098 + dependencies: 3099 + call-bind: 1.0.2 3100 + define-properties: 1.2.0 3101 + es-abstract: 1.21.2 3102 + dev: false 3103 + 3104 + /string.prototype.trimstart/1.0.6: 3105 + resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} 3106 + dependencies: 3107 + call-bind: 1.0.2 3108 + define-properties: 1.2.0 3109 + es-abstract: 1.21.2 3110 + dev: false 3111 + 3112 + /string_decoder/1.3.0: 3113 + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 3114 + dependencies: 3115 + safe-buffer: 5.2.1 3116 + dev: true 3117 + 3118 + /strip-ansi/6.0.1: 3119 + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 3120 + engines: {node: '>=8'} 3121 + dependencies: 3122 + ansi-regex: 5.0.1 3123 + 3124 + /strip-bom/3.0.0: 3125 + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 3126 + engines: {node: '>=4'} 3127 + dev: false 3128 + 3129 + /strip-final-newline/2.0.0: 3130 + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} 3131 + engines: {node: '>=6'} 3132 + dev: false 3133 + 3134 + /strip-final-newline/3.0.0: 3135 + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 3136 + engines: {node: '>=12'} 3137 + dev: false 3138 + 3139 + /strip-json-comments/2.0.1: 3140 + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} 3141 + engines: {node: '>=0.10.0'} 3142 + dev: true 3143 + 3144 + /strip-json-comments/3.1.1: 3145 + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 3146 + engines: {node: '>=8'} 3147 + 3148 + /styled-jsx/5.1.1_react@18.2.0: 3149 + resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==} 3150 + engines: {node: '>= 12.0.0'} 3151 + peerDependencies: 3152 + '@babel/core': '*' 3153 + babel-plugin-macros: '*' 3154 + react: '>= 16.8.0 || 17.x.x || ^18.0.0-0' 3155 + peerDependenciesMeta: 3156 + '@babel/core': 3157 + optional: true 3158 + babel-plugin-macros: 3159 + optional: true 3160 + dependencies: 3161 + client-only: 0.0.1 3162 + react: 18.2.0 3163 + dev: false 3164 + 3165 + /supports-color/5.5.0: 3166 + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} 3167 + engines: {node: '>=4'} 3168 + dependencies: 3169 + has-flag: 3.0.0 3170 + dev: true 3171 + 3172 + /supports-color/7.2.0: 3173 + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 3174 + engines: {node: '>=8'} 3175 + dependencies: 3176 + has-flag: 4.0.0 3177 + 3178 + /supports-preserve-symlinks-flag/1.0.0: 3179 + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 3180 + engines: {node: '>= 0.4'} 3181 + 3182 + /swap-case/1.1.2: 3183 + resolution: {integrity: sha512-BAmWG6/bx8syfc6qXPprof3Mn5vQgf5dwdUNJhsNqU9WdPt5P+ES/wQ5bxfijy8zwZgZZHslC3iAsxsuQMCzJQ==} 3184 + dependencies: 3185 + lower-case: 1.1.4 3186 + upper-case: 1.1.3 3187 + dev: true 3188 + 3189 + /synckit/0.8.5: 3190 + resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} 3191 + engines: {node: ^14.18.0 || >=16.0.0} 3192 + dependencies: 3193 + '@pkgr/utils': 2.4.0 3194 + tslib: 2.5.0 3195 + dev: false 3196 + 3197 + /table/6.8.1: 3198 + resolution: {integrity: sha512-Y4X9zqrCftUhMeH2EptSSERdVKt/nEdijTOacGD/97EKjhQ/Qs8RTlEGABSJNNN8lac9kheH+af7yAkEWlgneA==} 3199 + engines: {node: '>=10.0.0'} 3200 + dependencies: 3201 + ajv: 8.12.0 3202 + lodash.truncate: 4.4.2 3203 + slice-ansi: 4.0.0 3204 + string-width: 4.2.3 3205 + strip-ansi: 6.0.1 3206 + dev: true 3207 + 3208 + /tapable/2.2.1: 3209 + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} 3210 + engines: {node: '>=6'} 3211 + dev: false 3212 + 3213 + /text-table/0.2.0: 3214 + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} 3215 + 3216 + /through/2.3.8: 3217 + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 3218 + dev: true 3219 + 3220 + /title-case/2.1.1: 3221 + resolution: {integrity: sha512-EkJoZ2O3zdCz3zJsYCsxyq2OC5hrxR9mfdd5I+w8h/tmFfeOxJ+vvkxsKxdmN0WtS9zLdHEgfgVOiMVgv+Po4Q==} 3222 + dependencies: 3223 + no-case: 2.3.2 3224 + upper-case: 1.1.3 3225 + dev: true 3226 + 3227 + /titleize/3.0.0: 3228 + resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} 3229 + engines: {node: '>=12'} 3230 + dev: false 3231 + 3232 + /tmp/0.0.33: 3233 + resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} 3234 + engines: {node: '>=0.6.0'} 3235 + dependencies: 3236 + os-tmpdir: 1.0.2 3237 + dev: true 3238 + 3239 + /to-regex-range/5.0.1: 3240 + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3241 + engines: {node: '>=8.0'} 3242 + dependencies: 3243 + is-number: 7.0.0 3244 + 3245 + /ts-node/10.9.1_t7dmilwzctzfywb3oy4dmby4b4: 3246 + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} 3247 + hasBin: true 3248 + peerDependencies: 3249 + '@swc/core': '>=1.2.50' 3250 + '@swc/wasm': '>=1.2.50' 3251 + '@types/node': '*' 3252 + typescript: '>=2.7' 3253 + peerDependenciesMeta: 3254 + '@swc/core': 3255 + optional: true 3256 + '@swc/wasm': 3257 + optional: true 3258 + dependencies: 3259 + '@cspotcode/source-map-support': 0.8.1 3260 + '@tsconfig/node10': 1.0.9 3261 + '@tsconfig/node12': 1.0.11 3262 + '@tsconfig/node14': 1.0.3 3263 + '@tsconfig/node16': 1.0.4 3264 + '@types/node': 17.0.45 3265 + acorn: 8.8.2 3266 + acorn-walk: 8.2.0 3267 + arg: 4.1.3 3268 + create-require: 1.1.1 3269 + diff: 4.0.2 3270 + make-error: 1.3.6 3271 + typescript: 5.0.4 3272 + v8-compile-cache-lib: 3.0.1 3273 + yn: 3.1.1 3274 + dev: true 3275 + 3276 + /tsconfig-paths/3.14.2: 3277 + resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} 3278 + dependencies: 3279 + '@types/json5': 0.0.29 3280 + json5: 1.0.2 3281 + minimist: 1.2.8 3282 + strip-bom: 3.0.0 3283 + dev: false 3284 + 3285 + /tslib/1.14.1: 3286 + resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==} 3287 + 3288 + /tslib/2.5.0: 3289 + resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==} 3290 + 3291 + /tsutils/3.21.0_typescript@5.0.4: 3292 + resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 3293 + engines: {node: '>= 6'} 3294 + peerDependencies: 3295 + typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' 3296 + dependencies: 3297 + tslib: 1.14.1 3298 + typescript: 5.0.4 3299 + dev: false 3300 + 3301 + /turbo-darwin-64/1.9.7: 3302 + resolution: {integrity: sha512-+/yijrhefcPtGxC/TwlJJTccaYiCtbh7lPdnsk23soGYO+hVYGtg1o/33RNiuFULY4YAQyebZVsWkimntJfYYw==} 3303 + cpu: [x64] 3304 + os: [darwin] 3305 + requiresBuild: true 3306 + dev: true 3307 + optional: true 3308 + 3309 + /turbo-darwin-arm64/1.9.7: 3310 + resolution: {integrity: sha512-7A6XX0A0h+0aadzo4Tq7IUmITm5rt7vIrZ1XLD7G8ihFC9b53XKhI7xO/QrkKpwG8VkUJeZtbvb8g9lbKb7uTg==} 3311 + cpu: [arm64] 3312 + os: [darwin] 3313 + requiresBuild: true 3314 + dev: true 3315 + optional: true 3316 + 3317 + /turbo-linux-64/1.9.7: 3318 + resolution: {integrity: sha512-1mBcCWX5KK+uXojGDhIBPN/LYzjT2wAjY+HVK7Bb4bDNwYXwWeynk5kSOCkT+G9b6N0uu9cln46Qty+nPwqm/Q==} 3319 + cpu: [x64] 3320 + os: [linux] 3321 + requiresBuild: true 3322 + dev: true 3323 + optional: true 3324 + 3325 + /turbo-linux-arm64/1.9.7: 3326 + resolution: {integrity: sha512-r2xUwoF3Uc85MOESNZ9dlLsuWdDowG+pKT1rDfsXbDz4hjXHKaQupy68vnNQRtTRwxGofgjYkrnJsfE3nd64xQ==} 3327 + cpu: [arm64] 3328 + os: [linux] 3329 + requiresBuild: true 3330 + dev: true 3331 + optional: true 3332 + 3333 + /turbo-windows-64/1.9.7: 3334 + resolution: {integrity: sha512-8qCYVlMrQG2lfp+E7OTJwVkpc6VdpuWGvLAVc9f0bJ23XH3ttn4k8L9KWNhRBkQHs/2obBPMJjhX0Xhq8uuPRA==} 3335 + cpu: [x64] 3336 + os: [win32] 3337 + requiresBuild: true 3338 + dev: true 3339 + optional: true 3340 + 3341 + /turbo-windows-arm64/1.9.7: 3342 + resolution: {integrity: sha512-OSXAtagKpJL0/xfGlF5QCpVes67vrtV1DliHiXNNf2mMhUnDxNmJDz5KU5GHzWfCJi6CJ038d5n1AohG7ZNH/Q==} 3343 + cpu: [arm64] 3344 + os: [win32] 3345 + requiresBuild: true 3346 + dev: true 3347 + optional: true 3348 + 3349 + /turbo/1.9.7: 3350 + resolution: {integrity: sha512-giQ0YpSZg4cxpFl7aEwhAMELS7t+6I+QPug739u2zOJV2ODY+sRiwkul1ikuMfpLdVdlI8IT62tnHU6M8AQgpA==} 3351 + hasBin: true 3352 + requiresBuild: true 3353 + optionalDependencies: 3354 + turbo-darwin-64: 1.9.7 3355 + turbo-darwin-arm64: 1.9.7 3356 + turbo-linux-64: 1.9.7 3357 + turbo-linux-arm64: 1.9.7 3358 + turbo-windows-64: 1.9.7 3359 + turbo-windows-arm64: 1.9.7 3360 + dev: true 3361 + 3362 + /type-check/0.4.0: 3363 + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 3364 + engines: {node: '>= 0.8.0'} 3365 + dependencies: 3366 + prelude-ls: 1.2.1 3367 + 3368 + /type-fest/0.20.2: 3369 + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} 3370 + engines: {node: '>=10'} 3371 + 3372 + /type-fest/0.21.3: 3373 + resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==} 3374 + engines: {node: '>=10'} 3375 + dev: true 3376 + 3377 + /typed-array-length/1.0.4: 3378 + resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 3379 + dependencies: 3380 + call-bind: 1.0.2 3381 + for-each: 0.3.3 3382 + is-typed-array: 1.1.10 3383 + dev: false 3384 + 3385 + /typescript/4.9.5: 3386 + resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==} 3387 + engines: {node: '>=4.2.0'} 3388 + hasBin: true 3389 + dev: true 3390 + 3391 + /typescript/5.0.4: 3392 + resolution: {integrity: sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==} 3393 + engines: {node: '>=12.20'} 3394 + hasBin: true 3395 + 3396 + /uglify-js/3.17.4: 3397 + resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==} 3398 + engines: {node: '>=0.8.0'} 3399 + hasBin: true 3400 + requiresBuild: true 3401 + dev: true 3402 + optional: true 3403 + 3404 + /unbox-primitive/1.0.2: 3405 + resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 3406 + dependencies: 3407 + call-bind: 1.0.2 3408 + has-bigints: 1.0.2 3409 + has-symbols: 1.0.3 3410 + which-boxed-primitive: 1.0.2 3411 + dev: false 3412 + 3413 + /universalify/2.0.0: 3414 + resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} 3415 + engines: {node: '>= 10.0.0'} 3416 + dev: true 3417 + 3418 + /untildify/4.0.0: 3419 + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} 3420 + engines: {node: '>=8'} 3421 + dev: false 3422 + 3423 + /update-check/1.5.4: 3424 + resolution: {integrity: sha512-5YHsflzHP4t1G+8WGPlvKbJEbAJGCgw+Em+dGR1KmBUbr1J36SJBqlHLjR7oob7sco5hWHGQVcr9B2poIVDDTQ==} 3425 + dependencies: 3426 + registry-auth-token: 3.3.2 3427 + registry-url: 3.1.0 3428 + dev: true 3429 + 3430 + /upper-case-first/1.1.2: 3431 + resolution: {integrity: sha512-wINKYvI3Db8dtjikdAqoBbZoP6Q+PZUyfMR7pmwHzjC2quzSkUq5DmPrTtPEqHaz8AGtmsB4TqwapMTM1QAQOQ==} 3432 + dependencies: 3433 + upper-case: 1.1.3 3434 + dev: true 3435 + 3436 + /upper-case/1.1.3: 3437 + resolution: {integrity: sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==} 3438 + dev: true 3439 + 3440 + /uri-js/4.4.1: 3441 + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 3442 + dependencies: 3443 + punycode: 2.3.0 3444 + 3445 + /util-deprecate/1.0.2: 3446 + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 3447 + dev: true 3448 + 3449 + /v8-compile-cache-lib/3.0.1: 3450 + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} 3451 + dev: true 3452 + 3453 + /v8-compile-cache/2.3.0: 3454 + resolution: {integrity: sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==} 3455 + dev: true 3456 + 3457 + /validate-npm-package-name/5.0.0: 3458 + resolution: {integrity: sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==} 3459 + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 3460 + dependencies: 3461 + builtins: 5.0.1 3462 + dev: true 3463 + 3464 + /wcwidth/1.0.1: 3465 + resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==} 3466 + dependencies: 3467 + defaults: 1.0.4 3468 + dev: true 3469 + 3470 + /which-boxed-primitive/1.0.2: 3471 + resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} 3472 + dependencies: 3473 + is-bigint: 1.0.4 3474 + is-boolean-object: 1.1.2 3475 + is-number-object: 1.0.7 3476 + is-string: 1.0.7 3477 + is-symbol: 1.0.4 3478 + dev: false 3479 + 3480 + /which-collection/1.0.1: 3481 + resolution: {integrity: sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==} 3482 + dependencies: 3483 + is-map: 2.0.2 3484 + is-set: 2.0.2 3485 + is-weakmap: 2.0.1 3486 + is-weakset: 2.0.2 3487 + dev: false 3488 + 3489 + /which-typed-array/1.1.9: 3490 + resolution: {integrity: sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==} 3491 + engines: {node: '>= 0.4'} 3492 + dependencies: 3493 + available-typed-arrays: 1.0.5 3494 + call-bind: 1.0.2 3495 + for-each: 0.3.3 3496 + gopd: 1.0.1 3497 + has-tostringtag: 1.0.0 3498 + is-typed-array: 1.1.10 3499 + dev: false 3500 + 3501 + /which/2.0.2: 3502 + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 3503 + engines: {node: '>= 8'} 3504 + hasBin: true 3505 + dependencies: 3506 + isexe: 2.0.0 3507 + 3508 + /word-wrap/1.2.3: 3509 + resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==} 3510 + engines: {node: '>=0.10.0'} 3511 + 3512 + /wordwrap/1.0.0: 3513 + resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==} 3514 + dev: true 3515 + 3516 + /wrap-ansi/7.0.0: 3517 + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 3518 + engines: {node: '>=10'} 3519 + dependencies: 3520 + ansi-styles: 4.3.0 3521 + string-width: 4.2.3 3522 + strip-ansi: 6.0.1 3523 + dev: true 3524 + 3525 + /wrappy/1.0.2: 3526 + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 3527 + 3528 + /yallist/4.0.0: 3529 + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} 3530 + 3531 + /yn/3.1.1: 3532 + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} 3533 + engines: {node: '>=6'} 3534 + dev: true 3535 + 3536 + /yocto-queue/0.1.0: 3537 + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 3538 + engines: {node: '>=10'} 3539 + dev: false 3540 + 3541 + /zod/3.21.4: 3542 + resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==} 3543 + dev: false
+3
pnpm-workspace.yaml
··· 1 + packages: 2 + - "apps/*" 3 + - "packages/*"
+15
turbo.json
··· 1 + { 2 + "$schema": "https://turbo.build/schema.json", 3 + "globalDependencies": ["**/.env.*local"], 4 + "pipeline": { 5 + "build": { 6 + "dependsOn": ["^build"], 7 + "outputs": [".next/**", "!.next/cache/**"] 8 + }, 9 + "lint": {}, 10 + "dev": { 11 + "cache": false, 12 + "persistent": true 13 + } 14 + } 15 + }