├── public
├── robots.txt
├── manifest.json
└── favicon.svg
├── postcss.config.js
├── .vscode
└── extensions.json
├── tailwind.config.js
├── .gitignore
├── vite.config.ts
├── .eslintignore
├── .prettierignore
├── src
├── integrations
│ └── react
│ │ ├── framer.tsx
│ │ └── image-gallery.tsx
├── routes
│ ├── index.tsx
│ ├── service-worker.ts
│ ├── layout.tsx
│ └── motion-one
│ │ └── index.tsx
├── entry.dev.tsx
├── components
│ ├── header
│ │ ├── header.css
│ │ └── header.tsx
│ ├── router-head
│ │ └── router-head.tsx
│ └── icons
│ │ └── qwik.tsx
├── entry.preview.tsx
├── entry.ssr.tsx
├── root.tsx
└── global.css
├── tsconfig.json
├── .eslintrc.cjs
├── package.json
├── README.md
└── pnpm-lock.yaml
/public/robots.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/.vscode/extensions.json:
--------------------------------------------------------------------------------
1 | {
2 | "recommendations": ["dbaeumer.vscode-eslint", "unifiedjs.vscode-mdx"],
3 | "unwantedRecommendations": []
4 | }
5 |
--------------------------------------------------------------------------------
/tailwind.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('tailwindcss').Config} */
2 | module.exports = {
3 | content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
4 | theme: {
5 | extend: {},
6 | },
7 | plugins: [],
8 | };
9 |
--------------------------------------------------------------------------------
/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "$schema": "https://json.schemastore.org/web-manifest-combined.json",
3 | "name": "qwik-project-name",
4 | "short_name": "Welcome to Qwik",
5 | "start_url": ".",
6 | "display": "standalone",
7 | "background_color": "#fff",
8 | "description": "A Qwik project app."
9 | }
10 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Build
2 | /dist
3 | /lib
4 | /lib-types
5 | /server
6 |
7 | # Development
8 | node_modules
9 |
10 | # Cache
11 | .cache
12 | .mf
13 | .rollup.cache
14 | tsconfig.tsbuildinfo
15 |
16 | # Logs
17 | logs
18 | *.log
19 | npm-debug.log*
20 | yarn-debug.log*
21 | yarn-error.log*
22 | pnpm-debug.log*
23 | lerna-debug.log*
24 |
25 | # Editor
26 | .vscode/*
27 | !.vscode/extensions.json
28 | .idea
29 | .DS_Store
30 | *.suo
31 | *.ntvs*
32 | *.njsproj
33 | *.sln
34 | *.sw?
35 |
36 | # Yarn
37 | .yarn/*
38 | !.yarn/releases
39 |
--------------------------------------------------------------------------------
/vite.config.ts:
--------------------------------------------------------------------------------
1 | import { defineConfig } from "vite";
2 | import { qwikVite } from "@builder.io/qwik/optimizer";
3 | import { qwikCity } from "@builder.io/qwik-city/vite";
4 | import tsconfigPaths from "vite-tsconfig-paths";
5 | import { qwikReact } from "@builder.io/qwik-react/vite";
6 |
7 | export default defineConfig(() => {
8 | return {
9 | plugins: [qwikCity(), qwikVite(), tsconfigPaths(), qwikReact()],
10 | preview: {
11 | headers: {
12 | "Cache-Control": "public, max-age=600",
13 | },
14 | },
15 | };
16 | });
17 |
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | **/*.log
2 | **/.DS_Store
3 | *.
4 | .vscode/settings.json
5 | .history
6 | .yarn
7 | bazel-*
8 | bazel-bin
9 | bazel-out
10 | bazel-qwik
11 | bazel-testlogs
12 | dist
13 | dist-dev
14 | lib
15 | lib-types
16 | etc
17 | external
18 | node_modules
19 | temp
20 | tsc-out
21 | tsdoc-metadata.json
22 | target
23 | output
24 | rollup.config.js
25 | build
26 | .cache
27 | .vscode
28 | .rollup.cache
29 | dist
30 | tsconfig.tsbuildinfo
31 | vite.config.ts
32 | *.spec.tsx
33 | *.spec.ts
34 | .netlify
35 | pnpm-lock.yaml
36 | package-lock.json
37 | yarn.lock
38 | server
39 |
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | **/*.log
2 | **/.DS_Store
3 | *.
4 | .vscode/settings.json
5 | .history
6 | .yarn
7 | bazel-*
8 | bazel-bin
9 | bazel-out
10 | bazel-qwik
11 | bazel-testlogs
12 | dist
13 | dist-dev
14 | lib
15 | lib-types
16 | etc
17 | external
18 | node_modules
19 | temp
20 | tsc-out
21 | tsdoc-metadata.json
22 | target
23 | output
24 | rollup.config.js
25 | build
26 | .cache
27 | .vscode
28 | .rollup.cache
29 | dist
30 | tsconfig.tsbuildinfo
31 | vite.config.ts
32 | *.spec.tsx
33 | *.spec.ts
34 | .netlify
35 | pnpm-lock.yaml
36 | package-lock.json
37 | yarn.lock
38 | server
39 |
--------------------------------------------------------------------------------
/src/integrations/react/framer.tsx:
--------------------------------------------------------------------------------
1 | /** @jsxImportSource react */
2 | import { qwikify$ } from '@builder.io/qwik-react';
3 | import { motion } from 'framer-motion';
4 |
5 | const MyComponent = () => (
6 |
16 | );
17 |
18 | export const FramerQwik = qwikify$(MyComponent);
19 |
--------------------------------------------------------------------------------
/src/routes/index.tsx:
--------------------------------------------------------------------------------
1 | // FILE: src/routes/index.tsx
2 | // ==========================================
3 |
4 | import { component$ } from '@builder.io/qwik';
5 | import { FramerQwik } from '~/integrations/react/framer';
6 | import { ImageGallery } from '~/integrations/react/image-gallery';
7 |
8 | export default component$(() => {
9 | return (
10 |
11 |
Qwik/React Framer Motion
12 |
13 |
14 |
15 |
16 |
17 | );
18 | });
19 |
--------------------------------------------------------------------------------
/src/entry.dev.tsx:
--------------------------------------------------------------------------------
1 | /*
2 | * WHAT IS THIS FILE?
3 | *
4 | * Development entry point using only client-side modules:
5 | * - Do not use this mode in production!
6 | * - No SSR
7 | * - No portion of the application is pre-rendered on the server.
8 | * - All of the application is running eagerly in the browser.
9 | * - More code is transferred to the browser than in SSR mode.
10 | * - Optimizer/Serialization/Deserialization code is not exercised!
11 | */
12 | import { render, type RenderOptions } from '@builder.io/qwik';
13 | import Root from './root';
14 |
15 | export default function (opts: RenderOptions) {
16 | return render(document, , opts);
17 | }
18 |
--------------------------------------------------------------------------------
/src/components/header/header.css:
--------------------------------------------------------------------------------
1 | header {
2 | display: flex;
3 | background: white;
4 | border-bottom: 10px solid var(--qwik-dark-purple);
5 | }
6 |
7 | header .logo a {
8 | display: inline-block;
9 | padding: 10px 10px 7px 20px;
10 | }
11 |
12 | header ul {
13 | margin: 0;
14 | padding: 3px 10px 0 0;
15 | list-style: none;
16 | flex: 1;
17 | text-align: right;
18 | }
19 |
20 | header li {
21 | display: inline-block;
22 | margin: 0;
23 | padding: 0;
24 | }
25 |
26 | header li a {
27 | display: inline-block;
28 | padding: 15px 10px;
29 | text-decoration: none;
30 | }
31 |
32 | header li a:hover {
33 | text-decoration: underline;
34 | }
35 |
--------------------------------------------------------------------------------
/src/entry.preview.tsx:
--------------------------------------------------------------------------------
1 | /*
2 | * WHAT IS THIS FILE?
3 | *
4 | * It's the bundle entry point for `npm run preview`.
5 | * That is, serving your app built in production mode.
6 | *
7 | * Feel free to modify this file, but don't remove it!
8 | *
9 | * Learn more about Vite's preview command:
10 | * - https://vitejs.dev/config/preview-options.html#preview-options
11 | *
12 | */
13 | import { createQwikCity } from '@builder.io/qwik-city/middleware/node';
14 | import render from './entry.ssr';
15 | import qwikCityPlan from '@qwik-city-plan';
16 |
17 | /**
18 | * The default export is the QwikCity adapter used by Vite preview.
19 | */
20 | export default createQwikCity({ render, qwikCityPlan });
21 |
--------------------------------------------------------------------------------
/src/routes/service-worker.ts:
--------------------------------------------------------------------------------
1 | /*
2 | * WHAT IS THIS FILE?
3 | *
4 | * The service-worker.ts file is used to have state of the art prefetching.
5 | * https://qwik.builder.io/qwikcity/prefetching/overview/
6 | *
7 | * Qwik uses a service worker to speed up your site and reduce latency, ie, not used in the traditional way of offline.
8 | * You can also use this file to add more functionality that runs in the service worker.
9 | */
10 | import { setupServiceWorker } from '@builder.io/qwik-city/service-worker';
11 |
12 | setupServiceWorker();
13 |
14 | addEventListener('install', () => self.skipWaiting());
15 |
16 | addEventListener('activate', () => self.clients.claim());
17 |
18 | declare const self: ServiceWorkerGlobalScope;
19 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "allowJs": true,
4 | "target": "ES2017",
5 | "module": "ES2020",
6 | "lib": ["es2020", "DOM", "WebWorker", "DOM.Iterable"],
7 | "jsx": "react-jsx",
8 | "jsxImportSource": "@builder.io/qwik",
9 | "strict": true,
10 | "forceConsistentCasingInFileNames": true,
11 | "resolveJsonModule": true,
12 | "moduleResolution": "node",
13 | "esModuleInterop": true,
14 | "skipLibCheck": true,
15 | "incremental": true,
16 | "isolatedModules": true,
17 | "outDir": "tmp",
18 | "noEmit": true,
19 | "types": ["node", "vite/client"],
20 | "paths": {
21 | "~/*": ["./src/*"]
22 | }
23 | },
24 | "files": ["./.eslintrc.cjs"],
25 | "include": ["src"]
26 | }
27 |
--------------------------------------------------------------------------------
/src/routes/layout.tsx:
--------------------------------------------------------------------------------
1 | import { component$, Slot } from '@builder.io/qwik';
2 | import { routeLoader$ } from '@builder.io/qwik-city';
3 |
4 | import Header from '../components/header/header';
5 |
6 | export const useServerTimeLoader = routeLoader$(() => {
7 | return {
8 | date: new Date().toISOString(),
9 | };
10 | });
11 |
12 | export default component$(() => {
13 | const serverTime = useServerTimeLoader();
14 | return (
15 | <>
16 |
17 |
18 |
21 |
22 |
28 | >
29 | );
30 | });
31 |
--------------------------------------------------------------------------------
/src/entry.ssr.tsx:
--------------------------------------------------------------------------------
1 | /**
2 | * WHAT IS THIS FILE?
3 | *
4 | * SSR entry point, in all cases the application is render outside the browser, this
5 | * entry point will be the common one.
6 | *
7 | * - Server (express, cloudflare...)
8 | * - npm run start
9 | * - npm run preview
10 | * - npm run build
11 | *
12 | */
13 | import { renderToStream, type RenderToStreamOptions } from '@builder.io/qwik/server';
14 | import { manifest } from '@qwik-client-manifest';
15 | import Root from './root';
16 |
17 | export default function (opts: RenderToStreamOptions) {
18 | return renderToStream(, {
19 | manifest,
20 | ...opts,
21 | // Use container attributes to set attributes on the html tag.
22 | containerAttributes: {
23 | lang: 'en-us',
24 | ...opts.containerAttributes,
25 | },
26 | });
27 | }
28 |
--------------------------------------------------------------------------------
/src/root.tsx:
--------------------------------------------------------------------------------
1 | import { component$ } from '@builder.io/qwik';
2 | import { QwikCityProvider, RouterOutlet, ServiceWorkerRegister } from '@builder.io/qwik-city';
3 | import { RouterHead } from './components/router-head/router-head';
4 |
5 | import './global.css';
6 |
7 | export default component$(() => {
8 | /**
9 | * The root of a QwikCity site always start with the component,
10 | * immediately followed by the document's and .
11 | *
12 | * Dont remove the `` and `` elements.
13 | */
14 |
15 | return (
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 | );
28 | });
29 |
--------------------------------------------------------------------------------
/src/routes/motion-one/index.tsx:
--------------------------------------------------------------------------------
1 | import { component$, useVisibleTask$ } from '@builder.io/qwik';
2 | import { animate } from 'motion';
3 |
4 | export default component$(() => {
5 | useVisibleTask$(() => {
6 | animate(
7 | '#animation-target',
8 | {
9 | scale: [1, 2, 2, 1, 1],
10 | rotate: [0, 0, 270, 270, 0],
11 | borderRadius: ['20%', '20%', '50%', '50%', '20%'],
12 | backgroundColor: [
13 | '#ff008c',
14 | '#d309e1',
15 | '#9c1aff',
16 | '#7700ff',
17 | '#ff008c',
18 | ],
19 | },
20 | {
21 | duration: 2,
22 | easing: 'ease-in-out',
23 | repeat: 2,
24 | direction: 'alternate',
25 | }
26 | );
27 | });
28 | return (
29 |
33 | );
34 | });
35 |
--------------------------------------------------------------------------------
/public/favicon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/components/router-head/router-head.tsx:
--------------------------------------------------------------------------------
1 | import { component$ } from '@builder.io/qwik';
2 | import { useDocumentHead, useLocation } from '@builder.io/qwik-city';
3 |
4 | /**
5 | * The RouterHead component is placed inside of the document `` element.
6 | */
7 | export const RouterHead = component$(() => {
8 | const head = useDocumentHead();
9 | const loc = useLocation();
10 |
11 | return (
12 | <>
13 | {head.title}
14 |
15 |
16 |
17 |
18 |
19 | {head.meta.map((m) => (
20 |
21 | ))}
22 |
23 | {head.links.map((l) => (
24 |
25 | ))}
26 |
27 | {head.styles.map((s) => (
28 |
29 | ))}
30 | >
31 | );
32 | });
33 |
--------------------------------------------------------------------------------
/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | env: {
4 | browser: true,
5 | es2021: true,
6 | node: true,
7 | },
8 | extends: [
9 | 'eslint:recommended',
10 | 'plugin:@typescript-eslint/recommended',
11 | 'plugin:qwik/recommended',
12 | ],
13 | parser: '@typescript-eslint/parser',
14 | parserOptions: {
15 | tsconfigRootDir: __dirname,
16 | project: ['./tsconfig.json'],
17 | ecmaVersion: 2021,
18 | sourceType: 'module',
19 | ecmaFeatures: {
20 | jsx: true,
21 | },
22 | },
23 | plugins: ['@typescript-eslint'],
24 | rules: {
25 | '@typescript-eslint/no-explicit-any': 'off',
26 | '@typescript-eslint/explicit-module-boundary-types': 'off',
27 | '@typescript-eslint/no-inferrable-types': 'off',
28 | '@typescript-eslint/no-non-null-assertion': 'off',
29 | '@typescript-eslint/no-empty-interface': 'off',
30 | '@typescript-eslint/no-namespace': 'off',
31 | '@typescript-eslint/no-empty-function': 'off',
32 | '@typescript-eslint/no-this-alias': 'off',
33 | '@typescript-eslint/ban-types': 'off',
34 | '@typescript-eslint/ban-ts-comment': 'off',
35 | 'prefer-spread': 'off',
36 | 'no-case-declarations': 'off',
37 | 'no-console': 'off',
38 | '@typescript-eslint/no-unused-vars': ['error'],
39 | '@typescript-eslint/consistent-type-imports': 'warn',
40 | },
41 | };
42 |
--------------------------------------------------------------------------------
/src/components/header/header.tsx:
--------------------------------------------------------------------------------
1 | import { component$, useStylesScoped$ } from '@builder.io/qwik';
2 | import { QwikLogo } from '../icons/qwik';
3 | import styles from './header.css?inline';
4 |
5 | export default component$(() => {
6 | useStylesScoped$(styles);
7 |
8 | return (
9 |
53 | );
54 | });
55 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "my-qwik-basic-starter",
3 | "description": "App with Routing built-in (recommended)",
4 | "engines": {
5 | "node": ">=15.0.0"
6 | },
7 | "private": true,
8 | "scripts": {
9 | "build": "qwik build",
10 | "build.client": "vite build",
11 | "build.preview": "vite build --ssr src/entry.preview.tsx",
12 | "build.types": "tsc --incremental --noEmit",
13 | "deploy": "echo 'Run \"npm run qwik add\" to install a server adapter'",
14 | "dev": "vite --mode ssr",
15 | "dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
16 | "fmt": "prettier --write .",
17 | "fmt.check": "prettier --check .",
18 | "lint": "eslint \"src/**/*.ts*\"",
19 | "preview": "qwik build preview && vite preview --open",
20 | "start": "vite --open --mode ssr",
21 | "qwik": "qwik"
22 | },
23 | "devDependencies": {
24 | "@builder.io/qwik": "0.23.0",
25 | "@builder.io/qwik-city": "0.6.5",
26 | "@builder.io/qwik-react": "0.4.2",
27 | "@types/eslint": "8.21.1",
28 | "@types/node": "^18.14.0",
29 | "@types/node-fetch": "latest",
30 | "@types/react": "18.0.28",
31 | "@types/react-dom": "18.0.11",
32 | "@typescript-eslint/eslint-plugin": "5.54.0",
33 | "@typescript-eslint/parser": "5.54.0",
34 | "autoprefixer": "^10.4.13",
35 | "eslint": "8.35.0",
36 | "eslint-plugin-qwik": "0.21.0",
37 | "node-fetch": "3.3.0",
38 | "postcss": "^8.4.16",
39 | "prettier": "2.8.4",
40 | "react": "18.2.0",
41 | "react-dom": "18.2.0",
42 | "tailwindcss": "^3.1.8",
43 | "typescript": "4.9.5",
44 | "undici": "5.20.0",
45 | "vite": "4.1.4",
46 | "vite-tsconfig-paths": "3.5.0"
47 | },
48 | "dependencies": {
49 | "framer-motion": "^10.3.2",
50 | "motion": "^10.15.5",
51 | "popmotion": "^11.0.5"
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | The code repo for ["Building Framer Motion Animations Inside a Qwik Application"](https://builder.io/blog/framer-motion-qwik)
2 |
3 | # Qwik City App ⚡️
4 |
5 | - [Qwik Docs](https://qwik.builder.io/)
6 | - [Discord](https://qwik.builder.io/chat)
7 | - [Qwik GitHub](https://github.com/BuilderIO/qwik)
8 | - [@QwikDev](https://twitter.com/QwikDev)
9 | - [Vite](https://vitejs.dev/)
10 |
11 | ---
12 |
13 | ## Project Structure
14 |
15 | This project is using Qwik with [QwikCity](https://qwik.builder.io/qwikcity/overview/). QwikCity is just a extra set of tools on top of Qwik to make it easier to build a full site, including directory-based routing, layouts, and more.
16 |
17 | Inside your project, you'll see the following directory structure:
18 |
19 | ```
20 | ├── public/
21 | │ └── ...
22 | └── src/
23 | ├── components/
24 | │ └── ...
25 | └── routes/
26 | └── ...
27 | ```
28 |
29 | - `src/routes`: Provides the directory based routing, which can include a hierarchy of `layout.tsx` layout files, and an `index.tsx` file as the page. Additionally, `index.ts` files are endpoints. Please see the [routing docs](https://qwik.builder.io/qwikcity/routing/overview/) for more info.
30 |
31 | - `src/components`: Recommended directory for components.
32 |
33 | - `public`: Any static assets, like images, can be placed in the public directory. Please see the [Vite public directory](https://vitejs.dev/guide/assets.html#the-public-directory) for more info.
34 |
35 | ## Add Integrations and deployment
36 |
37 | Use the `pnpm qwik add` command to add additional integrations. Some examples of integrations include: Cloudflare, Netlify or Express server, and the [Static Site Generator (SSG)](https://qwik.builder.io/qwikcity/guides/static-site-generation/).
38 |
39 | ```shell
40 | pnpm qwik add # or `yarn qwik add`
41 | ```
42 |
43 | ## Development
44 |
45 | Development mode uses [Vite's development server](https://vitejs.dev/). During development, the `dev` command will server-side render (SSR) the output.
46 |
47 | ```shell
48 | npm start # or `yarn start`
49 | ```
50 |
51 | > Note: during dev mode, Vite may request a significant number of `.js` files. This does not represent a Qwik production build.
52 |
53 | ## Preview
54 |
55 | The preview command will create a production build of the client modules, a production build of `src/entry.preview.tsx`, and run a local server. The preview server is only for convenience to locally preview a production build, and it should not be used as a production server.
56 |
57 | ```shell
58 | pnpm preview # or `yarn preview`
59 | ```
60 |
61 | ## Production
62 |
63 | The production build will generate client and server modules by running both client and server build commands. Additionally, the build command will use Typescript to run a type check on the source code.
64 |
65 | ```shell
66 | pnpm build # or `yarn build`
67 | ```
68 |
--------------------------------------------------------------------------------
/src/components/icons/qwik.tsx:
--------------------------------------------------------------------------------
1 | export const QwikLogo = () => (
2 |
32 | );
33 |
--------------------------------------------------------------------------------
/src/integrations/react/image-gallery.tsx:
--------------------------------------------------------------------------------
1 | /** @jsxImportSource react */
2 |
3 | import { useState } from 'react';
4 | import { motion, AnimatePresence } from 'framer-motion';
5 | import { wrap } from 'popmotion';
6 | import { qwikify$ } from '@builder.io/qwik-react';
7 |
8 | const images = [
9 | 'https://d33wubrfki0l68.cloudfront.net/dd23708ebc4053551bb33e18b7174e73b6e1710b/dea24/static/images/wallpapers/shared-colors@2x.png',
10 | 'https://d33wubrfki0l68.cloudfront.net/49de349d12db851952c5556f3c637ca772745316/cfc56/static/images/wallpapers/bridge-02@2x.png',
11 | 'https://d33wubrfki0l68.cloudfront.net/594de66469079c21fc54c14db0591305a1198dd6/3f4b1/static/images/wallpapers/bridge-01@2x.png',
12 | ];
13 |
14 | const variants = {
15 | enter: (direction: number) => {
16 | return {
17 | x: direction > 0 ? 1000 : -1000,
18 | opacity: 0,
19 | };
20 | },
21 | center: {
22 | zIndex: 1,
23 | x: 0,
24 | opacity: 1,
25 | },
26 | exit: (direction: number) => {
27 | return {
28 | zIndex: 0,
29 | x: direction < 0 ? 1000 : -1000,
30 | opacity: 0,
31 | };
32 | },
33 | };
34 |
35 | /**
36 | * Experimenting with distilling swipe offset and velocity into a single variable, so the
37 | * less distance a user has swiped, the more velocity they need to register as a swipe.
38 | * Should accomodate longer swipes and short flicks without having binary checks on
39 | * just distance thresholds and velocity > 0.
40 | */
41 | const swipeConfidenceThreshold = 10000;
42 | const swipePower = (offset: number, velocity: number) => {
43 | return Math.abs(offset) * velocity;
44 | };
45 |
46 | export const Example = () => {
47 | const [[page, direction], setPage] = useState([0, 0]);
48 |
49 | // We only have 3 images, but we paginate them absolutely (ie 1, 2, 3, 4, 5...) and
50 | // then wrap that within 0-2 to find our image ID in the array below. By passing an
51 | // absolute page index as the `motion` component's `key` prop, `AnimatePresence` will
52 | // detect it as an entirely new image. So you can infinitely paginate as few as 1 images.
53 | const imageIndex = wrap(0, images.length, page);
54 |
55 | const paginate = (newDirection: number) => {
56 | setPage([page + newDirection, newDirection]);
57 | };
58 |
59 | return (
60 |
61 |
62 | {
78 | const swipe = swipePower(offset.x, velocity.x);
79 |
80 | if (swipe < -swipeConfidenceThreshold) {
81 | paginate(1);
82 | } else if (swipe > swipeConfidenceThreshold) {
83 | paginate(-1);
84 | }
85 | }}
86 | />
87 |
88 |
paginate(1)}>
89 | {'‣'}
90 |
91 |
paginate(-1)}>
92 | {'‣'}
93 |
94 |
95 | );
96 | };
97 |
98 | export const ImageGallery = qwikify$(Example);
99 |
--------------------------------------------------------------------------------
/src/global.css:
--------------------------------------------------------------------------------
1 | /**
2 | * WHAT IS THIS FILE?
3 | *
4 | * Globally applied styles. No matter which components are in the page or matching route,
5 | * the styles in here will be applied to the Document, without any sort of CSS scoping.
6 | *
7 | */
8 |
9 | @tailwind base;
10 | @tailwind components;
11 | @tailwind utilities;
12 |
13 | :root {
14 | --qwik-dark-blue: #006ce9;
15 | --qwik-light-blue: #18b6f6;
16 | --qwik-light-purple: #ac7ff4;
17 | --qwik-dark-purple: #713fc2;
18 | }
19 |
20 | /* body {
21 | background-color: #fafafa;
22 | font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
23 | sans-serif;
24 | padding: 20px 20px 40px 20px;
25 | }
26 |
27 | main {
28 | max-width: 760px;
29 | margin: 0 auto;
30 | background-color: white;
31 | border-radius: 5px;
32 | box-shadow: 0px 0px 130px -50px var(--qwik-light-purple);
33 | overflow: hidden;
34 | } */
35 |
36 | h1,
37 | h2 {
38 | margin: 0 0 5px 0;
39 | }
40 |
41 | .lightning {
42 | filter: hue-rotate(180deg);
43 | }
44 |
45 | section {
46 | border-bottom: 10px solid var(--qwik-dark-blue);
47 | }
48 |
49 | ul {
50 | list-style-type: square;
51 | margin: 5px 0 30px 0;
52 | padding-left: 25px;
53 | }
54 |
55 | li {
56 | padding: 8px 0;
57 | }
58 |
59 | li::marker {
60 | color: var(--qwik-light-blue);
61 | }
62 |
63 | a,
64 | a:visited {
65 | color: var(--qwik-dark-blue);
66 | }
67 |
68 | a:hover {
69 | text-decoration: none;
70 | }
71 |
72 | table.commands {
73 | margin: 0 0 30px 0;
74 | }
75 |
76 | .commands td {
77 | padding: 5px;
78 | }
79 |
80 | .commands td:first-child {
81 | white-space: nowrap;
82 | padding-right: 20px;
83 | }
84 |
85 | code {
86 | font-family: Menlo, Monaco, Courier New, monospace;
87 | font-size: 0.9em;
88 | background-color: rgb(224, 224, 224);
89 | padding: 2px 4px;
90 | border-radius: 3px;
91 | border-bottom: 2px solid #bfbfbf;
92 | }
93 |
94 | footer {
95 | padding: 15px;
96 | text-align: center;
97 | font-size: 0.8em;
98 | }
99 |
100 | footer a {
101 | text-decoration: none;
102 | }
103 |
104 | footer a:hover {
105 | text-decoration: underline;
106 | }
107 |
108 | a.mindblow,
109 | a.todolist {
110 | margin: 10px auto;
111 | display: block;
112 | background: var(--qwik-dark-purple);
113 | padding: 10px 20px 14px;
114 | border-radius: 10px;
115 | border: 0;
116 | color: white;
117 | text-decoration: none;
118 | font-size: 20px;
119 | width: fit-content;
120 | box-shadow: inset 0px -4px 0px black;
121 | cursor: url("data:image/svg+xml;utf8,")
122 | 16 0,
123 | auto; /*!emojicursor.app*/
124 | }
125 |
126 | a.mindblow:hover,
127 | a.todolist:hover {
128 | box-shadow: inset 0px 4px 0px white;
129 | padding: 14px 20px 10px;
130 | }
131 |
132 | /* Image gallery CSS */
133 |
134 | .framer-gallery {
135 | width: 100vw;
136 | height: 100vh;
137 | background: #151515;
138 | overflow: hidden;
139 | padding: 0;
140 | margin: 0;
141 | display: flex;
142 | justify-content: center;
143 | align-items: center;
144 | position: relative;
145 | }
146 |
147 | .example-container {
148 | width: 100vw;
149 | height: 100vh;
150 | position: relative;
151 | display: flex;
152 | justify-content: center;
153 | align-items: center;
154 | }
155 |
156 | .next,
157 | .prev {
158 | top: calc(50% - 20px);
159 | position: absolute;
160 | background: white;
161 | border-radius: 30px;
162 | width: 40px;
163 | height: 40px;
164 | display: flex;
165 | justify-content: center;
166 | align-items: center;
167 | user-select: none;
168 | cursor: pointer;
169 | font-weight: bold;
170 | font-size: 18px;
171 | z-index: 2;
172 | }
173 |
174 | .next {
175 | right: 10px;
176 | }
177 |
178 | .prev {
179 | left: 10px;
180 | transform: scale(-1);
181 | }
182 |
183 | img {
184 | position: absolute;
185 | max-width: 100vw;
186 | }
187 |
188 | .refresh {
189 | padding: 10px;
190 | position: absolute;
191 | background: rgba(0, 0, 0, 0.4);
192 | border-radius: 10px;
193 | width: 20px;
194 | height: 20px;
195 | top: 10px;
196 | right: 10px;
197 | display: flex;
198 | justify-content: center;
199 | align-items: center;
200 | cursor: pointer;
201 | }
202 |
--------------------------------------------------------------------------------
/pnpm-lock.yaml:
--------------------------------------------------------------------------------
1 | lockfileVersion: 5.4
2 |
3 | specifiers:
4 | '@builder.io/qwik': 0.23.0
5 | '@builder.io/qwik-city': 0.6.5
6 | '@builder.io/qwik-react': 0.4.2
7 | '@types/eslint': 8.21.1
8 | '@types/node': ^18.14.0
9 | '@types/node-fetch': latest
10 | '@types/react': 18.0.28
11 | '@types/react-dom': 18.0.11
12 | '@typescript-eslint/eslint-plugin': 5.54.0
13 | '@typescript-eslint/parser': 5.54.0
14 | autoprefixer: ^10.4.13
15 | eslint: 8.35.0
16 | eslint-plugin-qwik: 0.21.0
17 | framer-motion: ^10.3.2
18 | motion: ^10.15.5
19 | node-fetch: 3.3.0
20 | popmotion: ^11.0.5
21 | postcss: ^8.4.16
22 | prettier: 2.8.4
23 | react: 18.2.0
24 | react-dom: 18.2.0
25 | tailwindcss: ^3.1.8
26 | typescript: 4.9.5
27 | undici: 5.20.0
28 | vite: 4.1.4
29 | vite-tsconfig-paths: 3.5.0
30 |
31 | dependencies:
32 | framer-motion: 10.3.2_biqbaboplfbrettd7655fr4n2y
33 | motion: 10.15.5
34 | popmotion: 11.0.5
35 |
36 | devDependencies:
37 | '@builder.io/qwik': 0.23.0_undici@5.20.0
38 | '@builder.io/qwik-city': 0.6.5_@builder.io+qwik@0.23.0
39 | '@builder.io/qwik-react': 0.4.2_rmwzotcqjoe2cxnjujxo2d5yqa
40 | '@types/eslint': 8.21.1
41 | '@types/node': 18.15.3
42 | '@types/node-fetch': 2.6.2
43 | '@types/react': 18.0.28
44 | '@types/react-dom': 18.0.11
45 | '@typescript-eslint/eslint-plugin': 5.54.0_6mj2wypvdnknez7kws2nfdgupi
46 | '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
47 | autoprefixer: 10.4.14_postcss@8.4.21
48 | eslint: 8.35.0
49 | eslint-plugin-qwik: 0.21.0_eslint@8.35.0
50 | node-fetch: 3.3.0
51 | postcss: 8.4.21
52 | prettier: 2.8.4
53 | react: 18.2.0
54 | react-dom: 18.2.0_react@18.2.0
55 | tailwindcss: 3.2.7_postcss@8.4.21
56 | typescript: 4.9.5
57 | undici: 5.20.0
58 | vite: 4.1.4_@types+node@18.15.3
59 | vite-tsconfig-paths: 3.5.0_vite@4.1.4
60 |
61 | packages:
62 |
63 | /@builder.io/qwik-city/0.6.5_@builder.io+qwik@0.23.0:
64 | resolution: {integrity: sha512-XGEoF2Q9tBeofjwtqxyZjA+3V50WDJTfhDjlHD1w2ShqyAZOnzxySrgznLfGG86H5YqOPNW9cH5uZ+ZINssYuA==}
65 | engines: {node: '>=16.8.0 <18.0.0 || >=18.11'}
66 | peerDependencies:
67 | '@builder.io/qwik': '>=0.22.0'
68 | dependencies:
69 | '@builder.io/qwik': 0.23.0_undici@5.20.0
70 | '@mdx-js/mdx': 2.3.0
71 | '@types/mdx': 2.0.3
72 | source-map: 0.7.4
73 | vfile: 5.3.7
74 | zod: 3.21.4
75 | transitivePeerDependencies:
76 | - supports-color
77 | dev: true
78 |
79 | /@builder.io/qwik-react/0.4.2_rmwzotcqjoe2cxnjujxo2d5yqa:
80 | resolution: {integrity: sha512-YyGhsEqVPIC2LhCo01GcyJQV7AZoZhPbipi9T9qB6F6FwerKzZanR9mx+T53gxrm4RscDW4DO4EBJ/j7a2IyOg==}
81 | engines: {node: '>=16'}
82 | peerDependencies:
83 | '@builder.io/qwik': '>=0.19.0'
84 | '@types/react': '>=18.0.1'
85 | '@types/react-dom': '>=18.0.0'
86 | react: '>=18.0.0'
87 | react-dom: '>=18.0.0'
88 | dependencies:
89 | '@builder.io/qwik': 0.23.0_undici@5.20.0
90 | '@types/react': 18.0.28
91 | '@types/react-dom': 18.0.11
92 | react: 18.2.0
93 | react-dom: 18.2.0_react@18.2.0
94 | dev: true
95 |
96 | /@builder.io/qwik/0.23.0_undici@5.20.0:
97 | resolution: {integrity: sha512-srbA4o9KyeGXA0fUibZW7I6iasjYhpBlp1Iq74dLTB4Py66wfazpekZ+qi57XcuSj3cBPf/Rsz/yxvQx5DwM2g==}
98 | engines: {node: '>=16.8.0 <18.0.0 || >=18.11'}
99 | hasBin: true
100 | peerDependencies:
101 | undici: ^5.14.0
102 | dependencies:
103 | undici: 5.20.0
104 | dev: true
105 |
106 | /@cush/relative/1.0.0:
107 | resolution: {integrity: sha512-RpfLEtTlyIxeNPGKcokS+p3BZII/Q3bYxryFRglh5H3A3T8q9fsLYm72VYAMEOOIBLEa8o93kFLiBDUWKrwXZA==}
108 | dev: true
109 |
110 | /@emotion/is-prop-valid/0.8.8:
111 | resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
112 | requiresBuild: true
113 | dependencies:
114 | '@emotion/memoize': 0.7.4
115 | dev: false
116 | optional: true
117 |
118 | /@emotion/memoize/0.7.4:
119 | resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
120 | dev: false
121 | optional: true
122 |
123 | /@esbuild/android-arm/0.16.17:
124 | resolution: {integrity: sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==}
125 | engines: {node: '>=12'}
126 | cpu: [arm]
127 | os: [android]
128 | requiresBuild: true
129 | dev: true
130 | optional: true
131 |
132 | /@esbuild/android-arm64/0.16.17:
133 | resolution: {integrity: sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==}
134 | engines: {node: '>=12'}
135 | cpu: [arm64]
136 | os: [android]
137 | requiresBuild: true
138 | dev: true
139 | optional: true
140 |
141 | /@esbuild/android-x64/0.16.17:
142 | resolution: {integrity: sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==}
143 | engines: {node: '>=12'}
144 | cpu: [x64]
145 | os: [android]
146 | requiresBuild: true
147 | dev: true
148 | optional: true
149 |
150 | /@esbuild/darwin-arm64/0.16.17:
151 | resolution: {integrity: sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==}
152 | engines: {node: '>=12'}
153 | cpu: [arm64]
154 | os: [darwin]
155 | requiresBuild: true
156 | dev: true
157 | optional: true
158 |
159 | /@esbuild/darwin-x64/0.16.17:
160 | resolution: {integrity: sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==}
161 | engines: {node: '>=12'}
162 | cpu: [x64]
163 | os: [darwin]
164 | requiresBuild: true
165 | dev: true
166 | optional: true
167 |
168 | /@esbuild/freebsd-arm64/0.16.17:
169 | resolution: {integrity: sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==}
170 | engines: {node: '>=12'}
171 | cpu: [arm64]
172 | os: [freebsd]
173 | requiresBuild: true
174 | dev: true
175 | optional: true
176 |
177 | /@esbuild/freebsd-x64/0.16.17:
178 | resolution: {integrity: sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==}
179 | engines: {node: '>=12'}
180 | cpu: [x64]
181 | os: [freebsd]
182 | requiresBuild: true
183 | dev: true
184 | optional: true
185 |
186 | /@esbuild/linux-arm/0.16.17:
187 | resolution: {integrity: sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==}
188 | engines: {node: '>=12'}
189 | cpu: [arm]
190 | os: [linux]
191 | requiresBuild: true
192 | dev: true
193 | optional: true
194 |
195 | /@esbuild/linux-arm64/0.16.17:
196 | resolution: {integrity: sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==}
197 | engines: {node: '>=12'}
198 | cpu: [arm64]
199 | os: [linux]
200 | requiresBuild: true
201 | dev: true
202 | optional: true
203 |
204 | /@esbuild/linux-ia32/0.16.17:
205 | resolution: {integrity: sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==}
206 | engines: {node: '>=12'}
207 | cpu: [ia32]
208 | os: [linux]
209 | requiresBuild: true
210 | dev: true
211 | optional: true
212 |
213 | /@esbuild/linux-loong64/0.16.17:
214 | resolution: {integrity: sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==}
215 | engines: {node: '>=12'}
216 | cpu: [loong64]
217 | os: [linux]
218 | requiresBuild: true
219 | dev: true
220 | optional: true
221 |
222 | /@esbuild/linux-mips64el/0.16.17:
223 | resolution: {integrity: sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==}
224 | engines: {node: '>=12'}
225 | cpu: [mips64el]
226 | os: [linux]
227 | requiresBuild: true
228 | dev: true
229 | optional: true
230 |
231 | /@esbuild/linux-ppc64/0.16.17:
232 | resolution: {integrity: sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==}
233 | engines: {node: '>=12'}
234 | cpu: [ppc64]
235 | os: [linux]
236 | requiresBuild: true
237 | dev: true
238 | optional: true
239 |
240 | /@esbuild/linux-riscv64/0.16.17:
241 | resolution: {integrity: sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==}
242 | engines: {node: '>=12'}
243 | cpu: [riscv64]
244 | os: [linux]
245 | requiresBuild: true
246 | dev: true
247 | optional: true
248 |
249 | /@esbuild/linux-s390x/0.16.17:
250 | resolution: {integrity: sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==}
251 | engines: {node: '>=12'}
252 | cpu: [s390x]
253 | os: [linux]
254 | requiresBuild: true
255 | dev: true
256 | optional: true
257 |
258 | /@esbuild/linux-x64/0.16.17:
259 | resolution: {integrity: sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==}
260 | engines: {node: '>=12'}
261 | cpu: [x64]
262 | os: [linux]
263 | requiresBuild: true
264 | dev: true
265 | optional: true
266 |
267 | /@esbuild/netbsd-x64/0.16.17:
268 | resolution: {integrity: sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==}
269 | engines: {node: '>=12'}
270 | cpu: [x64]
271 | os: [netbsd]
272 | requiresBuild: true
273 | dev: true
274 | optional: true
275 |
276 | /@esbuild/openbsd-x64/0.16.17:
277 | resolution: {integrity: sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==}
278 | engines: {node: '>=12'}
279 | cpu: [x64]
280 | os: [openbsd]
281 | requiresBuild: true
282 | dev: true
283 | optional: true
284 |
285 | /@esbuild/sunos-x64/0.16.17:
286 | resolution: {integrity: sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==}
287 | engines: {node: '>=12'}
288 | cpu: [x64]
289 | os: [sunos]
290 | requiresBuild: true
291 | dev: true
292 | optional: true
293 |
294 | /@esbuild/win32-arm64/0.16.17:
295 | resolution: {integrity: sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==}
296 | engines: {node: '>=12'}
297 | cpu: [arm64]
298 | os: [win32]
299 | requiresBuild: true
300 | dev: true
301 | optional: true
302 |
303 | /@esbuild/win32-ia32/0.16.17:
304 | resolution: {integrity: sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==}
305 | engines: {node: '>=12'}
306 | cpu: [ia32]
307 | os: [win32]
308 | requiresBuild: true
309 | dev: true
310 | optional: true
311 |
312 | /@esbuild/win32-x64/0.16.17:
313 | resolution: {integrity: sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==}
314 | engines: {node: '>=12'}
315 | cpu: [x64]
316 | os: [win32]
317 | requiresBuild: true
318 | dev: true
319 | optional: true
320 |
321 | /@eslint/eslintrc/2.0.1:
322 | resolution: {integrity: sha512-eFRmABvW2E5Ho6f5fHLqgena46rOj7r7OKHYfLElqcBfGFHHpjBhivyi5+jOEQuSpdc/1phIZJlbC2te+tZNIw==}
323 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
324 | dependencies:
325 | ajv: 6.12.6
326 | debug: 4.3.4
327 | espree: 9.5.0
328 | globals: 13.20.0
329 | ignore: 5.2.4
330 | import-fresh: 3.3.0
331 | js-yaml: 4.1.0
332 | minimatch: 3.1.2
333 | strip-json-comments: 3.1.1
334 | transitivePeerDependencies:
335 | - supports-color
336 | dev: true
337 |
338 | /@eslint/js/8.35.0:
339 | resolution: {integrity: sha512-JXdzbRiWclLVoD8sNUjR443VVlYqiYmDVT6rGUEIEHU5YJW0gaVZwV2xgM7D4arkvASqD0IlLUVjHiFuxaftRw==}
340 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
341 | dev: true
342 |
343 | /@humanwhocodes/config-array/0.11.8:
344 | resolution: {integrity: sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==}
345 | engines: {node: '>=10.10.0'}
346 | dependencies:
347 | '@humanwhocodes/object-schema': 1.2.1
348 | debug: 4.3.4
349 | minimatch: 3.1.2
350 | transitivePeerDependencies:
351 | - supports-color
352 | dev: true
353 |
354 | /@humanwhocodes/module-importer/1.0.1:
355 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
356 | engines: {node: '>=12.22'}
357 | dev: true
358 |
359 | /@humanwhocodes/object-schema/1.2.1:
360 | resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
361 | dev: true
362 |
363 | /@mdx-js/mdx/2.3.0:
364 | resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==}
365 | dependencies:
366 | '@types/estree-jsx': 1.0.0
367 | '@types/mdx': 2.0.3
368 | estree-util-build-jsx: 2.2.2
369 | estree-util-is-identifier-name: 2.1.0
370 | estree-util-to-js: 1.2.0
371 | estree-walker: 3.0.3
372 | hast-util-to-estree: 2.3.2
373 | markdown-extensions: 1.1.1
374 | periscopic: 3.1.0
375 | remark-mdx: 2.3.0
376 | remark-parse: 10.0.1
377 | remark-rehype: 10.1.0
378 | unified: 10.1.2
379 | unist-util-position-from-estree: 1.1.2
380 | unist-util-stringify-position: 3.0.3
381 | unist-util-visit: 4.1.2
382 | vfile: 5.3.7
383 | transitivePeerDependencies:
384 | - supports-color
385 | dev: true
386 |
387 | /@motionone/animation/10.15.1:
388 | resolution: {integrity: sha512-mZcJxLjHor+bhcPuIFErMDNyrdb2vJur8lSfMCsuCB4UyV8ILZLvK+t+pg56erv8ud9xQGK/1OGPt10agPrCyQ==}
389 | dependencies:
390 | '@motionone/easing': 10.15.1
391 | '@motionone/types': 10.15.1
392 | '@motionone/utils': 10.15.1
393 | tslib: 2.5.0
394 | dev: false
395 |
396 | /@motionone/dom/10.15.5:
397 | resolution: {integrity: sha512-Xc5avlgyh3xukU9tydh9+8mB8+2zAq+WlLsC3eEIp7Ax7DnXgY7Bj/iv0a4X2R9z9ZFZiaXK3BO0xMYHKbAAdA==}
398 | dependencies:
399 | '@motionone/animation': 10.15.1
400 | '@motionone/generators': 10.15.1
401 | '@motionone/types': 10.15.1
402 | '@motionone/utils': 10.15.1
403 | hey-listen: 1.0.8
404 | tslib: 2.5.0
405 | dev: false
406 |
407 | /@motionone/easing/10.15.1:
408 | resolution: {integrity: sha512-6hIHBSV+ZVehf9dcKZLT7p5PEKHGhDwky2k8RKkmOvUoYP3S+dXsKupyZpqx5apjd9f+php4vXk4LuS+ADsrWw==}
409 | dependencies:
410 | '@motionone/utils': 10.15.1
411 | tslib: 2.5.0
412 | dev: false
413 |
414 | /@motionone/generators/10.15.1:
415 | resolution: {integrity: sha512-67HLsvHJbw6cIbLA/o+gsm7h+6D4Sn7AUrB/GPxvujse1cGZ38F5H7DzoH7PhX+sjvtDnt2IhFYF2Zp1QTMKWQ==}
416 | dependencies:
417 | '@motionone/types': 10.15.1
418 | '@motionone/utils': 10.15.1
419 | tslib: 2.5.0
420 | dev: false
421 |
422 | /@motionone/svelte/10.15.5:
423 | resolution: {integrity: sha512-Xyxtgp7BlVnSBwcoFmXGHUVnpNktzeXsEifu2NJJWc7VGuxutDsBZxNdz80qvpLIC5MeBa1wh7GGegZzTm1msg==}
424 | dependencies:
425 | '@motionone/dom': 10.15.5
426 | tslib: 2.5.0
427 | dev: false
428 |
429 | /@motionone/types/10.15.1:
430 | resolution: {integrity: sha512-iIUd/EgUsRZGrvW0jqdst8st7zKTzS9EsKkP+6c6n4MPZoQHwiHuVtTQLD6Kp0bsBLhNzKIBlHXponn/SDT4hA==}
431 | dev: false
432 |
433 | /@motionone/utils/10.15.1:
434 | resolution: {integrity: sha512-p0YncgU+iklvYr/Dq4NobTRdAPv9PveRDUXabPEeOjBLSO/1FNB2phNTZxOxpi1/GZwYpAoECEa0Wam+nsmhSw==}
435 | dependencies:
436 | '@motionone/types': 10.15.1
437 | hey-listen: 1.0.8
438 | tslib: 2.5.0
439 | dev: false
440 |
441 | /@motionone/vue/10.15.5:
442 | resolution: {integrity: sha512-cUENrLYAolUacHvCgU+8wF9OgSlVutfWbHMLERI/bElCJ+e2YVQvG/CpGhIM5fYOOJzuvg2T2wHmLLmvJoavEw==}
443 | dependencies:
444 | '@motionone/dom': 10.15.5
445 | tslib: 2.5.0
446 | dev: false
447 |
448 | /@nodelib/fs.scandir/2.1.5:
449 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
450 | engines: {node: '>= 8'}
451 | dependencies:
452 | '@nodelib/fs.stat': 2.0.5
453 | run-parallel: 1.2.0
454 | dev: true
455 |
456 | /@nodelib/fs.stat/2.0.5:
457 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
458 | engines: {node: '>= 8'}
459 | dev: true
460 |
461 | /@nodelib/fs.walk/1.2.8:
462 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
463 | engines: {node: '>= 8'}
464 | dependencies:
465 | '@nodelib/fs.scandir': 2.1.5
466 | fastq: 1.15.0
467 | dev: true
468 |
469 | /@types/acorn/4.0.6:
470 | resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
471 | dependencies:
472 | '@types/estree': 1.0.0
473 | dev: true
474 |
475 | /@types/debug/4.1.7:
476 | resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==}
477 | dependencies:
478 | '@types/ms': 0.7.31
479 | dev: true
480 |
481 | /@types/eslint/8.21.1:
482 | resolution: {integrity: sha512-rc9K8ZpVjNcLs8Fp0dkozd5Pt2Apk1glO4Vgz8ix1u6yFByxfqo5Yavpy65o+93TAe24jr7v+eSBtFLvOQtCRQ==}
483 | dependencies:
484 | '@types/estree': 1.0.0
485 | '@types/json-schema': 7.0.11
486 | dev: true
487 |
488 | /@types/estree-jsx/1.0.0:
489 | resolution: {integrity: sha512-3qvGd0z8F2ENTGr/GG1yViqfiKmRfrXVx5sJyHGFu3z7m5g5utCQtGp/g29JnjflhtQJBv1WDQukHiT58xPcYQ==}
490 | dependencies:
491 | '@types/estree': 1.0.0
492 | dev: true
493 |
494 | /@types/estree/1.0.0:
495 | resolution: {integrity: sha512-WulqXMDUTYAXCjZnk6JtIHPigp55cVtDgDrO2gHRwhyJto21+1zbVCtOYB2L1F9w4qCQ0rOGWBnBe0FNTiEJIQ==}
496 | dev: true
497 |
498 | /@types/hast/2.3.4:
499 | resolution: {integrity: sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==}
500 | dependencies:
501 | '@types/unist': 2.0.6
502 | dev: true
503 |
504 | /@types/json-schema/7.0.11:
505 | resolution: {integrity: sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==}
506 | dev: true
507 |
508 | /@types/mdast/3.0.10:
509 | resolution: {integrity: sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==}
510 | dependencies:
511 | '@types/unist': 2.0.6
512 | dev: true
513 |
514 | /@types/mdx/2.0.3:
515 | resolution: {integrity: sha512-IgHxcT3RC8LzFLhKwP3gbMPeaK7BM9eBH46OdapPA7yvuIUJ8H6zHZV53J8hGZcTSnt95jANt+rTBNUUc22ACQ==}
516 | dev: true
517 |
518 | /@types/ms/0.7.31:
519 | resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==}
520 | dev: true
521 |
522 | /@types/node-fetch/2.6.2:
523 | resolution: {integrity: sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==}
524 | dependencies:
525 | '@types/node': 18.15.3
526 | form-data: 3.0.1
527 | dev: true
528 |
529 | /@types/node/18.15.3:
530 | resolution: {integrity: sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw==}
531 | dev: true
532 |
533 | /@types/prop-types/15.7.5:
534 | resolution: {integrity: sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==}
535 | dev: true
536 |
537 | /@types/react-dom/18.0.11:
538 | resolution: {integrity: sha512-O38bPbI2CWtgw/OoQoY+BRelw7uysmXbWvw3nLWO21H1HSh+GOlqPuXshJfjmpNlKiiSDG9cc1JZAaMmVdcTlw==}
539 | dependencies:
540 | '@types/react': 18.0.28
541 | dev: true
542 |
543 | /@types/react/18.0.28:
544 | resolution: {integrity: sha512-RD0ivG1kEztNBdoAK7lekI9M+azSnitIn85h4iOiaLjaTrMjzslhaqCGaI4IyCJ1RljWiLCEu4jyrLLgqxBTew==}
545 | dependencies:
546 | '@types/prop-types': 15.7.5
547 | '@types/scheduler': 0.16.2
548 | csstype: 3.1.1
549 | dev: true
550 |
551 | /@types/scheduler/0.16.2:
552 | resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==}
553 | dev: true
554 |
555 | /@types/semver/7.3.13:
556 | resolution: {integrity: sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw==}
557 | dev: true
558 |
559 | /@types/unist/2.0.6:
560 | resolution: {integrity: sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==}
561 | dev: true
562 |
563 | /@typescript-eslint/eslint-plugin/5.54.0_6mj2wypvdnknez7kws2nfdgupi:
564 | resolution: {integrity: sha512-+hSN9BdSr629RF02d7mMtXhAJvDTyCbprNYJKrXETlul/Aml6YZwd90XioVbjejQeHbb3R8Dg0CkRgoJDxo8aw==}
565 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
566 | peerDependencies:
567 | '@typescript-eslint/parser': ^5.0.0
568 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
569 | typescript: '*'
570 | peerDependenciesMeta:
571 | typescript:
572 | optional: true
573 | dependencies:
574 | '@typescript-eslint/parser': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
575 | '@typescript-eslint/scope-manager': 5.54.0
576 | '@typescript-eslint/type-utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
577 | '@typescript-eslint/utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
578 | debug: 4.3.4
579 | eslint: 8.35.0
580 | grapheme-splitter: 1.0.4
581 | ignore: 5.2.4
582 | natural-compare-lite: 1.4.0
583 | regexpp: 3.2.0
584 | semver: 7.3.8
585 | tsutils: 3.21.0_typescript@4.9.5
586 | typescript: 4.9.5
587 | transitivePeerDependencies:
588 | - supports-color
589 | dev: true
590 |
591 | /@typescript-eslint/parser/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu:
592 | resolution: {integrity: sha512-aAVL3Mu2qTi+h/r04WI/5PfNWvO6pdhpeMRWk9R7rEV4mwJNzoWf5CCU5vDKBsPIFQFjEq1xg7XBI2rjiMXQbQ==}
593 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
594 | peerDependencies:
595 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
596 | typescript: '*'
597 | peerDependenciesMeta:
598 | typescript:
599 | optional: true
600 | dependencies:
601 | '@typescript-eslint/scope-manager': 5.54.0
602 | '@typescript-eslint/types': 5.54.0
603 | '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5
604 | debug: 4.3.4
605 | eslint: 8.35.0
606 | typescript: 4.9.5
607 | transitivePeerDependencies:
608 | - supports-color
609 | dev: true
610 |
611 | /@typescript-eslint/scope-manager/5.54.0:
612 | resolution: {integrity: sha512-VTPYNZ7vaWtYna9M4oD42zENOBrb+ZYyCNdFs949GcN8Miwn37b8b7eMj+EZaq7VK9fx0Jd+JhmkhjFhvnovhg==}
613 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
614 | dependencies:
615 | '@typescript-eslint/types': 5.54.0
616 | '@typescript-eslint/visitor-keys': 5.54.0
617 | dev: true
618 |
619 | /@typescript-eslint/type-utils/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu:
620 | resolution: {integrity: sha512-WI+WMJ8+oS+LyflqsD4nlXMsVdzTMYTxl16myXPaCXnSgc7LWwMsjxQFZCK/rVmTZ3FN71Ct78ehO9bRC7erYQ==}
621 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
622 | peerDependencies:
623 | eslint: '*'
624 | typescript: '*'
625 | peerDependenciesMeta:
626 | typescript:
627 | optional: true
628 | dependencies:
629 | '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5
630 | '@typescript-eslint/utils': 5.54.0_ycpbpc6yetojsgtrx3mwntkhsu
631 | debug: 4.3.4
632 | eslint: 8.35.0
633 | tsutils: 3.21.0_typescript@4.9.5
634 | typescript: 4.9.5
635 | transitivePeerDependencies:
636 | - supports-color
637 | dev: true
638 |
639 | /@typescript-eslint/types/5.54.0:
640 | resolution: {integrity: sha512-nExy+fDCBEgqblasfeE3aQ3NuafBUxZxgxXcYfzYRZFHdVvk5q60KhCSkG0noHgHRo/xQ/BOzURLZAafFpTkmQ==}
641 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
642 | dev: true
643 |
644 | /@typescript-eslint/typescript-estree/5.54.0_typescript@4.9.5:
645 | resolution: {integrity: sha512-X2rJG97Wj/VRo5YxJ8Qx26Zqf0RRKsVHd4sav8NElhbZzhpBI8jU54i6hfo9eheumj4oO4dcRN1B/zIVEqR/MQ==}
646 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
647 | peerDependencies:
648 | typescript: '*'
649 | peerDependenciesMeta:
650 | typescript:
651 | optional: true
652 | dependencies:
653 | '@typescript-eslint/types': 5.54.0
654 | '@typescript-eslint/visitor-keys': 5.54.0
655 | debug: 4.3.4
656 | globby: 11.1.0
657 | is-glob: 4.0.3
658 | semver: 7.3.8
659 | tsutils: 3.21.0_typescript@4.9.5
660 | typescript: 4.9.5
661 | transitivePeerDependencies:
662 | - supports-color
663 | dev: true
664 |
665 | /@typescript-eslint/utils/5.54.0_ycpbpc6yetojsgtrx3mwntkhsu:
666 | resolution: {integrity: sha512-cuwm8D/Z/7AuyAeJ+T0r4WZmlnlxQ8wt7C7fLpFlKMR+dY6QO79Cq1WpJhvZbMA4ZeZGHiRWnht7ZJ8qkdAunw==}
667 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
668 | peerDependencies:
669 | eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
670 | dependencies:
671 | '@types/json-schema': 7.0.11
672 | '@types/semver': 7.3.13
673 | '@typescript-eslint/scope-manager': 5.54.0
674 | '@typescript-eslint/types': 5.54.0
675 | '@typescript-eslint/typescript-estree': 5.54.0_typescript@4.9.5
676 | eslint: 8.35.0
677 | eslint-scope: 5.1.1
678 | eslint-utils: 3.0.0_eslint@8.35.0
679 | semver: 7.3.8
680 | transitivePeerDependencies:
681 | - supports-color
682 | - typescript
683 | dev: true
684 |
685 | /@typescript-eslint/visitor-keys/5.54.0:
686 | resolution: {integrity: sha512-xu4wT7aRCakGINTLGeyGqDn+78BwFlggwBjnHa1ar/KaGagnmwLYmlrXIrgAaQ3AE1Vd6nLfKASm7LrFHNbKGA==}
687 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
688 | dependencies:
689 | '@typescript-eslint/types': 5.54.0
690 | eslint-visitor-keys: 3.3.0
691 | dev: true
692 |
693 | /acorn-jsx/5.3.2_acorn@8.8.2:
694 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
695 | peerDependencies:
696 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
697 | dependencies:
698 | acorn: 8.8.2
699 | dev: true
700 |
701 | /acorn-node/1.8.2:
702 | resolution: {integrity: sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A==}
703 | dependencies:
704 | acorn: 7.4.1
705 | acorn-walk: 7.2.0
706 | xtend: 4.0.2
707 | dev: true
708 |
709 | /acorn-walk/7.2.0:
710 | resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
711 | engines: {node: '>=0.4.0'}
712 | dev: true
713 |
714 | /acorn/7.4.1:
715 | resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
716 | engines: {node: '>=0.4.0'}
717 | hasBin: true
718 | dev: true
719 |
720 | /acorn/8.8.2:
721 | resolution: {integrity: sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==}
722 | engines: {node: '>=0.4.0'}
723 | hasBin: true
724 | dev: true
725 |
726 | /ajv/6.12.6:
727 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
728 | dependencies:
729 | fast-deep-equal: 3.1.3
730 | fast-json-stable-stringify: 2.1.0
731 | json-schema-traverse: 0.4.1
732 | uri-js: 4.4.1
733 | dev: true
734 |
735 | /ansi-regex/5.0.1:
736 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
737 | engines: {node: '>=8'}
738 | dev: true
739 |
740 | /ansi-styles/4.3.0:
741 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
742 | engines: {node: '>=8'}
743 | dependencies:
744 | color-convert: 2.0.1
745 | dev: true
746 |
747 | /any-promise/1.3.0:
748 | resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
749 | dev: true
750 |
751 | /anymatch/3.1.3:
752 | resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
753 | engines: {node: '>= 8'}
754 | dependencies:
755 | normalize-path: 3.0.0
756 | picomatch: 2.3.1
757 | dev: true
758 |
759 | /arg/5.0.2:
760 | resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
761 | dev: true
762 |
763 | /argparse/2.0.1:
764 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
765 | dev: true
766 |
767 | /array-union/2.1.0:
768 | resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
769 | engines: {node: '>=8'}
770 | dev: true
771 |
772 | /astring/1.8.4:
773 | resolution: {integrity: sha512-97a+l2LBU3Op3bBQEff79i/E4jMD2ZLFD8rHx9B6mXyB2uQwhJQYfiDqUwtfjF4QA1F2qs//N6Cw8LetMbQjcw==}
774 | hasBin: true
775 | dev: true
776 |
777 | /asynckit/0.4.0:
778 | resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==}
779 | dev: true
780 |
781 | /autoprefixer/10.4.14_postcss@8.4.21:
782 | resolution: {integrity: sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==}
783 | engines: {node: ^10 || ^12 || >=14}
784 | hasBin: true
785 | peerDependencies:
786 | postcss: ^8.1.0
787 | dependencies:
788 | browserslist: 4.21.5
789 | caniuse-lite: 1.0.30001466
790 | fraction.js: 4.2.0
791 | normalize-range: 0.1.2
792 | picocolors: 1.0.0
793 | postcss: 8.4.21
794 | postcss-value-parser: 4.2.0
795 | dev: true
796 |
797 | /bail/2.0.2:
798 | resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
799 | dev: true
800 |
801 | /balanced-match/1.0.2:
802 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
803 | dev: true
804 |
805 | /binary-extensions/2.2.0:
806 | resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==}
807 | engines: {node: '>=8'}
808 | dev: true
809 |
810 | /brace-expansion/1.1.11:
811 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
812 | dependencies:
813 | balanced-match: 1.0.2
814 | concat-map: 0.0.1
815 | dev: true
816 |
817 | /braces/3.0.2:
818 | resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==}
819 | engines: {node: '>=8'}
820 | dependencies:
821 | fill-range: 7.0.1
822 | dev: true
823 |
824 | /browserslist/4.21.5:
825 | resolution: {integrity: sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==}
826 | engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
827 | hasBin: true
828 | dependencies:
829 | caniuse-lite: 1.0.30001466
830 | electron-to-chromium: 1.4.330
831 | node-releases: 2.0.10
832 | update-browserslist-db: 1.0.10_browserslist@4.21.5
833 | dev: true
834 |
835 | /busboy/1.6.0:
836 | resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
837 | engines: {node: '>=10.16.0'}
838 | dependencies:
839 | streamsearch: 1.1.0
840 | dev: true
841 |
842 | /callsites/3.1.0:
843 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
844 | engines: {node: '>=6'}
845 | dev: true
846 |
847 | /camelcase-css/2.0.1:
848 | resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
849 | engines: {node: '>= 6'}
850 | dev: true
851 |
852 | /caniuse-lite/1.0.30001466:
853 | resolution: {integrity: sha512-ewtFBSfWjEmxUgNBSZItFSmVtvk9zkwkl1OfRZlKA8slltRN+/C/tuGVrF9styXkN36Yu3+SeJ1qkXxDEyNZ5w==}
854 | dev: true
855 |
856 | /ccount/2.0.1:
857 | resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
858 | dev: true
859 |
860 | /chalk/4.1.2:
861 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
862 | engines: {node: '>=10'}
863 | dependencies:
864 | ansi-styles: 4.3.0
865 | supports-color: 7.2.0
866 | dev: true
867 |
868 | /character-entities-html4/2.1.0:
869 | resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
870 | dev: true
871 |
872 | /character-entities-legacy/3.0.0:
873 | resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
874 | dev: true
875 |
876 | /character-entities/2.0.2:
877 | resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
878 | dev: true
879 |
880 | /character-reference-invalid/2.0.1:
881 | resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
882 | dev: true
883 |
884 | /chokidar/3.5.3:
885 | resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==}
886 | engines: {node: '>= 8.10.0'}
887 | dependencies:
888 | anymatch: 3.1.3
889 | braces: 3.0.2
890 | glob-parent: 5.1.2
891 | is-binary-path: 2.1.0
892 | is-glob: 4.0.3
893 | normalize-path: 3.0.0
894 | readdirp: 3.6.0
895 | optionalDependencies:
896 | fsevents: 2.3.2
897 | dev: true
898 |
899 | /color-convert/2.0.1:
900 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
901 | engines: {node: '>=7.0.0'}
902 | dependencies:
903 | color-name: 1.1.4
904 | dev: true
905 |
906 | /color-name/1.1.4:
907 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
908 | dev: true
909 |
910 | /combined-stream/1.0.8:
911 | resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==}
912 | engines: {node: '>= 0.8'}
913 | dependencies:
914 | delayed-stream: 1.0.0
915 | dev: true
916 |
917 | /comma-separated-tokens/2.0.3:
918 | resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
919 | dev: true
920 |
921 | /commander/4.1.1:
922 | resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
923 | engines: {node: '>= 6'}
924 | dev: true
925 |
926 | /concat-map/0.0.1:
927 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
928 | dev: true
929 |
930 | /cross-spawn/7.0.3:
931 | resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
932 | engines: {node: '>= 8'}
933 | dependencies:
934 | path-key: 3.1.1
935 | shebang-command: 2.0.0
936 | which: 2.0.2
937 | dev: true
938 |
939 | /cssesc/3.0.0:
940 | resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
941 | engines: {node: '>=4'}
942 | hasBin: true
943 | dev: true
944 |
945 | /csstype/3.1.1:
946 | resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
947 | dev: true
948 |
949 | /data-uri-to-buffer/4.0.1:
950 | resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
951 | engines: {node: '>= 12'}
952 | dev: true
953 |
954 | /debug/4.3.4:
955 | resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
956 | engines: {node: '>=6.0'}
957 | peerDependencies:
958 | supports-color: '*'
959 | peerDependenciesMeta:
960 | supports-color:
961 | optional: true
962 | dependencies:
963 | ms: 2.1.2
964 | dev: true
965 |
966 | /decode-named-character-reference/1.0.2:
967 | resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
968 | dependencies:
969 | character-entities: 2.0.2
970 | dev: true
971 |
972 | /deep-is/0.1.4:
973 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
974 | dev: true
975 |
976 | /defined/1.0.1:
977 | resolution: {integrity: sha512-hsBd2qSVCRE+5PmNdHt1uzyrFu5d3RwmFDKzyNZMFq/EwDNJF7Ee5+D5oEKF0hU6LhtoUF1macFvOe4AskQC1Q==}
978 | dev: true
979 |
980 | /delayed-stream/1.0.0:
981 | resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
982 | engines: {node: '>=0.4.0'}
983 | dev: true
984 |
985 | /dequal/2.0.3:
986 | resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
987 | engines: {node: '>=6'}
988 | dev: true
989 |
990 | /detective/5.2.1:
991 | resolution: {integrity: sha512-v9XE1zRnz1wRtgurGu0Bs8uHKFSTdteYZNbIPFVhUZ39L/S79ppMpdmVOZAnoz1jfEFodc48n6MX483Xo3t1yw==}
992 | engines: {node: '>=0.8.0'}
993 | hasBin: true
994 | dependencies:
995 | acorn-node: 1.8.2
996 | defined: 1.0.1
997 | minimist: 1.2.8
998 | dev: true
999 |
1000 | /didyoumean/1.2.2:
1001 | resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
1002 | dev: true
1003 |
1004 | /diff/5.1.0:
1005 | resolution: {integrity: sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==}
1006 | engines: {node: '>=0.3.1'}
1007 | dev: true
1008 |
1009 | /dir-glob/3.0.1:
1010 | resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
1011 | engines: {node: '>=8'}
1012 | dependencies:
1013 | path-type: 4.0.0
1014 | dev: true
1015 |
1016 | /dlv/1.1.3:
1017 | resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
1018 | dev: true
1019 |
1020 | /doctrine/3.0.0:
1021 | resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
1022 | engines: {node: '>=6.0.0'}
1023 | dependencies:
1024 | esutils: 2.0.3
1025 | dev: true
1026 |
1027 | /electron-to-chromium/1.4.330:
1028 | resolution: {integrity: sha512-PqyefhybrVdjAJ45HaPLtuVaehiSw7C3ya0aad+rvmV53IVyXmYRk3pwIOb2TxTDTnmgQdn46NjMMaysx79/6Q==}
1029 | dev: true
1030 |
1031 | /esbuild/0.16.17:
1032 | resolution: {integrity: sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==}
1033 | engines: {node: '>=12'}
1034 | hasBin: true
1035 | requiresBuild: true
1036 | optionalDependencies:
1037 | '@esbuild/android-arm': 0.16.17
1038 | '@esbuild/android-arm64': 0.16.17
1039 | '@esbuild/android-x64': 0.16.17
1040 | '@esbuild/darwin-arm64': 0.16.17
1041 | '@esbuild/darwin-x64': 0.16.17
1042 | '@esbuild/freebsd-arm64': 0.16.17
1043 | '@esbuild/freebsd-x64': 0.16.17
1044 | '@esbuild/linux-arm': 0.16.17
1045 | '@esbuild/linux-arm64': 0.16.17
1046 | '@esbuild/linux-ia32': 0.16.17
1047 | '@esbuild/linux-loong64': 0.16.17
1048 | '@esbuild/linux-mips64el': 0.16.17
1049 | '@esbuild/linux-ppc64': 0.16.17
1050 | '@esbuild/linux-riscv64': 0.16.17
1051 | '@esbuild/linux-s390x': 0.16.17
1052 | '@esbuild/linux-x64': 0.16.17
1053 | '@esbuild/netbsd-x64': 0.16.17
1054 | '@esbuild/openbsd-x64': 0.16.17
1055 | '@esbuild/sunos-x64': 0.16.17
1056 | '@esbuild/win32-arm64': 0.16.17
1057 | '@esbuild/win32-ia32': 0.16.17
1058 | '@esbuild/win32-x64': 0.16.17
1059 | dev: true
1060 |
1061 | /escalade/3.1.1:
1062 | resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==}
1063 | engines: {node: '>=6'}
1064 | dev: true
1065 |
1066 | /escape-string-regexp/4.0.0:
1067 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
1068 | engines: {node: '>=10'}
1069 | dev: true
1070 |
1071 | /eslint-plugin-qwik/0.21.0_eslint@8.35.0:
1072 | resolution: {integrity: sha512-hT+n+PG3PHTKieQUcn3jGwWsxdqXL45pYFLKN2wvqyaesKMDEYQl4l82xAUTn9pAoJMSoF0rHsutOC6pUrplhg==}
1073 | engines: {node: '>=16'}
1074 | peerDependencies:
1075 | eslint: '>= 8'
1076 | dependencies:
1077 | eslint: 8.35.0
1078 | dev: true
1079 |
1080 | /eslint-scope/5.1.1:
1081 | resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
1082 | engines: {node: '>=8.0.0'}
1083 | dependencies:
1084 | esrecurse: 4.3.0
1085 | estraverse: 4.3.0
1086 | dev: true
1087 |
1088 | /eslint-scope/7.1.1:
1089 | resolution: {integrity: sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==}
1090 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1091 | dependencies:
1092 | esrecurse: 4.3.0
1093 | estraverse: 5.3.0
1094 | dev: true
1095 |
1096 | /eslint-utils/3.0.0_eslint@8.35.0:
1097 | resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
1098 | engines: {node: ^10.0.0 || ^12.0.0 || >= 14.0.0}
1099 | peerDependencies:
1100 | eslint: '>=5'
1101 | dependencies:
1102 | eslint: 8.35.0
1103 | eslint-visitor-keys: 2.1.0
1104 | dev: true
1105 |
1106 | /eslint-visitor-keys/2.1.0:
1107 | resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
1108 | engines: {node: '>=10'}
1109 | dev: true
1110 |
1111 | /eslint-visitor-keys/3.3.0:
1112 | resolution: {integrity: sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==}
1113 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1114 | dev: true
1115 |
1116 | /eslint/8.35.0:
1117 | resolution: {integrity: sha512-BxAf1fVL7w+JLRQhWl2pzGeSiGqbWumV4WNvc9Rhp6tiCtm4oHnyPBSEtMGZwrQgudFQ+otqzWoPB7x+hxoWsw==}
1118 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1119 | hasBin: true
1120 | dependencies:
1121 | '@eslint/eslintrc': 2.0.1
1122 | '@eslint/js': 8.35.0
1123 | '@humanwhocodes/config-array': 0.11.8
1124 | '@humanwhocodes/module-importer': 1.0.1
1125 | '@nodelib/fs.walk': 1.2.8
1126 | ajv: 6.12.6
1127 | chalk: 4.1.2
1128 | cross-spawn: 7.0.3
1129 | debug: 4.3.4
1130 | doctrine: 3.0.0
1131 | escape-string-regexp: 4.0.0
1132 | eslint-scope: 7.1.1
1133 | eslint-utils: 3.0.0_eslint@8.35.0
1134 | eslint-visitor-keys: 3.3.0
1135 | espree: 9.5.0
1136 | esquery: 1.5.0
1137 | esutils: 2.0.3
1138 | fast-deep-equal: 3.1.3
1139 | file-entry-cache: 6.0.1
1140 | find-up: 5.0.0
1141 | glob-parent: 6.0.2
1142 | globals: 13.20.0
1143 | grapheme-splitter: 1.0.4
1144 | ignore: 5.2.4
1145 | import-fresh: 3.3.0
1146 | imurmurhash: 0.1.4
1147 | is-glob: 4.0.3
1148 | is-path-inside: 3.0.3
1149 | js-sdsl: 4.3.0
1150 | js-yaml: 4.1.0
1151 | json-stable-stringify-without-jsonify: 1.0.1
1152 | levn: 0.4.1
1153 | lodash.merge: 4.6.2
1154 | minimatch: 3.1.2
1155 | natural-compare: 1.4.0
1156 | optionator: 0.9.1
1157 | regexpp: 3.2.0
1158 | strip-ansi: 6.0.1
1159 | strip-json-comments: 3.1.1
1160 | text-table: 0.2.0
1161 | transitivePeerDependencies:
1162 | - supports-color
1163 | dev: true
1164 |
1165 | /espree/9.5.0:
1166 | resolution: {integrity: sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw==}
1167 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1168 | dependencies:
1169 | acorn: 8.8.2
1170 | acorn-jsx: 5.3.2_acorn@8.8.2
1171 | eslint-visitor-keys: 3.3.0
1172 | dev: true
1173 |
1174 | /esquery/1.5.0:
1175 | resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
1176 | engines: {node: '>=0.10'}
1177 | dependencies:
1178 | estraverse: 5.3.0
1179 | dev: true
1180 |
1181 | /esrecurse/4.3.0:
1182 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==}
1183 | engines: {node: '>=4.0'}
1184 | dependencies:
1185 | estraverse: 5.3.0
1186 | dev: true
1187 |
1188 | /estraverse/4.3.0:
1189 | resolution: {integrity: sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==}
1190 | engines: {node: '>=4.0'}
1191 | dev: true
1192 |
1193 | /estraverse/5.3.0:
1194 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
1195 | engines: {node: '>=4.0'}
1196 | dev: true
1197 |
1198 | /estree-util-attach-comments/2.1.1:
1199 | resolution: {integrity: sha512-+5Ba/xGGS6mnwFbXIuQiDPTbuTxuMCooq3arVv7gPZtYpjp+VXH/NkHAP35OOefPhNG/UGqU3vt/LTABwcHX0w==}
1200 | dependencies:
1201 | '@types/estree': 1.0.0
1202 | dev: true
1203 |
1204 | /estree-util-build-jsx/2.2.2:
1205 | resolution: {integrity: sha512-m56vOXcOBuaF+Igpb9OPAy7f9w9OIkb5yhjsZuaPm7HoGi4oTOQi0h2+yZ+AtKklYFZ+rPC4n0wYCJCEU1ONqg==}
1206 | dependencies:
1207 | '@types/estree-jsx': 1.0.0
1208 | estree-util-is-identifier-name: 2.1.0
1209 | estree-walker: 3.0.3
1210 | dev: true
1211 |
1212 | /estree-util-is-identifier-name/2.1.0:
1213 | resolution: {integrity: sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==}
1214 | dev: true
1215 |
1216 | /estree-util-to-js/1.2.0:
1217 | resolution: {integrity: sha512-IzU74r1PK5IMMGZXUVZbmiu4A1uhiPgW5hm1GjcOfr4ZzHaMPpLNJjR7HjXiIOzi25nZDrgFTobHTkV5Q6ITjA==}
1218 | dependencies:
1219 | '@types/estree-jsx': 1.0.0
1220 | astring: 1.8.4
1221 | source-map: 0.7.4
1222 | dev: true
1223 |
1224 | /estree-util-visit/1.2.1:
1225 | resolution: {integrity: sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==}
1226 | dependencies:
1227 | '@types/estree-jsx': 1.0.0
1228 | '@types/unist': 2.0.6
1229 | dev: true
1230 |
1231 | /estree-walker/3.0.3:
1232 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==}
1233 | dependencies:
1234 | '@types/estree': 1.0.0
1235 | dev: true
1236 |
1237 | /esutils/2.0.3:
1238 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
1239 | engines: {node: '>=0.10.0'}
1240 | dev: true
1241 |
1242 | /extend/3.0.2:
1243 | resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
1244 | dev: true
1245 |
1246 | /fast-deep-equal/3.1.3:
1247 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
1248 | dev: true
1249 |
1250 | /fast-glob/3.2.12:
1251 | resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
1252 | engines: {node: '>=8.6.0'}
1253 | dependencies:
1254 | '@nodelib/fs.stat': 2.0.5
1255 | '@nodelib/fs.walk': 1.2.8
1256 | glob-parent: 5.1.2
1257 | merge2: 1.4.1
1258 | micromatch: 4.0.5
1259 | dev: true
1260 |
1261 | /fast-json-stable-stringify/2.1.0:
1262 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
1263 | dev: true
1264 |
1265 | /fast-levenshtein/2.0.6:
1266 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
1267 | dev: true
1268 |
1269 | /fastq/1.15.0:
1270 | resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
1271 | dependencies:
1272 | reusify: 1.0.4
1273 | dev: true
1274 |
1275 | /fetch-blob/3.2.0:
1276 | resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
1277 | engines: {node: ^12.20 || >= 14.13}
1278 | dependencies:
1279 | node-domexception: 1.0.0
1280 | web-streams-polyfill: 3.2.1
1281 | dev: true
1282 |
1283 | /file-entry-cache/6.0.1:
1284 | resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
1285 | engines: {node: ^10.12.0 || >=12.0.0}
1286 | dependencies:
1287 | flat-cache: 3.0.4
1288 | dev: true
1289 |
1290 | /fill-range/7.0.1:
1291 | resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==}
1292 | engines: {node: '>=8'}
1293 | dependencies:
1294 | to-regex-range: 5.0.1
1295 | dev: true
1296 |
1297 | /find-up/5.0.0:
1298 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
1299 | engines: {node: '>=10'}
1300 | dependencies:
1301 | locate-path: 6.0.0
1302 | path-exists: 4.0.0
1303 | dev: true
1304 |
1305 | /flat-cache/3.0.4:
1306 | resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==}
1307 | engines: {node: ^10.12.0 || >=12.0.0}
1308 | dependencies:
1309 | flatted: 3.2.7
1310 | rimraf: 3.0.2
1311 | dev: true
1312 |
1313 | /flatted/3.2.7:
1314 | resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==}
1315 | dev: true
1316 |
1317 | /form-data/3.0.1:
1318 | resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
1319 | engines: {node: '>= 6'}
1320 | dependencies:
1321 | asynckit: 0.4.0
1322 | combined-stream: 1.0.8
1323 | mime-types: 2.1.35
1324 | dev: true
1325 |
1326 | /formdata-polyfill/4.0.10:
1327 | resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
1328 | engines: {node: '>=12.20.0'}
1329 | dependencies:
1330 | fetch-blob: 3.2.0
1331 | dev: true
1332 |
1333 | /fraction.js/4.2.0:
1334 | resolution: {integrity: sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==}
1335 | dev: true
1336 |
1337 | /framer-motion/10.3.2_biqbaboplfbrettd7655fr4n2y:
1338 | resolution: {integrity: sha512-8GrK3X2vXG/9LJCNJuU5gKxDwSN0VTf7tD6MFP3S9F7rgsUavx+8ZNwhfZfak6maCBBHZ1m86K7TIXpbdfML2w==}
1339 | peerDependencies:
1340 | react: ^18.0.0
1341 | react-dom: ^18.0.0
1342 | peerDependenciesMeta:
1343 | react:
1344 | optional: true
1345 | react-dom:
1346 | optional: true
1347 | dependencies:
1348 | react: 18.2.0
1349 | react-dom: 18.2.0_react@18.2.0
1350 | tslib: 2.5.0
1351 | optionalDependencies:
1352 | '@emotion/is-prop-valid': 0.8.8
1353 | dev: false
1354 |
1355 | /framesync/6.1.2:
1356 | resolution: {integrity: sha512-jBTqhX6KaQVDyus8muwZbBeGGP0XgujBRbQ7gM7BRdS3CadCZIHiawyzYLnafYcvZIh5j8WE7cxZKFn7dXhu9g==}
1357 | dependencies:
1358 | tslib: 2.4.0
1359 | dev: false
1360 |
1361 | /fs.realpath/1.0.0:
1362 | resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
1363 | dev: true
1364 |
1365 | /fsevents/2.3.2:
1366 | resolution: {integrity: sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==}
1367 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1368 | os: [darwin]
1369 | requiresBuild: true
1370 | dev: true
1371 | optional: true
1372 |
1373 | /function-bind/1.1.1:
1374 | resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==}
1375 | dev: true
1376 |
1377 | /glob-parent/5.1.2:
1378 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
1379 | engines: {node: '>= 6'}
1380 | dependencies:
1381 | is-glob: 4.0.3
1382 | dev: true
1383 |
1384 | /glob-parent/6.0.2:
1385 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
1386 | engines: {node: '>=10.13.0'}
1387 | dependencies:
1388 | is-glob: 4.0.3
1389 | dev: true
1390 |
1391 | /glob-regex/0.3.2:
1392 | resolution: {integrity: sha512-m5blUd3/OqDTWwzBBtWBPrGlAzatRywHameHeekAZyZrskYouOGdNB8T/q6JucucvJXtOuyHIn0/Yia7iDasDw==}
1393 | dev: true
1394 |
1395 | /glob/7.1.6:
1396 | resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
1397 | dependencies:
1398 | fs.realpath: 1.0.0
1399 | inflight: 1.0.6
1400 | inherits: 2.0.4
1401 | minimatch: 3.1.2
1402 | once: 1.4.0
1403 | path-is-absolute: 1.0.1
1404 | dev: true
1405 |
1406 | /glob/7.2.3:
1407 | resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
1408 | dependencies:
1409 | fs.realpath: 1.0.0
1410 | inflight: 1.0.6
1411 | inherits: 2.0.4
1412 | minimatch: 3.1.2
1413 | once: 1.4.0
1414 | path-is-absolute: 1.0.1
1415 | dev: true
1416 |
1417 | /globals/13.20.0:
1418 | resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==}
1419 | engines: {node: '>=8'}
1420 | dependencies:
1421 | type-fest: 0.20.2
1422 | dev: true
1423 |
1424 | /globby/11.1.0:
1425 | resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
1426 | engines: {node: '>=10'}
1427 | dependencies:
1428 | array-union: 2.1.0
1429 | dir-glob: 3.0.1
1430 | fast-glob: 3.2.12
1431 | ignore: 5.2.4
1432 | merge2: 1.4.1
1433 | slash: 3.0.0
1434 | dev: true
1435 |
1436 | /globrex/0.1.2:
1437 | resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
1438 | dev: true
1439 |
1440 | /grapheme-splitter/1.0.4:
1441 | resolution: {integrity: sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==}
1442 | dev: true
1443 |
1444 | /has-flag/4.0.0:
1445 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
1446 | engines: {node: '>=8'}
1447 | dev: true
1448 |
1449 | /has/1.0.3:
1450 | resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==}
1451 | engines: {node: '>= 0.4.0'}
1452 | dependencies:
1453 | function-bind: 1.1.1
1454 | dev: true
1455 |
1456 | /hast-util-to-estree/2.3.2:
1457 | resolution: {integrity: sha512-YYDwATNdnvZi3Qi84iatPIl1lWpXba1MeNrNbDfJfVzEBZL8uUmtR7mt7bxKBC8kuAuvb0bkojXYZzsNHyHCLg==}
1458 | dependencies:
1459 | '@types/estree': 1.0.0
1460 | '@types/estree-jsx': 1.0.0
1461 | '@types/hast': 2.3.4
1462 | '@types/unist': 2.0.6
1463 | comma-separated-tokens: 2.0.3
1464 | estree-util-attach-comments: 2.1.1
1465 | estree-util-is-identifier-name: 2.1.0
1466 | hast-util-whitespace: 2.0.1
1467 | mdast-util-mdx-expression: 1.3.2
1468 | mdast-util-mdxjs-esm: 1.3.1
1469 | property-information: 6.2.0
1470 | space-separated-tokens: 2.0.2
1471 | style-to-object: 0.4.1
1472 | unist-util-position: 4.0.4
1473 | zwitch: 2.0.4
1474 | transitivePeerDependencies:
1475 | - supports-color
1476 | dev: true
1477 |
1478 | /hast-util-whitespace/2.0.1:
1479 | resolution: {integrity: sha512-nAxA0v8+vXSBDt3AnRUNjyRIQ0rD+ntpbAp4LnPkumc5M9yUbSMa4XDU9Q6etY4f1Wp4bNgvc1yjiZtsTTrSng==}
1480 | dev: true
1481 |
1482 | /hey-listen/1.0.8:
1483 | resolution: {integrity: sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==}
1484 | dev: false
1485 |
1486 | /ignore/5.2.4:
1487 | resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==}
1488 | engines: {node: '>= 4'}
1489 | dev: true
1490 |
1491 | /import-fresh/3.3.0:
1492 | resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
1493 | engines: {node: '>=6'}
1494 | dependencies:
1495 | parent-module: 1.0.1
1496 | resolve-from: 4.0.0
1497 | dev: true
1498 |
1499 | /imurmurhash/0.1.4:
1500 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
1501 | engines: {node: '>=0.8.19'}
1502 | dev: true
1503 |
1504 | /inflight/1.0.6:
1505 | resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
1506 | dependencies:
1507 | once: 1.4.0
1508 | wrappy: 1.0.2
1509 | dev: true
1510 |
1511 | /inherits/2.0.4:
1512 | resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
1513 | dev: true
1514 |
1515 | /inline-style-parser/0.1.1:
1516 | resolution: {integrity: sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==}
1517 | dev: true
1518 |
1519 | /is-alphabetical/2.0.1:
1520 | resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
1521 | dev: true
1522 |
1523 | /is-alphanumerical/2.0.1:
1524 | resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
1525 | dependencies:
1526 | is-alphabetical: 2.0.1
1527 | is-decimal: 2.0.1
1528 | dev: true
1529 |
1530 | /is-binary-path/2.1.0:
1531 | resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1532 | engines: {node: '>=8'}
1533 | dependencies:
1534 | binary-extensions: 2.2.0
1535 | dev: true
1536 |
1537 | /is-buffer/2.0.5:
1538 | resolution: {integrity: sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==}
1539 | engines: {node: '>=4'}
1540 | dev: true
1541 |
1542 | /is-core-module/2.11.0:
1543 | resolution: {integrity: sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==}
1544 | dependencies:
1545 | has: 1.0.3
1546 | dev: true
1547 |
1548 | /is-decimal/2.0.1:
1549 | resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
1550 | dev: true
1551 |
1552 | /is-extglob/2.1.1:
1553 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1554 | engines: {node: '>=0.10.0'}
1555 | dev: true
1556 |
1557 | /is-glob/4.0.3:
1558 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1559 | engines: {node: '>=0.10.0'}
1560 | dependencies:
1561 | is-extglob: 2.1.1
1562 | dev: true
1563 |
1564 | /is-hexadecimal/2.0.1:
1565 | resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
1566 | dev: true
1567 |
1568 | /is-number/7.0.0:
1569 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1570 | engines: {node: '>=0.12.0'}
1571 | dev: true
1572 |
1573 | /is-path-inside/3.0.3:
1574 | resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
1575 | engines: {node: '>=8'}
1576 | dev: true
1577 |
1578 | /is-plain-obj/4.1.0:
1579 | resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
1580 | engines: {node: '>=12'}
1581 | dev: true
1582 |
1583 | /is-reference/3.0.1:
1584 | resolution: {integrity: sha512-baJJdQLiYaJdvFbJqXrcGv3WU3QCzBlUcI5QhbesIm6/xPsvmO+2CDoi/GMOFBQEQm+PXkwOPrp9KK5ozZsp2w==}
1585 | dependencies:
1586 | '@types/estree': 1.0.0
1587 | dev: true
1588 |
1589 | /isexe/2.0.0:
1590 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
1591 | dev: true
1592 |
1593 | /js-sdsl/4.3.0:
1594 | resolution: {integrity: sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==}
1595 | dev: true
1596 |
1597 | /js-tokens/4.0.0:
1598 | resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1599 |
1600 | /js-yaml/4.1.0:
1601 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
1602 | hasBin: true
1603 | dependencies:
1604 | argparse: 2.0.1
1605 | dev: true
1606 |
1607 | /json-schema-traverse/0.4.1:
1608 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
1609 | dev: true
1610 |
1611 | /json-stable-stringify-without-jsonify/1.0.1:
1612 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
1613 | dev: true
1614 |
1615 | /json5/2.2.3:
1616 | resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1617 | engines: {node: '>=6'}
1618 | hasBin: true
1619 | dev: true
1620 |
1621 | /kleur/4.1.5:
1622 | resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
1623 | engines: {node: '>=6'}
1624 | dev: true
1625 |
1626 | /levn/0.4.1:
1627 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
1628 | engines: {node: '>= 0.8.0'}
1629 | dependencies:
1630 | prelude-ls: 1.2.1
1631 | type-check: 0.4.0
1632 | dev: true
1633 |
1634 | /lilconfig/2.1.0:
1635 | resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
1636 | engines: {node: '>=10'}
1637 | dev: true
1638 |
1639 | /lines-and-columns/1.2.4:
1640 | resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1641 | dev: true
1642 |
1643 | /locate-path/6.0.0:
1644 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
1645 | engines: {node: '>=10'}
1646 | dependencies:
1647 | p-locate: 5.0.0
1648 | dev: true
1649 |
1650 | /lodash.merge/4.6.2:
1651 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
1652 | dev: true
1653 |
1654 | /longest-streak/3.1.0:
1655 | resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
1656 | dev: true
1657 |
1658 | /loose-envify/1.4.0:
1659 | resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1660 | hasBin: true
1661 | dependencies:
1662 | js-tokens: 4.0.0
1663 |
1664 | /lru-cache/6.0.0:
1665 | resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
1666 | engines: {node: '>=10'}
1667 | dependencies:
1668 | yallist: 4.0.0
1669 | dev: true
1670 |
1671 | /markdown-extensions/1.1.1:
1672 | resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==}
1673 | engines: {node: '>=0.10.0'}
1674 | dev: true
1675 |
1676 | /mdast-util-definitions/5.1.2:
1677 | resolution: {integrity: sha512-8SVPMuHqlPME/z3gqVwWY4zVXn8lqKv/pAhC57FuJ40ImXyBpmO5ukh98zB2v7Blql2FiHjHv9LVztSIqjY+MA==}
1678 | dependencies:
1679 | '@types/mdast': 3.0.10
1680 | '@types/unist': 2.0.6
1681 | unist-util-visit: 4.1.2
1682 | dev: true
1683 |
1684 | /mdast-util-from-markdown/1.3.0:
1685 | resolution: {integrity: sha512-HN3W1gRIuN/ZW295c7zi7g9lVBllMgZE40RxCX37wrTPWXCWtpvOZdfnuK+1WNpvZje6XuJeI3Wnb4TJEUem+g==}
1686 | dependencies:
1687 | '@types/mdast': 3.0.10
1688 | '@types/unist': 2.0.6
1689 | decode-named-character-reference: 1.0.2
1690 | mdast-util-to-string: 3.1.1
1691 | micromark: 3.1.0
1692 | micromark-util-decode-numeric-character-reference: 1.0.0
1693 | micromark-util-decode-string: 1.0.2
1694 | micromark-util-normalize-identifier: 1.0.0
1695 | micromark-util-symbol: 1.0.1
1696 | micromark-util-types: 1.0.2
1697 | unist-util-stringify-position: 3.0.3
1698 | uvu: 0.5.6
1699 | transitivePeerDependencies:
1700 | - supports-color
1701 | dev: true
1702 |
1703 | /mdast-util-mdx-expression/1.3.2:
1704 | resolution: {integrity: sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==}
1705 | dependencies:
1706 | '@types/estree-jsx': 1.0.0
1707 | '@types/hast': 2.3.4
1708 | '@types/mdast': 3.0.10
1709 | mdast-util-from-markdown: 1.3.0
1710 | mdast-util-to-markdown: 1.5.0
1711 | transitivePeerDependencies:
1712 | - supports-color
1713 | dev: true
1714 |
1715 | /mdast-util-mdx-jsx/2.1.2:
1716 | resolution: {integrity: sha512-o9vBCYQK5ZLGEj3tCGISJGjvafyHRVJlZmfJzSE7xjiogSzIeph/Z4zMY65q4WGRMezQBeAwPlrdymDYYYx0tA==}
1717 | dependencies:
1718 | '@types/estree-jsx': 1.0.0
1719 | '@types/hast': 2.3.4
1720 | '@types/mdast': 3.0.10
1721 | '@types/unist': 2.0.6
1722 | ccount: 2.0.1
1723 | mdast-util-from-markdown: 1.3.0
1724 | mdast-util-to-markdown: 1.5.0
1725 | parse-entities: 4.0.1
1726 | stringify-entities: 4.0.3
1727 | unist-util-remove-position: 4.0.2
1728 | unist-util-stringify-position: 3.0.3
1729 | vfile-message: 3.1.4
1730 | transitivePeerDependencies:
1731 | - supports-color
1732 | dev: true
1733 |
1734 | /mdast-util-mdx/2.0.1:
1735 | resolution: {integrity: sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==}
1736 | dependencies:
1737 | mdast-util-from-markdown: 1.3.0
1738 | mdast-util-mdx-expression: 1.3.2
1739 | mdast-util-mdx-jsx: 2.1.2
1740 | mdast-util-mdxjs-esm: 1.3.1
1741 | mdast-util-to-markdown: 1.5.0
1742 | transitivePeerDependencies:
1743 | - supports-color
1744 | dev: true
1745 |
1746 | /mdast-util-mdxjs-esm/1.3.1:
1747 | resolution: {integrity: sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==}
1748 | dependencies:
1749 | '@types/estree-jsx': 1.0.0
1750 | '@types/hast': 2.3.4
1751 | '@types/mdast': 3.0.10
1752 | mdast-util-from-markdown: 1.3.0
1753 | mdast-util-to-markdown: 1.5.0
1754 | transitivePeerDependencies:
1755 | - supports-color
1756 | dev: true
1757 |
1758 | /mdast-util-phrasing/3.0.1:
1759 | resolution: {integrity: sha512-WmI1gTXUBJo4/ZmSk79Wcb2HcjPJBzM1nlI/OUWA8yk2X9ik3ffNbBGsU+09BFmXaL1IBb9fiuvq6/KMiNycSg==}
1760 | dependencies:
1761 | '@types/mdast': 3.0.10
1762 | unist-util-is: 5.2.1
1763 | dev: true
1764 |
1765 | /mdast-util-to-hast/12.3.0:
1766 | resolution: {integrity: sha512-pits93r8PhnIoU4Vy9bjW39M2jJ6/tdHyja9rrot9uujkN7UTU9SDnE6WNJz/IGyQk3XHX6yNNtrBH6cQzm8Hw==}
1767 | dependencies:
1768 | '@types/hast': 2.3.4
1769 | '@types/mdast': 3.0.10
1770 | mdast-util-definitions: 5.1.2
1771 | micromark-util-sanitize-uri: 1.1.0
1772 | trim-lines: 3.0.1
1773 | unist-util-generated: 2.0.1
1774 | unist-util-position: 4.0.4
1775 | unist-util-visit: 4.1.2
1776 | dev: true
1777 |
1778 | /mdast-util-to-markdown/1.5.0:
1779 | resolution: {integrity: sha512-bbv7TPv/WC49thZPg3jXuqzuvI45IL2EVAr/KxF0BSdHsU0ceFHOmwQn6evxAh1GaoK/6GQ1wp4R4oW2+LFL/A==}
1780 | dependencies:
1781 | '@types/mdast': 3.0.10
1782 | '@types/unist': 2.0.6
1783 | longest-streak: 3.1.0
1784 | mdast-util-phrasing: 3.0.1
1785 | mdast-util-to-string: 3.1.1
1786 | micromark-util-decode-string: 1.0.2
1787 | unist-util-visit: 4.1.2
1788 | zwitch: 2.0.4
1789 | dev: true
1790 |
1791 | /mdast-util-to-string/3.1.1:
1792 | resolution: {integrity: sha512-tGvhT94e+cVnQt8JWE9/b3cUQZWS732TJxXHktvP+BYo62PpYD53Ls/6cC60rW21dW+txxiM4zMdc6abASvZKA==}
1793 | dependencies:
1794 | '@types/mdast': 3.0.10
1795 | dev: true
1796 |
1797 | /merge2/1.4.1:
1798 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1799 | engines: {node: '>= 8'}
1800 | dev: true
1801 |
1802 | /micromark-core-commonmark/1.0.6:
1803 | resolution: {integrity: sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==}
1804 | dependencies:
1805 | decode-named-character-reference: 1.0.2
1806 | micromark-factory-destination: 1.0.0
1807 | micromark-factory-label: 1.0.2
1808 | micromark-factory-space: 1.0.0
1809 | micromark-factory-title: 1.0.2
1810 | micromark-factory-whitespace: 1.0.0
1811 | micromark-util-character: 1.1.0
1812 | micromark-util-chunked: 1.0.0
1813 | micromark-util-classify-character: 1.0.0
1814 | micromark-util-html-tag-name: 1.1.0
1815 | micromark-util-normalize-identifier: 1.0.0
1816 | micromark-util-resolve-all: 1.0.0
1817 | micromark-util-subtokenize: 1.0.2
1818 | micromark-util-symbol: 1.0.1
1819 | micromark-util-types: 1.0.2
1820 | uvu: 0.5.6
1821 | dev: true
1822 |
1823 | /micromark-extension-mdx-expression/1.0.4:
1824 | resolution: {integrity: sha512-TCgLxqW6ReQ3AJgtj1P0P+8ZThBTloLbeb7jNaqr6mCOLDpxUiBFE/9STgooMZttEwOQu5iEcCCa3ZSDhY9FGw==}
1825 | dependencies:
1826 | micromark-factory-mdx-expression: 1.0.7
1827 | micromark-factory-space: 1.0.0
1828 | micromark-util-character: 1.1.0
1829 | micromark-util-events-to-acorn: 1.2.1
1830 | micromark-util-symbol: 1.0.1
1831 | micromark-util-types: 1.0.2
1832 | uvu: 0.5.6
1833 | dev: true
1834 |
1835 | /micromark-extension-mdx-jsx/1.0.3:
1836 | resolution: {integrity: sha512-VfA369RdqUISF0qGgv2FfV7gGjHDfn9+Qfiv5hEwpyr1xscRj/CiVRkU7rywGFCO7JwJ5L0e7CJz60lY52+qOA==}
1837 | dependencies:
1838 | '@types/acorn': 4.0.6
1839 | estree-util-is-identifier-name: 2.1.0
1840 | micromark-factory-mdx-expression: 1.0.7
1841 | micromark-factory-space: 1.0.0
1842 | micromark-util-character: 1.1.0
1843 | micromark-util-symbol: 1.0.1
1844 | micromark-util-types: 1.0.2
1845 | uvu: 0.5.6
1846 | vfile-message: 3.1.4
1847 | dev: true
1848 |
1849 | /micromark-extension-mdx-md/1.0.0:
1850 | resolution: {integrity: sha512-xaRAMoSkKdqZXDAoSgp20Azm0aRQKGOl0RrS81yGu8Hr/JhMsBmfs4wR7m9kgVUIO36cMUQjNyiyDKPrsv8gOw==}
1851 | dependencies:
1852 | micromark-util-types: 1.0.2
1853 | dev: true
1854 |
1855 | /micromark-extension-mdxjs-esm/1.0.3:
1856 | resolution: {integrity: sha512-2N13ol4KMoxb85rdDwTAC6uzs8lMX0zeqpcyx7FhS7PxXomOnLactu8WI8iBNXW8AVyea3KIJd/1CKnUmwrK9A==}
1857 | dependencies:
1858 | micromark-core-commonmark: 1.0.6
1859 | micromark-util-character: 1.1.0
1860 | micromark-util-events-to-acorn: 1.2.1
1861 | micromark-util-symbol: 1.0.1
1862 | micromark-util-types: 1.0.2
1863 | unist-util-position-from-estree: 1.1.2
1864 | uvu: 0.5.6
1865 | vfile-message: 3.1.4
1866 | dev: true
1867 |
1868 | /micromark-extension-mdxjs/1.0.0:
1869 | resolution: {integrity: sha512-TZZRZgeHvtgm+IhtgC2+uDMR7h8eTKF0QUX9YsgoL9+bADBpBY6SiLvWqnBlLbCEevITmTqmEuY3FoxMKVs1rQ==}
1870 | dependencies:
1871 | acorn: 8.8.2
1872 | acorn-jsx: 5.3.2_acorn@8.8.2
1873 | micromark-extension-mdx-expression: 1.0.4
1874 | micromark-extension-mdx-jsx: 1.0.3
1875 | micromark-extension-mdx-md: 1.0.0
1876 | micromark-extension-mdxjs-esm: 1.0.3
1877 | micromark-util-combine-extensions: 1.0.0
1878 | micromark-util-types: 1.0.2
1879 | dev: true
1880 |
1881 | /micromark-factory-destination/1.0.0:
1882 | resolution: {integrity: sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==}
1883 | dependencies:
1884 | micromark-util-character: 1.1.0
1885 | micromark-util-symbol: 1.0.1
1886 | micromark-util-types: 1.0.2
1887 | dev: true
1888 |
1889 | /micromark-factory-label/1.0.2:
1890 | resolution: {integrity: sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==}
1891 | dependencies:
1892 | micromark-util-character: 1.1.0
1893 | micromark-util-symbol: 1.0.1
1894 | micromark-util-types: 1.0.2
1895 | uvu: 0.5.6
1896 | dev: true
1897 |
1898 | /micromark-factory-mdx-expression/1.0.7:
1899 | resolution: {integrity: sha512-QAdFbkQagTZ/eKb8zDGqmjvgevgJH3+aQpvvKrXWxNJp3o8/l2cAbbrBd0E04r0Gx6nssPpqWIjnbHFvZu5qsQ==}
1900 | dependencies:
1901 | micromark-factory-space: 1.0.0
1902 | micromark-util-character: 1.1.0
1903 | micromark-util-events-to-acorn: 1.2.1
1904 | micromark-util-symbol: 1.0.1
1905 | micromark-util-types: 1.0.2
1906 | unist-util-position-from-estree: 1.1.2
1907 | uvu: 0.5.6
1908 | vfile-message: 3.1.4
1909 | dev: true
1910 |
1911 | /micromark-factory-space/1.0.0:
1912 | resolution: {integrity: sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==}
1913 | dependencies:
1914 | micromark-util-character: 1.1.0
1915 | micromark-util-types: 1.0.2
1916 | dev: true
1917 |
1918 | /micromark-factory-title/1.0.2:
1919 | resolution: {integrity: sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==}
1920 | dependencies:
1921 | micromark-factory-space: 1.0.0
1922 | micromark-util-character: 1.1.0
1923 | micromark-util-symbol: 1.0.1
1924 | micromark-util-types: 1.0.2
1925 | uvu: 0.5.6
1926 | dev: true
1927 |
1928 | /micromark-factory-whitespace/1.0.0:
1929 | resolution: {integrity: sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==}
1930 | dependencies:
1931 | micromark-factory-space: 1.0.0
1932 | micromark-util-character: 1.1.0
1933 | micromark-util-symbol: 1.0.1
1934 | micromark-util-types: 1.0.2
1935 | dev: true
1936 |
1937 | /micromark-util-character/1.1.0:
1938 | resolution: {integrity: sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==}
1939 | dependencies:
1940 | micromark-util-symbol: 1.0.1
1941 | micromark-util-types: 1.0.2
1942 | dev: true
1943 |
1944 | /micromark-util-chunked/1.0.0:
1945 | resolution: {integrity: sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==}
1946 | dependencies:
1947 | micromark-util-symbol: 1.0.1
1948 | dev: true
1949 |
1950 | /micromark-util-classify-character/1.0.0:
1951 | resolution: {integrity: sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==}
1952 | dependencies:
1953 | micromark-util-character: 1.1.0
1954 | micromark-util-symbol: 1.0.1
1955 | micromark-util-types: 1.0.2
1956 | dev: true
1957 |
1958 | /micromark-util-combine-extensions/1.0.0:
1959 | resolution: {integrity: sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==}
1960 | dependencies:
1961 | micromark-util-chunked: 1.0.0
1962 | micromark-util-types: 1.0.2
1963 | dev: true
1964 |
1965 | /micromark-util-decode-numeric-character-reference/1.0.0:
1966 | resolution: {integrity: sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==}
1967 | dependencies:
1968 | micromark-util-symbol: 1.0.1
1969 | dev: true
1970 |
1971 | /micromark-util-decode-string/1.0.2:
1972 | resolution: {integrity: sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==}
1973 | dependencies:
1974 | decode-named-character-reference: 1.0.2
1975 | micromark-util-character: 1.1.0
1976 | micromark-util-decode-numeric-character-reference: 1.0.0
1977 | micromark-util-symbol: 1.0.1
1978 | dev: true
1979 |
1980 | /micromark-util-encode/1.0.1:
1981 | resolution: {integrity: sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==}
1982 | dev: true
1983 |
1984 | /micromark-util-events-to-acorn/1.2.1:
1985 | resolution: {integrity: sha512-mkg3BaWlw6ZTkQORrKVBW4o9ICXPxLtGz51vml5mQpKFdo9vqIX68CAx5JhTOdjQyAHH7JFmm4rh8toSPQZUmg==}
1986 | dependencies:
1987 | '@types/acorn': 4.0.6
1988 | '@types/estree': 1.0.0
1989 | estree-util-visit: 1.2.1
1990 | micromark-util-types: 1.0.2
1991 | uvu: 0.5.6
1992 | vfile-location: 4.1.0
1993 | vfile-message: 3.1.4
1994 | dev: true
1995 |
1996 | /micromark-util-html-tag-name/1.1.0:
1997 | resolution: {integrity: sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==}
1998 | dev: true
1999 |
2000 | /micromark-util-normalize-identifier/1.0.0:
2001 | resolution: {integrity: sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==}
2002 | dependencies:
2003 | micromark-util-symbol: 1.0.1
2004 | dev: true
2005 |
2006 | /micromark-util-resolve-all/1.0.0:
2007 | resolution: {integrity: sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==}
2008 | dependencies:
2009 | micromark-util-types: 1.0.2
2010 | dev: true
2011 |
2012 | /micromark-util-sanitize-uri/1.1.0:
2013 | resolution: {integrity: sha512-RoxtuSCX6sUNtxhbmsEFQfWzs8VN7cTctmBPvYivo98xb/kDEoTCtJQX5wyzIYEmk/lvNFTat4hL8oW0KndFpg==}
2014 | dependencies:
2015 | micromark-util-character: 1.1.0
2016 | micromark-util-encode: 1.0.1
2017 | micromark-util-symbol: 1.0.1
2018 | dev: true
2019 |
2020 | /micromark-util-subtokenize/1.0.2:
2021 | resolution: {integrity: sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==}
2022 | dependencies:
2023 | micromark-util-chunked: 1.0.0
2024 | micromark-util-symbol: 1.0.1
2025 | micromark-util-types: 1.0.2
2026 | uvu: 0.5.6
2027 | dev: true
2028 |
2029 | /micromark-util-symbol/1.0.1:
2030 | resolution: {integrity: sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==}
2031 | dev: true
2032 |
2033 | /micromark-util-types/1.0.2:
2034 | resolution: {integrity: sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==}
2035 | dev: true
2036 |
2037 | /micromark/3.1.0:
2038 | resolution: {integrity: sha512-6Mj0yHLdUZjHnOPgr5xfWIMqMWS12zDN6iws9SLuSz76W8jTtAv24MN4/CL7gJrl5vtxGInkkqDv/JIoRsQOvA==}
2039 | dependencies:
2040 | '@types/debug': 4.1.7
2041 | debug: 4.3.4
2042 | decode-named-character-reference: 1.0.2
2043 | micromark-core-commonmark: 1.0.6
2044 | micromark-factory-space: 1.0.0
2045 | micromark-util-character: 1.1.0
2046 | micromark-util-chunked: 1.0.0
2047 | micromark-util-combine-extensions: 1.0.0
2048 | micromark-util-decode-numeric-character-reference: 1.0.0
2049 | micromark-util-encode: 1.0.1
2050 | micromark-util-normalize-identifier: 1.0.0
2051 | micromark-util-resolve-all: 1.0.0
2052 | micromark-util-sanitize-uri: 1.1.0
2053 | micromark-util-subtokenize: 1.0.2
2054 | micromark-util-symbol: 1.0.1
2055 | micromark-util-types: 1.0.2
2056 | uvu: 0.5.6
2057 | transitivePeerDependencies:
2058 | - supports-color
2059 | dev: true
2060 |
2061 | /micromatch/4.0.5:
2062 | resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==}
2063 | engines: {node: '>=8.6'}
2064 | dependencies:
2065 | braces: 3.0.2
2066 | picomatch: 2.3.1
2067 | dev: true
2068 |
2069 | /mime-db/1.52.0:
2070 | resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
2071 | engines: {node: '>= 0.6'}
2072 | dev: true
2073 |
2074 | /mime-types/2.1.35:
2075 | resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
2076 | engines: {node: '>= 0.6'}
2077 | dependencies:
2078 | mime-db: 1.52.0
2079 | dev: true
2080 |
2081 | /minimatch/3.1.2:
2082 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
2083 | dependencies:
2084 | brace-expansion: 1.1.11
2085 | dev: true
2086 |
2087 | /minimist/1.2.8:
2088 | resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
2089 | dev: true
2090 |
2091 | /motion/10.15.5:
2092 | resolution: {integrity: sha512-ejP6KioN4pigTGxL93APzOnvtLklParL59UQB2T3HWXQBxFcIp5/7YXFmkgiA6pNKKzjvnLhnonRBN5iSFMnNw==}
2093 | dependencies:
2094 | '@motionone/animation': 10.15.1
2095 | '@motionone/dom': 10.15.5
2096 | '@motionone/svelte': 10.15.5
2097 | '@motionone/types': 10.15.1
2098 | '@motionone/utils': 10.15.1
2099 | '@motionone/vue': 10.15.5
2100 | dev: false
2101 |
2102 | /mri/1.2.0:
2103 | resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
2104 | engines: {node: '>=4'}
2105 | dev: true
2106 |
2107 | /ms/2.1.2:
2108 | resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
2109 | dev: true
2110 |
2111 | /mz/2.7.0:
2112 | resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
2113 | dependencies:
2114 | any-promise: 1.3.0
2115 | object-assign: 4.1.1
2116 | thenify-all: 1.6.0
2117 | dev: true
2118 |
2119 | /nanoid/3.3.4:
2120 | resolution: {integrity: sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==}
2121 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
2122 | hasBin: true
2123 | dev: true
2124 |
2125 | /natural-compare-lite/1.4.0:
2126 | resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==}
2127 | dev: true
2128 |
2129 | /natural-compare/1.4.0:
2130 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
2131 | dev: true
2132 |
2133 | /node-domexception/1.0.0:
2134 | resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
2135 | engines: {node: '>=10.5.0'}
2136 | dev: true
2137 |
2138 | /node-fetch/3.3.0:
2139 | resolution: {integrity: sha512-BKwRP/O0UvoMKp7GNdwPlObhYGB5DQqwhEDQlNKuoqwVYSxkSZCSbHjnFFmUEtwSKRPU4kNK8PbDYYitwaE3QA==}
2140 | engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
2141 | dependencies:
2142 | data-uri-to-buffer: 4.0.1
2143 | fetch-blob: 3.2.0
2144 | formdata-polyfill: 4.0.10
2145 | dev: true
2146 |
2147 | /node-releases/2.0.10:
2148 | resolution: {integrity: sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==}
2149 | dev: true
2150 |
2151 | /normalize-path/3.0.0:
2152 | resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
2153 | engines: {node: '>=0.10.0'}
2154 | dev: true
2155 |
2156 | /normalize-range/0.1.2:
2157 | resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
2158 | engines: {node: '>=0.10.0'}
2159 | dev: true
2160 |
2161 | /object-assign/4.1.1:
2162 | resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
2163 | engines: {node: '>=0.10.0'}
2164 | dev: true
2165 |
2166 | /object-hash/3.0.0:
2167 | resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
2168 | engines: {node: '>= 6'}
2169 | dev: true
2170 |
2171 | /once/1.4.0:
2172 | resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
2173 | dependencies:
2174 | wrappy: 1.0.2
2175 | dev: true
2176 |
2177 | /optionator/0.9.1:
2178 | resolution: {integrity: sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==}
2179 | engines: {node: '>= 0.8.0'}
2180 | dependencies:
2181 | deep-is: 0.1.4
2182 | fast-levenshtein: 2.0.6
2183 | levn: 0.4.1
2184 | prelude-ls: 1.2.1
2185 | type-check: 0.4.0
2186 | word-wrap: 1.2.3
2187 | dev: true
2188 |
2189 | /p-limit/3.1.0:
2190 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==}
2191 | engines: {node: '>=10'}
2192 | dependencies:
2193 | yocto-queue: 0.1.0
2194 | dev: true
2195 |
2196 | /p-locate/5.0.0:
2197 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
2198 | engines: {node: '>=10'}
2199 | dependencies:
2200 | p-limit: 3.1.0
2201 | dev: true
2202 |
2203 | /parent-module/1.0.1:
2204 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
2205 | engines: {node: '>=6'}
2206 | dependencies:
2207 | callsites: 3.1.0
2208 | dev: true
2209 |
2210 | /parse-entities/4.0.1:
2211 | resolution: {integrity: sha512-SWzvYcSJh4d/SGLIOQfZ/CoNv6BTlI6YEQ7Nj82oDVnRpwe/Z/F1EMx42x3JAOwGBlCjeCH0BRJQbQ/opHL17w==}
2212 | dependencies:
2213 | '@types/unist': 2.0.6
2214 | character-entities: 2.0.2
2215 | character-entities-legacy: 3.0.0
2216 | character-reference-invalid: 2.0.1
2217 | decode-named-character-reference: 1.0.2
2218 | is-alphanumerical: 2.0.1
2219 | is-decimal: 2.0.1
2220 | is-hexadecimal: 2.0.1
2221 | dev: true
2222 |
2223 | /path-exists/4.0.0:
2224 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
2225 | engines: {node: '>=8'}
2226 | dev: true
2227 |
2228 | /path-is-absolute/1.0.1:
2229 | resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
2230 | engines: {node: '>=0.10.0'}
2231 | dev: true
2232 |
2233 | /path-key/3.1.1:
2234 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
2235 | engines: {node: '>=8'}
2236 | dev: true
2237 |
2238 | /path-parse/1.0.7:
2239 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
2240 | dev: true
2241 |
2242 | /path-type/4.0.0:
2243 | resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
2244 | engines: {node: '>=8'}
2245 | dev: true
2246 |
2247 | /periscopic/3.1.0:
2248 | resolution: {integrity: sha512-vKiQ8RRtkl9P+r/+oefh25C3fhybptkHKCZSPlcXiJux2tJF55GnEj3BVn4A5gKfq9NWWXXrxkHBwVPUfH0opw==}
2249 | dependencies:
2250 | '@types/estree': 1.0.0
2251 | estree-walker: 3.0.3
2252 | is-reference: 3.0.1
2253 | dev: true
2254 |
2255 | /picocolors/1.0.0:
2256 | resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==}
2257 | dev: true
2258 |
2259 | /picomatch/2.3.1:
2260 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
2261 | engines: {node: '>=8.6'}
2262 | dev: true
2263 |
2264 | /pify/2.3.0:
2265 | resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
2266 | engines: {node: '>=0.10.0'}
2267 | dev: true
2268 |
2269 | /pirates/4.0.5:
2270 | resolution: {integrity: sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==}
2271 | engines: {node: '>= 6'}
2272 | dev: true
2273 |
2274 | /popmotion/11.0.5:
2275 | resolution: {integrity: sha512-la8gPM1WYeFznb/JqF4GiTkRRPZsfaj2+kCxqQgr2MJylMmIKUwBfWW8Wa5fml/8gmtlD5yI01MP1QCZPWmppA==}
2276 | dependencies:
2277 | framesync: 6.1.2
2278 | hey-listen: 1.0.8
2279 | style-value-types: 5.1.2
2280 | tslib: 2.4.0
2281 | dev: false
2282 |
2283 | /postcss-import/14.1.0_postcss@8.4.21:
2284 | resolution: {integrity: sha512-flwI+Vgm4SElObFVPpTIT7SU7R3qk2L7PyduMcokiaVKuWv9d/U+Gm/QAd8NDLuykTWTkcrjOeD2Pp1rMeBTGw==}
2285 | engines: {node: '>=10.0.0'}
2286 | peerDependencies:
2287 | postcss: ^8.0.0
2288 | dependencies:
2289 | postcss: 8.4.21
2290 | postcss-value-parser: 4.2.0
2291 | read-cache: 1.0.0
2292 | resolve: 1.22.1
2293 | dev: true
2294 |
2295 | /postcss-js/4.0.1_postcss@8.4.21:
2296 | resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
2297 | engines: {node: ^12 || ^14 || >= 16}
2298 | peerDependencies:
2299 | postcss: ^8.4.21
2300 | dependencies:
2301 | camelcase-css: 2.0.1
2302 | postcss: 8.4.21
2303 | dev: true
2304 |
2305 | /postcss-load-config/3.1.4_postcss@8.4.21:
2306 | resolution: {integrity: sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg==}
2307 | engines: {node: '>= 10'}
2308 | peerDependencies:
2309 | postcss: '>=8.0.9'
2310 | ts-node: '>=9.0.0'
2311 | peerDependenciesMeta:
2312 | postcss:
2313 | optional: true
2314 | ts-node:
2315 | optional: true
2316 | dependencies:
2317 | lilconfig: 2.1.0
2318 | postcss: 8.4.21
2319 | yaml: 1.10.2
2320 | dev: true
2321 |
2322 | /postcss-nested/6.0.0_postcss@8.4.21:
2323 | resolution: {integrity: sha512-0DkamqrPcmkBDsLn+vQDIrtkSbNkv5AD/M322ySo9kqFkCIYklym2xEmWkwo+Y3/qZo34tzEPNUw4y7yMCdv5w==}
2324 | engines: {node: '>=12.0'}
2325 | peerDependencies:
2326 | postcss: ^8.2.14
2327 | dependencies:
2328 | postcss: 8.4.21
2329 | postcss-selector-parser: 6.0.11
2330 | dev: true
2331 |
2332 | /postcss-selector-parser/6.0.11:
2333 | resolution: {integrity: sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g==}
2334 | engines: {node: '>=4'}
2335 | dependencies:
2336 | cssesc: 3.0.0
2337 | util-deprecate: 1.0.2
2338 | dev: true
2339 |
2340 | /postcss-value-parser/4.2.0:
2341 | resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
2342 | dev: true
2343 |
2344 | /postcss/8.4.21:
2345 | resolution: {integrity: sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==}
2346 | engines: {node: ^10 || ^12 || >=14}
2347 | dependencies:
2348 | nanoid: 3.3.4
2349 | picocolors: 1.0.0
2350 | source-map-js: 1.0.2
2351 | dev: true
2352 |
2353 | /prelude-ls/1.2.1:
2354 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
2355 | engines: {node: '>= 0.8.0'}
2356 | dev: true
2357 |
2358 | /prettier/2.8.4:
2359 | resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==}
2360 | engines: {node: '>=10.13.0'}
2361 | hasBin: true
2362 | dev: true
2363 |
2364 | /property-information/6.2.0:
2365 | resolution: {integrity: sha512-kma4U7AFCTwpqq5twzC1YVIDXSqg6qQK6JN0smOw8fgRy1OkMi0CYSzFmsy6dnqSenamAtj0CyXMUJ1Mf6oROg==}
2366 | dev: true
2367 |
2368 | /punycode/2.3.0:
2369 | resolution: {integrity: sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==}
2370 | engines: {node: '>=6'}
2371 | dev: true
2372 |
2373 | /queue-microtask/1.2.3:
2374 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
2375 | dev: true
2376 |
2377 | /quick-lru/5.1.1:
2378 | resolution: {integrity: sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==}
2379 | engines: {node: '>=10'}
2380 | dev: true
2381 |
2382 | /react-dom/18.2.0_react@18.2.0:
2383 | resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
2384 | peerDependencies:
2385 | react: ^18.2.0
2386 | dependencies:
2387 | loose-envify: 1.4.0
2388 | react: 18.2.0
2389 | scheduler: 0.23.0
2390 |
2391 | /react/18.2.0:
2392 | resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
2393 | engines: {node: '>=0.10.0'}
2394 | dependencies:
2395 | loose-envify: 1.4.0
2396 |
2397 | /read-cache/1.0.0:
2398 | resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
2399 | dependencies:
2400 | pify: 2.3.0
2401 | dev: true
2402 |
2403 | /readdirp/3.6.0:
2404 | resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
2405 | engines: {node: '>=8.10.0'}
2406 | dependencies:
2407 | picomatch: 2.3.1
2408 | dev: true
2409 |
2410 | /recrawl-sync/2.2.3:
2411 | resolution: {integrity: sha512-vSaTR9t+cpxlskkdUFrsEpnf67kSmPk66yAGT1fZPrDudxQjoMzPgQhSMImQ0pAw5k0NPirefQfhopSjhdUtpQ==}
2412 | dependencies:
2413 | '@cush/relative': 1.0.0
2414 | glob-regex: 0.3.2
2415 | slash: 3.0.0
2416 | sucrase: 3.29.0
2417 | tslib: 1.14.1
2418 | dev: true
2419 |
2420 | /regexpp/3.2.0:
2421 | resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
2422 | engines: {node: '>=8'}
2423 | dev: true
2424 |
2425 | /remark-mdx/2.3.0:
2426 | resolution: {integrity: sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==}
2427 | dependencies:
2428 | mdast-util-mdx: 2.0.1
2429 | micromark-extension-mdxjs: 1.0.0
2430 | transitivePeerDependencies:
2431 | - supports-color
2432 | dev: true
2433 |
2434 | /remark-parse/10.0.1:
2435 | resolution: {integrity: sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==}
2436 | dependencies:
2437 | '@types/mdast': 3.0.10
2438 | mdast-util-from-markdown: 1.3.0
2439 | unified: 10.1.2
2440 | transitivePeerDependencies:
2441 | - supports-color
2442 | dev: true
2443 |
2444 | /remark-rehype/10.1.0:
2445 | resolution: {integrity: sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==}
2446 | dependencies:
2447 | '@types/hast': 2.3.4
2448 | '@types/mdast': 3.0.10
2449 | mdast-util-to-hast: 12.3.0
2450 | unified: 10.1.2
2451 | dev: true
2452 |
2453 | /resolve-from/4.0.0:
2454 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
2455 | engines: {node: '>=4'}
2456 | dev: true
2457 |
2458 | /resolve/1.22.1:
2459 | resolution: {integrity: sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==}
2460 | hasBin: true
2461 | dependencies:
2462 | is-core-module: 2.11.0
2463 | path-parse: 1.0.7
2464 | supports-preserve-symlinks-flag: 1.0.0
2465 | dev: true
2466 |
2467 | /reusify/1.0.4:
2468 | resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
2469 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
2470 | dev: true
2471 |
2472 | /rimraf/3.0.2:
2473 | resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
2474 | hasBin: true
2475 | dependencies:
2476 | glob: 7.2.3
2477 | dev: true
2478 |
2479 | /rollup/3.19.1:
2480 | resolution: {integrity: sha512-lAbrdN7neYCg/8WaoWn/ckzCtz+jr70GFfYdlf50OF7387HTg+wiuiqJRFYawwSPpqfqDNYqK7smY/ks2iAudg==}
2481 | engines: {node: '>=14.18.0', npm: '>=8.0.0'}
2482 | hasBin: true
2483 | optionalDependencies:
2484 | fsevents: 2.3.2
2485 | dev: true
2486 |
2487 | /run-parallel/1.2.0:
2488 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
2489 | dependencies:
2490 | queue-microtask: 1.2.3
2491 | dev: true
2492 |
2493 | /sade/1.8.1:
2494 | resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
2495 | engines: {node: '>=6'}
2496 | dependencies:
2497 | mri: 1.2.0
2498 | dev: true
2499 |
2500 | /scheduler/0.23.0:
2501 | resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
2502 | dependencies:
2503 | loose-envify: 1.4.0
2504 |
2505 | /semver/7.3.8:
2506 | resolution: {integrity: sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==}
2507 | engines: {node: '>=10'}
2508 | hasBin: true
2509 | dependencies:
2510 | lru-cache: 6.0.0
2511 | dev: true
2512 |
2513 | /shebang-command/2.0.0:
2514 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
2515 | engines: {node: '>=8'}
2516 | dependencies:
2517 | shebang-regex: 3.0.0
2518 | dev: true
2519 |
2520 | /shebang-regex/3.0.0:
2521 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
2522 | engines: {node: '>=8'}
2523 | dev: true
2524 |
2525 | /slash/3.0.0:
2526 | resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
2527 | engines: {node: '>=8'}
2528 | dev: true
2529 |
2530 | /source-map-js/1.0.2:
2531 | resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==}
2532 | engines: {node: '>=0.10.0'}
2533 | dev: true
2534 |
2535 | /source-map/0.7.4:
2536 | resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
2537 | engines: {node: '>= 8'}
2538 | dev: true
2539 |
2540 | /space-separated-tokens/2.0.2:
2541 | resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
2542 | dev: true
2543 |
2544 | /streamsearch/1.1.0:
2545 | resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
2546 | engines: {node: '>=10.0.0'}
2547 | dev: true
2548 |
2549 | /stringify-entities/4.0.3:
2550 | resolution: {integrity: sha512-BP9nNHMhhfcMbiuQKCqMjhDP5yBCAxsPu4pHFFzJ6Alo9dZgY4VLDPutXqIjpRiMoKdp7Av85Gr73Q5uH9k7+g==}
2551 | dependencies:
2552 | character-entities-html4: 2.1.0
2553 | character-entities-legacy: 3.0.0
2554 | dev: true
2555 |
2556 | /strip-ansi/6.0.1:
2557 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
2558 | engines: {node: '>=8'}
2559 | dependencies:
2560 | ansi-regex: 5.0.1
2561 | dev: true
2562 |
2563 | /strip-bom/3.0.0:
2564 | resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
2565 | engines: {node: '>=4'}
2566 | dev: true
2567 |
2568 | /strip-json-comments/3.1.1:
2569 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
2570 | engines: {node: '>=8'}
2571 | dev: true
2572 |
2573 | /style-to-object/0.4.1:
2574 | resolution: {integrity: sha512-HFpbb5gr2ypci7Qw+IOhnP2zOU7e77b+rzM+wTzXzfi1PrtBCX0E7Pk4wL4iTLnhzZ+JgEGAhX81ebTg/aYjQw==}
2575 | dependencies:
2576 | inline-style-parser: 0.1.1
2577 | dev: true
2578 |
2579 | /style-value-types/5.1.2:
2580 | resolution: {integrity: sha512-Vs9fNreYF9j6W2VvuDTP7kepALi7sk0xtk2Tu8Yxi9UoajJdEVpNpCov0HsLTqXvNGKX+Uv09pkozVITi1jf3Q==}
2581 | dependencies:
2582 | hey-listen: 1.0.8
2583 | tslib: 2.4.0
2584 | dev: false
2585 |
2586 | /sucrase/3.29.0:
2587 | resolution: {integrity: sha512-bZPAuGA5SdFHuzqIhTAqt9fvNEo9rESqXIG3oiKdF8K4UmkQxC4KlNL3lVyAErXp+mPvUqZ5l13qx6TrDIGf3A==}
2588 | engines: {node: '>=8'}
2589 | hasBin: true
2590 | dependencies:
2591 | commander: 4.1.1
2592 | glob: 7.1.6
2593 | lines-and-columns: 1.2.4
2594 | mz: 2.7.0
2595 | pirates: 4.0.5
2596 | ts-interface-checker: 0.1.13
2597 | dev: true
2598 |
2599 | /supports-color/7.2.0:
2600 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
2601 | engines: {node: '>=8'}
2602 | dependencies:
2603 | has-flag: 4.0.0
2604 | dev: true
2605 |
2606 | /supports-preserve-symlinks-flag/1.0.0:
2607 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
2608 | engines: {node: '>= 0.4'}
2609 | dev: true
2610 |
2611 | /tailwindcss/3.2.7_postcss@8.4.21:
2612 | resolution: {integrity: sha512-B6DLqJzc21x7wntlH/GsZwEXTBttVSl1FtCzC8WP4oBc/NKef7kaax5jeihkkCEWc831/5NDJ9gRNDK6NEioQQ==}
2613 | engines: {node: '>=12.13.0'}
2614 | hasBin: true
2615 | peerDependencies:
2616 | postcss: ^8.0.9
2617 | dependencies:
2618 | arg: 5.0.2
2619 | chokidar: 3.5.3
2620 | color-name: 1.1.4
2621 | detective: 5.2.1
2622 | didyoumean: 1.2.2
2623 | dlv: 1.1.3
2624 | fast-glob: 3.2.12
2625 | glob-parent: 6.0.2
2626 | is-glob: 4.0.3
2627 | lilconfig: 2.1.0
2628 | micromatch: 4.0.5
2629 | normalize-path: 3.0.0
2630 | object-hash: 3.0.0
2631 | picocolors: 1.0.0
2632 | postcss: 8.4.21
2633 | postcss-import: 14.1.0_postcss@8.4.21
2634 | postcss-js: 4.0.1_postcss@8.4.21
2635 | postcss-load-config: 3.1.4_postcss@8.4.21
2636 | postcss-nested: 6.0.0_postcss@8.4.21
2637 | postcss-selector-parser: 6.0.11
2638 | postcss-value-parser: 4.2.0
2639 | quick-lru: 5.1.1
2640 | resolve: 1.22.1
2641 | transitivePeerDependencies:
2642 | - ts-node
2643 | dev: true
2644 |
2645 | /text-table/0.2.0:
2646 | resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
2647 | dev: true
2648 |
2649 | /thenify-all/1.6.0:
2650 | resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
2651 | engines: {node: '>=0.8'}
2652 | dependencies:
2653 | thenify: 3.3.1
2654 | dev: true
2655 |
2656 | /thenify/3.3.1:
2657 | resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
2658 | dependencies:
2659 | any-promise: 1.3.0
2660 | dev: true
2661 |
2662 | /to-regex-range/5.0.1:
2663 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
2664 | engines: {node: '>=8.0'}
2665 | dependencies:
2666 | is-number: 7.0.0
2667 | dev: true
2668 |
2669 | /trim-lines/3.0.1:
2670 | resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
2671 | dev: true
2672 |
2673 | /trough/2.1.0:
2674 | resolution: {integrity: sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==}
2675 | dev: true
2676 |
2677 | /ts-interface-checker/0.1.13:
2678 | resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
2679 | dev: true
2680 |
2681 | /tsconfig-paths/4.1.2:
2682 | resolution: {integrity: sha512-uhxiMgnXQp1IR622dUXI+9Ehnws7i/y6xvpZB9IbUVOPy0muvdvgXeZOn88UcGPiT98Vp3rJPTa8bFoalZ3Qhw==}
2683 | engines: {node: '>=6'}
2684 | dependencies:
2685 | json5: 2.2.3
2686 | minimist: 1.2.8
2687 | strip-bom: 3.0.0
2688 | dev: true
2689 |
2690 | /tslib/1.14.1:
2691 | resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
2692 | dev: true
2693 |
2694 | /tslib/2.4.0:
2695 | resolution: {integrity: sha512-d6xOpEDfsi2CZVlPQzGeux8XMwLT9hssAsaPYExaQMuYskwb+x1x7J371tWlbBdWHroy99KnVB6qIkUbs5X3UQ==}
2696 | dev: false
2697 |
2698 | /tslib/2.5.0:
2699 | resolution: {integrity: sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==}
2700 | dev: false
2701 |
2702 | /tsutils/3.21.0_typescript@4.9.5:
2703 | resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
2704 | engines: {node: '>= 6'}
2705 | peerDependencies:
2706 | typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
2707 | dependencies:
2708 | tslib: 1.14.1
2709 | typescript: 4.9.5
2710 | dev: true
2711 |
2712 | /type-check/0.4.0:
2713 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
2714 | engines: {node: '>= 0.8.0'}
2715 | dependencies:
2716 | prelude-ls: 1.2.1
2717 | dev: true
2718 |
2719 | /type-fest/0.20.2:
2720 | resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
2721 | engines: {node: '>=10'}
2722 | dev: true
2723 |
2724 | /typescript/4.9.5:
2725 | resolution: {integrity: sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==}
2726 | engines: {node: '>=4.2.0'}
2727 | hasBin: true
2728 | dev: true
2729 |
2730 | /undici/5.20.0:
2731 | resolution: {integrity: sha512-J3j60dYzuo6Eevbawwp1sdg16k5Tf768bxYK4TUJRH7cBM4kFCbf3mOnM/0E3vQYXvpxITbbWmBafaDbxLDz3g==}
2732 | engines: {node: '>=12.18'}
2733 | dependencies:
2734 | busboy: 1.6.0
2735 | dev: true
2736 |
2737 | /unified/10.1.2:
2738 | resolution: {integrity: sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==}
2739 | dependencies:
2740 | '@types/unist': 2.0.6
2741 | bail: 2.0.2
2742 | extend: 3.0.2
2743 | is-buffer: 2.0.5
2744 | is-plain-obj: 4.1.0
2745 | trough: 2.1.0
2746 | vfile: 5.3.7
2747 | dev: true
2748 |
2749 | /unist-util-generated/2.0.1:
2750 | resolution: {integrity: sha512-qF72kLmPxAw0oN2fwpWIqbXAVyEqUzDHMsbtPvOudIlUzXYFIeQIuxXQCRCFh22B7cixvU0MG7m3MW8FTq/S+A==}
2751 | dev: true
2752 |
2753 | /unist-util-is/5.2.1:
2754 | resolution: {integrity: sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==}
2755 | dependencies:
2756 | '@types/unist': 2.0.6
2757 | dev: true
2758 |
2759 | /unist-util-position-from-estree/1.1.2:
2760 | resolution: {integrity: sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==}
2761 | dependencies:
2762 | '@types/unist': 2.0.6
2763 | dev: true
2764 |
2765 | /unist-util-position/4.0.4:
2766 | resolution: {integrity: sha512-kUBE91efOWfIVBo8xzh/uZQ7p9ffYRtUbMRZBNFYwf0RK8koUMx6dGUfwylLOKmaT2cs4wSW96QoYUSXAyEtpg==}
2767 | dependencies:
2768 | '@types/unist': 2.0.6
2769 | dev: true
2770 |
2771 | /unist-util-remove-position/4.0.2:
2772 | resolution: {integrity: sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==}
2773 | dependencies:
2774 | '@types/unist': 2.0.6
2775 | unist-util-visit: 4.1.2
2776 | dev: true
2777 |
2778 | /unist-util-stringify-position/3.0.3:
2779 | resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
2780 | dependencies:
2781 | '@types/unist': 2.0.6
2782 | dev: true
2783 |
2784 | /unist-util-visit-parents/5.1.3:
2785 | resolution: {integrity: sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==}
2786 | dependencies:
2787 | '@types/unist': 2.0.6
2788 | unist-util-is: 5.2.1
2789 | dev: true
2790 |
2791 | /unist-util-visit/4.1.2:
2792 | resolution: {integrity: sha512-MSd8OUGISqHdVvfY9TPhyK2VdUrPgxkUtWSuMHF6XAAFuL4LokseigBnZtPnJMu+FbynTkFNnFlyjxpVKujMRg==}
2793 | dependencies:
2794 | '@types/unist': 2.0.6
2795 | unist-util-is: 5.2.1
2796 | unist-util-visit-parents: 5.1.3
2797 | dev: true
2798 |
2799 | /update-browserslist-db/1.0.10_browserslist@4.21.5:
2800 | resolution: {integrity: sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==}
2801 | hasBin: true
2802 | peerDependencies:
2803 | browserslist: '>= 4.21.0'
2804 | dependencies:
2805 | browserslist: 4.21.5
2806 | escalade: 3.1.1
2807 | picocolors: 1.0.0
2808 | dev: true
2809 |
2810 | /uri-js/4.4.1:
2811 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
2812 | dependencies:
2813 | punycode: 2.3.0
2814 | dev: true
2815 |
2816 | /util-deprecate/1.0.2:
2817 | resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
2818 | dev: true
2819 |
2820 | /uvu/0.5.6:
2821 | resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
2822 | engines: {node: '>=8'}
2823 | hasBin: true
2824 | dependencies:
2825 | dequal: 2.0.3
2826 | diff: 5.1.0
2827 | kleur: 4.1.5
2828 | sade: 1.8.1
2829 | dev: true
2830 |
2831 | /vfile-location/4.1.0:
2832 | resolution: {integrity: sha512-YF23YMyASIIJXpktBa4vIGLJ5Gs88UB/XePgqPmTa7cDA+JeO3yclbpheQYCHjVHBn/yePzrXuygIL+xbvRYHw==}
2833 | dependencies:
2834 | '@types/unist': 2.0.6
2835 | vfile: 5.3.7
2836 | dev: true
2837 |
2838 | /vfile-message/3.1.4:
2839 | resolution: {integrity: sha512-fa0Z6P8HUrQN4BZaX05SIVXic+7kE3b05PWAtPuYP9QLHsLKYR7/AlLW3NtOrpXRLeawpDLMsVkmk5DG0NXgWw==}
2840 | dependencies:
2841 | '@types/unist': 2.0.6
2842 | unist-util-stringify-position: 3.0.3
2843 | dev: true
2844 |
2845 | /vfile/5.3.7:
2846 | resolution: {integrity: sha512-r7qlzkgErKjobAmyNIkkSpizsFPYiUPuJb5pNW1RB4JcYVZhs4lIbVqk8XPk033CV/1z8ss5pkax8SuhGpcG8g==}
2847 | dependencies:
2848 | '@types/unist': 2.0.6
2849 | is-buffer: 2.0.5
2850 | unist-util-stringify-position: 3.0.3
2851 | vfile-message: 3.1.4
2852 | dev: true
2853 |
2854 | /vite-tsconfig-paths/3.5.0_vite@4.1.4:
2855 | resolution: {integrity: sha512-NKIubr7gXgh/3uniQaOytSg+aKWPrjquP6anAy+zCWEn6h9fB8z2/qdlfQrTgZWaXJ2pHVlllrSdRZltHn9P4g==}
2856 | peerDependencies:
2857 | vite: '>2.0.0-0'
2858 | dependencies:
2859 | debug: 4.3.4
2860 | globrex: 0.1.2
2861 | recrawl-sync: 2.2.3
2862 | tsconfig-paths: 4.1.2
2863 | vite: 4.1.4_@types+node@18.15.3
2864 | transitivePeerDependencies:
2865 | - supports-color
2866 | dev: true
2867 |
2868 | /vite/4.1.4_@types+node@18.15.3:
2869 | resolution: {integrity: sha512-3knk/HsbSTKEin43zHu7jTwYWv81f8kgAL99G5NWBcA1LKvtvcVAC4JjBH1arBunO9kQka+1oGbrMKOjk4ZrBg==}
2870 | engines: {node: ^14.18.0 || >=16.0.0}
2871 | hasBin: true
2872 | peerDependencies:
2873 | '@types/node': '>= 14'
2874 | less: '*'
2875 | sass: '*'
2876 | stylus: '*'
2877 | sugarss: '*'
2878 | terser: ^5.4.0
2879 | peerDependenciesMeta:
2880 | '@types/node':
2881 | optional: true
2882 | less:
2883 | optional: true
2884 | sass:
2885 | optional: true
2886 | stylus:
2887 | optional: true
2888 | sugarss:
2889 | optional: true
2890 | terser:
2891 | optional: true
2892 | dependencies:
2893 | '@types/node': 18.15.3
2894 | esbuild: 0.16.17
2895 | postcss: 8.4.21
2896 | resolve: 1.22.1
2897 | rollup: 3.19.1
2898 | optionalDependencies:
2899 | fsevents: 2.3.2
2900 | dev: true
2901 |
2902 | /web-streams-polyfill/3.2.1:
2903 | resolution: {integrity: sha512-e0MO3wdXWKrLbL0DgGnUV7WHVuw9OUvL4hjgnPkIeEvESk74gAITi5G606JtZPp39cd8HA9VQzCIvA49LpPN5Q==}
2904 | engines: {node: '>= 8'}
2905 | dev: true
2906 |
2907 | /which/2.0.2:
2908 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
2909 | engines: {node: '>= 8'}
2910 | hasBin: true
2911 | dependencies:
2912 | isexe: 2.0.0
2913 | dev: true
2914 |
2915 | /word-wrap/1.2.3:
2916 | resolution: {integrity: sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==}
2917 | engines: {node: '>=0.10.0'}
2918 | dev: true
2919 |
2920 | /wrappy/1.0.2:
2921 | resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
2922 | dev: true
2923 |
2924 | /xtend/4.0.2:
2925 | resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
2926 | engines: {node: '>=0.4'}
2927 | dev: true
2928 |
2929 | /yallist/4.0.0:
2930 | resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
2931 | dev: true
2932 |
2933 | /yaml/1.10.2:
2934 | resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
2935 | engines: {node: '>= 6'}
2936 | dev: true
2937 |
2938 | /yocto-queue/0.1.0:
2939 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
2940 | engines: {node: '>=10'}
2941 | dev: true
2942 |
2943 | /zod/3.21.4:
2944 | resolution: {integrity: sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==}
2945 | dev: true
2946 |
2947 | /zwitch/2.0.4:
2948 | resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
2949 | dev: true
2950 |
--------------------------------------------------------------------------------