├── robots.txt
├── public
├── favicon.ico
└── images
│ ├── cat.jpg
│ └── camelshump.JPG
├── postcss.config.js
├── prisma
├── migrations
│ └── migration_lock.toml
└── schema.prisma
├── pages
├── api
│ ├── hello.ts
│ └── guestbook
│ │ ├── index.ts
│ │ └── new.ts
├── _app.tsx
├── book.tsx
└── index.tsx
├── next-env.d.ts
├── lib
├── date.ts
└── prisma.ts
├── README.md
├── components
├── guestbook
│ ├── Entry.tsx
│ └── Form.tsx
├── footer.tsx
├── nav.tsx
├── theme.tsx
├── layout.tsx
└── Meta.tsx
├── .gitignore
├── .github
└── dependabot.yml
├── tsconfig.json
├── .eslintrc.js
├── next.config.js
├── styles
└── globals.css
├── package.json
├── tailwind.config.js
├── LICENSE
└── yarn.lock
/robots.txt:
--------------------------------------------------------------------------------
1 | Hello there, Robot.
2 |
3 | - A human
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/exu3/site/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/images/cat.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/exu3/site/HEAD/public/images/cat.jpg
--------------------------------------------------------------------------------
/public/images/camelshump.JPG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/exu3/site/HEAD/public/images/camelshump.JPG
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/prisma/migrations/migration_lock.toml:
--------------------------------------------------------------------------------
1 | # Please do not edit this file manually
2 | # It should be added in your version-control system (i.e. Git)
3 | provider = "postgresql"
--------------------------------------------------------------------------------
/pages/api/hello.ts:
--------------------------------------------------------------------------------
1 | // Next.js API route support: https://nextjs.org/docs/api-routes/introduction
2 |
3 | export default (req, res) => {
4 | res.status(200).json({ name: 'John Doe' })
5 | }
6 |
--------------------------------------------------------------------------------
/next-env.d.ts:
--------------------------------------------------------------------------------
1 | ///
2 | ///
3 |
4 | // NOTE: This file should not be edited
5 | // see https://nextjs.org/docs/basic-features/typescript for more information.
6 |
--------------------------------------------------------------------------------
/lib/date.ts:
--------------------------------------------------------------------------------
1 | // Formats an ISO date string to a human readable string (eg. May 1, 2020)
2 | export const formatDate = (dateString: string) => {
3 | return new Date(dateString).toLocaleDateString(undefined, {
4 | year: "numeric",
5 | month: "long",
6 | day: "numeric",
7 | });
8 | };
9 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Website
2 |
3 | This website is built with Next.js and Tailwind CSS.
4 |
5 | How to run it locally:
6 |
7 | ```shell
8 | git clone https://github.com/exu3/site && cd site
9 | ```
10 |
11 | Install dependencies with pnpm
12 |
13 | ```sh
14 | pnpm install
15 | ```
16 |
17 | Then
18 |
19 | ```
20 | pnpm dev
21 | ```
22 |
23 | Visit http://localhost:3000 to see the result.
24 |
--------------------------------------------------------------------------------
/pages/_app.tsx:
--------------------------------------------------------------------------------
1 | import "../styles/globals.css";
2 | import type { AppProps } from "next/app";
3 | import { ThemeProvider } from "next-themes";
4 |
5 | function MyApp({ Component, pageProps }: AppProps): JSX.Element {
6 | return (
7 |
8 |
9 |
10 | );
11 | }
12 |
13 | export default MyApp;
14 |
--------------------------------------------------------------------------------
/components/guestbook/Entry.tsx:
--------------------------------------------------------------------------------
1 | import { formatDate } from "../../lib/date";
2 |
3 | export default function Entry({ name, message, createdAt }): JSX.Element {
4 | return (
5 |
6 |
7 | {name} on {formatDate(createdAt)}
8 |
9 |
{message}
10 |
11 | );
12 | }
13 |
--------------------------------------------------------------------------------
/components/footer.tsx:
--------------------------------------------------------------------------------
1 | import NextLink from "next/link";
2 |
3 | export default function Footer({
4 | flavorText = "Made with the entrails of a Wahoo Fish.",
5 | }): JSX.Element {
6 | return (
7 |
17 | );
18 | }
19 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | node_modules/
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 |
27 | # local env files
28 | .env.local
29 | .env.development.local
30 | .env.test.local
31 | .env.production.local
32 |
33 | # vercel
34 | .vercel
35 |
36 | .env
--------------------------------------------------------------------------------
/prisma/schema.prisma:
--------------------------------------------------------------------------------
1 | // This is your Prisma schema file,
2 | // learn more about it in the docs: https://pris.ly/d/prisma-schema
3 |
4 | generator client {
5 | provider = "prisma-client-js"
6 | }
7 |
8 | datasource db {
9 | provider = "postgresql"
10 | url = env("DATABASE_URL")
11 | }
12 |
13 | model guestbook {
14 | id Int @id @default(autoincrement())
15 | name String @db.VarChar(255)
16 | email String @db.VarChar(255)
17 | message String @db.VarChar(500)
18 | createdAt DateTime @default(now())
19 | }
20 |
--------------------------------------------------------------------------------
/.github/dependabot.yml:
--------------------------------------------------------------------------------
1 | # To get started with Dependabot version updates, you'll need to specify which
2 | # package ecosystems to update and where the package manifests are located.
3 | # Please see the documentation for all configuration options:
4 | # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5 |
6 | version: 2
7 | updates:
8 | - package-ecosystem: "npm" # See documentation for possible values
9 | directory: "/" # Location of package manifests
10 | schedule:
11 | interval: "monthly"
12 |
--------------------------------------------------------------------------------
/lib/prisma.ts:
--------------------------------------------------------------------------------
1 | import { PrismaClient } from "@prisma/client";
2 |
3 | // PrismaClient is attached to the `global` object in development to prevent
4 | // exhausting your database connection limit.
5 | //
6 | // Learn more:
7 | // https://pris.ly/d/help/next-js-best-practices
8 |
9 | let prisma: PrismaClient;
10 |
11 | if (process.env.NODE_ENV === "production") {
12 | prisma = new PrismaClient();
13 | } else {
14 | if (!global.prisma) {
15 | global.prisma = new PrismaClient();
16 | }
17 | prisma = global.prisma;
18 | }
19 |
20 | export default prisma;
21 |
--------------------------------------------------------------------------------
/pages/api/guestbook/index.ts:
--------------------------------------------------------------------------------
1 | import type { NextApiRequest, NextApiResponse } from "next";
2 | import prisma from "../../../lib/prisma";
3 |
4 | export const getGuestbook = async (
5 | req: NextApiRequest,
6 | res: NextApiResponse
7 | ) => {
8 | const guestbook = await prisma.guestbook.findMany({
9 | orderBy: {
10 | createdAt: "desc",
11 | },
12 | select: {
13 | id: true,
14 | name: true,
15 | message: true,
16 | createdAt: true,
17 | },
18 | });
19 |
20 | res.status(200).json({
21 | guestbook,
22 | });
23 | };
24 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": ["dom", "dom.iterable", "esnext"],
5 | "allowJs": true,
6 | "skipLibCheck": true,
7 | "strict": false,
8 | "forceConsistentCasingInFileNames": true,
9 | "noEmit": true,
10 | "esModuleInterop": true,
11 | "module": "esnext",
12 | "moduleResolution": "node",
13 | "resolveJsonModule": true,
14 | "isolatedModules": true,
15 | "jsx": "preserve",
16 | "incremental": true
17 | },
18 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "lib/flavor.js"],
19 | "exclude": ["node_modules"]
20 | }
21 |
--------------------------------------------------------------------------------
/pages/api/guestbook/new.ts:
--------------------------------------------------------------------------------
1 | import type { NextApiRequest, NextApiResponse } from "next";
2 | import prisma from "../../../lib/prisma";
3 |
4 | export default async function handler(
5 | req: NextApiRequest,
6 | res: NextApiResponse
7 | ) {
8 | const { name, message, email } = req.body;
9 | const guestbook = await prisma.guestbook.create({
10 | data: {
11 | name,
12 | message: message.slice(0, 500),
13 | email,
14 | },
15 | });
16 | res.status(200).json({
17 | id: guestbook.id,
18 | name: guestbook.name,
19 | message: guestbook.message,
20 | created_at: guestbook.createdAt,
21 | });
22 | }
23 |
--------------------------------------------------------------------------------
/components/nav.tsx:
--------------------------------------------------------------------------------
1 | import Link from "next/link";
2 |
3 | const links = [
4 | { name: "home", destination: "/" },
5 | // { name: "guestbook", destination: "/book" },
6 | ];
7 |
8 | export default function Nav(): JSX.Element {
9 | return (
10 |
11 | {links.map(({ name, destination }) => (
12 |
13 |
14 | {name}
15 |
16 |
17 | ))}
18 |
19 | );
20 | }
21 |
--------------------------------------------------------------------------------
/.eslintrc.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | settings: {
3 | react: {
4 | version: "detect",
5 | },
6 | },
7 | env: {
8 | browser: true,
9 | es2021: true,
10 | node: true,
11 | },
12 | extends: [
13 | "eslint:recommended",
14 | "plugin:react/recommended",
15 | "plugin:@typescript-eslint/recommended",
16 | ],
17 | parser: "@typescript-eslint/parser",
18 | parserOptions: {
19 | ecmaFeatures: {
20 | jsx: true,
21 | },
22 | ecmaVersion: 12,
23 | sourceType: "module",
24 | },
25 | plugins: ["react", "@typescript-eslint"],
26 | rules: { "react/prop-types": "off", "react/react-in-jsx-scope": "off" },
27 | };
28 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | const withMDX = require("@next/mdx")({
2 | extension: /\.mdx?$/,
3 | options: {
4 | remarkPlugins: [],
5 | rehypePlugins: [],
6 | // If you use `MDXProvider`, uncomment the following line.
7 | // providerImportSource: "@mdx-js/react",
8 | },
9 | });
10 |
11 | module.exports = withMDX({
12 | // Append the default value with md extensions
13 | pageExtensions: ["ts", "tsx", "js", "jsx", "md", "mdx"],
14 | });
15 |
16 | module.exports = {
17 | typescript: {
18 | // !! WARN !!
19 | // Dangerously allow production builds to successfully complete even if
20 | // your project has type errors.
21 | // !! WARN !!
22 | ignoreBuildErrors: true,
23 | },
24 | };
25 |
--------------------------------------------------------------------------------
/components/theme.tsx:
--------------------------------------------------------------------------------
1 | import Icon from "supercons";
2 | import { useTheme } from "next-themes";
3 |
4 | export default function ThemeToggle(): JSX.Element {
5 | const { theme, setTheme } = useTheme();
6 |
7 | return (
8 |
9 |
10 | {
12 | setTheme(theme === "dark" ? "light" : "dark");
13 | }}
14 | className="p-2 rounded-full hover:bg-black dark:hover:bg-white hover:bg-opacity-10 dark:hover:bg-opacity-10"
15 | >
16 | {theme === "dark" ? (
17 |
18 | ) : (
19 |
20 | )}
21 |
22 |
23 |
24 | );
25 | }
26 |
--------------------------------------------------------------------------------
/components/layout.tsx:
--------------------------------------------------------------------------------
1 | import Footer from "./footer";
2 | import Meta from "./meta";
3 | import Nav from "./nav";
4 | import ThemeToggle from "./theme";
5 |
6 | interface LayoutProps {
7 | children: React.ReactNode;
8 | heading: string;
9 | }
10 |
11 | export default function Layout({
12 | heading,
13 | children,
14 | }: LayoutProps): JSX.Element {
15 | return (
16 |
17 |
18 |
19 |
20 |
21 |
22 | {heading}
23 |
24 | {children}
25 |
26 |
27 |
28 |
29 |
30 | );
31 | }
32 |
--------------------------------------------------------------------------------
/styles/globals.css:
--------------------------------------------------------------------------------
1 | @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Playfair+Display:ital,wght@1,600;1,700;1,800;1,900&display=swap");
2 |
3 | @tailwind base;
4 | @tailwind components;
5 | @tailwind utilities;
6 |
7 | @layer components {
8 | .link {
9 | @apply text-gray-400 hover:underline;
10 | }
11 | .btn {
12 | @apply px-3 py-1 text-gray-700 bg-gray-200 rounded-md hover:bg-gray-300 dark:bg-blue-400 dark:text-gray-100 max-w-min focus:outline-none focus:border-gray-400 focus:ring-gray-400;
13 | }
14 | .card {
15 | @apply min-w-0 p-8 m-0 overflow-hidden bg-white rounded-md shadow-xl dark:bg-slate-500;
16 | }
17 | .card-interactive {
18 | @apply cursor-pointer;
19 | }
20 | .input {
21 | @apply px-2 py-1 border-2 border-gray-200 rounded-lg dark:border-slate-400 focus:outline-none focus:border-gray-400 focus:ring-1 focus:ring-gray-400;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "@exu3/site",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "eslint ./ --ext js,jsx,ts,tsx"
10 | },
11 | "dependencies": {
12 | "@mdx-js/loader": "^2.1.2",
13 | "@next/mdx": "^12.1.6",
14 | "@prisma/client": "^3.13.0",
15 | "framer-motion": "^6.3.2",
16 | "lodash": "^4.17.21",
17 | "next": "12.1.5",
18 | "next-themes": "^0.1.1",
19 | "prisma": "^3.13.0",
20 | "react": "18.1.0",
21 | "react-dom": "18.0.0",
22 | "supercons": "^0.0.1",
23 | "superjson": "^1.9.1",
24 | "swr": "^1.3.0"
25 | },
26 | "devDependencies": {
27 | "@types/node": "^17.0.26",
28 | "@types/react": "^18.0.6",
29 | "@typescript-eslint/eslint-plugin": "^5.20.0",
30 | "@typescript-eslint/parser": "^5.20.0",
31 | "autoprefixer": "^10.4.5",
32 | "eslint": "^8.14.0",
33 | "eslint-plugin-react": "^7.29.4",
34 | "postcss": "^8.4.12",
35 | "tailwindcss": "^3.0.24",
36 | "typescript": "^4.6.3"
37 | }
38 | }
39 |
--------------------------------------------------------------------------------
/components/Meta.tsx:
--------------------------------------------------------------------------------
1 | import Head from "next/head";
2 |
3 | export default function Meta(): JSX.Element {
4 | const title = "Ella";
5 | const description = "Personal website.";
6 | const keywords = "flying pig";
7 | const author = "Ella";
8 | const twitter = "@ella";
9 | //const image = "/ogimage.png"; // This is your OpenGraph image
10 | return (
11 |
12 |
13 |
14 |
15 | {title}
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 | {/* */}
24 |
25 |
26 |
27 |
28 | );
29 | }
30 |
--------------------------------------------------------------------------------
/pages/book.tsx:
--------------------------------------------------------------------------------
1 | import Layout from "../components/layout";
2 | import prisma from "../lib/prisma";
3 | import Entry from "../components/guestbook/Entry";
4 | import Form from "../components/guestbook/Form";
5 |
6 | const GuestBook = ({ records }) => {
7 | return (
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 | {records
17 | .filter((r) => r.message)
18 | .map((r) => (
19 |
25 | ))}
26 |
27 |
28 |
29 | );
30 | };
31 |
32 | export default GuestBook;
33 |
34 | export async function getServerSideProps() {
35 | const data = await prisma.guestbook.findMany({
36 | orderBy: {
37 | createdAt: "desc",
38 | },
39 | });
40 |
41 | const records = data.map((record) => ({
42 | id: record.id,
43 | name: record.name,
44 | message: record.message,
45 | createdAt: record.createdAt.toISOString(),
46 | }));
47 |
48 | return { props: { records } };
49 | }
50 |
--------------------------------------------------------------------------------
/pages/index.tsx:
--------------------------------------------------------------------------------
1 | import Layout from "../components/layout";
2 | import Link from "next/link";
3 | import Image from "next/image";
4 | import { useState } from "react";
5 |
6 | const HomePage = () => {
7 | const time = new Date();
8 | const greeting = time.getHours() < 12 ? "Good morning ☀️" : "Good day 👋";
9 |
10 | const [hello, setHello] = useState("Hello.");
11 | const hellos = ["Hello.", "Bonjour.", "Hola.", "Hallo.", "你好。"];
12 | return (
13 | <>
14 |
15 |
16 |
17 |
19 | setHello(hellos[Math.floor(Math.random() * hellos.length)])
20 | }
21 | className="cursor-pointer"
22 | >
23 | {hello}
24 | {" "}
25 | My name is Ella. Welcome to my humble internet home. There
26 | isn't much to do here.
27 |
28 | {/*
29 | Perhaps you may want to{" "}
30 |
31 | read the guestbook
32 |
33 | ?
34 |
*/}
35 |
36 |
44 |
45 |
46 | Vermont, yeah.
47 |
48 |
49 | >
50 | );
51 | };
52 |
53 | export default HomePage;
54 |
--------------------------------------------------------------------------------
/tailwind.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | content: [
3 | "./pages/**/*.{js,ts,jsx,tsx}",
4 | "./components/**/*.{js,ts,jsx,tsx}",
5 | ],
6 | darkMode: "class",
7 | theme: {
8 | extend: {
9 | fontFamily: {
10 | playfair: "Playfair Display, serif",
11 | mono: "IBM Plex Mono, monospace",
12 | sans: "IBM Plex Sans, sans-serif",
13 | },
14 | colors: {
15 | white: "#FFFEFD",
16 | black: "#181818",
17 | },
18 | keyframes: {
19 | "cursor-party": {
20 | "0%": {
21 | cursor: "grabbing",
22 | },
23 | "5%": {
24 | cursor: "grab",
25 | },
26 | "10%": {
27 | cursor: "zoom-out",
28 | },
29 | "15%": {
30 | cursor: "zoom-in",
31 | },
32 | "20%": {
33 | cursor: "all-scroll",
34 | },
35 | "25%": {
36 | cursor: "row-resize",
37 | },
38 | "30%": {
39 | cursor: "zoom-in",
40 | },
41 | "35%": {
42 | cursor: "text",
43 | },
44 | "40%": {
45 | cursor: "crosshair",
46 | },
47 | "45%": {
48 | cursor: "progress",
49 | },
50 | "50%": {
51 | cursor: "pointer",
52 | },
53 | "55%": {
54 | cursor: "context-menu",
55 | },
56 | "60%": {
57 | cursor: "none",
58 | },
59 | "65%": {
60 | cursor: "help",
61 | },
62 | "70%": {
63 | cursor: "vertical-text",
64 | },
65 | "75%": {
66 | cursor: "alias",
67 | },
68 | "80%": {
69 | cursor: "copy",
70 | },
71 | "85%": {
72 | cursor: "move",
73 | },
74 | "90%": {
75 | cursor: "no-drop",
76 | },
77 | "95%": {
78 | cursor: "pointer",
79 | },
80 | "100%": {
81 | cursor: "ew-resize",
82 | },
83 | },
84 | },
85 | animation: {
86 | "cursor-party": "cursor-party 3s infinite ease-in-out",
87 | },
88 | },
89 | },
90 | variants: {
91 | extend: {},
92 | },
93 | plugins: [],
94 | };
95 |
--------------------------------------------------------------------------------
/components/guestbook/Form.tsx:
--------------------------------------------------------------------------------
1 | import { useState } from "react";
2 |
3 | export const GuestbookNew = () => {
4 | const [name, setName] = useState("");
5 | const [message, setMessage] = useState("");
6 | const [email, setEmail] = useState("");
7 | const [error, setError] = useState("");
8 | const [success, setSuccess] = useState("");
9 | const [isLoading, setIsLoading] = useState(false);
10 |
11 | const addRecord = async () => {
12 | setIsLoading(true);
13 | setError("");
14 | setSuccess("");
15 | };
16 | // eslint-disable-next-line @typescript-eslint/no-explicit-any
17 | const handleSubmit = async (e: any) => {
18 | e.preventDefault();
19 | setIsLoading(true);
20 | setError("");
21 | setSuccess("");
22 | const res = await fetch("/api/guestbook/new", {
23 | body: JSON.stringify({
24 | name,
25 | message,
26 | email,
27 | }),
28 | headers: {
29 | "Content-Type": "application/json",
30 | },
31 | method: "POST",
32 | });
33 | const data = await res.json();
34 | if (data.error) {
35 | setError(data.error);
36 | setIsLoading(false);
37 | } else {
38 | setSuccess("Entry added successfully");
39 | setIsLoading(false);
40 | setName("");
41 | setMessage("");
42 | setEmail("");
43 | }
44 | // refresh page so the entry shows up
45 | window.location.reload();
46 | };
47 | return (
48 | <>
49 |
50 |
74 | {error && (
75 |
76 | {error}
77 |
78 | )}
79 | {success && (
80 |
81 | {success}
82 |
83 | )}
84 |
85 | >
86 | );
87 | };
88 |
89 | export default GuestbookNew;
90 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | Apache License
2 | Version 2.0, January 2004
3 | http://www.apache.org/licenses/
4 |
5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6 |
7 | 1. Definitions.
8 |
9 | "License" shall mean the terms and conditions for use, reproduction,
10 | and distribution as defined by Sections 1 through 9 of this document.
11 |
12 | "Licensor" shall mean the copyright owner or entity authorized by
13 | the copyright owner that is granting the License.
14 |
15 | "Legal Entity" shall mean the union of the acting entity and all
16 | other entities that control, are controlled by, or are under common
17 | control with that entity. For the purposes of this definition,
18 | "control" means (i) the power, direct or indirect, to cause the
19 | direction or management of such entity, whether by contract or
20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the
21 | outstanding shares, or (iii) beneficial ownership of such entity.
22 |
23 | "You" (or "Your") shall mean an individual or Legal Entity
24 | exercising permissions granted by this License.
25 |
26 | "Source" form shall mean the preferred form for making modifications,
27 | including but not limited to software source code, documentation
28 | source, and configuration files.
29 |
30 | "Object" form shall mean any form resulting from mechanical
31 | transformation or translation of a Source form, including but
32 | not limited to compiled object code, generated documentation,
33 | and conversions to other media types.
34 |
35 | "Work" shall mean the work of authorship, whether in Source or
36 | Object form, made available under the License, as indicated by a
37 | copyright notice that is included in or attached to the work
38 | (an example is provided in the Appendix below).
39 |
40 | "Derivative Works" shall mean any work, whether in Source or Object
41 | form, that is based on (or derived from) the Work and for which the
42 | editorial revisions, annotations, elaborations, or other modifications
43 | represent, as a whole, an original work of authorship. For the purposes
44 | of this License, Derivative Works shall not include works that remain
45 | separable from, or merely link (or bind by name) to the interfaces of,
46 | the Work and Derivative Works thereof.
47 |
48 | "Contribution" shall mean any work of authorship, including
49 | the original version of the Work and any modifications or additions
50 | to that Work or Derivative Works thereof, that is intentionally
51 | submitted to Licensor for inclusion in the Work by the copyright owner
52 | or by an individual or Legal Entity authorized to submit on behalf of
53 | the copyright owner. For the purposes of this definition, "submitted"
54 | means any form of electronic, verbal, or written communication sent
55 | to the Licensor or its representatives, including but not limited to
56 | communication on electronic mailing lists, source code control systems,
57 | and issue tracking systems that are managed by, or on behalf of, the
58 | Licensor for the purpose of discussing and improving the Work, but
59 | excluding communication that is conspicuously marked or otherwise
60 | designated in writing by the copyright owner as "Not a Contribution."
61 |
62 | "Contributor" shall mean Licensor and any individual or Legal Entity
63 | on behalf of whom a Contribution has been received by Licensor and
64 | subsequently incorporated within the Work.
65 |
66 | 2. Grant of Copyright License. Subject to the terms and conditions of
67 | this License, each Contributor hereby grants to You a perpetual,
68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69 | copyright license to reproduce, prepare Derivative Works of,
70 | publicly display, publicly perform, sublicense, and distribute the
71 | Work and such Derivative Works in Source or Object form.
72 |
73 | 3. Grant of Patent License. Subject to the terms and conditions of
74 | this License, each Contributor hereby grants to You a perpetual,
75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76 | (except as stated in this section) patent license to make, have made,
77 | use, offer to sell, sell, import, and otherwise transfer the Work,
78 | where such license applies only to those patent claims licensable
79 | by such Contributor that are necessarily infringed by their
80 | Contribution(s) alone or by combination of their Contribution(s)
81 | with the Work to which such Contribution(s) was submitted. If You
82 | institute patent litigation against any entity (including a
83 | cross-claim or counterclaim in a lawsuit) alleging that the Work
84 | or a Contribution incorporated within the Work constitutes direct
85 | or contributory patent infringement, then any patent licenses
86 | granted to You under this License for that Work shall terminate
87 | as of the date such litigation is filed.
88 |
89 | 4. Redistribution. You may reproduce and distribute copies of the
90 | Work or Derivative Works thereof in any medium, with or without
91 | modifications, and in Source or Object form, provided that You
92 | meet the following conditions:
93 |
94 | (a) You must give any other recipients of the Work or
95 | Derivative Works a copy of this License; and
96 |
97 | (b) You must cause any modified files to carry prominent notices
98 | stating that You changed the files; and
99 |
100 | (c) You must retain, in the Source form of any Derivative Works
101 | that You distribute, all copyright, patent, trademark, and
102 | attribution notices from the Source form of the Work,
103 | excluding those notices that do not pertain to any part of
104 | the Derivative Works; and
105 |
106 | (d) If the Work includes a "NOTICE" text file as part of its
107 | distribution, then any Derivative Works that You distribute must
108 | include a readable copy of the attribution notices contained
109 | within such NOTICE file, excluding those notices that do not
110 | pertain to any part of the Derivative Works, in at least one
111 | of the following places: within a NOTICE text file distributed
112 | as part of the Derivative Works; within the Source form or
113 | documentation, if provided along with the Derivative Works; or,
114 | within a display generated by the Derivative Works, if and
115 | wherever such third-party notices normally appear. The contents
116 | of the NOTICE file are for informational purposes only and
117 | do not modify the License. You may add Your own attribution
118 | notices within Derivative Works that You distribute, alongside
119 | or as an addendum to the NOTICE text from the Work, provided
120 | that such additional attribution notices cannot be construed
121 | as modifying the License.
122 |
123 | You may add Your own copyright statement to Your modifications and
124 | may provide additional or different license terms and conditions
125 | for use, reproduction, or distribution of Your modifications, or
126 | for any such Derivative Works as a whole, provided Your use,
127 | reproduction, and distribution of the Work otherwise complies with
128 | the conditions stated in this License.
129 |
130 | 5. Submission of Contributions. Unless You explicitly state otherwise,
131 | any Contribution intentionally submitted for inclusion in the Work
132 | by You to the Licensor shall be under the terms and conditions of
133 | this License, without any additional terms or conditions.
134 | Notwithstanding the above, nothing herein shall supersede or modify
135 | the terms of any separate license agreement you may have executed
136 | with Licensor regarding such Contributions.
137 |
138 | 6. Trademarks. This License does not grant permission to use the trade
139 | names, trademarks, service marks, or product names of the Licensor,
140 | except as required for reasonable and customary use in describing the
141 | origin of the Work and reproducing the content of the NOTICE file.
142 |
143 | 7. Disclaimer of Warranty. Unless required by applicable law or
144 | agreed to in writing, Licensor provides the Work (and each
145 | Contributor provides its Contributions) on an "AS IS" BASIS,
146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147 | implied, including, without limitation, any warranties or conditions
148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149 | PARTICULAR PURPOSE. You are solely responsible for determining the
150 | appropriateness of using or redistributing the Work and assume any
151 | risks associated with Your exercise of permissions under this License.
152 |
153 | 8. Limitation of Liability. In no event and under no legal theory,
154 | whether in tort (including negligence), contract, or otherwise,
155 | unless required by applicable law (such as deliberate and grossly
156 | negligent acts) or agreed to in writing, shall any Contributor be
157 | liable to You for damages, including any direct, indirect, special,
158 | incidental, or consequential damages of any character arising as a
159 | result of this License or out of the use or inability to use the
160 | Work (including but not limited to damages for loss of goodwill,
161 | work stoppage, computer failure or malfunction, or any and all
162 | other commercial damages or losses), even if such Contributor
163 | has been advised of the possibility of such damages.
164 |
165 | 9. Accepting Warranty or Additional Liability. While redistributing
166 | the Work or Derivative Works thereof, You may choose to offer,
167 | and charge a fee for, acceptance of support, warranty, indemnity,
168 | or other liability obligations and/or rights consistent with this
169 | License. However, in accepting such obligations, You may act only
170 | on Your own behalf and on Your sole responsibility, not on behalf
171 | of any other Contributor, and only if You agree to indemnify,
172 | defend, and hold each Contributor harmless for any liability
173 | incurred by, or claims asserted against, such Contributor by reason
174 | of your accepting any such warranty or additional liability.
175 |
176 | END OF TERMS AND CONDITIONS
177 |
178 | APPENDIX: How to apply the Apache License to your work.
179 |
180 | To apply the Apache License to your work, attach the following
181 | boilerplate notice, with the fields enclosed by brackets "[]"
182 | replaced with your own identifying information. (Don't include
183 | the brackets!) The text should be enclosed in the appropriate
184 | comment syntax for the file format. We also recommend that a
185 | file or class name and description of purpose be included on the
186 | same "printed page" as the copyright notice for easier
187 | identification within third-party archives.
188 |
189 | Copyright 2021 Ella
190 |
191 | Licensed under the Apache License, Version 2.0 (the "License");
192 | you may not use this file except in compliance with the License.
193 | You may obtain a copy of the License at
194 |
195 | http://www.apache.org/licenses/LICENSE-2.0
196 |
197 | Unless required by applicable law or agreed to in writing, software
198 | distributed under the License is distributed on an "AS IS" BASIS,
199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200 | See the License for the specific language governing permissions and
201 | limitations under the License.
202 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@emotion/is-prop-valid@^0.8.2":
6 | version "0.8.8"
7 | resolved "https://registry.yarnpkg.com/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz#db28b1c4368a259b60a97311d6a952d4fd01ac1a"
8 | integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==
9 | dependencies:
10 | "@emotion/memoize" "0.7.4"
11 |
12 | "@emotion/memoize@0.7.4":
13 | version "0.7.4"
14 | resolved "https://registry.yarnpkg.com/@emotion/memoize/-/memoize-0.7.4.tgz#19bf0f5af19149111c40d98bb0cf82119f5d9eeb"
15 | integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
16 |
17 | "@eslint/eslintrc@^1.3.0":
18 | version "1.3.0"
19 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f"
20 | integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==
21 | dependencies:
22 | ajv "^6.12.4"
23 | debug "^4.3.2"
24 | espree "^9.3.2"
25 | globals "^13.15.0"
26 | ignore "^5.2.0"
27 | import-fresh "^3.2.1"
28 | js-yaml "^4.1.0"
29 | minimatch "^3.1.2"
30 | strip-json-comments "^3.1.1"
31 |
32 | "@humanwhocodes/config-array@^0.9.2":
33 | version "0.9.5"
34 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7"
35 | integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==
36 | dependencies:
37 | "@humanwhocodes/object-schema" "^1.2.1"
38 | debug "^4.1.1"
39 | minimatch "^3.0.4"
40 |
41 | "@humanwhocodes/object-schema@^1.2.1":
42 | version "1.2.1"
43 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
44 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
45 |
46 | "@mdx-js/loader@^2.1.2":
47 | version "2.1.2"
48 | resolved "https://registry.yarnpkg.com/@mdx-js/loader/-/loader-2.1.2.tgz#fe7631bbef1e6546f4289f7adaef60083c22063a"
49 | integrity sha512-P7CWhrqE5rZ3ewBngZ9t/zQPbSq42iuty78K3zJ8Bl518qnOX1d106c+n7I/zHODPAmw9JfYMQdbv9WrrHa0DA==
50 | dependencies:
51 | "@mdx-js/mdx" "^2.0.0"
52 | source-map "^0.7.0"
53 |
54 | "@mdx-js/mdx@^2.0.0":
55 | version "2.1.2"
56 | resolved "https://registry.yarnpkg.com/@mdx-js/mdx/-/mdx-2.1.2.tgz#d13fb811809fda37967dc0eebd5bb36adce89a81"
57 | integrity sha512-ASN1GUH0gXsgJ2UD/Td7FzJo1SwFkkQ5V1i9at5o/ROra7brkyMcBsotsOWJWRzmXZaLw2uXWn4aN8B3PMNFMA==
58 | dependencies:
59 | "@types/estree-jsx" "^0.0.1"
60 | "@types/mdx" "^2.0.0"
61 | astring "^1.6.0"
62 | estree-util-build-jsx "^2.0.0"
63 | estree-util-is-identifier-name "^2.0.0"
64 | estree-walker "^3.0.0"
65 | hast-util-to-estree "^2.0.0"
66 | markdown-extensions "^1.0.0"
67 | periscopic "^3.0.0"
68 | remark-mdx "^2.0.0"
69 | remark-parse "^10.0.0"
70 | remark-rehype "^10.0.0"
71 | unified "^10.0.0"
72 | unist-util-position-from-estree "^1.0.0"
73 | unist-util-stringify-position "^3.0.0"
74 | unist-util-visit "^4.0.0"
75 | vfile "^5.0.0"
76 |
77 | "@motionone/animation@^10.12.0":
78 | version "10.13.1"
79 | resolved "https://registry.yarnpkg.com/@motionone/animation/-/animation-10.13.1.tgz#ebacb50df4b7eb4957cf398c221ae10852f28520"
80 | integrity sha512-dxQ+1wWxL6iFHDy1uv6hhcPjIdOg36eDT56jN4LI7Z5HZRyLpq8x1t7JFQclo/IEIb+6Bk4atmyinGFdXVECuA==
81 | dependencies:
82 | "@motionone/easing" "^10.13.1"
83 | "@motionone/types" "^10.13.0"
84 | "@motionone/utils" "^10.13.1"
85 | tslib "^2.3.1"
86 |
87 | "@motionone/dom@10.12.0":
88 | version "10.12.0"
89 | resolved "https://registry.yarnpkg.com/@motionone/dom/-/dom-10.12.0.tgz#ae30827fd53219efca4e1150a5ff2165c28351ed"
90 | integrity sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==
91 | dependencies:
92 | "@motionone/animation" "^10.12.0"
93 | "@motionone/generators" "^10.12.0"
94 | "@motionone/types" "^10.12.0"
95 | "@motionone/utils" "^10.12.0"
96 | hey-listen "^1.0.8"
97 | tslib "^2.3.1"
98 |
99 | "@motionone/easing@^10.13.1":
100 | version "10.13.1"
101 | resolved "https://registry.yarnpkg.com/@motionone/easing/-/easing-10.13.1.tgz#7927b7fe96135989e37c2cda957e4101a4b85aa8"
102 | integrity sha512-INEsInHHDHVgx0dp5qlXi1lMXBqYicgLMMSn3zfGzaIvcaEbI1Uz8BoyNV4BiclTupG7RYIh+T6BU83ZcEe74g==
103 | dependencies:
104 | "@motionone/utils" "^10.13.1"
105 | tslib "^2.3.1"
106 |
107 | "@motionone/generators@^10.12.0":
108 | version "10.13.1"
109 | resolved "https://registry.yarnpkg.com/@motionone/generators/-/generators-10.13.1.tgz#d4989d887b864e0aefbbec63eed35ce298a73773"
110 | integrity sha512-+HK5u2YcNJCckTTqfOLgSVcrWv2z1dVwrSZEMVJuAh0EnWEWGDJRvMBoPc0cFf/osbkA2Rq9bH2+vP0Ex/D8uw==
111 | dependencies:
112 | "@motionone/types" "^10.13.0"
113 | "@motionone/utils" "^10.13.1"
114 | tslib "^2.3.1"
115 |
116 | "@motionone/types@^10.12.0", "@motionone/types@^10.13.0":
117 | version "10.13.0"
118 | resolved "https://registry.yarnpkg.com/@motionone/types/-/types-10.13.0.tgz#b22c549931ebd88ed5528158b5d611dc9dbb3756"
119 | integrity sha512-qegk4qg8U1N9ZwAJ187BG3TkZz1k9LP/pvNtCSlqdq/PMUDKlCFG4ZnjJ481P0IOH/vIw1OzIbKIuyg0A3rk9g==
120 |
121 | "@motionone/utils@^10.12.0", "@motionone/utils@^10.13.1":
122 | version "10.13.1"
123 | resolved "https://registry.yarnpkg.com/@motionone/utils/-/utils-10.13.1.tgz#14919dfcda36b54b184fff690bc0125d554f60cd"
124 | integrity sha512-TjDPTIppaf3ofBXQv4ZzAketJgN0sclALXfZ6mfrkjJkOy83mLls9744F+6S+VKCpBmvbZcBY4PQfrfhAfeMtA==
125 | dependencies:
126 | "@motionone/types" "^10.13.0"
127 | hey-listen "^1.0.8"
128 | tslib "^2.3.1"
129 |
130 | "@next/env@12.1.5":
131 | version "12.1.5"
132 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.5.tgz#a21ba6708022d630402ca2b340316e69a0296dfc"
133 | integrity sha512-+34yUJslfJi7Lyx6ELuN8nWcOzi27izfYnZIC1Dqv7kmmfiBVxgzR3BXhlvEMTKC2IRJhXVs2FkMY+buQe3k7Q==
134 |
135 | "@next/mdx@^12.1.6":
136 | version "12.2.2"
137 | resolved "https://registry.yarnpkg.com/@next/mdx/-/mdx-12.2.2.tgz#1cb24269a7871a728becf7854286f505b667acf3"
138 | integrity sha512-d+yHApu6weFYrAbDj+2vMY3uE8kAnoNu5g3w8B3m3skUh6r1ekkKM2YTktlpNpum/XMnKGiPrIdAX4L4KuVdYg==
139 |
140 | "@next/swc-android-arm-eabi@12.1.5":
141 | version "12.1.5"
142 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.1.5.tgz#36729ab3dfd7743e82cfe536b43254dcb146620c"
143 | integrity sha512-SKnGTdYcoN04Y2DvE0/Y7/MjkA+ltsmbuH/y/hR7Ob7tsj+8ZdOYuk+YvW1B8dY20nDPHP58XgDTSm2nA8BzzA==
144 |
145 | "@next/swc-android-arm64@12.1.5":
146 | version "12.1.5"
147 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.5.tgz#52578f552305c92d0b9b81d603c9643fb71e0835"
148 | integrity sha512-YXiqgQ/9Rxg1dXp6brXbeQM1JDx9SwUY/36JiE+36FXqYEmDYbxld9qkX6GEzkc5rbwJ+RCitargnzEtwGW0mw==
149 |
150 | "@next/swc-darwin-arm64@12.1.5":
151 | version "12.1.5"
152 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.5.tgz#3d5b53211484c72074f4975ba0ec2b1107db300e"
153 | integrity sha512-y8mhldb/WFZ6lFeowkGfi0cO/lBdiBqDk4T4LZLvCpoQp4Or/NzUN6P5NzBQZ5/b4oUHM/wQICEM+1wKA4qIVw==
154 |
155 | "@next/swc-darwin-x64@12.1.5":
156 | version "12.1.5"
157 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.5.tgz#adcabb732d226453777c0d37d58eaff9328b66fd"
158 | integrity sha512-wqJ3X7WQdTwSGi0kIDEmzw34QHISRIQ5uvC+VXmsIlCPFcMA+zM5723uh8NfuKGquDMiEMS31a83QgkuHMYbwQ==
159 |
160 | "@next/swc-linux-arm-gnueabihf@12.1.5":
161 | version "12.1.5"
162 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.5.tgz#82a7cde67482b756bc65fbebf1dfa8a782074e93"
163 | integrity sha512-WnhdM5duONMvt2CncAl+9pim0wBxDS2lHoo7ub/o/i1bRbs11UTzosKzEXVaTDCUkCX2c32lIDi1WcN2ZPkcdw==
164 |
165 | "@next/swc-linux-arm64-gnu@12.1.5":
166 | version "12.1.5"
167 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.5.tgz#f82ca014504950aab751e81f467492e9be0bad5d"
168 | integrity sha512-Jq2H68yQ4bLUhR/XQnbw3LDW0GMQn355qx6rU36BthDLeGue7YV7MqNPa8GKvrpPocEMW77nWx/1yI6w6J07gw==
169 |
170 | "@next/swc-linux-arm64-musl@12.1.5":
171 | version "12.1.5"
172 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.5.tgz#f811ec9f4b12a978426c284c95ab2f515ddf7f9e"
173 | integrity sha512-KgPjwdbhDqXI7ghNN8V/WAiLquc9Ebe8KBrNNEL0NQr+yd9CyKJ6KqjayVkmX+hbHzbyvbui/5wh/p3CZQ9xcQ==
174 |
175 | "@next/swc-linux-x64-gnu@12.1.5":
176 | version "12.1.5"
177 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.5.tgz#d44857257e6d20dc841998951d584ab1f25772c3"
178 | integrity sha512-O2ErUTvCJ6DkNTSr9pbu1n3tcqykqE/ebty1rwClzIYdOgpB3T2MfEPP+K7GhUR87wmN/hlihO9ch7qpVFDGKw==
179 |
180 | "@next/swc-linux-x64-musl@12.1.5":
181 | version "12.1.5"
182 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.5.tgz#3cc523abadc9a2a6de680593aff06e71cc29ecef"
183 | integrity sha512-1eIlZmlO/VRjxxzUBcVosf54AFU3ltAzHi+BJA+9U/lPxCYIsT+R4uO3QksRzRjKWhVQMRjEnlXyyq5SKJm7BA==
184 |
185 | "@next/swc-win32-arm64-msvc@12.1.5":
186 | version "12.1.5"
187 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.5.tgz#c62232d869f1f9b22e8f24e4e7f05307c20f30ca"
188 | integrity sha512-oromsfokbEuVb0CBLLE7R9qX3KGXucZpsojLpzUh1QJjuy1QkrPJncwr8xmWQnwgtQ6ecMWXgXPB+qtvizT9Tw==
189 |
190 | "@next/swc-win32-ia32-msvc@12.1.5":
191 | version "12.1.5"
192 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.5.tgz#2bd9b28a9ba730d12a493e7d9d18e150fe89d496"
193 | integrity sha512-a/51L5KzBpeZSW9LbekMo3I3Cwul+V+QKwbEIMA+Qwb2qrlcn1L9h3lt8cHqNTFt2y72ce6aTwDTw1lyi5oIRA==
194 |
195 | "@next/swc-win32-x64-msvc@12.1.5":
196 | version "12.1.5"
197 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.5.tgz#02f377e4d41eaaacf265e34bab9bacd8efc4a351"
198 | integrity sha512-/SoXW1Ntpmpw3AXAzfDRaQidnd8kbZ2oSni8u5z0yw6t4RwJvmdZy1eOaAADRThWKV+2oU90++LSnXJIwBRWYQ==
199 |
200 | "@nodelib/fs.scandir@2.1.5":
201 | version "2.1.5"
202 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
203 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
204 | dependencies:
205 | "@nodelib/fs.stat" "2.0.5"
206 | run-parallel "^1.1.9"
207 |
208 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
209 | version "2.0.5"
210 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
211 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
212 |
213 | "@nodelib/fs.walk@^1.2.3":
214 | version "1.2.8"
215 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
216 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
217 | dependencies:
218 | "@nodelib/fs.scandir" "2.1.5"
219 | fastq "^1.6.0"
220 |
221 | "@prisma/client@^3.13.0":
222 | version "3.15.2"
223 | resolved "https://registry.yarnpkg.com/@prisma/client/-/client-3.15.2.tgz#2181398147afc79bfe0d83c03a88dc45b49bd365"
224 | integrity sha512-ErqtwhX12ubPhU4d++30uFY/rPcyvjk+mdifaZO5SeM21zS3t4jQrscy8+6IyB0GIYshl5ldTq6JSBo1d63i8w==
225 | dependencies:
226 | "@prisma/engines-version" "3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e"
227 |
228 | "@prisma/engines-version@3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e":
229 | version "3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e"
230 | resolved "https://registry.yarnpkg.com/@prisma/engines-version/-/engines-version-3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e.tgz#bf5e2373ca68ce7556b967cb4965a7095e93fe53"
231 | integrity sha512-e3k2Vd606efd1ZYy2NQKkT4C/pn31nehyLhVug6To/q8JT8FpiMrDy7zmm3KLF0L98NOQQcutaVtAPhzKhzn9w==
232 |
233 | "@prisma/engines@3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e":
234 | version "3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e"
235 | resolved "https://registry.yarnpkg.com/@prisma/engines/-/engines-3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e.tgz#f691893df506b93e3cb1ccc15ec6e5ac64e8e570"
236 | integrity sha512-NHlojO1DFTsSi3FtEleL9QWXeSF/UjhCW0fgpi7bumnNZ4wj/eQ+BJJ5n2pgoOliTOGv9nX2qXvmHap7rJMNmg==
237 |
238 | "@types/acorn@^4.0.0":
239 | version "4.0.6"
240 | resolved "https://registry.yarnpkg.com/@types/acorn/-/acorn-4.0.6.tgz#d61ca5480300ac41a7d973dd5b84d0a591154a22"
241 | integrity sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==
242 | dependencies:
243 | "@types/estree" "*"
244 |
245 | "@types/debug@^4.0.0":
246 | version "4.1.7"
247 | resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82"
248 | integrity sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==
249 | dependencies:
250 | "@types/ms" "*"
251 |
252 | "@types/estree-jsx@^0.0.1":
253 | version "0.0.1"
254 | resolved "https://registry.yarnpkg.com/@types/estree-jsx/-/estree-jsx-0.0.1.tgz#c36d7a1afeb47a95a8ee0b7bc8bc705db38f919d"
255 | integrity sha512-gcLAYiMfQklDCPjQegGn0TBAn9it05ISEsEhlKQUddIk7o2XDokOcTN7HBO8tznM0D9dGezvHEfRZBfZf6me0A==
256 | dependencies:
257 | "@types/estree" "*"
258 |
259 | "@types/estree@*":
260 | version "1.0.0"
261 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.0.tgz#5fb2e536c1ae9bf35366eed879e827fa59ca41c2"
262 | integrity sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==
263 |
264 | "@types/estree@^0.0.51":
265 | version "0.0.51"
266 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.51.tgz#cfd70924a25a3fd32b218e5e420e6897e1ac4f40"
267 | integrity sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==
268 |
269 | "@types/hast@^2.0.0":
270 | version "2.3.4"
271 | resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc"
272 | integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==
273 | dependencies:
274 | "@types/unist" "*"
275 |
276 | "@types/json-schema@^7.0.9":
277 | version "7.0.11"
278 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
279 | integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
280 |
281 | "@types/mdast@^3.0.0":
282 | version "3.0.10"
283 | resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.10.tgz#4724244a82a4598884cbbe9bcfd73dff927ee8af"
284 | integrity sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==
285 | dependencies:
286 | "@types/unist" "*"
287 |
288 | "@types/mdurl@^1.0.0":
289 | version "1.0.2"
290 | resolved "https://registry.yarnpkg.com/@types/mdurl/-/mdurl-1.0.2.tgz#e2ce9d83a613bacf284c7be7d491945e39e1f8e9"
291 | integrity sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==
292 |
293 | "@types/mdx@^2.0.0":
294 | version "2.0.2"
295 | resolved "https://registry.yarnpkg.com/@types/mdx/-/mdx-2.0.2.tgz#64be19baddba4323ae7893e077e98759316fe279"
296 | integrity sha512-mJGfgj4aWpiKb8C0nnJJchs1sHBHn0HugkVfqqyQi7Wn6mBRksLeQsPOFvih/Pu8L1vlDzfe/LidhVHBeUk3aQ==
297 |
298 | "@types/ms@*":
299 | version "0.7.31"
300 | resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197"
301 | integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==
302 |
303 | "@types/node@^17.0.26":
304 | version "17.0.45"
305 | resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190"
306 | integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==
307 |
308 | "@types/prop-types@*":
309 | version "15.7.5"
310 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
311 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
312 |
313 | "@types/react@^18.0.6":
314 | version "18.0.15"
315 | resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.15.tgz#d355644c26832dc27f3e6cbf0c4f4603fc4ab7fe"
316 | integrity sha512-iz3BtLuIYH1uWdsv6wXYdhozhqj20oD4/Hk2DNXIn1kFsmp9x8d9QB6FnPhfkbhd2PgEONt9Q1x/ebkwjfFLow==
317 | dependencies:
318 | "@types/prop-types" "*"
319 | "@types/scheduler" "*"
320 | csstype "^3.0.2"
321 |
322 | "@types/scheduler@*":
323 | version "0.16.2"
324 | resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
325 | integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
326 |
327 | "@types/unist@*", "@types/unist@^2.0.0":
328 | version "2.0.6"
329 | resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d"
330 | integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
331 |
332 | "@typescript-eslint/eslint-plugin@^5.20.0":
333 | version "5.30.7"
334 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.7.tgz#1621dabc1ae4084310e19e9efc80dfdbb97e7493"
335 | integrity sha512-l4L6Do+tfeM2OK0GJsU7TUcM/1oN/N25xHm3Jb4z3OiDU4Lj8dIuxX9LpVMS9riSXQs42D1ieX7b85/r16H9Fw==
336 | dependencies:
337 | "@typescript-eslint/scope-manager" "5.30.7"
338 | "@typescript-eslint/type-utils" "5.30.7"
339 | "@typescript-eslint/utils" "5.30.7"
340 | debug "^4.3.4"
341 | functional-red-black-tree "^1.0.1"
342 | ignore "^5.2.0"
343 | regexpp "^3.2.0"
344 | semver "^7.3.7"
345 | tsutils "^3.21.0"
346 |
347 | "@typescript-eslint/parser@^5.20.0":
348 | version "5.30.7"
349 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.30.7.tgz#99d09729392aec9e64b1de45cd63cb81a4ddd980"
350 | integrity sha512-Rg5xwznHWWSy7v2o0cdho6n+xLhK2gntImp0rJroVVFkcYFYQ8C8UJTSuTw/3CnExBmPjycjmUJkxVmjXsld6A==
351 | dependencies:
352 | "@typescript-eslint/scope-manager" "5.30.7"
353 | "@typescript-eslint/types" "5.30.7"
354 | "@typescript-eslint/typescript-estree" "5.30.7"
355 | debug "^4.3.4"
356 |
357 | "@typescript-eslint/scope-manager@5.30.7":
358 | version "5.30.7"
359 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.30.7.tgz#8269a931ef1e5ae68b5eb80743cc515c4ffe3dd7"
360 | integrity sha512-7BM1bwvdF1UUvt+b9smhqdc/eniOnCKxQT/kj3oXtj3LqnTWCAM0qHRHfyzCzhEfWX0zrW7KqXXeE4DlchZBKw==
361 | dependencies:
362 | "@typescript-eslint/types" "5.30.7"
363 | "@typescript-eslint/visitor-keys" "5.30.7"
364 |
365 | "@typescript-eslint/type-utils@5.30.7":
366 | version "5.30.7"
367 | resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.30.7.tgz#5693dc3db6f313f302764282d614cfdbc8a9fcfd"
368 | integrity sha512-nD5qAE2aJX/YLyKMvOU5jvJyku4QN5XBVsoTynFrjQZaDgDV6i7QHFiYCx10wvn7hFvfuqIRNBtsgaLe0DbWhw==
369 | dependencies:
370 | "@typescript-eslint/utils" "5.30.7"
371 | debug "^4.3.4"
372 | tsutils "^3.21.0"
373 |
374 | "@typescript-eslint/types@5.30.7":
375 | version "5.30.7"
376 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.30.7.tgz#18331487cc92d0f1fb1a6f580c8ec832528079d0"
377 | integrity sha512-ocVkETUs82+U+HowkovV6uxf1AnVRKCmDRNUBUUo46/5SQv1owC/EBFkiu4MOHeZqhKz2ktZ3kvJJ1uFqQ8QPg==
378 |
379 | "@typescript-eslint/typescript-estree@5.30.7":
380 | version "5.30.7"
381 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.7.tgz#05da9f1b281985bfedcf62349847f8d168eecc07"
382 | integrity sha512-tNslqXI1ZdmXXrHER83TJ8OTYl4epUzJC0aj2i4DMDT4iU+UqLT3EJeGQvJ17BMbm31x5scSwo3hPM0nqQ1AEA==
383 | dependencies:
384 | "@typescript-eslint/types" "5.30.7"
385 | "@typescript-eslint/visitor-keys" "5.30.7"
386 | debug "^4.3.4"
387 | globby "^11.1.0"
388 | is-glob "^4.0.3"
389 | semver "^7.3.7"
390 | tsutils "^3.21.0"
391 |
392 | "@typescript-eslint/utils@5.30.7":
393 | version "5.30.7"
394 | resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.30.7.tgz#7135be070349e9f7caa262b0ca59dc96123351bb"
395 | integrity sha512-Z3pHdbFw+ftZiGUnm1GZhkJgVqsDL5CYW2yj+TB2mfXDFOMqtbzQi2dNJIyPqPbx9mv2kUxS1gU+r2gKlKi1rQ==
396 | dependencies:
397 | "@types/json-schema" "^7.0.9"
398 | "@typescript-eslint/scope-manager" "5.30.7"
399 | "@typescript-eslint/types" "5.30.7"
400 | "@typescript-eslint/typescript-estree" "5.30.7"
401 | eslint-scope "^5.1.1"
402 | eslint-utils "^3.0.0"
403 |
404 | "@typescript-eslint/visitor-keys@5.30.7":
405 | version "5.30.7"
406 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.7.tgz#c093abae75b4fd822bfbad9fc337f38a7a14909a"
407 | integrity sha512-KrRXf8nnjvcpxDFOKej4xkD7657+PClJs5cJVSG7NNoCNnjEdc46juNAQt7AyuWctuCgs6mVRc1xGctEqrjxWw==
408 | dependencies:
409 | "@typescript-eslint/types" "5.30.7"
410 | eslint-visitor-keys "^3.3.0"
411 |
412 | acorn-jsx@^5.0.0, acorn-jsx@^5.3.2:
413 | version "5.3.2"
414 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
415 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
416 |
417 | acorn-node@^1.8.2:
418 | version "1.8.2"
419 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8"
420 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==
421 | dependencies:
422 | acorn "^7.0.0"
423 | acorn-walk "^7.0.0"
424 | xtend "^4.0.2"
425 |
426 | acorn-walk@^7.0.0:
427 | version "7.2.0"
428 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc"
429 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==
430 |
431 | acorn@^7.0.0:
432 | version "7.4.1"
433 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa"
434 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==
435 |
436 | acorn@^8.0.0, acorn@^8.7.1:
437 | version "8.7.1"
438 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30"
439 | integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==
440 |
441 | ajv@^6.10.0, ajv@^6.12.4:
442 | version "6.12.6"
443 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
444 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
445 | dependencies:
446 | fast-deep-equal "^3.1.1"
447 | fast-json-stable-stringify "^2.0.0"
448 | json-schema-traverse "^0.4.1"
449 | uri-js "^4.2.2"
450 |
451 | ansi-regex@^5.0.1:
452 | version "5.0.1"
453 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
454 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
455 |
456 | ansi-styles@^4.1.0:
457 | version "4.3.0"
458 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
459 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
460 | dependencies:
461 | color-convert "^2.0.1"
462 |
463 | anymatch@~3.1.2:
464 | version "3.1.2"
465 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716"
466 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==
467 | dependencies:
468 | normalize-path "^3.0.0"
469 | picomatch "^2.0.4"
470 |
471 | arg@^5.0.2:
472 | version "5.0.2"
473 | resolved "https://registry.yarnpkg.com/arg/-/arg-5.0.2.tgz#c81433cc427c92c4dcf4865142dbca6f15acd59c"
474 | integrity sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==
475 |
476 | argparse@^2.0.1:
477 | version "2.0.1"
478 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
479 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
480 |
481 | array-includes@^3.1.5:
482 | version "3.1.5"
483 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb"
484 | integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==
485 | dependencies:
486 | call-bind "^1.0.2"
487 | define-properties "^1.1.4"
488 | es-abstract "^1.19.5"
489 | get-intrinsic "^1.1.1"
490 | is-string "^1.0.7"
491 |
492 | array-union@^2.1.0:
493 | version "2.1.0"
494 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
495 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
496 |
497 | array.prototype.flatmap@^1.3.0:
498 | version "1.3.0"
499 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f"
500 | integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==
501 | dependencies:
502 | call-bind "^1.0.2"
503 | define-properties "^1.1.3"
504 | es-abstract "^1.19.2"
505 | es-shim-unscopables "^1.0.0"
506 |
507 | astring@^1.6.0:
508 | version "1.8.3"
509 | resolved "https://registry.yarnpkg.com/astring/-/astring-1.8.3.tgz#1a0ae738c7cc558f8e5ddc8e3120636f5cebcb85"
510 | integrity sha512-sRpyiNrx2dEYIMmUXprS8nlpRg2Drs8m9ElX9vVEXaCB4XEAJhKfs7IcX0IwShjuOAjLR6wzIrgoptz1n19i1A==
511 |
512 | autoprefixer@^10.4.5:
513 | version "10.4.7"
514 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-10.4.7.tgz#1db8d195f41a52ca5069b7593be167618edbbedf"
515 | integrity sha512-ypHju4Y2Oav95SipEcCcI5J7CGPuvz8oat7sUtYj3ClK44bldfvtvcxK6IEK++7rqB7YchDGzweZIBG+SD0ZAA==
516 | dependencies:
517 | browserslist "^4.20.3"
518 | caniuse-lite "^1.0.30001335"
519 | fraction.js "^4.2.0"
520 | normalize-range "^0.1.2"
521 | picocolors "^1.0.0"
522 | postcss-value-parser "^4.2.0"
523 |
524 | bail@^2.0.0:
525 | version "2.0.2"
526 | resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d"
527 | integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==
528 |
529 | balanced-match@^1.0.0:
530 | version "1.0.2"
531 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
532 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
533 |
534 | binary-extensions@^2.0.0:
535 | version "2.2.0"
536 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d"
537 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==
538 |
539 | brace-expansion@^1.1.7:
540 | version "1.1.11"
541 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
542 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
543 | dependencies:
544 | balanced-match "^1.0.0"
545 | concat-map "0.0.1"
546 |
547 | braces@^3.0.2, braces@~3.0.2:
548 | version "3.0.2"
549 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
550 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
551 | dependencies:
552 | fill-range "^7.0.1"
553 |
554 | browserslist@^4.20.3:
555 | version "4.21.2"
556 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.21.2.tgz#59a400757465535954946a400b841ed37e2b4ecf"
557 | integrity sha512-MonuOgAtUB46uP5CezYbRaYKBNt2LxP0yX+Pmj4LkcDFGkn9Cbpi83d9sCjwQDErXsIJSzY5oKGDbgOlF/LPAA==
558 | dependencies:
559 | caniuse-lite "^1.0.30001366"
560 | electron-to-chromium "^1.4.188"
561 | node-releases "^2.0.6"
562 | update-browserslist-db "^1.0.4"
563 |
564 | call-bind@^1.0.0, call-bind@^1.0.2:
565 | version "1.0.2"
566 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
567 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
568 | dependencies:
569 | function-bind "^1.1.1"
570 | get-intrinsic "^1.0.2"
571 |
572 | callsites@^3.0.0:
573 | version "3.1.0"
574 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
575 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
576 |
577 | camelcase-css@^2.0.1:
578 | version "2.0.1"
579 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5"
580 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==
581 |
582 | caniuse-lite@^1.0.30001283, caniuse-lite@^1.0.30001335, caniuse-lite@^1.0.30001366:
583 | version "1.0.30001367"
584 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001367.tgz#2b97fe472e8fa29c78c5970615d7cd2ee414108a"
585 | integrity sha512-XDgbeOHfifWV3GEES2B8rtsrADx4Jf+juKX2SICJcaUhjYBO3bR96kvEIHa15VU6ohtOhBZuPGGYGbXMRn0NCw==
586 |
587 | ccount@^2.0.0:
588 | version "2.0.1"
589 | resolved "https://registry.yarnpkg.com/ccount/-/ccount-2.0.1.tgz#17a3bf82302e0870d6da43a01311a8bc02a3ecf5"
590 | integrity sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==
591 |
592 | chalk@^4.0.0:
593 | version "4.1.2"
594 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
595 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
596 | dependencies:
597 | ansi-styles "^4.1.0"
598 | supports-color "^7.1.0"
599 |
600 | character-entities-html4@^2.0.0:
601 | version "2.1.0"
602 | resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz#1f1adb940c971a4b22ba39ddca6b618dc6e56b2b"
603 | integrity sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==
604 |
605 | character-entities-legacy@^3.0.0:
606 | version "3.0.0"
607 | resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz#76bc83a90738901d7bc223a9e93759fdd560125b"
608 | integrity sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==
609 |
610 | character-entities@^2.0.0:
611 | version "2.0.2"
612 | resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.2.tgz#2d09c2e72cd9523076ccb21157dff66ad43fcc22"
613 | integrity sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==
614 |
615 | character-reference-invalid@^2.0.0:
616 | version "2.0.1"
617 | resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz#85c66b041e43b47210faf401278abf808ac45cb9"
618 | integrity sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==
619 |
620 | chokidar@^3.5.3:
621 | version "3.5.3"
622 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd"
623 | integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==
624 | dependencies:
625 | anymatch "~3.1.2"
626 | braces "~3.0.2"
627 | glob-parent "~5.1.2"
628 | is-binary-path "~2.1.0"
629 | is-glob "~4.0.1"
630 | normalize-path "~3.0.0"
631 | readdirp "~3.6.0"
632 | optionalDependencies:
633 | fsevents "~2.3.2"
634 |
635 | color-convert@^2.0.1:
636 | version "2.0.1"
637 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
638 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
639 | dependencies:
640 | color-name "~1.1.4"
641 |
642 | color-name@^1.1.4, color-name@~1.1.4:
643 | version "1.1.4"
644 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
645 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
646 |
647 | comma-separated-tokens@^2.0.0:
648 | version "2.0.2"
649 | resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz#d4c25abb679b7751c880be623c1179780fe1dd98"
650 | integrity sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==
651 |
652 | concat-map@0.0.1:
653 | version "0.0.1"
654 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
655 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
656 |
657 | copy-anything@^3.0.2:
658 | version "3.0.2"
659 | resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-3.0.2.tgz#7189171ff5e1893b2287e8bf574b8cd448ed50b1"
660 | integrity sha512-CzATjGXzUQ0EvuvgOCI6A4BGOo2bcVx8B+eC2nF862iv9fopnPQwlrbACakNCHRIJbCSBj+J/9JeDf60k64MkA==
661 | dependencies:
662 | is-what "^4.1.6"
663 |
664 | cross-spawn@^7.0.2:
665 | version "7.0.3"
666 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
667 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
668 | dependencies:
669 | path-key "^3.1.0"
670 | shebang-command "^2.0.0"
671 | which "^2.0.1"
672 |
673 | cssesc@^3.0.0:
674 | version "3.0.0"
675 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
676 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
677 |
678 | csstype@^3.0.2:
679 | version "3.1.0"
680 | resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.0.tgz#4ddcac3718d787cf9df0d1b7d15033925c8f29f2"
681 | integrity sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==
682 |
683 | debug@^4.0.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4:
684 | version "4.3.4"
685 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
686 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
687 | dependencies:
688 | ms "2.1.2"
689 |
690 | decode-named-character-reference@^1.0.0:
691 | version "1.0.2"
692 | resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e"
693 | integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==
694 | dependencies:
695 | character-entities "^2.0.0"
696 |
697 | deep-is@^0.1.3:
698 | version "0.1.4"
699 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
700 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
701 |
702 | define-properties@^1.1.3, define-properties@^1.1.4:
703 | version "1.1.4"
704 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
705 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
706 | dependencies:
707 | has-property-descriptors "^1.0.0"
708 | object-keys "^1.1.1"
709 |
710 | defined@^1.0.0:
711 | version "1.0.0"
712 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
713 | integrity sha512-Y2caI5+ZwS5c3RiNDJ6u53VhQHv+hHKwhkI1iHvceKUHw9Df6EK2zRLfjejRgMuCuxK7PfSWIMwWecceVvThjQ==
714 |
715 | dequal@^2.0.0:
716 | version "2.0.3"
717 | resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
718 | integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==
719 |
720 | detective@^5.2.1:
721 | version "5.2.1"
722 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.1.tgz#6af01eeda11015acb0e73f933242b70f24f91034"
723 | integrity sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==
724 | dependencies:
725 | acorn-node "^1.8.2"
726 | defined "^1.0.0"
727 | minimist "^1.2.6"
728 |
729 | didyoumean@^1.2.2:
730 | version "1.2.2"
731 | resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.2.tgz#989346ffe9e839b4555ecf5666edea0d3e8ad037"
732 | integrity sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==
733 |
734 | diff@^5.0.0:
735 | version "5.1.0"
736 | resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40"
737 | integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==
738 |
739 | dir-glob@^3.0.1:
740 | version "3.0.1"
741 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
742 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
743 | dependencies:
744 | path-type "^4.0.0"
745 |
746 | dlv@^1.1.3:
747 | version "1.1.3"
748 | resolved "https://registry.yarnpkg.com/dlv/-/dlv-1.1.3.tgz#5c198a8a11453596e751494d49874bc7732f2e79"
749 | integrity sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==
750 |
751 | doctrine@^2.1.0:
752 | version "2.1.0"
753 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
754 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
755 | dependencies:
756 | esutils "^2.0.2"
757 |
758 | doctrine@^3.0.0:
759 | version "3.0.0"
760 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
761 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
762 | dependencies:
763 | esutils "^2.0.2"
764 |
765 | electron-to-chromium@^1.4.188:
766 | version "1.4.195"
767 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.195.tgz#139b2d95a42a3f17df217589723a1deac71d1473"
768 | integrity sha512-vefjEh0sk871xNmR5whJf9TEngX+KTKS3hOHpjoMpauKkwlGwtMz1H8IaIjAT/GNnX0TbGwAdmVoXCAzXf+PPg==
769 |
770 | es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5:
771 | version "1.20.1"
772 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814"
773 | integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==
774 | dependencies:
775 | call-bind "^1.0.2"
776 | es-to-primitive "^1.2.1"
777 | function-bind "^1.1.1"
778 | function.prototype.name "^1.1.5"
779 | get-intrinsic "^1.1.1"
780 | get-symbol-description "^1.0.0"
781 | has "^1.0.3"
782 | has-property-descriptors "^1.0.0"
783 | has-symbols "^1.0.3"
784 | internal-slot "^1.0.3"
785 | is-callable "^1.2.4"
786 | is-negative-zero "^2.0.2"
787 | is-regex "^1.1.4"
788 | is-shared-array-buffer "^1.0.2"
789 | is-string "^1.0.7"
790 | is-weakref "^1.0.2"
791 | object-inspect "^1.12.0"
792 | object-keys "^1.1.1"
793 | object.assign "^4.1.2"
794 | regexp.prototype.flags "^1.4.3"
795 | string.prototype.trimend "^1.0.5"
796 | string.prototype.trimstart "^1.0.5"
797 | unbox-primitive "^1.0.2"
798 |
799 | es-shim-unscopables@^1.0.0:
800 | version "1.0.0"
801 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241"
802 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==
803 | dependencies:
804 | has "^1.0.3"
805 |
806 | es-to-primitive@^1.2.1:
807 | version "1.2.1"
808 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
809 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
810 | dependencies:
811 | is-callable "^1.1.4"
812 | is-date-object "^1.0.1"
813 | is-symbol "^1.0.2"
814 |
815 | escalade@^3.1.1:
816 | version "3.1.1"
817 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
818 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==
819 |
820 | escape-string-regexp@^4.0.0:
821 | version "4.0.0"
822 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
823 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
824 |
825 | eslint-plugin-react@^7.29.4:
826 | version "7.30.1"
827 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.30.1.tgz#2be4ab23ce09b5949c6631413ba64b2810fd3e22"
828 | integrity sha512-NbEvI9jtqO46yJA3wcRF9Mo0lF9T/jhdHqhCHXiXtD+Zcb98812wvokjWpU7Q4QH5edo6dmqrukxVvWWXHlsUg==
829 | dependencies:
830 | array-includes "^3.1.5"
831 | array.prototype.flatmap "^1.3.0"
832 | doctrine "^2.1.0"
833 | estraverse "^5.3.0"
834 | jsx-ast-utils "^2.4.1 || ^3.0.0"
835 | minimatch "^3.1.2"
836 | object.entries "^1.1.5"
837 | object.fromentries "^2.0.5"
838 | object.hasown "^1.1.1"
839 | object.values "^1.1.5"
840 | prop-types "^15.8.1"
841 | resolve "^2.0.0-next.3"
842 | semver "^6.3.0"
843 | string.prototype.matchall "^4.0.7"
844 |
845 | eslint-scope@^5.1.1:
846 | version "5.1.1"
847 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c"
848 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==
849 | dependencies:
850 | esrecurse "^4.3.0"
851 | estraverse "^4.1.1"
852 |
853 | eslint-scope@^7.1.1:
854 | version "7.1.1"
855 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
856 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
857 | dependencies:
858 | esrecurse "^4.3.0"
859 | estraverse "^5.2.0"
860 |
861 | eslint-utils@^3.0.0:
862 | version "3.0.0"
863 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
864 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
865 | dependencies:
866 | eslint-visitor-keys "^2.0.0"
867 |
868 | eslint-visitor-keys@^2.0.0:
869 | version "2.1.0"
870 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
871 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
872 |
873 | eslint-visitor-keys@^3.3.0:
874 | version "3.3.0"
875 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
876 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
877 |
878 | eslint@^8.14.0:
879 | version "8.20.0"
880 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.20.0.tgz#048ac56aa18529967da8354a478be4ec0a2bc81b"
881 | integrity sha512-d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA==
882 | dependencies:
883 | "@eslint/eslintrc" "^1.3.0"
884 | "@humanwhocodes/config-array" "^0.9.2"
885 | ajv "^6.10.0"
886 | chalk "^4.0.0"
887 | cross-spawn "^7.0.2"
888 | debug "^4.3.2"
889 | doctrine "^3.0.0"
890 | escape-string-regexp "^4.0.0"
891 | eslint-scope "^7.1.1"
892 | eslint-utils "^3.0.0"
893 | eslint-visitor-keys "^3.3.0"
894 | espree "^9.3.2"
895 | esquery "^1.4.0"
896 | esutils "^2.0.2"
897 | fast-deep-equal "^3.1.3"
898 | file-entry-cache "^6.0.1"
899 | functional-red-black-tree "^1.0.1"
900 | glob-parent "^6.0.1"
901 | globals "^13.15.0"
902 | ignore "^5.2.0"
903 | import-fresh "^3.0.0"
904 | imurmurhash "^0.1.4"
905 | is-glob "^4.0.0"
906 | js-yaml "^4.1.0"
907 | json-stable-stringify-without-jsonify "^1.0.1"
908 | levn "^0.4.1"
909 | lodash.merge "^4.6.2"
910 | minimatch "^3.1.2"
911 | natural-compare "^1.4.0"
912 | optionator "^0.9.1"
913 | regexpp "^3.2.0"
914 | strip-ansi "^6.0.1"
915 | strip-json-comments "^3.1.0"
916 | text-table "^0.2.0"
917 | v8-compile-cache "^2.0.3"
918 |
919 | espree@^9.3.2:
920 | version "9.3.2"
921 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz#f58f77bd334731182801ced3380a8cc859091596"
922 | integrity sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==
923 | dependencies:
924 | acorn "^8.7.1"
925 | acorn-jsx "^5.3.2"
926 | eslint-visitor-keys "^3.3.0"
927 |
928 | esquery@^1.4.0:
929 | version "1.4.0"
930 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
931 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
932 | dependencies:
933 | estraverse "^5.1.0"
934 |
935 | esrecurse@^4.3.0:
936 | version "4.3.0"
937 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
938 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
939 | dependencies:
940 | estraverse "^5.2.0"
941 |
942 | estraverse@^4.1.1:
943 | version "4.3.0"
944 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
945 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
946 |
947 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
948 | version "5.3.0"
949 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
950 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
951 |
952 | estree-util-attach-comments@^2.0.0:
953 | version "2.0.1"
954 | resolved "https://registry.yarnpkg.com/estree-util-attach-comments/-/estree-util-attach-comments-2.0.1.tgz#57dd0ae170ce2a6d9170ad69e6a45c87bcb52d81"
955 | integrity sha512-1wTBNndwMIsnvnuxjFIaYQz0M7PsCvcgP0YD7/dU8xWh1FuHk+O6pYpT4sLa5THY/CywJvdIdgw4uhozujga/g==
956 | dependencies:
957 | "@types/estree" "^0.0.51"
958 |
959 | estree-util-build-jsx@^2.0.0:
960 | version "2.1.0"
961 | resolved "https://registry.yarnpkg.com/estree-util-build-jsx/-/estree-util-build-jsx-2.1.0.tgz#629aa81fbb1b16ed628c7a9334d37bc8a2a3726f"
962 | integrity sha512-gsBGfsY6LOJUIDwmMkTOcgCX+3r/LUjRBccgHMSW55PHjhZsV13RmPl/iwpAvW8KcQqoN9P0FEFWTSS2Zc5bGA==
963 | dependencies:
964 | "@types/estree-jsx" "^0.0.1"
965 | estree-util-is-identifier-name "^2.0.0"
966 | estree-walker "^3.0.0"
967 |
968 | estree-util-is-identifier-name@^2.0.0:
969 | version "2.0.1"
970 | resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.0.1.tgz#cf07867f42705892718d9d89eb2d85eaa8f0fcb5"
971 | integrity sha512-rxZj1GkQhY4x1j/CSnybK9cGuMFQYFPLq0iNyopqf14aOVLFtMv7Esika+ObJWPWiOHuMOAHz3YkWoLYYRnzWQ==
972 |
973 | estree-util-visit@^1.0.0:
974 | version "1.1.0"
975 | resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-1.1.0.tgz#c0ea7942c40ac7889a77b57a11e92f987744bc6f"
976 | integrity sha512-3lXJ4Us9j8TUif9cWcQy81t9p5OLasnDuuhrFiqb+XstmKC1d1LmrQWYsY49/9URcfHE64mPypDBaNK9NwWDPQ==
977 | dependencies:
978 | "@types/estree-jsx" "^0.0.1"
979 | "@types/unist" "^2.0.0"
980 |
981 | estree-walker@^3.0.0:
982 | version "3.0.1"
983 | resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-3.0.1.tgz#c2a9fb4a30232f5039b7c030b37ead691932debd"
984 | integrity sha512-woY0RUD87WzMBUiZLx8NsYr23N5BKsOMZHhu2hoNRVh6NXGfoiT1KOL8G3UHlJAnEDGmfa5ubNA/AacfG+Kb0g==
985 |
986 | esutils@^2.0.2:
987 | version "2.0.3"
988 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
989 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
990 |
991 | extend@^3.0.0:
992 | version "3.0.2"
993 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
994 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
995 |
996 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
997 | version "3.1.3"
998 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
999 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
1000 |
1001 | fast-glob@^3.2.11, fast-glob@^3.2.9:
1002 | version "3.2.11"
1003 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
1004 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
1005 | dependencies:
1006 | "@nodelib/fs.stat" "^2.0.2"
1007 | "@nodelib/fs.walk" "^1.2.3"
1008 | glob-parent "^5.1.2"
1009 | merge2 "^1.3.0"
1010 | micromatch "^4.0.4"
1011 |
1012 | fast-json-stable-stringify@^2.0.0:
1013 | version "2.1.0"
1014 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
1015 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
1016 |
1017 | fast-levenshtein@^2.0.6:
1018 | version "2.0.6"
1019 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
1020 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
1021 |
1022 | fastq@^1.6.0:
1023 | version "1.13.0"
1024 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
1025 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
1026 | dependencies:
1027 | reusify "^1.0.4"
1028 |
1029 | file-entry-cache@^6.0.1:
1030 | version "6.0.1"
1031 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
1032 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
1033 | dependencies:
1034 | flat-cache "^3.0.4"
1035 |
1036 | fill-range@^7.0.1:
1037 | version "7.0.1"
1038 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
1039 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1040 | dependencies:
1041 | to-regex-range "^5.0.1"
1042 |
1043 | flat-cache@^3.0.4:
1044 | version "3.0.4"
1045 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
1046 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
1047 | dependencies:
1048 | flatted "^3.1.0"
1049 | rimraf "^3.0.2"
1050 |
1051 | flatted@^3.1.0:
1052 | version "3.2.6"
1053 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.6.tgz#022e9218c637f9f3fc9c35ab9c9193f05add60b2"
1054 | integrity sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==
1055 |
1056 | fraction.js@^4.2.0:
1057 | version "4.2.0"
1058 | resolved "https://registry.yarnpkg.com/fraction.js/-/fraction.js-4.2.0.tgz#448e5109a313a3527f5a3ab2119ec4cf0e0e2950"
1059 | integrity sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==
1060 |
1061 | framer-motion@^6.3.2:
1062 | version "6.5.1"
1063 | resolved "https://registry.yarnpkg.com/framer-motion/-/framer-motion-6.5.1.tgz#802448a16a6eb764124bf36d8cbdfa6dd6b931a7"
1064 | integrity sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==
1065 | dependencies:
1066 | "@motionone/dom" "10.12.0"
1067 | framesync "6.0.1"
1068 | hey-listen "^1.0.8"
1069 | popmotion "11.0.3"
1070 | style-value-types "5.0.0"
1071 | tslib "^2.1.0"
1072 | optionalDependencies:
1073 | "@emotion/is-prop-valid" "^0.8.2"
1074 |
1075 | framesync@6.0.1:
1076 | version "6.0.1"
1077 | resolved "https://registry.yarnpkg.com/framesync/-/framesync-6.0.1.tgz#5e32fc01f1c42b39c654c35b16440e07a25d6f20"
1078 | integrity sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==
1079 | dependencies:
1080 | tslib "^2.1.0"
1081 |
1082 | fs.realpath@^1.0.0:
1083 | version "1.0.0"
1084 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
1085 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
1086 |
1087 | fsevents@~2.3.2:
1088 | version "2.3.2"
1089 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
1090 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
1091 |
1092 | function-bind@^1.1.1:
1093 | version "1.1.1"
1094 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
1095 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1096 |
1097 | function.prototype.name@^1.1.5:
1098 | version "1.1.5"
1099 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
1100 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
1101 | dependencies:
1102 | call-bind "^1.0.2"
1103 | define-properties "^1.1.3"
1104 | es-abstract "^1.19.0"
1105 | functions-have-names "^1.2.2"
1106 |
1107 | functional-red-black-tree@^1.0.1:
1108 | version "1.0.1"
1109 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
1110 | integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
1111 |
1112 | functions-have-names@^1.2.2:
1113 | version "1.2.3"
1114 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
1115 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
1116 |
1117 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
1118 | version "1.1.2"
1119 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.2.tgz#336975123e05ad0b7ba41f152ee4aadbea6cf598"
1120 | integrity sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==
1121 | dependencies:
1122 | function-bind "^1.1.1"
1123 | has "^1.0.3"
1124 | has-symbols "^1.0.3"
1125 |
1126 | get-symbol-description@^1.0.0:
1127 | version "1.0.0"
1128 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
1129 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
1130 | dependencies:
1131 | call-bind "^1.0.2"
1132 | get-intrinsic "^1.1.1"
1133 |
1134 | glob-parent@^5.1.2, glob-parent@~5.1.2:
1135 | version "5.1.2"
1136 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
1137 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1138 | dependencies:
1139 | is-glob "^4.0.1"
1140 |
1141 | glob-parent@^6.0.1, glob-parent@^6.0.2:
1142 | version "6.0.2"
1143 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
1144 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
1145 | dependencies:
1146 | is-glob "^4.0.3"
1147 |
1148 | glob@^7.1.3:
1149 | version "7.2.3"
1150 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
1151 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
1152 | dependencies:
1153 | fs.realpath "^1.0.0"
1154 | inflight "^1.0.4"
1155 | inherits "2"
1156 | minimatch "^3.1.1"
1157 | once "^1.3.0"
1158 | path-is-absolute "^1.0.0"
1159 |
1160 | globals@^13.15.0:
1161 | version "13.16.0"
1162 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.16.0.tgz#9be4aca28f311aaeb974ea54978ebbb5e35ce46a"
1163 | integrity sha512-A1lrQfpNF+McdPOnnFqY3kSN0AFTy485bTi1bkLk4mVPODIUEcSfhHgRqA+QdXPksrSTTztYXx37NFV+GpGk3Q==
1164 | dependencies:
1165 | type-fest "^0.20.2"
1166 |
1167 | globby@^11.1.0:
1168 | version "11.1.0"
1169 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
1170 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
1171 | dependencies:
1172 | array-union "^2.1.0"
1173 | dir-glob "^3.0.1"
1174 | fast-glob "^3.2.9"
1175 | ignore "^5.2.0"
1176 | merge2 "^1.4.1"
1177 | slash "^3.0.0"
1178 |
1179 | has-bigints@^1.0.1, has-bigints@^1.0.2:
1180 | version "1.0.2"
1181 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
1182 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
1183 |
1184 | has-flag@^4.0.0:
1185 | version "4.0.0"
1186 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
1187 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1188 |
1189 | has-property-descriptors@^1.0.0:
1190 | version "1.0.0"
1191 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
1192 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
1193 | dependencies:
1194 | get-intrinsic "^1.1.1"
1195 |
1196 | has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3:
1197 | version "1.0.3"
1198 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
1199 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
1200 |
1201 | has-tostringtag@^1.0.0:
1202 | version "1.0.0"
1203 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
1204 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
1205 | dependencies:
1206 | has-symbols "^1.0.2"
1207 |
1208 | has@^1.0.3:
1209 | version "1.0.3"
1210 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1211 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1212 | dependencies:
1213 | function-bind "^1.1.1"
1214 |
1215 | hast-util-to-estree@^2.0.0:
1216 | version "2.0.2"
1217 | resolved "https://registry.yarnpkg.com/hast-util-to-estree/-/hast-util-to-estree-2.0.2.tgz#79c5bf588915610b3f0d47ca83a74dc0269c7dc2"
1218 | integrity sha512-UQrZVeBj6A9od0lpFvqHKNSH9zvDrNoyWKbveu1a2oSCXEDUI+3bnd6BoiQLPnLrcXXn/jzJ6y9hmJTTlvf8lQ==
1219 | dependencies:
1220 | "@types/estree-jsx" "^0.0.1"
1221 | "@types/hast" "^2.0.0"
1222 | "@types/unist" "^2.0.0"
1223 | comma-separated-tokens "^2.0.0"
1224 | estree-util-attach-comments "^2.0.0"
1225 | estree-util-is-identifier-name "^2.0.0"
1226 | hast-util-whitespace "^2.0.0"
1227 | mdast-util-mdx-expression "^1.0.0"
1228 | mdast-util-mdxjs-esm "^1.0.0"
1229 | property-information "^6.0.0"
1230 | space-separated-tokens "^2.0.0"
1231 | style-to-object "^0.3.0"
1232 | unist-util-position "^4.0.0"
1233 | zwitch "^2.0.0"
1234 |
1235 | hast-util-whitespace@^2.0.0:
1236 | version "2.0.0"
1237 | resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz#4fc1086467cc1ef5ba20673cb6b03cec3a970f1c"
1238 | integrity sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==
1239 |
1240 | hey-listen@^1.0.8:
1241 | version "1.0.8"
1242 | resolved "https://registry.yarnpkg.com/hey-listen/-/hey-listen-1.0.8.tgz#8e59561ff724908de1aa924ed6ecc84a56a9aa68"
1243 | integrity sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==
1244 |
1245 | ignore@^5.2.0:
1246 | version "5.2.0"
1247 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
1248 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
1249 |
1250 | import-fresh@^3.0.0, import-fresh@^3.2.1:
1251 | version "3.3.0"
1252 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
1253 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
1254 | dependencies:
1255 | parent-module "^1.0.0"
1256 | resolve-from "^4.0.0"
1257 |
1258 | imurmurhash@^0.1.4:
1259 | version "0.1.4"
1260 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1261 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
1262 |
1263 | inflight@^1.0.4:
1264 | version "1.0.6"
1265 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1266 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
1267 | dependencies:
1268 | once "^1.3.0"
1269 | wrappy "1"
1270 |
1271 | inherits@2:
1272 | version "2.0.4"
1273 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1274 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1275 |
1276 | inline-style-parser@0.1.1:
1277 | version "0.1.1"
1278 | resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1"
1279 | integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==
1280 |
1281 | internal-slot@^1.0.3:
1282 | version "1.0.3"
1283 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
1284 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
1285 | dependencies:
1286 | get-intrinsic "^1.1.0"
1287 | has "^1.0.3"
1288 | side-channel "^1.0.4"
1289 |
1290 | is-alphabetical@^2.0.0:
1291 | version "2.0.1"
1292 | resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-2.0.1.tgz#01072053ea7c1036df3c7d19a6daaec7f19e789b"
1293 | integrity sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==
1294 |
1295 | is-alphanumerical@^2.0.0:
1296 | version "2.0.1"
1297 | resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz#7c03fbe96e3e931113e57f964b0a368cc2dfd875"
1298 | integrity sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==
1299 | dependencies:
1300 | is-alphabetical "^2.0.0"
1301 | is-decimal "^2.0.0"
1302 |
1303 | is-bigint@^1.0.1:
1304 | version "1.0.4"
1305 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
1306 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
1307 | dependencies:
1308 | has-bigints "^1.0.1"
1309 |
1310 | is-binary-path@~2.1.0:
1311 | version "2.1.0"
1312 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09"
1313 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==
1314 | dependencies:
1315 | binary-extensions "^2.0.0"
1316 |
1317 | is-boolean-object@^1.1.0:
1318 | version "1.1.2"
1319 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
1320 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
1321 | dependencies:
1322 | call-bind "^1.0.2"
1323 | has-tostringtag "^1.0.0"
1324 |
1325 | is-buffer@^2.0.0:
1326 | version "2.0.5"
1327 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
1328 | integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
1329 |
1330 | is-callable@^1.1.4, is-callable@^1.2.4:
1331 | version "1.2.4"
1332 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
1333 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
1334 |
1335 | is-core-module@^2.9.0:
1336 | version "2.9.0"
1337 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69"
1338 | integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==
1339 | dependencies:
1340 | has "^1.0.3"
1341 |
1342 | is-date-object@^1.0.1:
1343 | version "1.0.5"
1344 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
1345 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
1346 | dependencies:
1347 | has-tostringtag "^1.0.0"
1348 |
1349 | is-decimal@^2.0.0:
1350 | version "2.0.1"
1351 | resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-2.0.1.tgz#9469d2dc190d0214fd87d78b78caecc0cc14eef7"
1352 | integrity sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==
1353 |
1354 | is-extglob@^2.1.1:
1355 | version "2.1.1"
1356 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1357 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
1358 |
1359 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1:
1360 | version "4.0.3"
1361 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
1362 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
1363 | dependencies:
1364 | is-extglob "^2.1.1"
1365 |
1366 | is-hexadecimal@^2.0.0:
1367 | version "2.0.1"
1368 | resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz#86b5bf668fca307498d319dfc03289d781a90027"
1369 | integrity sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==
1370 |
1371 | is-negative-zero@^2.0.2:
1372 | version "2.0.2"
1373 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
1374 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
1375 |
1376 | is-number-object@^1.0.4:
1377 | version "1.0.7"
1378 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
1379 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
1380 | dependencies:
1381 | has-tostringtag "^1.0.0"
1382 |
1383 | is-number@^7.0.0:
1384 | version "7.0.0"
1385 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1386 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1387 |
1388 | is-plain-obj@^4.0.0:
1389 | version "4.1.0"
1390 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0"
1391 | integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==
1392 |
1393 | is-reference@^3.0.0:
1394 | version "3.0.0"
1395 | resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-3.0.0.tgz#b1380c03d96ddf7089709781e3208fceb0c92cd6"
1396 | integrity sha512-Eo1W3wUoHWoCoVM4GVl/a+K0IgiqE5aIo4kJABFyMum1ZORlPkC+UC357sSQUL5w5QCE5kCC9upl75b7+7CY/Q==
1397 | dependencies:
1398 | "@types/estree" "*"
1399 |
1400 | is-regex@^1.1.4:
1401 | version "1.1.4"
1402 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
1403 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
1404 | dependencies:
1405 | call-bind "^1.0.2"
1406 | has-tostringtag "^1.0.0"
1407 |
1408 | is-shared-array-buffer@^1.0.2:
1409 | version "1.0.2"
1410 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
1411 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
1412 | dependencies:
1413 | call-bind "^1.0.2"
1414 |
1415 | is-string@^1.0.5, is-string@^1.0.7:
1416 | version "1.0.7"
1417 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
1418 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
1419 | dependencies:
1420 | has-tostringtag "^1.0.0"
1421 |
1422 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1423 | version "1.0.4"
1424 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
1425 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1426 | dependencies:
1427 | has-symbols "^1.0.2"
1428 |
1429 | is-weakref@^1.0.2:
1430 | version "1.0.2"
1431 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
1432 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
1433 | dependencies:
1434 | call-bind "^1.0.2"
1435 |
1436 | is-what@^4.1.6:
1437 | version "4.1.7"
1438 | resolved "https://registry.yarnpkg.com/is-what/-/is-what-4.1.7.tgz#c41dc1d2d2d6a9285c624c2505f61849c8b1f9cc"
1439 | integrity sha512-DBVOQNiPKnGMxRMLIYSwERAS5MVY1B7xYiGnpgctsOFvVDz9f9PFXXxMcTOHuoqYp4NK9qFYQaIC1NRRxLMpBQ==
1440 |
1441 | isexe@^2.0.0:
1442 | version "2.0.0"
1443 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1444 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
1445 |
1446 | "js-tokens@^3.0.0 || ^4.0.0":
1447 | version "4.0.0"
1448 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1449 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1450 |
1451 | js-yaml@^4.1.0:
1452 | version "4.1.0"
1453 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
1454 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
1455 | dependencies:
1456 | argparse "^2.0.1"
1457 |
1458 | json-schema-traverse@^0.4.1:
1459 | version "0.4.1"
1460 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1461 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1462 |
1463 | json-stable-stringify-without-jsonify@^1.0.1:
1464 | version "1.0.1"
1465 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1466 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
1467 |
1468 | "jsx-ast-utils@^2.4.1 || ^3.0.0":
1469 | version "3.3.2"
1470 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.2.tgz#afe5efe4332cd3515c065072bd4d6b0aa22152bd"
1471 | integrity sha512-4ZCADZHRkno244xlNnn4AOG6sRQ7iBZ5BbgZ4vW4y5IZw7cVUD1PPeblm1xx/nfmMxPdt/LHsXZW8z/j58+l9Q==
1472 | dependencies:
1473 | array-includes "^3.1.5"
1474 | object.assign "^4.1.2"
1475 |
1476 | kleur@^4.0.3:
1477 | version "4.1.5"
1478 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.5.tgz#95106101795f7050c6c650f350c683febddb1780"
1479 | integrity sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==
1480 |
1481 | levn@^0.4.1:
1482 | version "0.4.1"
1483 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
1484 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1485 | dependencies:
1486 | prelude-ls "^1.2.1"
1487 | type-check "~0.4.0"
1488 |
1489 | lilconfig@^2.0.5:
1490 | version "2.0.6"
1491 | resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.0.6.tgz#32a384558bd58af3d4c6e077dd1ad1d397bc69d4"
1492 | integrity sha512-9JROoBW7pobfsx+Sq2JsASvCo6Pfo6WWoUW79HuB1BCoBXD4PLWJPqDF6fNj67pqBYTbAHkE57M1kS/+L1neOg==
1493 |
1494 | lodash.merge@^4.6.2:
1495 | version "4.6.2"
1496 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
1497 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1498 |
1499 | lodash@^4.17.21:
1500 | version "4.17.21"
1501 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
1502 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
1503 |
1504 | longest-streak@^3.0.0:
1505 | version "3.0.1"
1506 | resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.0.1.tgz#c97315b7afa0e7d9525db9a5a2953651432bdc5d"
1507 | integrity sha512-cHlYSUpL2s7Fb3394mYxwTYj8niTaNHUCLr0qdiCXQfSjfuA7CKofpX2uSwEfFDQ0EB7JcnMnm+GjbqqoinYYg==
1508 |
1509 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1510 | version "1.4.0"
1511 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1512 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1513 | dependencies:
1514 | js-tokens "^3.0.0 || ^4.0.0"
1515 |
1516 | lru-cache@^6.0.0:
1517 | version "6.0.0"
1518 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1519 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1520 | dependencies:
1521 | yallist "^4.0.0"
1522 |
1523 | markdown-extensions@^1.0.0:
1524 | version "1.1.1"
1525 | resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3"
1526 | integrity sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==
1527 |
1528 | mdast-util-definitions@^5.0.0:
1529 | version "5.1.1"
1530 | resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-5.1.1.tgz#2c1d684b28e53f84938bb06317944bee8efa79db"
1531 | integrity sha512-rQ+Gv7mHttxHOBx2dkF4HWTg+EE+UR78ptQWDylzPKaQuVGdG4HIoY3SrS/pCp80nZ04greFvXbVFHT+uf0JVQ==
1532 | dependencies:
1533 | "@types/mdast" "^3.0.0"
1534 | "@types/unist" "^2.0.0"
1535 | unist-util-visit "^4.0.0"
1536 |
1537 | mdast-util-from-markdown@^1.0.0:
1538 | version "1.2.0"
1539 | resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.2.0.tgz#84df2924ccc6c995dec1e2368b2b208ad0a76268"
1540 | integrity sha512-iZJyyvKD1+K7QX1b5jXdE7Sc5dtoTry1vzV28UZZe8Z1xVnB/czKntJ7ZAkG0tANqRnBF6p3p7GpU1y19DTf2Q==
1541 | dependencies:
1542 | "@types/mdast" "^3.0.0"
1543 | "@types/unist" "^2.0.0"
1544 | decode-named-character-reference "^1.0.0"
1545 | mdast-util-to-string "^3.1.0"
1546 | micromark "^3.0.0"
1547 | micromark-util-decode-numeric-character-reference "^1.0.0"
1548 | micromark-util-decode-string "^1.0.0"
1549 | micromark-util-normalize-identifier "^1.0.0"
1550 | micromark-util-symbol "^1.0.0"
1551 | micromark-util-types "^1.0.0"
1552 | unist-util-stringify-position "^3.0.0"
1553 | uvu "^0.5.0"
1554 |
1555 | mdast-util-mdx-expression@^1.0.0:
1556 | version "1.2.1"
1557 | resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.2.1.tgz#3195450498c438fbdb82838c23d9b3f8b23174da"
1558 | integrity sha512-BtQwyalaq6jRjx0pagtuAwGrmzL1yInrfA4EJv7GOoiPOUbR4gr6h65I+G3WTh1/Cag2Eda4ip400Ch6CFmWiA==
1559 | dependencies:
1560 | "@types/estree-jsx" "^0.0.1"
1561 | "@types/hast" "^2.0.0"
1562 | "@types/mdast" "^3.0.0"
1563 | mdast-util-from-markdown "^1.0.0"
1564 | mdast-util-to-markdown "^1.0.0"
1565 |
1566 | mdast-util-mdx-jsx@^2.0.0:
1567 | version "2.0.2"
1568 | resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.0.2.tgz#087448dc29f6df9b9d9951132f82c20bd378bb68"
1569 | integrity sha512-Bs1HnFprSJW0al1h49ZQBaLfwROFEY3SLK98xWsA60fVhe6zEbPS8gVYxkuT07TeEZWIbkjyFYXkZ34ARxfYNQ==
1570 | dependencies:
1571 | "@types/estree-jsx" "^0.0.1"
1572 | "@types/hast" "^2.0.0"
1573 | "@types/mdast" "^3.0.0"
1574 | ccount "^2.0.0"
1575 | mdast-util-to-markdown "^1.3.0"
1576 | parse-entities "^4.0.0"
1577 | stringify-entities "^4.0.0"
1578 | unist-util-remove-position "^4.0.0"
1579 | unist-util-stringify-position "^3.0.0"
1580 | vfile-message "^3.0.0"
1581 |
1582 | mdast-util-mdx@^2.0.0:
1583 | version "2.0.0"
1584 | resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-2.0.0.tgz#dd4f6c993cf27da32725e50a04874f595b7b63fb"
1585 | integrity sha512-M09lW0CcBT1VrJUaF/PYxemxxHa7SLDHdSn94Q9FhxjCQfuW7nMAWKWimTmA3OyDMSTH981NN1csW1X+HPSluw==
1586 | dependencies:
1587 | mdast-util-mdx-expression "^1.0.0"
1588 | mdast-util-mdx-jsx "^2.0.0"
1589 | mdast-util-mdxjs-esm "^1.0.0"
1590 |
1591 | mdast-util-mdxjs-esm@^1.0.0:
1592 | version "1.2.1"
1593 | resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.2.1.tgz#9e3fd9770f06022b2e7b40fb444eafe64a96495f"
1594 | integrity sha512-3zNmTy1V1OgIxoV97PTkAl+tLriilS8d4CJwPV9LvBmWra5nnRriN8rpGSGGIM7NLoHfsUfvjcPoNIzl77F8Kw==
1595 | dependencies:
1596 | "@types/estree-jsx" "^0.0.1"
1597 | "@types/hast" "^2.0.0"
1598 | "@types/mdast" "^3.0.0"
1599 | mdast-util-from-markdown "^1.0.0"
1600 | mdast-util-to-markdown "^1.0.0"
1601 |
1602 | mdast-util-to-hast@^12.1.0:
1603 | version "12.1.2"
1604 | resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-12.1.2.tgz#5c793b04014746585254c7ce0bc2d117201a5d1d"
1605 | integrity sha512-Wn6Mcj04qU4qUXHnHpPATYMH2Jd8RlntdnloDfYLe1ErWRHo6+pvSl/DzHp6sCZ9cBSYlc8Sk8pbwb8xtUoQhQ==
1606 | dependencies:
1607 | "@types/hast" "^2.0.0"
1608 | "@types/mdast" "^3.0.0"
1609 | "@types/mdurl" "^1.0.0"
1610 | mdast-util-definitions "^5.0.0"
1611 | mdurl "^1.0.0"
1612 | micromark-util-sanitize-uri "^1.0.0"
1613 | trim-lines "^3.0.0"
1614 | unist-builder "^3.0.0"
1615 | unist-util-generated "^2.0.0"
1616 | unist-util-position "^4.0.0"
1617 | unist-util-visit "^4.0.0"
1618 |
1619 | mdast-util-to-markdown@^1.0.0, mdast-util-to-markdown@^1.3.0:
1620 | version "1.3.0"
1621 | resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-1.3.0.tgz#38b6cdc8dc417de642a469c4fc2abdf8c931bd1e"
1622 | integrity sha512-6tUSs4r+KK4JGTTiQ7FfHmVOaDrLQJPmpjD6wPMlHGUVXoG9Vjc3jIeP+uyBWRf8clwB2blM+W7+KrlMYQnftA==
1623 | dependencies:
1624 | "@types/mdast" "^3.0.0"
1625 | "@types/unist" "^2.0.0"
1626 | longest-streak "^3.0.0"
1627 | mdast-util-to-string "^3.0.0"
1628 | micromark-util-decode-string "^1.0.0"
1629 | unist-util-visit "^4.0.0"
1630 | zwitch "^2.0.0"
1631 |
1632 | mdast-util-to-string@^3.0.0, mdast-util-to-string@^3.1.0:
1633 | version "3.1.0"
1634 | resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz#56c506d065fbf769515235e577b5a261552d56e9"
1635 | integrity sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==
1636 |
1637 | mdurl@^1.0.0:
1638 | version "1.0.1"
1639 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e"
1640 | integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==
1641 |
1642 | merge2@^1.3.0, merge2@^1.4.1:
1643 | version "1.4.1"
1644 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
1645 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1646 |
1647 | micromark-core-commonmark@^1.0.0, micromark-core-commonmark@^1.0.1:
1648 | version "1.0.6"
1649 | resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz#edff4c72e5993d93724a3c206970f5a15b0585ad"
1650 | integrity sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==
1651 | dependencies:
1652 | decode-named-character-reference "^1.0.0"
1653 | micromark-factory-destination "^1.0.0"
1654 | micromark-factory-label "^1.0.0"
1655 | micromark-factory-space "^1.0.0"
1656 | micromark-factory-title "^1.0.0"
1657 | micromark-factory-whitespace "^1.0.0"
1658 | micromark-util-character "^1.0.0"
1659 | micromark-util-chunked "^1.0.0"
1660 | micromark-util-classify-character "^1.0.0"
1661 | micromark-util-html-tag-name "^1.0.0"
1662 | micromark-util-normalize-identifier "^1.0.0"
1663 | micromark-util-resolve-all "^1.0.0"
1664 | micromark-util-subtokenize "^1.0.0"
1665 | micromark-util-symbol "^1.0.0"
1666 | micromark-util-types "^1.0.1"
1667 | uvu "^0.5.0"
1668 |
1669 | micromark-extension-mdx-expression@^1.0.0:
1670 | version "1.0.3"
1671 | resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.3.tgz#cd3843573921bf55afcfff4ae0cd2e857a16dcfa"
1672 | integrity sha512-TjYtjEMszWze51NJCZmhv7MEBcgYRgb3tJeMAJ+HQCAaZHHRBaDCccqQzGizR/H4ODefP44wRTgOn2vE5I6nZA==
1673 | dependencies:
1674 | micromark-factory-mdx-expression "^1.0.0"
1675 | micromark-factory-space "^1.0.0"
1676 | micromark-util-character "^1.0.0"
1677 | micromark-util-events-to-acorn "^1.0.0"
1678 | micromark-util-symbol "^1.0.0"
1679 | micromark-util-types "^1.0.0"
1680 | uvu "^0.5.0"
1681 |
1682 | micromark-extension-mdx-jsx@^1.0.0:
1683 | version "1.0.3"
1684 | resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.3.tgz#9f196be5f65eb09d2a49b237a7b3398bba2999be"
1685 | integrity sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==
1686 | dependencies:
1687 | "@types/acorn" "^4.0.0"
1688 | estree-util-is-identifier-name "^2.0.0"
1689 | micromark-factory-mdx-expression "^1.0.0"
1690 | micromark-factory-space "^1.0.0"
1691 | micromark-util-character "^1.0.0"
1692 | micromark-util-symbol "^1.0.0"
1693 | micromark-util-types "^1.0.0"
1694 | uvu "^0.5.0"
1695 | vfile-message "^3.0.0"
1696 |
1697 | micromark-extension-mdx-md@^1.0.0:
1698 | version "1.0.0"
1699 | resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.0.tgz#382f5df9ee3706dd120b51782a211f31f4760d22"
1700 | integrity sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==
1701 | dependencies:
1702 | micromark-util-types "^1.0.0"
1703 |
1704 | micromark-extension-mdxjs-esm@^1.0.0:
1705 | version "1.0.3"
1706 | resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.3.tgz#630d9dc9db2c2fd470cac8c1e7a824851267404d"
1707 | integrity sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==
1708 | dependencies:
1709 | micromark-core-commonmark "^1.0.0"
1710 | micromark-util-character "^1.0.0"
1711 | micromark-util-events-to-acorn "^1.0.0"
1712 | micromark-util-symbol "^1.0.0"
1713 | micromark-util-types "^1.0.0"
1714 | unist-util-position-from-estree "^1.1.0"
1715 | uvu "^0.5.0"
1716 | vfile-message "^3.0.0"
1717 |
1718 | micromark-extension-mdxjs@^1.0.0:
1719 | version "1.0.0"
1720 | resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.0.tgz#772644e12fc8299a33e50f59c5aa15727f6689dd"
1721 | integrity sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==
1722 | dependencies:
1723 | acorn "^8.0.0"
1724 | acorn-jsx "^5.0.0"
1725 | micromark-extension-mdx-expression "^1.0.0"
1726 | micromark-extension-mdx-jsx "^1.0.0"
1727 | micromark-extension-mdx-md "^1.0.0"
1728 | micromark-extension-mdxjs-esm "^1.0.0"
1729 | micromark-util-combine-extensions "^1.0.0"
1730 | micromark-util-types "^1.0.0"
1731 |
1732 | micromark-factory-destination@^1.0.0:
1733 | version "1.0.0"
1734 | resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz#fef1cb59ad4997c496f887b6977aa3034a5a277e"
1735 | integrity sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==
1736 | dependencies:
1737 | micromark-util-character "^1.0.0"
1738 | micromark-util-symbol "^1.0.0"
1739 | micromark-util-types "^1.0.0"
1740 |
1741 | micromark-factory-label@^1.0.0:
1742 | version "1.0.2"
1743 | resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz#6be2551fa8d13542fcbbac478258fb7a20047137"
1744 | integrity sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==
1745 | dependencies:
1746 | micromark-util-character "^1.0.0"
1747 | micromark-util-symbol "^1.0.0"
1748 | micromark-util-types "^1.0.0"
1749 | uvu "^0.5.0"
1750 |
1751 | micromark-factory-mdx-expression@^1.0.0:
1752 | version "1.0.6"
1753 | resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.6.tgz#917e17d16e6e9c2551f3a862e6a9ebdd22056476"
1754 | integrity sha512-WRQIc78FV7KrCfjsEf/sETopbYjElh3xAmNpLkd1ODPqxEngP42eVRGbiPEQWpRV27LzqW+XVTvQAMIIRLPnNA==
1755 | dependencies:
1756 | micromark-factory-space "^1.0.0"
1757 | micromark-util-character "^1.0.0"
1758 | micromark-util-events-to-acorn "^1.0.0"
1759 | micromark-util-symbol "^1.0.0"
1760 | micromark-util-types "^1.0.0"
1761 | unist-util-position-from-estree "^1.0.0"
1762 | uvu "^0.5.0"
1763 | vfile-message "^3.0.0"
1764 |
1765 | micromark-factory-space@^1.0.0:
1766 | version "1.0.0"
1767 | resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz#cebff49968f2b9616c0fcb239e96685cb9497633"
1768 | integrity sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==
1769 | dependencies:
1770 | micromark-util-character "^1.0.0"
1771 | micromark-util-types "^1.0.0"
1772 |
1773 | micromark-factory-title@^1.0.0:
1774 | version "1.0.2"
1775 | resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz#7e09287c3748ff1693930f176e1c4a328382494f"
1776 | integrity sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==
1777 | dependencies:
1778 | micromark-factory-space "^1.0.0"
1779 | micromark-util-character "^1.0.0"
1780 | micromark-util-symbol "^1.0.0"
1781 | micromark-util-types "^1.0.0"
1782 | uvu "^0.5.0"
1783 |
1784 | micromark-factory-whitespace@^1.0.0:
1785 | version "1.0.0"
1786 | resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz#e991e043ad376c1ba52f4e49858ce0794678621c"
1787 | integrity sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==
1788 | dependencies:
1789 | micromark-factory-space "^1.0.0"
1790 | micromark-util-character "^1.0.0"
1791 | micromark-util-symbol "^1.0.0"
1792 | micromark-util-types "^1.0.0"
1793 |
1794 | micromark-util-character@^1.0.0:
1795 | version "1.1.0"
1796 | resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.1.0.tgz#d97c54d5742a0d9611a68ca0cd4124331f264d86"
1797 | integrity sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==
1798 | dependencies:
1799 | micromark-util-symbol "^1.0.0"
1800 | micromark-util-types "^1.0.0"
1801 |
1802 | micromark-util-chunked@^1.0.0:
1803 | version "1.0.0"
1804 | resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz#5b40d83f3d53b84c4c6bce30ed4257e9a4c79d06"
1805 | integrity sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==
1806 | dependencies:
1807 | micromark-util-symbol "^1.0.0"
1808 |
1809 | micromark-util-classify-character@^1.0.0:
1810 | version "1.0.0"
1811 | resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz#cbd7b447cb79ee6997dd274a46fc4eb806460a20"
1812 | integrity sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==
1813 | dependencies:
1814 | micromark-util-character "^1.0.0"
1815 | micromark-util-symbol "^1.0.0"
1816 | micromark-util-types "^1.0.0"
1817 |
1818 | micromark-util-combine-extensions@^1.0.0:
1819 | version "1.0.0"
1820 | resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz#91418e1e74fb893e3628b8d496085639124ff3d5"
1821 | integrity sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==
1822 | dependencies:
1823 | micromark-util-chunked "^1.0.0"
1824 | micromark-util-types "^1.0.0"
1825 |
1826 | micromark-util-decode-numeric-character-reference@^1.0.0:
1827 | version "1.0.0"
1828 | resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz#dcc85f13b5bd93ff8d2868c3dba28039d490b946"
1829 | integrity sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==
1830 | dependencies:
1831 | micromark-util-symbol "^1.0.0"
1832 |
1833 | micromark-util-decode-string@^1.0.0:
1834 | version "1.0.2"
1835 | resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz#942252ab7a76dec2dbf089cc32505ee2bc3acf02"
1836 | integrity sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==
1837 | dependencies:
1838 | decode-named-character-reference "^1.0.0"
1839 | micromark-util-character "^1.0.0"
1840 | micromark-util-decode-numeric-character-reference "^1.0.0"
1841 | micromark-util-symbol "^1.0.0"
1842 |
1843 | micromark-util-encode@^1.0.0:
1844 | version "1.0.1"
1845 | resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz#2c1c22d3800870ad770ece5686ebca5920353383"
1846 | integrity sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==
1847 |
1848 | micromark-util-events-to-acorn@^1.0.0:
1849 | version "1.1.0"
1850 | resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.1.0.tgz#9891638e201c266484d0af7cd2505d208f73db9d"
1851 | integrity sha512-hB8HzidNt/Us5q2BvqXj8eeEm0U9rRfnZxcA9T65JRUMAY4MbfJRAFm7m9fXMAdSHJiVPmajsp8/rp6/FlHL8A==
1852 | dependencies:
1853 | "@types/acorn" "^4.0.0"
1854 | "@types/estree" "^0.0.51"
1855 | estree-util-visit "^1.0.0"
1856 | micromark-util-types "^1.0.0"
1857 | uvu "^0.5.0"
1858 | vfile-location "^4.0.0"
1859 | vfile-message "^3.0.0"
1860 |
1861 | micromark-util-html-tag-name@^1.0.0:
1862 | version "1.1.0"
1863 | resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz#eb227118befd51f48858e879b7a419fc0df20497"
1864 | integrity sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==
1865 |
1866 | micromark-util-normalize-identifier@^1.0.0:
1867 | version "1.0.0"
1868 | resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz#4a3539cb8db954bbec5203952bfe8cedadae7828"
1869 | integrity sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==
1870 | dependencies:
1871 | micromark-util-symbol "^1.0.0"
1872 |
1873 | micromark-util-resolve-all@^1.0.0:
1874 | version "1.0.0"
1875 | resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz#a7c363f49a0162e931960c44f3127ab58f031d88"
1876 | integrity sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==
1877 | dependencies:
1878 | micromark-util-types "^1.0.0"
1879 |
1880 | micromark-util-sanitize-uri@^1.0.0:
1881 | version "1.0.0"
1882 | resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.0.0.tgz#27dc875397cd15102274c6c6da5585d34d4f12b2"
1883 | integrity sha512-cCxvBKlmac4rxCGx6ejlIviRaMKZc0fWm5HdCHEeDWRSkn44l6NdYVRyU+0nT1XC72EQJMZV8IPHF+jTr56lAg==
1884 | dependencies:
1885 | micromark-util-character "^1.0.0"
1886 | micromark-util-encode "^1.0.0"
1887 | micromark-util-symbol "^1.0.0"
1888 |
1889 | micromark-util-subtokenize@^1.0.0:
1890 | version "1.0.2"
1891 | resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz#ff6f1af6ac836f8bfdbf9b02f40431760ad89105"
1892 | integrity sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==
1893 | dependencies:
1894 | micromark-util-chunked "^1.0.0"
1895 | micromark-util-symbol "^1.0.0"
1896 | micromark-util-types "^1.0.0"
1897 | uvu "^0.5.0"
1898 |
1899 | micromark-util-symbol@^1.0.0:
1900 | version "1.0.1"
1901 | resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz#b90344db62042ce454f351cf0bebcc0a6da4920e"
1902 | integrity sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==
1903 |
1904 | micromark-util-types@^1.0.0, micromark-util-types@^1.0.1:
1905 | version "1.0.2"
1906 | resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.0.2.tgz#f4220fdb319205812f99c40f8c87a9be83eded20"
1907 | integrity sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==
1908 |
1909 | micromark@^3.0.0:
1910 | version "3.0.10"
1911 | resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.0.10.tgz#1eac156f0399d42736458a14b0ca2d86190b457c"
1912 | integrity sha512-ryTDy6UUunOXy2HPjelppgJ2sNfcPz1pLlMdA6Rz9jPzhLikWXv/irpWV/I2jd68Uhmny7hHxAlAhk4+vWggpg==
1913 | dependencies:
1914 | "@types/debug" "^4.0.0"
1915 | debug "^4.0.0"
1916 | decode-named-character-reference "^1.0.0"
1917 | micromark-core-commonmark "^1.0.1"
1918 | micromark-factory-space "^1.0.0"
1919 | micromark-util-character "^1.0.0"
1920 | micromark-util-chunked "^1.0.0"
1921 | micromark-util-combine-extensions "^1.0.0"
1922 | micromark-util-decode-numeric-character-reference "^1.0.0"
1923 | micromark-util-encode "^1.0.0"
1924 | micromark-util-normalize-identifier "^1.0.0"
1925 | micromark-util-resolve-all "^1.0.0"
1926 | micromark-util-sanitize-uri "^1.0.0"
1927 | micromark-util-subtokenize "^1.0.0"
1928 | micromark-util-symbol "^1.0.0"
1929 | micromark-util-types "^1.0.1"
1930 | uvu "^0.5.0"
1931 |
1932 | micromatch@^4.0.4:
1933 | version "4.0.5"
1934 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
1935 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
1936 | dependencies:
1937 | braces "^3.0.2"
1938 | picomatch "^2.3.1"
1939 |
1940 | minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
1941 | version "3.1.2"
1942 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1943 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1944 | dependencies:
1945 | brace-expansion "^1.1.7"
1946 |
1947 | minimist@^1.2.6:
1948 | version "1.2.6"
1949 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
1950 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
1951 |
1952 | mri@^1.1.0:
1953 | version "1.2.0"
1954 | resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b"
1955 | integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==
1956 |
1957 | ms@2.1.2:
1958 | version "2.1.2"
1959 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1960 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1961 |
1962 | nanoid@^3.1.30, nanoid@^3.3.4:
1963 | version "3.3.4"
1964 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
1965 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
1966 |
1967 | natural-compare@^1.4.0:
1968 | version "1.4.0"
1969 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1970 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
1971 |
1972 | next-themes@^0.1.1:
1973 | version "0.1.1"
1974 | resolved "https://registry.yarnpkg.com/next-themes/-/next-themes-0.1.1.tgz#122113a458bf1d1be5ffed66778ab924c106f82a"
1975 | integrity sha512-Iqxt6rhS/KfK/iHJ0tfFjTcdLEAI0AgwFuAFrMwLOPK5e+MI3I+fzyvBoS+VaOS+NldUiazurhgwYhrfV0VXsQ==
1976 |
1977 | next@12.1.5:
1978 | version "12.1.5"
1979 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.5.tgz#7a07687579ddce61ee519493e1c178d83abac063"
1980 | integrity sha512-YGHDpyfgCfnT5GZObsKepmRnne7Kzp7nGrac07dikhutWQug7hHg85/+sPJ4ZW5Q2pDkb+n0FnmLkmd44htIJQ==
1981 | dependencies:
1982 | "@next/env" "12.1.5"
1983 | caniuse-lite "^1.0.30001283"
1984 | postcss "8.4.5"
1985 | styled-jsx "5.0.1"
1986 | optionalDependencies:
1987 | "@next/swc-android-arm-eabi" "12.1.5"
1988 | "@next/swc-android-arm64" "12.1.5"
1989 | "@next/swc-darwin-arm64" "12.1.5"
1990 | "@next/swc-darwin-x64" "12.1.5"
1991 | "@next/swc-linux-arm-gnueabihf" "12.1.5"
1992 | "@next/swc-linux-arm64-gnu" "12.1.5"
1993 | "@next/swc-linux-arm64-musl" "12.1.5"
1994 | "@next/swc-linux-x64-gnu" "12.1.5"
1995 | "@next/swc-linux-x64-musl" "12.1.5"
1996 | "@next/swc-win32-arm64-msvc" "12.1.5"
1997 | "@next/swc-win32-ia32-msvc" "12.1.5"
1998 | "@next/swc-win32-x64-msvc" "12.1.5"
1999 |
2000 | node-releases@^2.0.6:
2001 | version "2.0.6"
2002 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.6.tgz#8a7088c63a55e493845683ebf3c828d8c51c5503"
2003 | integrity sha512-PiVXnNuFm5+iYkLBNeq5211hvO38y63T0i2KKh2KnUs3RpzJ+JtODFjkD8yjLwnDkTYF1eKXheUwdssR+NRZdg==
2004 |
2005 | normalize-path@^3.0.0, normalize-path@~3.0.0:
2006 | version "3.0.0"
2007 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
2008 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
2009 |
2010 | normalize-range@^0.1.2:
2011 | version "0.1.2"
2012 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
2013 | integrity sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==
2014 |
2015 | object-assign@^4.1.1:
2016 | version "4.1.1"
2017 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
2018 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
2019 |
2020 | object-hash@^3.0.0:
2021 | version "3.0.0"
2022 | resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-3.0.0.tgz#73f97f753e7baffc0e2cc9d6e079079744ac82e9"
2023 | integrity sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==
2024 |
2025 | object-inspect@^1.12.0, object-inspect@^1.9.0:
2026 | version "1.12.2"
2027 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
2028 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
2029 |
2030 | object-keys@^1.1.1:
2031 | version "1.1.1"
2032 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
2033 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
2034 |
2035 | object.assign@^4.1.2:
2036 | version "4.1.2"
2037 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
2038 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
2039 | dependencies:
2040 | call-bind "^1.0.0"
2041 | define-properties "^1.1.3"
2042 | has-symbols "^1.0.1"
2043 | object-keys "^1.1.1"
2044 |
2045 | object.entries@^1.1.5:
2046 | version "1.1.5"
2047 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861"
2048 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==
2049 | dependencies:
2050 | call-bind "^1.0.2"
2051 | define-properties "^1.1.3"
2052 | es-abstract "^1.19.1"
2053 |
2054 | object.fromentries@^2.0.5:
2055 | version "2.0.5"
2056 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251"
2057 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==
2058 | dependencies:
2059 | call-bind "^1.0.2"
2060 | define-properties "^1.1.3"
2061 | es-abstract "^1.19.1"
2062 |
2063 | object.hasown@^1.1.1:
2064 | version "1.1.1"
2065 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3"
2066 | integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==
2067 | dependencies:
2068 | define-properties "^1.1.4"
2069 | es-abstract "^1.19.5"
2070 |
2071 | object.values@^1.1.5:
2072 | version "1.1.5"
2073 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac"
2074 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==
2075 | dependencies:
2076 | call-bind "^1.0.2"
2077 | define-properties "^1.1.3"
2078 | es-abstract "^1.19.1"
2079 |
2080 | once@^1.3.0:
2081 | version "1.4.0"
2082 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
2083 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
2084 | dependencies:
2085 | wrappy "1"
2086 |
2087 | optionator@^0.9.1:
2088 | version "0.9.1"
2089 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
2090 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
2091 | dependencies:
2092 | deep-is "^0.1.3"
2093 | fast-levenshtein "^2.0.6"
2094 | levn "^0.4.1"
2095 | prelude-ls "^1.2.1"
2096 | type-check "^0.4.0"
2097 | word-wrap "^1.2.3"
2098 |
2099 | parent-module@^1.0.0:
2100 | version "1.0.1"
2101 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
2102 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
2103 | dependencies:
2104 | callsites "^3.0.0"
2105 |
2106 | parse-entities@^4.0.0:
2107 | version "4.0.0"
2108 | resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-4.0.0.tgz#f67c856d4e3fe19b1a445c3fabe78dcdc1053eeb"
2109 | integrity sha512-5nk9Fn03x3rEhGaX1FU6IDwG/k+GxLXlFAkgrbM1asuAFl3BhdQWvASaIsmwWypRNcZKHPYnIuOSfIWEyEQnPQ==
2110 | dependencies:
2111 | "@types/unist" "^2.0.0"
2112 | character-entities "^2.0.0"
2113 | character-entities-legacy "^3.0.0"
2114 | character-reference-invalid "^2.0.0"
2115 | decode-named-character-reference "^1.0.0"
2116 | is-alphanumerical "^2.0.0"
2117 | is-decimal "^2.0.0"
2118 | is-hexadecimal "^2.0.0"
2119 |
2120 | path-is-absolute@^1.0.0:
2121 | version "1.0.1"
2122 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
2123 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
2124 |
2125 | path-key@^3.1.0:
2126 | version "3.1.1"
2127 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
2128 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
2129 |
2130 | path-parse@^1.0.7:
2131 | version "1.0.7"
2132 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
2133 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
2134 |
2135 | path-type@^4.0.0:
2136 | version "4.0.0"
2137 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
2138 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
2139 |
2140 | periscopic@^3.0.0:
2141 | version "3.0.4"
2142 | resolved "https://registry.yarnpkg.com/periscopic/-/periscopic-3.0.4.tgz#b3fbed0d1bc844976b977173ca2cd4a0ef4fa8d1"
2143 | integrity sha512-SFx68DxCv0Iyo6APZuw/AKewkkThGwssmU0QWtTlvov3VAtPX+QJ4CadwSaz8nrT5jPIuxdvJWB4PnD2KNDxQg==
2144 | dependencies:
2145 | estree-walker "^3.0.0"
2146 | is-reference "^3.0.0"
2147 |
2148 | picocolors@^1.0.0:
2149 | version "1.0.0"
2150 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
2151 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
2152 |
2153 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1:
2154 | version "2.3.1"
2155 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
2156 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
2157 |
2158 | pify@^2.3.0:
2159 | version "2.3.0"
2160 | resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
2161 | integrity sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==
2162 |
2163 | popmotion@11.0.3:
2164 | version "11.0.3"
2165 | resolved "https://registry.yarnpkg.com/popmotion/-/popmotion-11.0.3.tgz#565c5f6590bbcddab7a33a074bb2ba97e24b0cc9"
2166 | integrity sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==
2167 | dependencies:
2168 | framesync "6.0.1"
2169 | hey-listen "^1.0.8"
2170 | style-value-types "5.0.0"
2171 | tslib "^2.1.0"
2172 |
2173 | postcss-import@^14.1.0:
2174 | version "14.1.0"
2175 | resolved "https://registry.yarnpkg.com/postcss-import/-/postcss-import-14.1.0.tgz#a7333ffe32f0b8795303ee9e40215dac922781f0"
2176 | integrity sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==
2177 | dependencies:
2178 | postcss-value-parser "^4.0.0"
2179 | read-cache "^1.0.0"
2180 | resolve "^1.1.7"
2181 |
2182 | postcss-js@^4.0.0:
2183 | version "4.0.0"
2184 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-4.0.0.tgz#31db79889531b80dc7bc9b0ad283e418dce0ac00"
2185 | integrity sha512-77QESFBwgX4irogGVPgQ5s07vLvFqWr228qZY+w6lW599cRlK/HmnlivnnVUxkjHnCu4J16PDMHcH+e+2HbvTQ==
2186 | dependencies:
2187 | camelcase-css "^2.0.1"
2188 |
2189 | postcss-load-config@^3.1.4:
2190 | version "3.1.4"
2191 | resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855"
2192 | integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==
2193 | dependencies:
2194 | lilconfig "^2.0.5"
2195 | yaml "^1.10.2"
2196 |
2197 | postcss-nested@5.0.6:
2198 | version "5.0.6"
2199 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-5.0.6.tgz#466343f7fc8d3d46af3e7dba3fcd47d052a945bc"
2200 | integrity sha512-rKqm2Fk0KbA8Vt3AdGN0FB9OBOMDVajMG6ZCf/GoHgdxUJ4sBFp0A/uMIRm+MJUdo33YXEtjqIz8u7DAp8B7DA==
2201 | dependencies:
2202 | postcss-selector-parser "^6.0.6"
2203 |
2204 | postcss-selector-parser@^6.0.10, postcss-selector-parser@^6.0.6:
2205 | version "6.0.10"
2206 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d"
2207 | integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==
2208 | dependencies:
2209 | cssesc "^3.0.0"
2210 | util-deprecate "^1.0.2"
2211 |
2212 | postcss-value-parser@^4.0.0, postcss-value-parser@^4.2.0:
2213 | version "4.2.0"
2214 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514"
2215 | integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
2216 |
2217 | postcss@8.4.5:
2218 | version "8.4.5"
2219 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95"
2220 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==
2221 | dependencies:
2222 | nanoid "^3.1.30"
2223 | picocolors "^1.0.0"
2224 | source-map-js "^1.0.1"
2225 |
2226 | postcss@^8.4.12, postcss@^8.4.14:
2227 | version "8.4.14"
2228 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf"
2229 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==
2230 | dependencies:
2231 | nanoid "^3.3.4"
2232 | picocolors "^1.0.0"
2233 | source-map-js "^1.0.2"
2234 |
2235 | prelude-ls@^1.2.1:
2236 | version "1.2.1"
2237 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
2238 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
2239 |
2240 | prisma@^3.13.0:
2241 | version "3.15.2"
2242 | resolved "https://registry.yarnpkg.com/prisma/-/prisma-3.15.2.tgz#4ebe32fb284da3ac60c49fbc16c75e56ecf32067"
2243 | integrity sha512-nMNSMZvtwrvoEQ/mui8L/aiCLZRCj5t6L3yujKpcDhIPk7garp8tL4nMx2+oYsN0FWBacevJhazfXAbV1kfBzA==
2244 | dependencies:
2245 | "@prisma/engines" "3.15.1-1.461d6a05159055555eb7dfb337c9fb271cbd4d7e"
2246 |
2247 | prop-types@^15.8.1:
2248 | version "15.8.1"
2249 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
2250 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
2251 | dependencies:
2252 | loose-envify "^1.4.0"
2253 | object-assign "^4.1.1"
2254 | react-is "^16.13.1"
2255 |
2256 | property-information@^6.0.0:
2257 | version "6.1.1"
2258 | resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.1.1.tgz#5ca85510a3019726cb9afed4197b7b8ac5926a22"
2259 | integrity sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w==
2260 |
2261 | punycode@^2.1.0:
2262 | version "2.1.1"
2263 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
2264 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
2265 |
2266 | queue-microtask@^1.2.2:
2267 | version "1.2.3"
2268 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
2269 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
2270 |
2271 | quick-lru@^5.1.1:
2272 | version "5.1.1"
2273 | resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-5.1.1.tgz#366493e6b3e42a3a6885e2e99d18f80fb7a8c932"
2274 | integrity sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==
2275 |
2276 | react-dom@18.0.0:
2277 | version "18.0.0"
2278 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.0.0.tgz#26b88534f8f1dbb80853e1eabe752f24100d8023"
2279 | integrity sha512-XqX7uzmFo0pUceWFCt7Gff6IyIMzFUn7QMZrbrQfGxtaxXZIcGQzoNpRLE3fQLnS4XzLLPMZX2T9TRcSrasicw==
2280 | dependencies:
2281 | loose-envify "^1.1.0"
2282 | scheduler "^0.21.0"
2283 |
2284 | react-is@^16.13.1:
2285 | version "16.13.1"
2286 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
2287 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
2288 |
2289 | react@18.1.0:
2290 | version "18.1.0"
2291 | resolved "https://registry.yarnpkg.com/react/-/react-18.1.0.tgz#6f8620382decb17fdc5cc223a115e2adbf104890"
2292 | integrity sha512-4oL8ivCz5ZEPyclFQXaNksK3adutVS8l2xzZU0cqEFrE9Sb7fC0EFK5uEk74wIreL1DERyjvsU915j1pcT2uEQ==
2293 | dependencies:
2294 | loose-envify "^1.1.0"
2295 |
2296 | read-cache@^1.0.0:
2297 | version "1.0.0"
2298 | resolved "https://registry.yarnpkg.com/read-cache/-/read-cache-1.0.0.tgz#e664ef31161166c9751cdbe8dbcf86b5fb58f774"
2299 | integrity sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==
2300 | dependencies:
2301 | pify "^2.3.0"
2302 |
2303 | readdirp@~3.6.0:
2304 | version "3.6.0"
2305 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7"
2306 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==
2307 | dependencies:
2308 | picomatch "^2.2.1"
2309 |
2310 | regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3:
2311 | version "1.4.3"
2312 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
2313 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
2314 | dependencies:
2315 | call-bind "^1.0.2"
2316 | define-properties "^1.1.3"
2317 | functions-have-names "^1.2.2"
2318 |
2319 | regexpp@^3.2.0:
2320 | version "3.2.0"
2321 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
2322 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
2323 |
2324 | remark-mdx@^2.0.0:
2325 | version "2.1.2"
2326 | resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.1.2.tgz#eea2784fa5697e14f6e0686700077986b88b8078"
2327 | integrity sha512-npQagPdczPAv0xN9F8GSi5hJfAe/z6nBjylyfOfjLOmz086ahWrIjlk4BulRfNhA+asutqWxyuT3DFVsxiTVHA==
2328 | dependencies:
2329 | mdast-util-mdx "^2.0.0"
2330 | micromark-extension-mdxjs "^1.0.0"
2331 |
2332 | remark-parse@^10.0.0:
2333 | version "10.0.1"
2334 | resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.1.tgz#6f60ae53edbf0cf38ea223fe643db64d112e0775"
2335 | integrity sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==
2336 | dependencies:
2337 | "@types/mdast" "^3.0.0"
2338 | mdast-util-from-markdown "^1.0.0"
2339 | unified "^10.0.0"
2340 |
2341 | remark-rehype@^10.0.0:
2342 | version "10.1.0"
2343 | resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-10.1.0.tgz#32dc99d2034c27ecaf2e0150d22a6dcccd9a6279"
2344 | integrity sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==
2345 | dependencies:
2346 | "@types/hast" "^2.0.0"
2347 | "@types/mdast" "^3.0.0"
2348 | mdast-util-to-hast "^12.1.0"
2349 | unified "^10.0.0"
2350 |
2351 | resolve-from@^4.0.0:
2352 | version "4.0.0"
2353 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
2354 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
2355 |
2356 | resolve@^1.1.7, resolve@^1.22.1:
2357 | version "1.22.1"
2358 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177"
2359 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
2360 | dependencies:
2361 | is-core-module "^2.9.0"
2362 | path-parse "^1.0.7"
2363 | supports-preserve-symlinks-flag "^1.0.0"
2364 |
2365 | resolve@^2.0.0-next.3:
2366 | version "2.0.0-next.4"
2367 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.4.tgz#3d37a113d6429f496ec4752d2a2e58efb1fd4660"
2368 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==
2369 | dependencies:
2370 | is-core-module "^2.9.0"
2371 | path-parse "^1.0.7"
2372 | supports-preserve-symlinks-flag "^1.0.0"
2373 |
2374 | reusify@^1.0.4:
2375 | version "1.0.4"
2376 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
2377 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
2378 |
2379 | rimraf@^3.0.2:
2380 | version "3.0.2"
2381 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
2382 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
2383 | dependencies:
2384 | glob "^7.1.3"
2385 |
2386 | run-parallel@^1.1.9:
2387 | version "1.2.0"
2388 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
2389 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
2390 | dependencies:
2391 | queue-microtask "^1.2.2"
2392 |
2393 | sade@^1.7.3:
2394 | version "1.8.1"
2395 | resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701"
2396 | integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==
2397 | dependencies:
2398 | mri "^1.1.0"
2399 |
2400 | scheduler@^0.21.0:
2401 | version "0.21.0"
2402 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.21.0.tgz#6fd2532ff5a6d877b6edb12f00d8ab7e8f308820"
2403 | integrity sha512-1r87x5fz9MXqswA2ERLo0EbOAU74DpIUO090gIasYTqlVoJeMcl+Z1Rg7WHz+qtPujhS/hGIt9kxZOYBV3faRQ==
2404 | dependencies:
2405 | loose-envify "^1.1.0"
2406 |
2407 | semver@^6.3.0:
2408 | version "6.3.0"
2409 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
2410 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
2411 |
2412 | semver@^7.3.7:
2413 | version "7.3.7"
2414 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
2415 | integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
2416 | dependencies:
2417 | lru-cache "^6.0.0"
2418 |
2419 | shebang-command@^2.0.0:
2420 | version "2.0.0"
2421 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
2422 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
2423 | dependencies:
2424 | shebang-regex "^3.0.0"
2425 |
2426 | shebang-regex@^3.0.0:
2427 | version "3.0.0"
2428 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
2429 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
2430 |
2431 | side-channel@^1.0.4:
2432 | version "1.0.4"
2433 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
2434 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
2435 | dependencies:
2436 | call-bind "^1.0.0"
2437 | get-intrinsic "^1.0.2"
2438 | object-inspect "^1.9.0"
2439 |
2440 | slash@^3.0.0:
2441 | version "3.0.0"
2442 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
2443 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
2444 |
2445 | source-map-js@^1.0.1, source-map-js@^1.0.2:
2446 | version "1.0.2"
2447 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
2448 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
2449 |
2450 | source-map@^0.7.0:
2451 | version "0.7.4"
2452 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.4.tgz#a9bbe705c9d8846f4e08ff6765acf0f1b0898656"
2453 | integrity sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==
2454 |
2455 | space-separated-tokens@^2.0.0:
2456 | version "2.0.1"
2457 | resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.1.tgz#43193cec4fb858a2ce934b7f98b7f2c18107098b"
2458 | integrity sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw==
2459 |
2460 | string.prototype.matchall@^4.0.7:
2461 | version "4.0.7"
2462 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d"
2463 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==
2464 | dependencies:
2465 | call-bind "^1.0.2"
2466 | define-properties "^1.1.3"
2467 | es-abstract "^1.19.1"
2468 | get-intrinsic "^1.1.1"
2469 | has-symbols "^1.0.3"
2470 | internal-slot "^1.0.3"
2471 | regexp.prototype.flags "^1.4.1"
2472 | side-channel "^1.0.4"
2473 |
2474 | string.prototype.trimend@^1.0.5:
2475 | version "1.0.5"
2476 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0"
2477 | integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==
2478 | dependencies:
2479 | call-bind "^1.0.2"
2480 | define-properties "^1.1.4"
2481 | es-abstract "^1.19.5"
2482 |
2483 | string.prototype.trimstart@^1.0.5:
2484 | version "1.0.5"
2485 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef"
2486 | integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==
2487 | dependencies:
2488 | call-bind "^1.0.2"
2489 | define-properties "^1.1.4"
2490 | es-abstract "^1.19.5"
2491 |
2492 | stringify-entities@^4.0.0:
2493 | version "4.0.3"
2494 | resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-4.0.3.tgz#cfabd7039d22ad30f3cc435b0ca2c1574fc88ef8"
2495 | integrity sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==
2496 | dependencies:
2497 | character-entities-html4 "^2.0.0"
2498 | character-entities-legacy "^3.0.0"
2499 |
2500 | strip-ansi@^6.0.1:
2501 | version "6.0.1"
2502 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
2503 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
2504 | dependencies:
2505 | ansi-regex "^5.0.1"
2506 |
2507 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
2508 | version "3.1.1"
2509 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
2510 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
2511 |
2512 | style-to-object@^0.3.0:
2513 | version "0.3.0"
2514 | resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46"
2515 | integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==
2516 | dependencies:
2517 | inline-style-parser "0.1.1"
2518 |
2519 | style-value-types@5.0.0:
2520 | version "5.0.0"
2521 | resolved "https://registry.yarnpkg.com/style-value-types/-/style-value-types-5.0.0.tgz#76c35f0e579843d523187989da866729411fc8ad"
2522 | integrity sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==
2523 | dependencies:
2524 | hey-listen "^1.0.8"
2525 | tslib "^2.1.0"
2526 |
2527 | styled-jsx@5.0.1:
2528 | version "5.0.1"
2529 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.1.tgz#78fecbbad2bf95ce6cd981a08918ce4696f5fc80"
2530 | integrity sha512-+PIZ/6Uk40mphiQJJI1202b+/dYeTVd9ZnMPR80pgiWbjIwvN2zIp4r9et0BgqBuShh48I0gttPlAXA7WVvBxw==
2531 |
2532 | supercons@^0.0.1:
2533 | version "0.0.1"
2534 | resolved "https://registry.yarnpkg.com/supercons/-/supercons-0.0.1.tgz#b016f843ec930e30889dff01bdd5086398bbb4bd"
2535 | integrity sha512-ET70X83boPmv8ze9r5CuGXJCBZ9mbQ32RgE1CIwOX4K2hv9yA9mu8mtkt52VKER1PDZFSf5v/+9neLD5d1bFCQ==
2536 |
2537 | superjson@^1.9.1:
2538 | version "1.9.1"
2539 | resolved "https://registry.yarnpkg.com/superjson/-/superjson-1.9.1.tgz#e23bd2e8cf0f4ade131d6d769754cac7eaa8ab34"
2540 | integrity sha512-oT3HA2nPKlU1+5taFgz/HDy+GEaY+CWEbLzaRJVD4gZ7zMVVC4GDNFdgvAZt6/VuIk6D2R7RtPAiCHwmdzlMmg==
2541 | dependencies:
2542 | copy-anything "^3.0.2"
2543 |
2544 | supports-color@^7.1.0:
2545 | version "7.2.0"
2546 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
2547 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
2548 | dependencies:
2549 | has-flag "^4.0.0"
2550 |
2551 | supports-preserve-symlinks-flag@^1.0.0:
2552 | version "1.0.0"
2553 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
2554 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
2555 |
2556 | swr@^1.3.0:
2557 | version "1.3.0"
2558 | resolved "https://registry.yarnpkg.com/swr/-/swr-1.3.0.tgz#c6531866a35b4db37b38b72c45a63171faf9f4e8"
2559 | integrity sha512-dkghQrOl2ORX9HYrMDtPa7LTVHJjCTeZoB1dqTbnnEDlSvN8JEKpYIYurDfvbQFUUS8Cg8PceFVZNkW0KNNYPw==
2560 |
2561 | tailwindcss@^3.0.24:
2562 | version "3.1.6"
2563 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-3.1.6.tgz#bcb719357776c39e6376a8d84e9834b2b19a49f1"
2564 | integrity sha512-7skAOY56erZAFQssT1xkpk+kWt2NrO45kORlxFPXUt3CiGsVPhH1smuH5XoDH6sGPXLyBv+zgCKA2HWBsgCytg==
2565 | dependencies:
2566 | arg "^5.0.2"
2567 | chokidar "^3.5.3"
2568 | color-name "^1.1.4"
2569 | detective "^5.2.1"
2570 | didyoumean "^1.2.2"
2571 | dlv "^1.1.3"
2572 | fast-glob "^3.2.11"
2573 | glob-parent "^6.0.2"
2574 | is-glob "^4.0.3"
2575 | lilconfig "^2.0.5"
2576 | normalize-path "^3.0.0"
2577 | object-hash "^3.0.0"
2578 | picocolors "^1.0.0"
2579 | postcss "^8.4.14"
2580 | postcss-import "^14.1.0"
2581 | postcss-js "^4.0.0"
2582 | postcss-load-config "^3.1.4"
2583 | postcss-nested "5.0.6"
2584 | postcss-selector-parser "^6.0.10"
2585 | postcss-value-parser "^4.2.0"
2586 | quick-lru "^5.1.1"
2587 | resolve "^1.22.1"
2588 |
2589 | text-table@^0.2.0:
2590 | version "0.2.0"
2591 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2592 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
2593 |
2594 | to-regex-range@^5.0.1:
2595 | version "5.0.1"
2596 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
2597 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2598 | dependencies:
2599 | is-number "^7.0.0"
2600 |
2601 | trim-lines@^3.0.0:
2602 | version "3.0.1"
2603 | resolved "https://registry.yarnpkg.com/trim-lines/-/trim-lines-3.0.1.tgz#d802e332a07df861c48802c04321017b1bd87338"
2604 | integrity sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==
2605 |
2606 | trough@^2.0.0:
2607 | version "2.1.0"
2608 | resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876"
2609 | integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==
2610 |
2611 | tslib@^1.8.1:
2612 | version "1.14.1"
2613 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
2614 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
2615 |
2616 | tslib@^2.1.0, tslib@^2.3.1:
2617 | version "2.4.0"
2618 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.4.0.tgz#7cecaa7f073ce680a05847aa77be941098f36dc3"
2619 | integrity sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==
2620 |
2621 | tsutils@^3.21.0:
2622 | version "3.21.0"
2623 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
2624 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
2625 | dependencies:
2626 | tslib "^1.8.1"
2627 |
2628 | type-check@^0.4.0, type-check@~0.4.0:
2629 | version "0.4.0"
2630 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
2631 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
2632 | dependencies:
2633 | prelude-ls "^1.2.1"
2634 |
2635 | type-fest@^0.20.2:
2636 | version "0.20.2"
2637 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
2638 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
2639 |
2640 | typescript@^4.6.3:
2641 | version "4.7.4"
2642 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.7.4.tgz#1a88596d1cf47d59507a1bcdfb5b9dfe4d488235"
2643 | integrity sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==
2644 |
2645 | unbox-primitive@^1.0.2:
2646 | version "1.0.2"
2647 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
2648 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
2649 | dependencies:
2650 | call-bind "^1.0.2"
2651 | has-bigints "^1.0.2"
2652 | has-symbols "^1.0.3"
2653 | which-boxed-primitive "^1.0.2"
2654 |
2655 | unified@^10.0.0:
2656 | version "10.1.2"
2657 | resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df"
2658 | integrity sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==
2659 | dependencies:
2660 | "@types/unist" "^2.0.0"
2661 | bail "^2.0.0"
2662 | extend "^3.0.0"
2663 | is-buffer "^2.0.0"
2664 | is-plain-obj "^4.0.0"
2665 | trough "^2.0.0"
2666 | vfile "^5.0.0"
2667 |
2668 | unist-builder@^3.0.0:
2669 | version "3.0.0"
2670 | resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-3.0.0.tgz#728baca4767c0e784e1e64bb44b5a5a753021a04"
2671 | integrity sha512-GFxmfEAa0vi9i5sd0R2kcrI9ks0r82NasRq5QHh2ysGngrc6GiqD5CDf1FjPenY4vApmFASBIIlk/jj5J5YbmQ==
2672 | dependencies:
2673 | "@types/unist" "^2.0.0"
2674 |
2675 | unist-util-generated@^2.0.0:
2676 | version "2.0.0"
2677 | resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-2.0.0.tgz#86fafb77eb6ce9bfa6b663c3f5ad4f8e56a60113"
2678 | integrity sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw==
2679 |
2680 | unist-util-is@^5.0.0:
2681 | version "5.1.1"
2682 | resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.1.1.tgz#e8aece0b102fa9bc097b0fef8f870c496d4a6236"
2683 | integrity sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==
2684 |
2685 | unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0:
2686 | version "1.1.1"
2687 | resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.1.tgz#96f4d543dfb0428edc01ebb928570b602d280c4c"
2688 | integrity sha512-xtoY50b5+7IH8tFbkw64gisG9tMSpxDjhX9TmaJJae/XuxQ9R/Kc8Nv1eOsf43Gt4KV/LkriMy9mptDr7XLcaw==
2689 | dependencies:
2690 | "@types/unist" "^2.0.0"
2691 |
2692 | unist-util-position@^4.0.0:
2693 | version "4.0.3"
2694 | resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-4.0.3.tgz#5290547b014f6222dff95c48d5c3c13a88fadd07"
2695 | integrity sha512-p/5EMGIa1qwbXjA+QgcBXaPWjSnZfQ2Sc3yBEEfgPwsEmJd8Qh+DSk3LGnmOM4S1bY2C0AjmMnB8RuEYxpPwXQ==
2696 | dependencies:
2697 | "@types/unist" "^2.0.0"
2698 |
2699 | unist-util-remove-position@^4.0.0:
2700 | version "4.0.1"
2701 | resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.1.tgz#d5b46a7304ac114c8d91990ece085ca7c2c135c8"
2702 | integrity sha512-0yDkppiIhDlPrfHELgB+NLQD5mfjup3a8UYclHruTJWmY74je8g+CIFr79x5f6AkmzSwlvKLbs63hC0meOMowQ==
2703 | dependencies:
2704 | "@types/unist" "^2.0.0"
2705 | unist-util-visit "^4.0.0"
2706 |
2707 | unist-util-stringify-position@^3.0.0:
2708 | version "3.0.2"
2709 | resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.2.tgz#5c6aa07c90b1deffd9153be170dce628a869a447"
2710 | integrity sha512-7A6eiDCs9UtjcwZOcCpM4aPII3bAAGv13E96IkawkOAW0OhH+yRxtY0lzo8KiHpzEMfH7Q+FizUmwp8Iqy5EWg==
2711 | dependencies:
2712 | "@types/unist" "^2.0.0"
2713 |
2714 | unist-util-visit-parents@^5.0.0:
2715 | version "5.1.0"
2716 | resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz#44bbc5d25f2411e7dfc5cecff12de43296aa8521"
2717 | integrity sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==
2718 | dependencies:
2719 | "@types/unist" "^2.0.0"
2720 | unist-util-is "^5.0.0"
2721 |
2722 | unist-util-visit@^4.0.0:
2723 | version "4.1.0"
2724 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.0.tgz#f41e407a9e94da31594e6b1c9811c51ab0b3d8f5"
2725 | integrity sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==
2726 | dependencies:
2727 | "@types/unist" "^2.0.0"
2728 | unist-util-is "^5.0.0"
2729 | unist-util-visit-parents "^5.0.0"
2730 |
2731 | update-browserslist-db@^1.0.4:
2732 | version "1.0.5"
2733 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.5.tgz#be06a5eedd62f107b7c19eb5bcefb194411abf38"
2734 | integrity sha512-dteFFpCyvuDdr9S/ff1ISkKt/9YZxKjI9WlRR99c180GaztJtRa/fn18FdxGVKVsnPY7/a/FDN68mcvUmP4U7Q==
2735 | dependencies:
2736 | escalade "^3.1.1"
2737 | picocolors "^1.0.0"
2738 |
2739 | uri-js@^4.2.2:
2740 | version "4.4.1"
2741 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
2742 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
2743 | dependencies:
2744 | punycode "^2.1.0"
2745 |
2746 | util-deprecate@^1.0.2:
2747 | version "1.0.2"
2748 | resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
2749 | integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
2750 |
2751 | uvu@^0.5.0:
2752 | version "0.5.6"
2753 | resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.6.tgz#2754ca20bcb0bb59b64e9985e84d2e81058502df"
2754 | integrity sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==
2755 | dependencies:
2756 | dequal "^2.0.0"
2757 | diff "^5.0.0"
2758 | kleur "^4.0.3"
2759 | sade "^1.7.3"
2760 |
2761 | v8-compile-cache@^2.0.3:
2762 | version "2.3.0"
2763 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
2764 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
2765 |
2766 | vfile-location@^4.0.0:
2767 | version "4.0.1"
2768 | resolved "https://registry.yarnpkg.com/vfile-location/-/vfile-location-4.0.1.tgz#06f2b9244a3565bef91f099359486a08b10d3a95"
2769 | integrity sha512-JDxPlTbZrZCQXogGheBHjbRWjESSPEak770XwWPfw5mTc1v1nWGLB/apzZxsx8a0SJVfF8HK8ql8RD308vXRUw==
2770 | dependencies:
2771 | "@types/unist" "^2.0.0"
2772 | vfile "^5.0.0"
2773 |
2774 | vfile-message@^3.0.0:
2775 | version "3.1.2"
2776 | resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.2.tgz#a2908f64d9e557315ec9d7ea3a910f658ac05f7d"
2777 | integrity sha512-QjSNP6Yxzyycd4SVOtmKKyTsSvClqBPJcd00Z0zuPj3hOIjg0rUPG6DbFGPvUKRgYyaIWLPKpuEclcuvb3H8qA==
2778 | dependencies:
2779 | "@types/unist" "^2.0.0"
2780 | unist-util-stringify-position "^3.0.0"
2781 |
2782 | vfile@^5.0.0:
2783 | version "5.3.4"
2784 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.4.tgz#bbb8c96b956693bbf70b2c67fdb5781dff769b93"
2785 | integrity sha512-KI+7cnst03KbEyN1+JE504zF5bJBZa+J+CrevLeyIMq0aPU681I2rQ5p4PlnQ6exFtWiUrg26QUdFMnAKR6PIw==
2786 | dependencies:
2787 | "@types/unist" "^2.0.0"
2788 | is-buffer "^2.0.0"
2789 | unist-util-stringify-position "^3.0.0"
2790 | vfile-message "^3.0.0"
2791 |
2792 | which-boxed-primitive@^1.0.2:
2793 | version "1.0.2"
2794 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
2795 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
2796 | dependencies:
2797 | is-bigint "^1.0.1"
2798 | is-boolean-object "^1.1.0"
2799 | is-number-object "^1.0.4"
2800 | is-string "^1.0.5"
2801 | is-symbol "^1.0.3"
2802 |
2803 | which@^2.0.1:
2804 | version "2.0.2"
2805 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
2806 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
2807 | dependencies:
2808 | isexe "^2.0.0"
2809 |
2810 | word-wrap@^1.2.3:
2811 | version "1.2.3"
2812 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
2813 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
2814 |
2815 | wrappy@1:
2816 | version "1.0.2"
2817 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2818 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
2819 |
2820 | xtend@^4.0.2:
2821 | version "4.0.2"
2822 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
2823 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
2824 |
2825 | yallist@^4.0.0:
2826 | version "4.0.0"
2827 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
2828 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
2829 |
2830 | yaml@^1.10.2:
2831 | version "1.10.2"
2832 | resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b"
2833 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
2834 |
2835 | zwitch@^2.0.0:
2836 | version "2.0.2"
2837 | resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-2.0.2.tgz#91f8d0e901ffa3d66599756dde7f57b17c95dce1"
2838 | integrity sha512-JZxotl7SxAJH0j7dN4pxsTV6ZLXoLdGME+PsjkL/DaBrVryK9kTGq06GfKrwcSOqypP+fdXGoCHE36b99fWVoA==
2839 |
--------------------------------------------------------------------------------