├── .gitignore
├── .prettierrc
├── README.md
├── clues
├── openssl.png
└── video
│ ├── bay.jpeg
│ ├── bay2.jpeg
│ ├── dotFilter.js
│ ├── index.html
│ └── index.js
├── components
└── signature.js
├── letter.md
├── next.config.js
├── package.json
├── pages
├── _app.js
├── api
│ ├── generateJWT.js
│ └── hello.js
├── index.js
└── secret.js
├── public
├── black.png
├── dinoed.mp4
├── favicon.ico
├── golden_coast.png
├── gzooks_secret.jpeg
├── gzooks_secret.png
└── signatures
│ ├── belle.png
│ ├── benjamin.png
│ ├── charlie.png
│ ├── ella.png
│ ├── hugo.png
│ ├── ian.png
│ ├── ishan.png
│ ├── pranav.png
│ └── sam.png
├── styles
├── Home.module.css
└── globals.css
└── yarn.lock
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env*.local
30 |
31 | # vercel
32 | .vercel
33 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "semi": true
3 | }
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # The Assemble Puzzle
2 |
3 |
4 |
5 | This summer (2022), we'll kick off a new renaissance by returning in-person high-school hackathons to San Francisco and consequently the rest of the world. [Learn more here.](https://assemble.hackclub.com)
6 |
7 | Before the big announcement, however, we created a treasure hunt that would lead to the Assemble reveal letter. In this repository we run through why we created the puzzle, how we created the puzzle, how the puzzle can be solved and a post-mortem on the puzzle's success as a launch tool.
8 |
9 | ###### Does open source organising work interest you? Keep an eye out on the `#ship` Slack channel as we open source more of Assemble.
10 |
11 | ## Why We Created The Puzzle
12 |
13 | Launches are a big part of every summer event. For example, to announce 2021's Zephyr [we hosted a community call](https://youtu.be/wQebTjTyF7M) and to announce 2020's Summer of Making [we premiered this kickoff video](https://www.youtube.com/watch?v=aDxMvyTbFl8). For 2022, we choose to make a puzzle for these five reasons:
14 |
15 | 1. **Encourage collaboration.** Hackathons are of course a collaborative event, so why not get participants working together before the event event starts? Once we'd released the puzzle, Hack Clubbers immediately got to work together on solving it together. That was amazing to see!
16 |
17 | 2. **Create a community feel.** As Hack Clubbers worked together on the puzzle, `#lounge` came alive! The channel had 7.5 times the average amount of daily messages sent in it (measured over the past three months) on that day.
18 |
19 | 3. **Build long-lasting "hype".** It took about three hours for the first person to solve the puzzle. Then people kept working it for the next twenty-four hours. That's a lot longer than a five-minute video and made sure hackers kept talking about the event for hours.
20 |
21 | 4. **Have fun!** Ultimately, hackathons are meant to be fun. And so are puzzles which makes the two a perfect match.
22 |
23 | ## How We Created The Puzzle
24 |
25 | The puzzle was made up of three parts: the video, the image and the website. Here's how we made each of those.
26 |
27 | ### The Video
28 |
29 | [This video](https://twitter.com/hackclub/status/1537556499223961600/video/1) was released on our Twitter on June 16. It was made by [@bashbaugh](https://github.com/bashbaugh) without video editing software using JavaScript and PIXI.js, with webGL shaders for the effects. The video opened with an image of the San Francisco bay and an [ASCII filter](https://github.com/pixijs/filters/tree/main/filters/ascii), with resolution slowly increasing until the bridge became visible. This was followed by a flashing text sequence (morse code) and finally, the words "end transmission". The goal was to make a short video to build hype before revealing the first clues - the Golden Gate bridge, `#come-together`, and the morse code sequence. You can find the video source in `clues/source`.
30 |
31 | ### The Image
32 |
33 | I knew earlier that the PNG spec allows for any arbitrary data to be [appended to the end of a PNG](https://stackoverflow.com/questions/61561983/how-to-extract-binary-data-appended-to-a-png-file) (no clue why tbh), so if I added any text (or base64), the PNG would still be valid and I would be able to hide a clue without changing the actual image pixels! I’ve used this before to add a lot of information to the end of a small 10x10 image so the file size was suspiciously large. In this puzzle, though, I added only a little data to make the puzzle harder ;-)
34 |
35 | Speaking of the data we added: it was a plaintext message saying “hmm. what are you looking here for?” (to show the reader they were on the right track), a newline, and then a base64-encoded AES-256 CBC encrypted message with OpenSSL’s default key derivation (`U2FsdGVkX19lz81oH05ZO6Ye0idjNeC9rRsN0eQ5RnQKPxzyf3ygw+tb1SlLbWC0=`). This is the most used form of encryption. The data was “https://shhhhhhhh.hackclub.dev/” and the password was g0ld3n (which you’d get from decoding the morse code blinking of the text in
36 | Benjamin's video).
37 |
38 | One problem we encountered was that there are several different versions of OpenSSL that have different key derivation algorithms, which means people may not be able to decode the data even if they had the right password. We decided to go with the algorithm that’s preinstalled on macOS.
39 |
40 | That’s not all! The image also contained EXIF and PNG metadata (for example, the Author, Description, Copyright Notice etc. fields). We set all of these to “cat” to hint that people should run `cat openssl.png` and see the hidden messages.
41 | Try this command to see if you can decode the data too: `echo U2FsdGVkX19lz81oH05ZO6Ye0idjNeC9rRsN0eQ5RnQKPxzyf3ygw+tb1SlLbWC0= | openssl enc -d -base64 -aes-256-cbc -k g0ld3n`!
42 |
43 | ### The Website
44 |
45 | We built the website using Next.js and hosted it on Vercel (with their serverless functions). We used the `jsonwebtoken` JavaScript library to interact and generate JWTs. Check out the source in this repo!
46 |
47 | ## How You Can Solve The Puzzle
48 |
49 | Here's a brief walkthrough of all steps involved in cracking the puzzle:
50 |
51 | You'll start with [a video posted on @hackclub's Twitter](https://twitter.com/hackclub/status/1537556499223961600) as well as in the `#announcements` Slack channel.
52 |
53 | The video has two key pieces of information:
54 |
55 | - The video mentions `#come-together` which is a Slack channel.
56 |
57 | - The video flashes `#come-together` in morse code that translates to `g0ld3n`.
58 |
59 | In `#come-together`, you'll find an image posted by @orpheus:
60 |
61 | [](assets/openssl.png)
62 |
63 | The next step is to run `cat openssl.png` in your terminal. You'll find that the last line includes a base64 string. To point participants towards the `cat` command, the image's EXIF data reads `cat`.
64 |
65 | After getting the clues above, users can run `echo $BASE_64_STRING | openssl enc -d -base64 -aes-256-cbc -k g0ld3n` to get the result `https://shhhhhhhh.hackclub.dev/`
66 |
67 | On the website, if you enter any (or no) password it will pass a JWT in the URL query string (this is intentionally insecure). The trick here is to exploit JWT's `none` algorithm to grant the viewer access to the letter. You can do this by going to [token.dev](https://token.dev), pasting the JWT, changing `hasAccess` to `true` and `alg` to `none`. Then, paste the modified JWT (with the signature removed) back into the secret URL to access the letter.
68 |
69 | The final URL with an unlocked JWT token is [here](https://shhhhhhhh.hackclub.dev/secret?jwt=eyJhbGciOiJub25lIiwidHlwIjoiSldUIn0.eyJoYXNBY2Nlc3MiOnRydWUsImlhdCI6MTY1NTMxODI5NH0).
70 |
71 | ## Post-Mortem
72 |
73 | The puzzle was a big hit! It has brought a great amount of energy to the Slack around the event. People really enjoyed the technical challenge, which stood out to me. Next time, we'll probably need more clues to solve (people are just too good)!
74 |
75 | 🎉 Thanks for puzzling with us!
76 |
--------------------------------------------------------------------------------
/clues/openssl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/clues/openssl.png
--------------------------------------------------------------------------------
/clues/video/bay.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/clues/video/bay.jpeg
--------------------------------------------------------------------------------
/clues/video/bay2.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/clues/video/bay2.jpeg
--------------------------------------------------------------------------------
/clues/video/dotFilter.js:
--------------------------------------------------------------------------------
1 | const fragment = `
2 | precision mediump float;
3 |
4 | varying vec2 vTextureCoord;
5 | varying vec4 vColor;
6 |
7 | uniform vec4 filterArea;
8 | uniform sampler2D uSampler;
9 |
10 | uniform float angle;
11 | uniform float scale;
12 |
13 | float pattern()
14 | {
15 | float s = sin(angle), c = cos(angle);
16 | vec2 tex = vTextureCoord * filterArea.xy;
17 | vec2 point = vec2(
18 | c * tex.x - s * tex.y,
19 | s * tex.x + c * tex.y
20 | ) * scale;
21 | return (sin(point.x) * sin(point.y)) * 0.8;
22 | }
23 |
24 | void main()
25 | {
26 | vec4 color = texture2D(uSampler, vTextureCoord);
27 | gl_FragColor = vec4(color.rgb * 1.2 * (1.0 - pattern()), color.a);
28 | }
29 | `
30 |
31 | const vertex = `
32 | attribute vec2 aVertexPosition;
33 | attribute vec2 aTextureCoord;
34 |
35 | uniform mat3 projectionMatrix;
36 |
37 | varying vec2 vTextureCoord;
38 |
39 | void main(void)
40 | {
41 | gl_Position = vec4((projectionMatrix * vec3(aVertexPosition, 1.0)).xy, 0.0, 1.0);
42 | vTextureCoord = aTextureCoord;
43 | }
44 | `
45 |
46 | export default class DotFilter extends PIXI.Filter
47 | {
48 | constructor(scale = 1, angle = 5)
49 | {
50 | super(vertex, fragment);
51 | this.scale = scale;
52 | this.angle = angle;
53 | }
54 |
55 | get scale()
56 | {
57 | return this.uniforms.scale;
58 | }
59 | set scale(value)
60 | {
61 | this.uniforms.scale = value;
62 | }
63 |
64 | get angle()
65 | {
66 | return this.uniforms.angle;
67 | }
68 | set angle(value)
69 | {
70 | this.uniforms.angle = value;
71 | }
72 | }
73 |
--------------------------------------------------------------------------------
/clues/video/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/clues/video/index.js:
--------------------------------------------------------------------------------
1 | // Assemble clue video source
2 | // @bashbaugh
3 |
4 | import DotFilter from "./dotFilter.js";
5 |
6 | const textStr = "#come-together";
7 | const morseString = "--. ----- .-.. -.. ...-- -.";
8 | // --. ----- .-.. -.. ...-- -.
9 |
10 | window.WebFontConfig = {
11 | google: {
12 | families: ["Kdam Thmor Pro", "VT323"],
13 | },
14 |
15 | active() {
16 | setTimeout(() => init(), 2000);
17 | },
18 | };
19 |
20 | // Why is this not working from the HTML
21 | (function () {
22 | const wf = document.createElement("script");
23 | wf.src = `${
24 | document.location.protocol === "https:" ? "https" : "http"
25 | }://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js`;
26 | wf.type = "text/javascript";
27 | wf.async = "true";
28 | const s = document.getElementsByTagName("script")[0];
29 | s.parentNode.insertBefore(wf, s);
30 | })();
31 |
32 | const app = new PIXI.Application({
33 | backgroundColor: 0xffffff,
34 | width: window.innerWidth,
35 | height: window.innerHeight,
36 | });
37 | document.body.appendChild(app.view);
38 |
39 | const asciiFilter = new PIXI.filters.AsciiFilter();
40 | const oldFilter = new PIXI.filters.OldFilmFilter({
41 | sepia: 0,
42 | vignette: 0.2,
43 | scratchWidth: 3,
44 | });
45 | const adjFilter = new PIXI.filters.AdjustmentFilter({
46 | saturation: 4,
47 | contrast: 2,
48 | });
49 | const zbFilter = new PIXI.filters.ZoomBlurFilter({
50 | strength: 0.05,
51 | center: { x: window.innerWidth / 2, y: window.innerHeight / 2 },
52 | });
53 | const glitchFilter = new PIXI.filters.GlitchFilter({
54 | fillMode: 2,
55 | enabled: false,
56 | });
57 | const dotFilter = new DotFilter(0.7, 6);
58 |
59 | asciiFilter.size = window.innerWidth;
60 |
61 | const randInt = (min, max) => Math.floor(Math.random() * (max - min) + min);
62 | const delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
63 |
64 | async function init() {
65 | const c = new PIXI.Container();
66 | app.stage.addChild(c);
67 |
68 | // create some white text using the Snippet webfont
69 | const text = new PIXI.Text("", {
70 | fontFamily: "Kdam Thmor Pro",
71 | fontSize: 150,
72 | // fill: 0xf7ff19,
73 | fill: 0xffffff,
74 | });
75 | text.anchor.set(0.5);
76 | text.position.set(app.view.width / 2, app.view.height / 2);
77 |
78 | const sf = PIXI.Sprite.from("bay2.jpeg");
79 | sf.anchor.set(0.5);
80 | sf.position.set(app.view.width / 2, app.view.height / 2);
81 |
82 | c.addChild(sf);
83 | c.addChild(text);
84 |
85 | c.filters = [
86 | adjFilter,
87 | asciiFilter,
88 | dotFilter,
89 | oldFilter,
90 | zbFilter,
91 | glitchFilter,
92 | // rgbFilter
93 | ];
94 |
95 | const MORSE_UNIT = 150; // ms
96 | const signalMorse = async (currentIndex) => {
97 | const char = morseString[currentIndex];
98 |
99 | text.style.fill = 0xffffff;
100 | await delay(MORSE_UNIT);
101 | if (char !== " ") text.style.fill = 0;
102 | // else text.style.fill = Math.floor(Math.random() * 0xffffff);
103 | // else text.style.
104 |
105 | const pause = {
106 | ".": 1,
107 | "-": 5,
108 | " ": 10,
109 | };
110 |
111 | await delay(pause[char] * MORSE_UNIT);
112 |
113 | if (currentIndex < morseString.length - 1) {
114 | signalMorse(currentIndex + 1);
115 | } else {
116 | text.style.fill = 0xffffff;
117 | endTransmision();
118 | }
119 | };
120 |
121 | const glitch = () => {
122 | glitchFilter.slices = randInt(3, 10);
123 | glitchFilter.seed = Math.random();
124 | glitchFilter.refresh();
125 | setTimeout(glitch, randInt(20, 200));
126 | };
127 |
128 | const endTransmision = async () => {
129 | glitchFilter.enabled = true;
130 |
131 | glitch();
132 |
133 | await delay(1000);
134 |
135 | // glitchFilter.enabled = false
136 | app.stage.removeChild(c);
137 | app.renderer.backgroundColor = 0;
138 | const endText = new PIXI.Text("END TRANSMISSION", {
139 | fontFamily: "VT323",
140 | fontSize: 30,
141 | fill: 0xa1a1a1,
142 | });
143 | endText.position.set(10, 10);
144 | endText.visible = false;
145 | app.stage.addChild(endText);
146 |
147 | setInterval(() => {
148 | endText.visible = !endText.visible;
149 | }, 1000);
150 | };
151 |
152 | let textDone = false;
153 |
154 | app.ticker.add((delta) => {
155 | // text.rotation += 0.01;
156 | if (asciiFilter.size > 1) {
157 | asciiFilter.size -= asciiFilter.size / 100;
158 | zbFilter.strength += 0.0003;
159 | if (asciiFilter.size <= 1) {
160 | asciiFilter.enabled = false;
161 | zbFilter.strength = 0.02;
162 | setInterval(async () => {
163 | if (textDone) return;
164 | text.text = textStr.substring(0, text.text.length) + "_";
165 | if (text.text.length === textStr.length + 1) {
166 | textDone = true;
167 |
168 | await delay(1000);
169 | signalMorse(0);
170 | }
171 | }, 100); //200
172 | }
173 | } else {
174 | oldFilter.seed = Math.random();
175 | }
176 | });
177 | }
178 |
--------------------------------------------------------------------------------
/components/signature.js:
--------------------------------------------------------------------------------
1 | const Signature = ({href, src, style}) => (
2 |
3 |
7 |
8 | )
9 |
10 | export default Signature
--------------------------------------------------------------------------------
/letter.md:
--------------------------------------------------------------------------------
1 | 
2 |
3 | Dear Hack Clubber,
4 |
5 | You found us, haven’t you? Congrats for uncovering our secret summer project. You probably had to poke around to get here. Maybe you saw the clues immediately. Maybe it took some time. Perhaps you even had help from someone.
6 |
7 | Now that you’ve made it please don’t spoil the fun! You can share that you got our message and our postcard above, but the content of this letter is just between us. If you still want to be involved, you should offer a hand in the Slack and share your wisdom with someone looking for help to also reach this page.
8 |
9 | With that out of the way, we’re super excited to share some news with you: we're organizing Assemble, **an IRL hackathon in San Francisco from 5th-7th of August**. Around 150 attendees will join us– fellow Hack Clubbers, new high schoolers outside the community, and [some previous AMA guests](https://hackclub.com/amas#past-amas).
10 |
11 | We're still locking in the final logistics before we share this publicly, so stay tuned for the official post going out in the [#announcements](https://app.slack.com/client/T0266FRGM/C0266FRGT) channel late next week. For the time being, don't book your flights. Don't think about travel. Just know this is coming.
12 |
13 | Thank you so much for finding us. We’ll be in touch,
14 |
15 | \- The Assemble Team
16 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | webpack: (config) => {
5 | config.module.rules.push({
6 | test: /\.md$/,
7 | use: 'raw-loader',
8 | });
9 | return config;
10 | },
11 | }
12 |
13 | module.exports = nextConfig
14 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "assemble-surprise",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "dev": "next dev",
7 | "build": "next build",
8 | "start": "next start",
9 | "lint": "next lint"
10 | },
11 | "dependencies": {
12 | "jsonwebtoken": "^8.5.1",
13 | "next": "12.1.6",
14 | "react": "18.1.0",
15 | "react-dom": "18.1.0",
16 | "react-markdown": "^8.0.3"
17 | },
18 | "devDependencies": {
19 | "eslint": "8.16.0",
20 | "eslint-config-next": "12.1.6",
21 | "raw-loader": "^4.0.2"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/pages/_app.js:
--------------------------------------------------------------------------------
1 | import Head from "next/head";
2 | import "../styles/globals.css";
3 |
4 | function MyApp({ Component, pageProps }) {
5 | return (
6 | <>
7 |
8 | 🤫 [REDACTED]
9 |
10 |
11 | >
12 | );
13 | }
14 |
15 | export default MyApp;
16 |
--------------------------------------------------------------------------------
/pages/api/generateJWT.js:
--------------------------------------------------------------------------------
1 | const jwt = require("jsonwebtoken");
2 | const privateKey =
3 | "ginKjqrRLtrvEzgRs7s3dT5J70ZXTbb8j0EGJeCZrtH5Ekz4gyQQkNBVpExp";
4 |
5 | export default function handler(req, res) {
6 | let password = req.query.password;
7 | let token;
8 | let hasAccess = false;
9 | if (password === "assemble") {
10 | token = jwt.sign(
11 | {
12 | hasAccess: true,
13 | },
14 | privateKey
15 | );
16 | hasAccess = true;
17 | } else {
18 | token = jwt.sign(
19 | {
20 | hasAccess: false,
21 | },
22 | privateKey
23 | );
24 | }
25 | res.body = { token, hasAccess };
26 | res.setHeader("Content-Type", "application/json");
27 | res.status(200).json(res.body);
28 | }
29 |
--------------------------------------------------------------------------------
/pages/api/hello.js:
--------------------------------------------------------------------------------
1 | export default function handler(req, res) {
2 | res.status(200).json({ name: 'John Wayne Thomas' })
3 | }
4 |
--------------------------------------------------------------------------------
/pages/index.js:
--------------------------------------------------------------------------------
1 | export default function Home() {
2 | return (
3 |
4 |
26 |
27 | );
28 | }
29 |
--------------------------------------------------------------------------------
/pages/secret.js:
--------------------------------------------------------------------------------
1 | import { useEffect, useState } from 'react'
2 | import mdLetter from '../letter.md'
3 | import ReactMarkdown from 'react-markdown'
4 | import Signature from '../components/signature';
5 |
6 | const SIGNATURES = {
7 | "belle": "bellesea",
8 | "benjamin": "bashbaugh",
9 | "charlie": "tetraoxygen",
10 | "ella": "exu3",
11 | "hugo": "Hugoyhu",
12 | "ian": "YodaLightsabr",
13 | "ishan": "quackduck",
14 | "pranav": "pranavnt",
15 | "sam": "sampoder",
16 | }
17 |
18 | // Use a custom renderer so that we can include image in Markdown and avoid anything being leaked
19 | const renderers = {
20 | img: ({
21 | alt,
22 | src,
23 | title,
24 | }) => (
25 |
26 |
27 | {/* TODO: Add everyone's signature ontop of the photo */}
28 |
29 | {title}
30 |
31 |
32 | ),
33 | };
34 |
35 | export default function Secret({ hasAccess, errorMessage, letterContent, signatures }) {
36 | // Doing this to avoid Next hydration error from md component, which shouldn't be happening
37 | const [loaded, setLoaded] = useState(false);
38 | useEffect(() => {
39 | setLoaded(true)
40 | }, [])
41 |
42 | if (hasAccess) {
43 | return loaded ? (
44 |
45 |
46 |
47 | {
48 | Object.entries(signatures).map(([name, gh]) => )
49 | }
50 |
51 | ) : 'gadzooks';
52 | } else {
53 | useEffect(() => {
54 | setTimeout(() => alert(errorMessage || 'ACCESS DENIED'), 500)
55 | }, [])
56 |
57 | return (
58 |
59 |
70 |
71 |
72 |
73 | );
74 | }
75 | }
76 |
77 | export function getServerSideProps (ctx) {
78 | let jwt = ctx.query.jwt || "";
79 | let hasAccess = false;
80 | let errorMessage = 'ACCESS DENIED';
81 | try {
82 | if (jwt.endsWith(".")) {
83 | jwt = jwt.slice(0, -1);
84 | }
85 | hasAccess = JSON.parse(atob(jwt.split(".")[1])).hasAccess;
86 |
87 | if (hasAccess === true) {
88 | const alg = JSON.parse(atob(jwt.split(".")[0])).alg
89 | if (jwt.split(".").length <= 2 && alg == "none") {
90 | // Pass
91 | } else {
92 | hasAccess = false;
93 | errorMessage = `ACCESS DENIED :: ${alg} signature invalid :: rfc7518 3.1`;
94 | }
95 | } else {
96 | hasAccess = false;
97 | errorMessage = 'ACCESS DENIED :: token unauthorized';
98 | }
99 | } catch (err) {
100 | errorMessage = "ACCESS DENIED :: INVALID JWT";
101 | hasAccess = false;
102 | }
103 |
104 | return {
105 | props: {
106 | hasAccess,
107 | errorMessage: hasAccess ? '' : errorMessage,
108 | letterContent: hasAccess ? mdLetter : '',
109 | signatures: hasAccess && SIGNATURES,
110 | },
111 | }
112 | }
113 |
--------------------------------------------------------------------------------
/public/black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/black.png
--------------------------------------------------------------------------------
/public/dinoed.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/dinoed.mp4
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/favicon.ico
--------------------------------------------------------------------------------
/public/golden_coast.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/golden_coast.png
--------------------------------------------------------------------------------
/public/gzooks_secret.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/gzooks_secret.jpeg
--------------------------------------------------------------------------------
/public/gzooks_secret.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/gzooks_secret.png
--------------------------------------------------------------------------------
/public/signatures/belle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/signatures/belle.png
--------------------------------------------------------------------------------
/public/signatures/benjamin.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/signatures/benjamin.png
--------------------------------------------------------------------------------
/public/signatures/charlie.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/signatures/charlie.png
--------------------------------------------------------------------------------
/public/signatures/ella.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/signatures/ella.png
--------------------------------------------------------------------------------
/public/signatures/hugo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/signatures/hugo.png
--------------------------------------------------------------------------------
/public/signatures/ian.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/signatures/ian.png
--------------------------------------------------------------------------------
/public/signatures/ishan.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/signatures/ishan.png
--------------------------------------------------------------------------------
/public/signatures/pranav.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/signatures/pranav.png
--------------------------------------------------------------------------------
/public/signatures/sam.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/hackclub/assemble-puzzle/35bfd872857dffb7cef6cb7e9d31a371f959c3c0/public/signatures/sam.png
--------------------------------------------------------------------------------
/styles/Home.module.css:
--------------------------------------------------------------------------------
1 | .container {
2 | padding: 0 2rem;
3 | }
4 |
5 | .main {
6 | min-height: 100vh;
7 | /* padding: 4rem 0; */
8 | flex: 1;
9 | display: flex;
10 | flex-direction: column;
11 | justify-content: center;
12 | align-items: center;
13 | }
14 |
15 | .footer {
16 | display: flex;
17 | flex: 1;
18 | padding: 2rem 0;
19 | border-top: 1px solid #eaeaea;
20 | justify-content: center;
21 | align-items: center;
22 | }
23 |
24 | .footer a {
25 | display: flex;
26 | justify-content: center;
27 | align-items: center;
28 | flex-grow: 1;
29 | }
30 |
31 | .title a {
32 | color: #0070f3;
33 | text-decoration: none;
34 | }
35 |
36 | .title a:hover,
37 | .title a:focus,
38 | .title a:active {
39 | text-decoration: underline;
40 | }
41 |
42 | .title {
43 | margin: 0;
44 | line-height: 1.15;
45 | font-size: 4rem;
46 | }
47 |
48 | .title,
49 | .description {
50 | text-align: center;
51 | }
52 |
53 | .description {
54 | margin: 4rem 0;
55 | line-height: 1.5;
56 | font-size: 1.5rem;
57 | }
58 |
59 | .code {
60 | background: #fafafa;
61 | border-radius: 5px;
62 | padding: 0.75rem;
63 | font-size: 1.1rem;
64 | font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
65 | Bitstream Vera Sans Mono, Courier New, monospace;
66 | }
67 |
68 | .grid {
69 | display: flex;
70 | align-items: center;
71 | justify-content: center;
72 | flex-wrap: wrap;
73 | max-width: 800px;
74 | }
75 |
76 | .card {
77 | margin: 1rem;
78 | padding: 1.5rem;
79 | text-align: left;
80 | color: inherit;
81 | text-decoration: none;
82 | border: 1px solid #eaeaea;
83 | border-radius: 10px;
84 | transition: color 0.15s ease, border-color 0.15s ease;
85 | max-width: 300px;
86 | }
87 |
88 | .card:hover,
89 | .card:focus,
90 | .card:active {
91 | color: #0070f3;
92 | border-color: #0070f3;
93 | }
94 |
95 | .card h2 {
96 | margin: 0 0 1rem 0;
97 | font-size: 1.5rem;
98 | }
99 |
100 | .card p {
101 | margin: 0;
102 | font-size: 1.25rem;
103 | line-height: 1.5;
104 | }
105 |
106 | .logo {
107 | height: 1em;
108 | margin-left: 0.5rem;
109 | }
110 |
111 | @media (max-width: 600px) {
112 | .grid {
113 | width: 100%;
114 | flex-direction: column;
115 | }
116 | }
117 |
--------------------------------------------------------------------------------
/styles/globals.css:
--------------------------------------------------------------------------------
1 | /* STRICTLY FOR HQ CONTROLLED SITES ONLY. */
2 |
3 | @font-face {
4 | font-family: 'Phantom Sans';
5 | src: url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Regular.woff')
6 | format('woff'),
7 | url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Regular.woff2')
8 | format('woff2');
9 | font-weight: normal;
10 | font-style: normal;
11 | font-display: swap;
12 | }
13 | @font-face {
14 | font-family: 'Phantom Sans';
15 | src: url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Italic.woff')
16 | format('woff'),
17 | url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Italic.woff2')
18 | format('woff2');
19 | font-weight: normal;
20 | font-style: italic;
21 | font-display: swap;
22 | }
23 | @font-face {
24 | font-family: 'Phantom Sans';
25 | src: url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Bold.woff')
26 | format('woff'),
27 | url('https://assets.hackclub.com/fonts/Phantom_Sans_0.7/Bold.woff2')
28 | format('woff2');
29 | font-weight: bold;
30 | font-style: normal;
31 | font-display: swap;
32 | }
33 |
34 | html,
35 | body {
36 | font-family: "Phantom Sans", system-ui, -apple-system, BlinkMacSystemFont,
37 | "Segoe UI", Roboto, sans-serif;
38 | margin: 0;
39 | }
40 |
41 | main {
42 | background-image: linear-gradient(
43 | 90deg,
44 | rgba(5, 11, 20, 0.7) 0%,
45 | rgba(5, 11, 20, 0.7) 100%
46 | ),
47 | url(../public/black.png);
48 | background-size: 50px;
49 | display: flex;
50 | align-items: center;
51 | justify-content: center;
52 | min-height: 100vh;
53 | color: white;
54 | }
55 |
56 |
57 | body {
58 | /* TODO: This would be *so cool* to parallax */
59 | background-image: url('../public/golden_coast.png');
60 | background-size: cover;
61 | background-repeat: repeat;
62 | }
63 |
64 | a {
65 | color: inherit;
66 | }
67 |
68 | .decoration-none {
69 | text-decoration: none !important;
70 | }
71 |
72 | * {
73 | box-sizing: border-box;
74 | }
75 |
76 | #text-container {
77 | font-size: 1.7rem;
78 | padding: 1em;
79 | background-color: #e8e0dc;
80 | }
81 |
82 | img {
83 | width: 100%;
84 | border-radius: 2px;
85 | }
86 |
87 | .shadow {
88 | box-shadow: 5px 5px 41px 11px rgba(0, 0, 0, 0.4);
89 | }
90 |
91 | figure {
92 | margin: 0 0 3vh;
93 | }
94 |
95 | figure > figcaption {
96 | font-size: 1rem;
97 | text-align: right;
98 | opacity: 0.6;
99 | margin-top: 8px;
100 | }
101 |
102 | @media only screen and (max-width: 1600px) {
103 | #text-container {
104 | margin: 10vh 20vw;
105 | }
106 | }
107 |
108 | @media only screen and (max-width: 800px) {
109 | #text-container {
110 | margin: 10vh 5vw;
111 | }
112 | input {
113 | font-size: 2em!important;
114 | width: 90vw!important
115 | }
116 | }
117 |
118 | :root {
119 | --telescope-highlight: #95abe655;
120 | --telescope-highlight-hover: #95abe699;
121 | --telescope-text-color: #1f2021;
122 | }
123 |
124 | input {
125 | width: 100%;
126 | padding: 12px;
127 | margin: 8px 0;
128 | box-sizing: border-box;
129 | border: 5px solid white;
130 | border-radius: 4px;
131 | background: #1f2021;
132 | text-align: center;
133 | color: white;
134 | font-family: "Phantom Sans", system-ui, -apple-system, BlinkMacSystemFont,
135 | "Segoe UI", Roboto, sans-serif;
136 | font-size: 3em;
137 | padding-bottom: 6px;
138 | }
139 |
140 | b {
141 | color: #338eda
142 | }
143 |
144 | h1 {
145 | margin-block-end: 12px;
146 | }
147 |
148 | p {
149 | margin-block-start: 12px;
150 | }
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/runtime-corejs3@^7.10.2":
6 | version "7.18.3"
7 | resolved "https://registry.yarnpkg.com/@babel/runtime-corejs3/-/runtime-corejs3-7.18.3.tgz#52f0241a31e0ec61a6187530af6227c2846bd60c"
8 | integrity sha512-l4ddFwrc9rnR+EJsHsh+TJ4A35YqQz/UqcjtlX2ov53hlJYG5CxtQmNZxyajwDVmCxwy++rtvGU5HazCK4W41Q==
9 | dependencies:
10 | core-js-pure "^3.20.2"
11 | regenerator-runtime "^0.13.4"
12 |
13 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.16.3":
14 | version "7.18.3"
15 | resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.18.3.tgz#c7b654b57f6f63cf7f8b418ac9ca04408c4579f4"
16 | integrity sha512-38Y8f7YUhce/K7RMwTp7m0uCumpv9hZkitCbBClqQIow1qSbCvGkcegKOXpEWCQLfWmevgRiWokZ1GkpfhbZug==
17 | dependencies:
18 | regenerator-runtime "^0.13.4"
19 |
20 | "@eslint/eslintrc@^1.3.0":
21 | version "1.3.0"
22 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-1.3.0.tgz#29f92c30bb3e771e4a2048c95fa6855392dfac4f"
23 | integrity sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==
24 | dependencies:
25 | ajv "^6.12.4"
26 | debug "^4.3.2"
27 | espree "^9.3.2"
28 | globals "^13.15.0"
29 | ignore "^5.2.0"
30 | import-fresh "^3.2.1"
31 | js-yaml "^4.1.0"
32 | minimatch "^3.1.2"
33 | strip-json-comments "^3.1.1"
34 |
35 | "@humanwhocodes/config-array@^0.9.2":
36 | version "0.9.5"
37 | resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.9.5.tgz#2cbaf9a89460da24b5ca6531b8bbfc23e1df50c7"
38 | integrity sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==
39 | dependencies:
40 | "@humanwhocodes/object-schema" "^1.2.1"
41 | debug "^4.1.1"
42 | minimatch "^3.0.4"
43 |
44 | "@humanwhocodes/object-schema@^1.2.1":
45 | version "1.2.1"
46 | resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45"
47 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
48 |
49 | "@next/env@12.1.6":
50 | version "12.1.6"
51 | resolved "https://registry.yarnpkg.com/@next/env/-/env-12.1.6.tgz#5f44823a78335355f00f1687cfc4f1dafa3eca08"
52 | integrity sha512-Te/OBDXFSodPU6jlXYPAXpmZr/AkG6DCATAxttQxqOWaq6eDFX25Db3dK0120GZrSZmv4QCe9KsZmJKDbWs4OA==
53 |
54 | "@next/eslint-plugin-next@12.1.6":
55 | version "12.1.6"
56 | resolved "https://registry.yarnpkg.com/@next/eslint-plugin-next/-/eslint-plugin-next-12.1.6.tgz#dde3f98831f15923b25244588d924c716956292e"
57 | integrity sha512-yNUtJ90NEiYFT6TJnNyofKMPYqirKDwpahcbxBgSIuABwYOdkGwzos1ZkYD51Qf0diYwpQZBeVqElTk7Q2WNqw==
58 | dependencies:
59 | glob "7.1.7"
60 |
61 | "@next/swc-android-arm-eabi@12.1.6":
62 | version "12.1.6"
63 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-12.1.6.tgz#79a35349b98f2f8c038ab6261aa9cd0d121c03f9"
64 | integrity sha512-BxBr3QAAAXWgk/K7EedvzxJr2dE014mghBSA9iOEAv0bMgF+MRq4PoASjuHi15M2zfowpcRG8XQhMFtxftCleQ==
65 |
66 | "@next/swc-android-arm64@12.1.6":
67 | version "12.1.6"
68 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-12.1.6.tgz#ec08ea61794f8752c8ebcacbed0aafc5b9407456"
69 | integrity sha512-EboEk3ROYY7U6WA2RrMt/cXXMokUTXXfnxe2+CU+DOahvbrO8QSWhlBl9I9ZbFzJx28AGB9Yo3oQHCvph/4Lew==
70 |
71 | "@next/swc-darwin-arm64@12.1.6":
72 | version "12.1.6"
73 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-12.1.6.tgz#d1053805615fd0706e9b1667893a72271cd87119"
74 | integrity sha512-P0EXU12BMSdNj1F7vdkP/VrYDuCNwBExtRPDYawgSUakzi6qP0iKJpya2BuLvNzXx+XPU49GFuDC5X+SvY0mOw==
75 |
76 | "@next/swc-darwin-x64@12.1.6":
77 | version "12.1.6"
78 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-12.1.6.tgz#2d1b926a22f4c5230d5b311f9c56cfdcc406afec"
79 | integrity sha512-9FptMnbgHJK3dRDzfTpexs9S2hGpzOQxSQbe8omz6Pcl7rnEp9x4uSEKY51ho85JCjL4d0tDLBcXEJZKKLzxNg==
80 |
81 | "@next/swc-linux-arm-gnueabihf@12.1.6":
82 | version "12.1.6"
83 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-12.1.6.tgz#c021918d2a94a17f823106a5e069335b8a19724f"
84 | integrity sha512-PvfEa1RR55dsik/IDkCKSFkk6ODNGJqPY3ysVUZqmnWMDSuqFtf7BPWHFa/53znpvVB5XaJ5Z1/6aR5CTIqxPw==
85 |
86 | "@next/swc-linux-arm64-gnu@12.1.6":
87 | version "12.1.6"
88 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-12.1.6.tgz#ac55c07bfabde378dfa0ce2b8fc1c3b2897e81ae"
89 | integrity sha512-53QOvX1jBbC2ctnmWHyRhMajGq7QZfl974WYlwclXarVV418X7ed7o/EzGY+YVAEKzIVaAB9JFFWGXn8WWo0gQ==
90 |
91 | "@next/swc-linux-arm64-musl@12.1.6":
92 | version "12.1.6"
93 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-12.1.6.tgz#e429f826279894be9096be6bec13e75e3d6bd671"
94 | integrity sha512-CMWAkYqfGdQCS+uuMA1A2UhOfcUYeoqnTW7msLr2RyYAys15pD960hlDfq7QAi8BCAKk0sQ2rjsl0iqMyziohQ==
95 |
96 | "@next/swc-linux-x64-gnu@12.1.6":
97 | version "12.1.6"
98 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-12.1.6.tgz#1f276c0784a5ca599bfa34b2fcc0b38f3a738e08"
99 | integrity sha512-AC7jE4Fxpn0s3ujngClIDTiEM/CQiB2N2vkcyWWn6734AmGT03Duq6RYtPMymFobDdAtZGFZd5nR95WjPzbZAQ==
100 |
101 | "@next/swc-linux-x64-musl@12.1.6":
102 | version "12.1.6"
103 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-12.1.6.tgz#1d9933dd6ba303dcfd8a2acd6ac7c27ed41e2eea"
104 | integrity sha512-c9Vjmi0EVk0Kou2qbrynskVarnFwfYIi+wKufR9Ad7/IKKuP6aEhOdZiIIdKsYWRtK2IWRF3h3YmdnEa2WLUag==
105 |
106 | "@next/swc-win32-arm64-msvc@12.1.6":
107 | version "12.1.6"
108 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-12.1.6.tgz#2ef9837f12ca652b1783d72ecb86208906042f02"
109 | integrity sha512-3UTOL/5XZSKFelM7qN0it35o3Cegm6LsyuERR3/OoqEExyj3aCk7F025b54/707HTMAnjlvQK3DzLhPu/xxO4g==
110 |
111 | "@next/swc-win32-ia32-msvc@12.1.6":
112 | version "12.1.6"
113 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-12.1.6.tgz#74003d0aa1c59dfa56cb15481a5c607cbc0027b9"
114 | integrity sha512-8ZWoj6nCq6fI1yCzKq6oK0jE6Mxlz4MrEsRyu0TwDztWQWe7rh4XXGLAa2YVPatYcHhMcUL+fQQbqd1MsgaSDA==
115 |
116 | "@next/swc-win32-x64-msvc@12.1.6":
117 | version "12.1.6"
118 | resolved "https://registry.yarnpkg.com/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-12.1.6.tgz#a350caf42975e7197b24b495b8d764eec7e6a36e"
119 | integrity sha512-4ZEwiRuZEicXhXqmhw3+de8Z4EpOLQj/gp+D9fFWo6ii6W1kBkNNvvEx4A90ugppu+74pT1lIJnOuz3A9oQeJA==
120 |
121 | "@nodelib/fs.scandir@2.1.5":
122 | version "2.1.5"
123 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5"
124 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
125 | dependencies:
126 | "@nodelib/fs.stat" "2.0.5"
127 | run-parallel "^1.1.9"
128 |
129 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
130 | version "2.0.5"
131 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b"
132 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
133 |
134 | "@nodelib/fs.walk@^1.2.3":
135 | version "1.2.8"
136 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a"
137 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
138 | dependencies:
139 | "@nodelib/fs.scandir" "2.1.5"
140 | fastq "^1.6.0"
141 |
142 | "@rushstack/eslint-patch@^1.1.3":
143 | version "1.1.3"
144 | resolved "https://registry.yarnpkg.com/@rushstack/eslint-patch/-/eslint-patch-1.1.3.tgz#6801033be7ff87a6b7cadaf5b337c9f366a3c4b0"
145 | integrity sha512-WiBSI6JBIhC6LRIsB2Kwh8DsGTlbBU+mLRxJmAe3LjHTdkDpwIbEOZgoXBbZilk/vlfjK8i6nKRAvIRn1XaIMw==
146 |
147 | "@types/debug@^4.0.0":
148 | version "4.1.7"
149 | resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.7.tgz#7cc0ea761509124709b8b2d1090d8f6c17aadb82"
150 | integrity sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==
151 | dependencies:
152 | "@types/ms" "*"
153 |
154 | "@types/hast@^2.0.0":
155 | version "2.3.4"
156 | resolved "https://registry.yarnpkg.com/@types/hast/-/hast-2.3.4.tgz#8aa5ef92c117d20d974a82bdfb6a648b08c0bafc"
157 | integrity sha512-wLEm0QvaoawEDoTRwzTXp4b4jpwiJDvR5KMnFnVodm3scufTlBOWRD6N1OBf9TZMhjlNsSfcO5V+7AF4+Vy+9g==
158 | dependencies:
159 | "@types/unist" "*"
160 |
161 | "@types/json-schema@^7.0.8":
162 | version "7.0.11"
163 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3"
164 | integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ==
165 |
166 | "@types/json5@^0.0.29":
167 | version "0.0.29"
168 | resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
169 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
170 |
171 | "@types/mdast@^3.0.0":
172 | version "3.0.10"
173 | resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.10.tgz#4724244a82a4598884cbbe9bcfd73dff927ee8af"
174 | integrity sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA==
175 | dependencies:
176 | "@types/unist" "*"
177 |
178 | "@types/mdurl@^1.0.0":
179 | version "1.0.2"
180 | resolved "https://registry.yarnpkg.com/@types/mdurl/-/mdurl-1.0.2.tgz#e2ce9d83a613bacf284c7be7d491945e39e1f8e9"
181 | integrity sha512-eC4U9MlIcu2q0KQmXszyn5Akca/0jrQmwDRgpAMJai7qBWq4amIQhZyNau4VYGtCeALvW1/NtjzJJ567aZxfKA==
182 |
183 | "@types/ms@*":
184 | version "0.7.31"
185 | resolved "https://registry.yarnpkg.com/@types/ms/-/ms-0.7.31.tgz#31b7ca6407128a3d2bbc27fe2d21b345397f6197"
186 | integrity sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==
187 |
188 | "@types/prop-types@^15.0.0":
189 | version "15.7.5"
190 | resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.5.tgz#5f19d2b85a98e9558036f6a3cacc8819420f05cf"
191 | integrity sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==
192 |
193 | "@types/unist@*", "@types/unist@^2.0.0":
194 | version "2.0.6"
195 | resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d"
196 | integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==
197 |
198 | "@typescript-eslint/parser@^5.21.0":
199 | version "5.27.0"
200 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.27.0.tgz#62bb091ed5cf9c7e126e80021bb563dcf36b6b12"
201 | integrity sha512-8oGjQF46c52l7fMiPPvX4It3u3V3JipssqDfHQ2hcR0AeR8Zge+OYyKUCm5b70X72N1qXt0qgHenwN6Gc2SXZA==
202 | dependencies:
203 | "@typescript-eslint/scope-manager" "5.27.0"
204 | "@typescript-eslint/types" "5.27.0"
205 | "@typescript-eslint/typescript-estree" "5.27.0"
206 | debug "^4.3.4"
207 |
208 | "@typescript-eslint/scope-manager@5.27.0":
209 | version "5.27.0"
210 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.27.0.tgz#a272178f613050ed62f51f69aae1e19e870a8bbb"
211 | integrity sha512-VnykheBQ/sHd1Vt0LJ1JLrMH1GzHO+SzX6VTXuStISIsvRiurue/eRkTqSrG0CexHQgKG8shyJfR4o5VYioB9g==
212 | dependencies:
213 | "@typescript-eslint/types" "5.27.0"
214 | "@typescript-eslint/visitor-keys" "5.27.0"
215 |
216 | "@typescript-eslint/types@5.27.0":
217 | version "5.27.0"
218 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.27.0.tgz#c3f44b9dda6177a9554f94a74745ca495ba9c001"
219 | integrity sha512-lY6C7oGm9a/GWhmUDOs3xAVRz4ty/XKlQ2fOLr8GAIryGn0+UBOoJDWyHer3UgrHkenorwvBnphhP+zPmzmw0A==
220 |
221 | "@typescript-eslint/typescript-estree@5.27.0":
222 | version "5.27.0"
223 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.27.0.tgz#7965f5b553c634c5354a47dcce0b40b94611e995"
224 | integrity sha512-QywPMFvgZ+MHSLRofLI7BDL+UczFFHyj0vF5ibeChDAJgdTV8k4xgEwF0geFhVlPc1p8r70eYewzpo6ps+9LJQ==
225 | dependencies:
226 | "@typescript-eslint/types" "5.27.0"
227 | "@typescript-eslint/visitor-keys" "5.27.0"
228 | debug "^4.3.4"
229 | globby "^11.1.0"
230 | is-glob "^4.0.3"
231 | semver "^7.3.7"
232 | tsutils "^3.21.0"
233 |
234 | "@typescript-eslint/visitor-keys@5.27.0":
235 | version "5.27.0"
236 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.27.0.tgz#97aa9a5d2f3df8215e6d3b77f9d214a24db269bd"
237 | integrity sha512-46cYrteA2MrIAjv9ai44OQDUoCZyHeGIc4lsjCUX2WT6r4C+kidz1bNiR4017wHOPUythYeH+Sc7/cFP97KEAA==
238 | dependencies:
239 | "@typescript-eslint/types" "5.27.0"
240 | eslint-visitor-keys "^3.3.0"
241 |
242 | acorn-jsx@^5.3.2:
243 | version "5.3.2"
244 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937"
245 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
246 |
247 | acorn@^8.7.1:
248 | version "8.7.1"
249 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30"
250 | integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==
251 |
252 | ajv-keywords@^3.5.2:
253 | version "3.5.2"
254 | resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d"
255 | integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==
256 |
257 | ajv@^6.10.0, ajv@^6.12.4, ajv@^6.12.5:
258 | version "6.12.6"
259 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4"
260 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
261 | dependencies:
262 | fast-deep-equal "^3.1.1"
263 | fast-json-stable-stringify "^2.0.0"
264 | json-schema-traverse "^0.4.1"
265 | uri-js "^4.2.2"
266 |
267 | ansi-regex@^5.0.1:
268 | version "5.0.1"
269 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
270 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
271 |
272 | ansi-styles@^4.1.0:
273 | version "4.3.0"
274 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
275 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
276 | dependencies:
277 | color-convert "^2.0.1"
278 |
279 | argparse@^2.0.1:
280 | version "2.0.1"
281 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"
282 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
283 |
284 | aria-query@^4.2.2:
285 | version "4.2.2"
286 | resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-4.2.2.tgz#0d2ca6c9aceb56b8977e9fed6aed7e15bbd2f83b"
287 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
288 | dependencies:
289 | "@babel/runtime" "^7.10.2"
290 | "@babel/runtime-corejs3" "^7.10.2"
291 |
292 | array-includes@^3.1.4, array-includes@^3.1.5:
293 | version "3.1.5"
294 | resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb"
295 | integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==
296 | dependencies:
297 | call-bind "^1.0.2"
298 | define-properties "^1.1.4"
299 | es-abstract "^1.19.5"
300 | get-intrinsic "^1.1.1"
301 | is-string "^1.0.7"
302 |
303 | array-union@^2.1.0:
304 | version "2.1.0"
305 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d"
306 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
307 |
308 | array.prototype.flat@^1.2.5:
309 | version "1.3.0"
310 | resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b"
311 | integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==
312 | dependencies:
313 | call-bind "^1.0.2"
314 | define-properties "^1.1.3"
315 | es-abstract "^1.19.2"
316 | es-shim-unscopables "^1.0.0"
317 |
318 | array.prototype.flatmap@^1.3.0:
319 | version "1.3.0"
320 | resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.0.tgz#a7e8ed4225f4788a70cd910abcf0791e76a5534f"
321 | integrity sha512-PZC9/8TKAIxcWKdyeb77EzULHPrIX/tIZebLJUQOMR1OwYosT8yggdfWScfTBCDj5utONvOuPQQumYsU2ULbkg==
322 | dependencies:
323 | call-bind "^1.0.2"
324 | define-properties "^1.1.3"
325 | es-abstract "^1.19.2"
326 | es-shim-unscopables "^1.0.0"
327 |
328 | ast-types-flow@^0.0.7:
329 | version "0.0.7"
330 | resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
331 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==
332 |
333 | axe-core@^4.3.5:
334 | version "4.4.2"
335 | resolved "https://registry.yarnpkg.com/axe-core/-/axe-core-4.4.2.tgz#dcf7fb6dea866166c3eab33d68208afe4d5f670c"
336 | integrity sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==
337 |
338 | axobject-query@^2.2.0:
339 | version "2.2.0"
340 | resolved "https://registry.yarnpkg.com/axobject-query/-/axobject-query-2.2.0.tgz#943d47e10c0b704aa42275e20edf3722648989be"
341 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
342 |
343 | bail@^2.0.0:
344 | version "2.0.2"
345 | resolved "https://registry.yarnpkg.com/bail/-/bail-2.0.2.tgz#d26f5cd8fe5d6f832a31517b9f7c356040ba6d5d"
346 | integrity sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==
347 |
348 | balanced-match@^1.0.0:
349 | version "1.0.2"
350 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"
351 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
352 |
353 | big.js@^5.2.2:
354 | version "5.2.2"
355 | resolved "https://registry.yarnpkg.com/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
356 | integrity sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==
357 |
358 | brace-expansion@^1.1.7:
359 | version "1.1.11"
360 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
361 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
362 | dependencies:
363 | balanced-match "^1.0.0"
364 | concat-map "0.0.1"
365 |
366 | braces@^3.0.2:
367 | version "3.0.2"
368 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107"
369 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
370 | dependencies:
371 | fill-range "^7.0.1"
372 |
373 | buffer-equal-constant-time@1.0.1:
374 | version "1.0.1"
375 | resolved "https://registry.yarnpkg.com/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz#f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819"
376 | integrity sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==
377 |
378 | call-bind@^1.0.0, call-bind@^1.0.2:
379 | version "1.0.2"
380 | resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c"
381 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
382 | dependencies:
383 | function-bind "^1.1.1"
384 | get-intrinsic "^1.0.2"
385 |
386 | callsites@^3.0.0:
387 | version "3.1.0"
388 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73"
389 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
390 |
391 | caniuse-lite@^1.0.30001332:
392 | version "1.0.30001344"
393 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001344.tgz#8a1e7fdc4db9c2ec79a05e9fd68eb93a761888bb"
394 | integrity sha512-0ZFjnlCaXNOAYcV7i+TtdKBp0L/3XEU2MF/x6Du1lrh+SRX4IfzIVL4HNJg5pB2PmFb8rszIGyOvsZnqqRoc2g==
395 |
396 | chalk@^4.0.0:
397 | version "4.1.2"
398 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01"
399 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
400 | dependencies:
401 | ansi-styles "^4.1.0"
402 | supports-color "^7.1.0"
403 |
404 | character-entities@^2.0.0:
405 | version "2.0.1"
406 | resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-2.0.1.tgz#98724833e1e27990dee0bd0f2b8a859c3476aac7"
407 | integrity sha512-OzmutCf2Kmc+6DrFrrPS8/tDh2+DpnrfzdICHWhcVC9eOd0N1PXmQEE1a8iM4IziIAG+8tmTq3K+oo0ubH6RRQ==
408 |
409 | color-convert@^2.0.1:
410 | version "2.0.1"
411 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
412 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
413 | dependencies:
414 | color-name "~1.1.4"
415 |
416 | color-name@~1.1.4:
417 | version "1.1.4"
418 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
419 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
420 |
421 | comma-separated-tokens@^2.0.0:
422 | version "2.0.2"
423 | resolved "https://registry.yarnpkg.com/comma-separated-tokens/-/comma-separated-tokens-2.0.2.tgz#d4c25abb679b7751c880be623c1179780fe1dd98"
424 | integrity sha512-G5yTt3KQN4Yn7Yk4ed73hlZ1evrFKXeUW3086p3PRFNp7m2vIjI6Pg+Kgb+oyzhd9F2qdcoj67+y3SdxL5XWsg==
425 |
426 | concat-map@0.0.1:
427 | version "0.0.1"
428 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
429 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
430 |
431 | core-js-pure@^3.20.2:
432 | version "3.22.7"
433 | resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.22.7.tgz#f58489d9b309fa7b26486a0f70d4ec19a418084e"
434 | integrity sha512-wTriFxiZI+C8msGeh7fJcbC/a0V8fdInN1oS2eK79DMBGs8iIJiXhtFJCiT3rBa8w6zroHWW3p8ArlujZ/Mz+w==
435 |
436 | cross-spawn@^7.0.2:
437 | version "7.0.3"
438 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
439 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
440 | dependencies:
441 | path-key "^3.1.0"
442 | shebang-command "^2.0.0"
443 | which "^2.0.1"
444 |
445 | damerau-levenshtein@^1.0.7:
446 | version "1.0.8"
447 | resolved "https://registry.yarnpkg.com/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz#b43d286ccbd36bc5b2f7ed41caf2d0aba1f8a6e7"
448 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
449 |
450 | debug@^2.6.9:
451 | version "2.6.9"
452 | resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
453 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
454 | dependencies:
455 | ms "2.0.0"
456 |
457 | debug@^3.2.7:
458 | version "3.2.7"
459 | resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a"
460 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
461 | dependencies:
462 | ms "^2.1.1"
463 |
464 | debug@^4.0.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4:
465 | version "4.3.4"
466 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865"
467 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
468 | dependencies:
469 | ms "2.1.2"
470 |
471 | decode-named-character-reference@^1.0.0:
472 | version "1.0.2"
473 | resolved "https://registry.yarnpkg.com/decode-named-character-reference/-/decode-named-character-reference-1.0.2.tgz#daabac9690874c394c81e4162a0304b35d824f0e"
474 | integrity sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==
475 | dependencies:
476 | character-entities "^2.0.0"
477 |
478 | deep-is@^0.1.3:
479 | version "0.1.4"
480 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831"
481 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
482 |
483 | define-properties@^1.1.3, define-properties@^1.1.4:
484 | version "1.1.4"
485 | resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.1.4.tgz#0b14d7bd7fbeb2f3572c3a7eda80ea5d57fb05b1"
486 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
487 | dependencies:
488 | has-property-descriptors "^1.0.0"
489 | object-keys "^1.1.1"
490 |
491 | dequal@^2.0.0:
492 | version "2.0.2"
493 | resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.2.tgz#85ca22025e3a87e65ef75a7a437b35284a7e319d"
494 | integrity sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug==
495 |
496 | diff@^5.0.0:
497 | version "5.1.0"
498 | resolved "https://registry.yarnpkg.com/diff/-/diff-5.1.0.tgz#bc52d298c5ea8df9194800224445ed43ffc87e40"
499 | integrity sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==
500 |
501 | dir-glob@^3.0.1:
502 | version "3.0.1"
503 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"
504 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
505 | dependencies:
506 | path-type "^4.0.0"
507 |
508 | doctrine@^2.1.0:
509 | version "2.1.0"
510 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d"
511 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
512 | dependencies:
513 | esutils "^2.0.2"
514 |
515 | doctrine@^3.0.0:
516 | version "3.0.0"
517 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961"
518 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
519 | dependencies:
520 | esutils "^2.0.2"
521 |
522 | ecdsa-sig-formatter@1.0.11:
523 | version "1.0.11"
524 | resolved "https://registry.yarnpkg.com/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz#ae0f0fa2d85045ef14a817daa3ce9acd0489e5bf"
525 | integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==
526 | dependencies:
527 | safe-buffer "^5.0.1"
528 |
529 | emoji-regex@^9.2.2:
530 | version "9.2.2"
531 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72"
532 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
533 |
534 | emojis-list@^3.0.0:
535 | version "3.0.0"
536 | resolved "https://registry.yarnpkg.com/emojis-list/-/emojis-list-3.0.0.tgz#5570662046ad29e2e916e71aae260abdff4f6a78"
537 | integrity sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==
538 |
539 | es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5:
540 | version "1.20.1"
541 | resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.1.tgz#027292cd6ef44bd12b1913b828116f54787d1814"
542 | integrity sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==
543 | dependencies:
544 | call-bind "^1.0.2"
545 | es-to-primitive "^1.2.1"
546 | function-bind "^1.1.1"
547 | function.prototype.name "^1.1.5"
548 | get-intrinsic "^1.1.1"
549 | get-symbol-description "^1.0.0"
550 | has "^1.0.3"
551 | has-property-descriptors "^1.0.0"
552 | has-symbols "^1.0.3"
553 | internal-slot "^1.0.3"
554 | is-callable "^1.2.4"
555 | is-negative-zero "^2.0.2"
556 | is-regex "^1.1.4"
557 | is-shared-array-buffer "^1.0.2"
558 | is-string "^1.0.7"
559 | is-weakref "^1.0.2"
560 | object-inspect "^1.12.0"
561 | object-keys "^1.1.1"
562 | object.assign "^4.1.2"
563 | regexp.prototype.flags "^1.4.3"
564 | string.prototype.trimend "^1.0.5"
565 | string.prototype.trimstart "^1.0.5"
566 | unbox-primitive "^1.0.2"
567 |
568 | es-shim-unscopables@^1.0.0:
569 | version "1.0.0"
570 | resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241"
571 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==
572 | dependencies:
573 | has "^1.0.3"
574 |
575 | es-to-primitive@^1.2.1:
576 | version "1.2.1"
577 | resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
578 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
579 | dependencies:
580 | is-callable "^1.1.4"
581 | is-date-object "^1.0.1"
582 | is-symbol "^1.0.2"
583 |
584 | escape-string-regexp@^4.0.0:
585 | version "4.0.0"
586 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34"
587 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
588 |
589 | eslint-config-next@12.1.6:
590 | version "12.1.6"
591 | resolved "https://registry.yarnpkg.com/eslint-config-next/-/eslint-config-next-12.1.6.tgz#55097028982dce49159d8753000be3916ac55254"
592 | integrity sha512-qoiS3g/EPzfCTkGkaPBSX9W0NGE/B1wNO3oWrd76QszVGrdpLggNqcO8+LR6MB0CNqtp9Q8NoeVrxNVbzM9hqA==
593 | dependencies:
594 | "@next/eslint-plugin-next" "12.1.6"
595 | "@rushstack/eslint-patch" "^1.1.3"
596 | "@typescript-eslint/parser" "^5.21.0"
597 | eslint-import-resolver-node "^0.3.6"
598 | eslint-import-resolver-typescript "^2.7.1"
599 | eslint-plugin-import "^2.26.0"
600 | eslint-plugin-jsx-a11y "^6.5.1"
601 | eslint-plugin-react "^7.29.4"
602 | eslint-plugin-react-hooks "^4.5.0"
603 |
604 | eslint-import-resolver-node@^0.3.6:
605 | version "0.3.6"
606 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz#4048b958395da89668252001dbd9eca6b83bacbd"
607 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
608 | dependencies:
609 | debug "^3.2.7"
610 | resolve "^1.20.0"
611 |
612 | eslint-import-resolver-typescript@^2.7.1:
613 | version "2.7.1"
614 | resolved "https://registry.yarnpkg.com/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz#a90a4a1c80da8d632df25994c4c5fdcdd02b8751"
615 | integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==
616 | dependencies:
617 | debug "^4.3.4"
618 | glob "^7.2.0"
619 | is-glob "^4.0.3"
620 | resolve "^1.22.0"
621 | tsconfig-paths "^3.14.1"
622 |
623 | eslint-module-utils@^2.7.3:
624 | version "2.7.3"
625 | resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.3.tgz#ad7e3a10552fdd0642e1e55292781bd6e34876ee"
626 | integrity sha512-088JEC7O3lDZM9xGe0RerkOMd0EjFl+Yvd1jPWIkMT5u3H9+HC34mWWPnqPrN13gieT9pBOO+Qt07Nb/6TresQ==
627 | dependencies:
628 | debug "^3.2.7"
629 | find-up "^2.1.0"
630 |
631 | eslint-plugin-import@^2.26.0:
632 | version "2.26.0"
633 | resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz#f812dc47be4f2b72b478a021605a59fc6fe8b88b"
634 | integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==
635 | dependencies:
636 | array-includes "^3.1.4"
637 | array.prototype.flat "^1.2.5"
638 | debug "^2.6.9"
639 | doctrine "^2.1.0"
640 | eslint-import-resolver-node "^0.3.6"
641 | eslint-module-utils "^2.7.3"
642 | has "^1.0.3"
643 | is-core-module "^2.8.1"
644 | is-glob "^4.0.3"
645 | minimatch "^3.1.2"
646 | object.values "^1.1.5"
647 | resolve "^1.22.0"
648 | tsconfig-paths "^3.14.1"
649 |
650 | eslint-plugin-jsx-a11y@^6.5.1:
651 | version "6.5.1"
652 | resolved "https://registry.yarnpkg.com/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz#cdbf2df901040ca140b6ec14715c988889c2a6d8"
653 | integrity sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==
654 | dependencies:
655 | "@babel/runtime" "^7.16.3"
656 | aria-query "^4.2.2"
657 | array-includes "^3.1.4"
658 | ast-types-flow "^0.0.7"
659 | axe-core "^4.3.5"
660 | axobject-query "^2.2.0"
661 | damerau-levenshtein "^1.0.7"
662 | emoji-regex "^9.2.2"
663 | has "^1.0.3"
664 | jsx-ast-utils "^3.2.1"
665 | language-tags "^1.0.5"
666 | minimatch "^3.0.4"
667 |
668 | eslint-plugin-react-hooks@^4.5.0:
669 | version "4.5.0"
670 | resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.5.0.tgz#5f762dfedf8b2cf431c689f533c9d3fa5dcf25ad"
671 | integrity sha512-8k1gRt7D7h03kd+SAAlzXkQwWK22BnK6GKZG+FJA6BAGy22CFvl8kCIXKpVux0cCxMWDQUPqSok0LKaZ0aOcCw==
672 |
673 | eslint-plugin-react@^7.29.4:
674 | version "7.30.0"
675 | resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.30.0.tgz#8e7b1b2934b8426ac067a0febade1b13bd7064e3"
676 | integrity sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A==
677 | dependencies:
678 | array-includes "^3.1.5"
679 | array.prototype.flatmap "^1.3.0"
680 | doctrine "^2.1.0"
681 | estraverse "^5.3.0"
682 | jsx-ast-utils "^2.4.1 || ^3.0.0"
683 | minimatch "^3.1.2"
684 | object.entries "^1.1.5"
685 | object.fromentries "^2.0.5"
686 | object.hasown "^1.1.1"
687 | object.values "^1.1.5"
688 | prop-types "^15.8.1"
689 | resolve "^2.0.0-next.3"
690 | semver "^6.3.0"
691 | string.prototype.matchall "^4.0.7"
692 |
693 | eslint-scope@^7.1.1:
694 | version "7.1.1"
695 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642"
696 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
697 | dependencies:
698 | esrecurse "^4.3.0"
699 | estraverse "^5.2.0"
700 |
701 | eslint-utils@^3.0.0:
702 | version "3.0.0"
703 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672"
704 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
705 | dependencies:
706 | eslint-visitor-keys "^2.0.0"
707 |
708 | eslint-visitor-keys@^2.0.0:
709 | version "2.1.0"
710 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
711 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
712 |
713 | eslint-visitor-keys@^3.3.0:
714 | version "3.3.0"
715 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
716 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
717 |
718 | eslint@8.16.0:
719 | version "8.16.0"
720 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.16.0.tgz#6d936e2d524599f2a86c708483b4c372c5d3bbae"
721 | integrity sha512-MBndsoXY/PeVTDJeWsYj7kLZ5hQpJOfMYLsF6LicLHQWbRDG19lK5jOix4DPl8yY4SUFcE3txy86OzFLWT+yoA==
722 | dependencies:
723 | "@eslint/eslintrc" "^1.3.0"
724 | "@humanwhocodes/config-array" "^0.9.2"
725 | ajv "^6.10.0"
726 | chalk "^4.0.0"
727 | cross-spawn "^7.0.2"
728 | debug "^4.3.2"
729 | doctrine "^3.0.0"
730 | escape-string-regexp "^4.0.0"
731 | eslint-scope "^7.1.1"
732 | eslint-utils "^3.0.0"
733 | eslint-visitor-keys "^3.3.0"
734 | espree "^9.3.2"
735 | esquery "^1.4.0"
736 | esutils "^2.0.2"
737 | fast-deep-equal "^3.1.3"
738 | file-entry-cache "^6.0.1"
739 | functional-red-black-tree "^1.0.1"
740 | glob-parent "^6.0.1"
741 | globals "^13.15.0"
742 | ignore "^5.2.0"
743 | import-fresh "^3.0.0"
744 | imurmurhash "^0.1.4"
745 | is-glob "^4.0.0"
746 | js-yaml "^4.1.0"
747 | json-stable-stringify-without-jsonify "^1.0.1"
748 | levn "^0.4.1"
749 | lodash.merge "^4.6.2"
750 | minimatch "^3.1.2"
751 | natural-compare "^1.4.0"
752 | optionator "^0.9.1"
753 | regexpp "^3.2.0"
754 | strip-ansi "^6.0.1"
755 | strip-json-comments "^3.1.0"
756 | text-table "^0.2.0"
757 | v8-compile-cache "^2.0.3"
758 |
759 | espree@^9.3.2:
760 | version "9.3.2"
761 | resolved "https://registry.yarnpkg.com/espree/-/espree-9.3.2.tgz#f58f77bd334731182801ced3380a8cc859091596"
762 | integrity sha512-D211tC7ZwouTIuY5x9XnS0E9sWNChB7IYKX/Xp5eQj3nFXhqmiUDB9q27y76oFl8jTg3pXcQx/bpxMfs3CIZbA==
763 | dependencies:
764 | acorn "^8.7.1"
765 | acorn-jsx "^5.3.2"
766 | eslint-visitor-keys "^3.3.0"
767 |
768 | esquery@^1.4.0:
769 | version "1.4.0"
770 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5"
771 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
772 | dependencies:
773 | estraverse "^5.1.0"
774 |
775 | esrecurse@^4.3.0:
776 | version "4.3.0"
777 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921"
778 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
779 | dependencies:
780 | estraverse "^5.2.0"
781 |
782 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
783 | version "5.3.0"
784 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123"
785 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
786 |
787 | esutils@^2.0.2:
788 | version "2.0.3"
789 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
790 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
791 |
792 | extend@^3.0.0:
793 | version "3.0.2"
794 | resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
795 | integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
796 |
797 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
798 | version "3.1.3"
799 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
800 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
801 |
802 | fast-glob@^3.2.9:
803 | version "3.2.11"
804 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.11.tgz#a1172ad95ceb8a16e20caa5c5e56480e5129c1d9"
805 | integrity sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==
806 | dependencies:
807 | "@nodelib/fs.stat" "^2.0.2"
808 | "@nodelib/fs.walk" "^1.2.3"
809 | glob-parent "^5.1.2"
810 | merge2 "^1.3.0"
811 | micromatch "^4.0.4"
812 |
813 | fast-json-stable-stringify@^2.0.0:
814 | version "2.1.0"
815 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
816 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
817 |
818 | fast-levenshtein@^2.0.6:
819 | version "2.0.6"
820 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917"
821 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
822 |
823 | fastq@^1.6.0:
824 | version "1.13.0"
825 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.13.0.tgz#616760f88a7526bdfc596b7cab8c18938c36b98c"
826 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
827 | dependencies:
828 | reusify "^1.0.4"
829 |
830 | file-entry-cache@^6.0.1:
831 | version "6.0.1"
832 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027"
833 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
834 | dependencies:
835 | flat-cache "^3.0.4"
836 |
837 | fill-range@^7.0.1:
838 | version "7.0.1"
839 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40"
840 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
841 | dependencies:
842 | to-regex-range "^5.0.1"
843 |
844 | find-up@^2.1.0:
845 | version "2.1.0"
846 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
847 | integrity sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==
848 | dependencies:
849 | locate-path "^2.0.0"
850 |
851 | flat-cache@^3.0.4:
852 | version "3.0.4"
853 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11"
854 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
855 | dependencies:
856 | flatted "^3.1.0"
857 | rimraf "^3.0.2"
858 |
859 | flatted@^3.1.0:
860 | version "3.2.5"
861 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.5.tgz#76c8584f4fc843db64702a6bd04ab7a8bd666da3"
862 | integrity sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==
863 |
864 | fs.realpath@^1.0.0:
865 | version "1.0.0"
866 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
867 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
868 |
869 | function-bind@^1.1.1:
870 | version "1.1.1"
871 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
872 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
873 |
874 | function.prototype.name@^1.1.5:
875 | version "1.1.5"
876 | resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621"
877 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
878 | dependencies:
879 | call-bind "^1.0.2"
880 | define-properties "^1.1.3"
881 | es-abstract "^1.19.0"
882 | functions-have-names "^1.2.2"
883 |
884 | functional-red-black-tree@^1.0.1:
885 | version "1.0.1"
886 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"
887 | integrity sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==
888 |
889 | functions-have-names@^1.2.2:
890 | version "1.2.3"
891 | resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834"
892 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
893 |
894 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1:
895 | version "1.1.1"
896 | resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6"
897 | integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==
898 | dependencies:
899 | function-bind "^1.1.1"
900 | has "^1.0.3"
901 | has-symbols "^1.0.1"
902 |
903 | get-symbol-description@^1.0.0:
904 | version "1.0.0"
905 | resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6"
906 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
907 | dependencies:
908 | call-bind "^1.0.2"
909 | get-intrinsic "^1.1.1"
910 |
911 | glob-parent@^5.1.2:
912 | version "5.1.2"
913 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4"
914 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
915 | dependencies:
916 | is-glob "^4.0.1"
917 |
918 | glob-parent@^6.0.1:
919 | version "6.0.2"
920 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
921 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
922 | dependencies:
923 | is-glob "^4.0.3"
924 |
925 | glob@7.1.7:
926 | version "7.1.7"
927 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90"
928 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
929 | dependencies:
930 | fs.realpath "^1.0.0"
931 | inflight "^1.0.4"
932 | inherits "2"
933 | minimatch "^3.0.4"
934 | once "^1.3.0"
935 | path-is-absolute "^1.0.0"
936 |
937 | glob@^7.1.3, glob@^7.2.0:
938 | version "7.2.3"
939 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b"
940 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
941 | dependencies:
942 | fs.realpath "^1.0.0"
943 | inflight "^1.0.4"
944 | inherits "2"
945 | minimatch "^3.1.1"
946 | once "^1.3.0"
947 | path-is-absolute "^1.0.0"
948 |
949 | globals@^13.15.0:
950 | version "13.15.0"
951 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.15.0.tgz#38113218c907d2f7e98658af246cef8b77e90bac"
952 | integrity sha512-bpzcOlgDhMG070Av0Vy5Owklpv1I6+j96GhUI7Rh7IzDCKLzboflLrrfqMu8NquDbiR4EOQk7XzJwqVJxicxog==
953 | dependencies:
954 | type-fest "^0.20.2"
955 |
956 | globby@^11.1.0:
957 | version "11.1.0"
958 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b"
959 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
960 | dependencies:
961 | array-union "^2.1.0"
962 | dir-glob "^3.0.1"
963 | fast-glob "^3.2.9"
964 | ignore "^5.2.0"
965 | merge2 "^1.4.1"
966 | slash "^3.0.0"
967 |
968 | has-bigints@^1.0.1, has-bigints@^1.0.2:
969 | version "1.0.2"
970 | resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa"
971 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
972 |
973 | has-flag@^4.0.0:
974 | version "4.0.0"
975 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
976 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
977 |
978 | has-property-descriptors@^1.0.0:
979 | version "1.0.0"
980 | resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861"
981 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
982 | dependencies:
983 | get-intrinsic "^1.1.1"
984 |
985 | has-symbols@^1.0.1, has-symbols@^1.0.2, has-symbols@^1.0.3:
986 | version "1.0.3"
987 | resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8"
988 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
989 |
990 | has-tostringtag@^1.0.0:
991 | version "1.0.0"
992 | resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25"
993 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
994 | dependencies:
995 | has-symbols "^1.0.2"
996 |
997 | has@^1.0.3:
998 | version "1.0.3"
999 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
1000 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1001 | dependencies:
1002 | function-bind "^1.1.1"
1003 |
1004 | hast-util-whitespace@^2.0.0:
1005 | version "2.0.0"
1006 | resolved "https://registry.yarnpkg.com/hast-util-whitespace/-/hast-util-whitespace-2.0.0.tgz#4fc1086467cc1ef5ba20673cb6b03cec3a970f1c"
1007 | integrity sha512-Pkw+xBHuV6xFeJprJe2BBEoDV+AvQySaz3pPDRUs5PNZEMQjpXJJueqrpcHIXxnWTcAGi/UOCgVShlkY6kLoqg==
1008 |
1009 | ignore@^5.2.0:
1010 | version "5.2.0"
1011 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a"
1012 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
1013 |
1014 | import-fresh@^3.0.0, import-fresh@^3.2.1:
1015 | version "3.3.0"
1016 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b"
1017 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
1018 | dependencies:
1019 | parent-module "^1.0.0"
1020 | resolve-from "^4.0.0"
1021 |
1022 | imurmurhash@^0.1.4:
1023 | version "0.1.4"
1024 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea"
1025 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
1026 |
1027 | inflight@^1.0.4:
1028 | version "1.0.6"
1029 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
1030 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
1031 | dependencies:
1032 | once "^1.3.0"
1033 | wrappy "1"
1034 |
1035 | inherits@2:
1036 | version "2.0.4"
1037 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
1038 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1039 |
1040 | inline-style-parser@0.1.1:
1041 | version "0.1.1"
1042 | resolved "https://registry.yarnpkg.com/inline-style-parser/-/inline-style-parser-0.1.1.tgz#ec8a3b429274e9c0a1f1c4ffa9453a7fef72cea1"
1043 | integrity sha512-7NXolsK4CAS5+xvdj5OMMbI962hU/wvwoxk+LWR9Ek9bVtyuuYScDN6eS0rUm6TxApFpw7CX1o4uJzcd4AyD3Q==
1044 |
1045 | internal-slot@^1.0.3:
1046 | version "1.0.3"
1047 | resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.3.tgz#7347e307deeea2faac2ac6205d4bc7d34967f59c"
1048 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
1049 | dependencies:
1050 | get-intrinsic "^1.1.0"
1051 | has "^1.0.3"
1052 | side-channel "^1.0.4"
1053 |
1054 | is-bigint@^1.0.1:
1055 | version "1.0.4"
1056 | resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3"
1057 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
1058 | dependencies:
1059 | has-bigints "^1.0.1"
1060 |
1061 | is-boolean-object@^1.1.0:
1062 | version "1.1.2"
1063 | resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719"
1064 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
1065 | dependencies:
1066 | call-bind "^1.0.2"
1067 | has-tostringtag "^1.0.0"
1068 |
1069 | is-buffer@^2.0.0:
1070 | version "2.0.5"
1071 | resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191"
1072 | integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==
1073 |
1074 | is-callable@^1.1.4, is-callable@^1.2.4:
1075 | version "1.2.4"
1076 | resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.4.tgz#47301d58dd0259407865547853df6d61fe471945"
1077 | integrity sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==
1078 |
1079 | is-core-module@^2.2.0, is-core-module@^2.8.1:
1080 | version "2.9.0"
1081 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.9.0.tgz#e1c34429cd51c6dd9e09e0799e396e27b19a9c69"
1082 | integrity sha512-+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A==
1083 | dependencies:
1084 | has "^1.0.3"
1085 |
1086 | is-date-object@^1.0.1:
1087 | version "1.0.5"
1088 | resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f"
1089 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
1090 | dependencies:
1091 | has-tostringtag "^1.0.0"
1092 |
1093 | is-extglob@^2.1.1:
1094 | version "2.1.1"
1095 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
1096 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
1097 |
1098 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
1099 | version "4.0.3"
1100 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084"
1101 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
1102 | dependencies:
1103 | is-extglob "^2.1.1"
1104 |
1105 | is-negative-zero@^2.0.2:
1106 | version "2.0.2"
1107 | resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150"
1108 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
1109 |
1110 | is-number-object@^1.0.4:
1111 | version "1.0.7"
1112 | resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc"
1113 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
1114 | dependencies:
1115 | has-tostringtag "^1.0.0"
1116 |
1117 | is-number@^7.0.0:
1118 | version "7.0.0"
1119 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b"
1120 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1121 |
1122 | is-plain-obj@^4.0.0:
1123 | version "4.1.0"
1124 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-4.1.0.tgz#d65025edec3657ce032fd7db63c97883eaed71f0"
1125 | integrity sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==
1126 |
1127 | is-regex@^1.1.4:
1128 | version "1.1.4"
1129 | resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958"
1130 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
1131 | dependencies:
1132 | call-bind "^1.0.2"
1133 | has-tostringtag "^1.0.0"
1134 |
1135 | is-shared-array-buffer@^1.0.2:
1136 | version "1.0.2"
1137 | resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79"
1138 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
1139 | dependencies:
1140 | call-bind "^1.0.2"
1141 |
1142 | is-string@^1.0.5, is-string@^1.0.7:
1143 | version "1.0.7"
1144 | resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd"
1145 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
1146 | dependencies:
1147 | has-tostringtag "^1.0.0"
1148 |
1149 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1150 | version "1.0.4"
1151 | resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c"
1152 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1153 | dependencies:
1154 | has-symbols "^1.0.2"
1155 |
1156 | is-weakref@^1.0.2:
1157 | version "1.0.2"
1158 | resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2"
1159 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
1160 | dependencies:
1161 | call-bind "^1.0.2"
1162 |
1163 | isexe@^2.0.0:
1164 | version "2.0.0"
1165 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
1166 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
1167 |
1168 | "js-tokens@^3.0.0 || ^4.0.0":
1169 | version "4.0.0"
1170 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
1171 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1172 |
1173 | js-yaml@^4.1.0:
1174 | version "4.1.0"
1175 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602"
1176 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
1177 | dependencies:
1178 | argparse "^2.0.1"
1179 |
1180 | json-schema-traverse@^0.4.1:
1181 | version "0.4.1"
1182 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
1183 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1184 |
1185 | json-stable-stringify-without-jsonify@^1.0.1:
1186 | version "1.0.1"
1187 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651"
1188 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
1189 |
1190 | json5@^1.0.1:
1191 | version "1.0.1"
1192 | resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
1193 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
1194 | dependencies:
1195 | minimist "^1.2.0"
1196 |
1197 | json5@^2.1.2:
1198 | version "2.2.1"
1199 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
1200 | integrity sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==
1201 |
1202 | jsonwebtoken@^8.5.1:
1203 | version "8.5.1"
1204 | resolved "https://registry.yarnpkg.com/jsonwebtoken/-/jsonwebtoken-8.5.1.tgz#00e71e0b8df54c2121a1f26137df2280673bcc0d"
1205 | integrity sha512-XjwVfRS6jTMsqYs0EsuJ4LGxXV14zQybNd4L2r0UvbVnSF9Af8x7p5MzbJ90Ioz/9TI41/hTCvznF/loiSzn8w==
1206 | dependencies:
1207 | jws "^3.2.2"
1208 | lodash.includes "^4.3.0"
1209 | lodash.isboolean "^3.0.3"
1210 | lodash.isinteger "^4.0.4"
1211 | lodash.isnumber "^3.0.3"
1212 | lodash.isplainobject "^4.0.6"
1213 | lodash.isstring "^4.0.1"
1214 | lodash.once "^4.0.0"
1215 | ms "^2.1.1"
1216 | semver "^5.6.0"
1217 |
1218 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.2.1:
1219 | version "3.3.0"
1220 | resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.3.0.tgz#e624f259143b9062c92b6413ff92a164c80d3ccb"
1221 | integrity sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==
1222 | dependencies:
1223 | array-includes "^3.1.4"
1224 | object.assign "^4.1.2"
1225 |
1226 | jwa@^1.4.1:
1227 | version "1.4.1"
1228 | resolved "https://registry.yarnpkg.com/jwa/-/jwa-1.4.1.tgz#743c32985cb9e98655530d53641b66c8645b039a"
1229 | integrity sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==
1230 | dependencies:
1231 | buffer-equal-constant-time "1.0.1"
1232 | ecdsa-sig-formatter "1.0.11"
1233 | safe-buffer "^5.0.1"
1234 |
1235 | jws@^3.2.2:
1236 | version "3.2.2"
1237 | resolved "https://registry.yarnpkg.com/jws/-/jws-3.2.2.tgz#001099f3639468c9414000e99995fa52fb478304"
1238 | integrity sha512-YHlZCB6lMTllWDtSPHz/ZXTsi8S00usEV6v1tjq8tOUZzw7DpSDWVXjXDre6ed1w/pd495ODpHZYSdkRTsa0HA==
1239 | dependencies:
1240 | jwa "^1.4.1"
1241 | safe-buffer "^5.0.1"
1242 |
1243 | kleur@^4.0.3:
1244 | version "4.1.4"
1245 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-4.1.4.tgz#8c202987d7e577766d039a8cd461934c01cda04d"
1246 | integrity sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA==
1247 |
1248 | language-subtag-registry@~0.3.2:
1249 | version "0.3.21"
1250 | resolved "https://registry.yarnpkg.com/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz#04ac218bea46f04cb039084602c6da9e788dd45a"
1251 | integrity sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==
1252 |
1253 | language-tags@^1.0.5:
1254 | version "1.0.5"
1255 | resolved "https://registry.yarnpkg.com/language-tags/-/language-tags-1.0.5.tgz#d321dbc4da30ba8bf3024e040fa5c14661f9193a"
1256 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==
1257 | dependencies:
1258 | language-subtag-registry "~0.3.2"
1259 |
1260 | levn@^0.4.1:
1261 | version "0.4.1"
1262 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade"
1263 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1264 | dependencies:
1265 | prelude-ls "^1.2.1"
1266 | type-check "~0.4.0"
1267 |
1268 | loader-utils@^2.0.0:
1269 | version "2.0.2"
1270 | resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.2.tgz#d6e3b4fb81870721ae4e0868ab11dd638368c129"
1271 | integrity sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==
1272 | dependencies:
1273 | big.js "^5.2.2"
1274 | emojis-list "^3.0.0"
1275 | json5 "^2.1.2"
1276 |
1277 | locate-path@^2.0.0:
1278 | version "2.0.0"
1279 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
1280 | integrity sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==
1281 | dependencies:
1282 | p-locate "^2.0.0"
1283 | path-exists "^3.0.0"
1284 |
1285 | lodash.includes@^4.3.0:
1286 | version "4.3.0"
1287 | resolved "https://registry.yarnpkg.com/lodash.includes/-/lodash.includes-4.3.0.tgz#60bb98a87cb923c68ca1e51325483314849f553f"
1288 | integrity sha512-W3Bx6mdkRTGtlJISOvVD/lbqjTlPPUDTMnlXZFnVwi9NKJ6tiAk6LVdlhZMm17VZisqhKcgzpO5Wz91PCt5b0w==
1289 |
1290 | lodash.isboolean@^3.0.3:
1291 | version "3.0.3"
1292 | resolved "https://registry.yarnpkg.com/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz#6c2e171db2a257cd96802fd43b01b20d5f5870f6"
1293 | integrity sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==
1294 |
1295 | lodash.isinteger@^4.0.4:
1296 | version "4.0.4"
1297 | resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343"
1298 | integrity sha512-DBwtEWN2caHQ9/imiNeEA5ys1JoRtRfY3d7V9wkqtbycnAmTvRRmbHKDV4a0EYc678/dia0jrte4tjYwVBaZUA==
1299 |
1300 | lodash.isnumber@^3.0.3:
1301 | version "3.0.3"
1302 | resolved "https://registry.yarnpkg.com/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz#3ce76810c5928d03352301ac287317f11c0b1ffc"
1303 | integrity sha512-QYqzpfwO3/CWf3XP+Z+tkQsfaLL/EnUlXWVkIk5FUPc4sBdTehEqZONuyRt2P67PXAk+NXmTBcc97zw9t1FQrw==
1304 |
1305 | lodash.isplainobject@^4.0.6:
1306 | version "4.0.6"
1307 | resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
1308 | integrity sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==
1309 |
1310 | lodash.isstring@^4.0.1:
1311 | version "4.0.1"
1312 | resolved "https://registry.yarnpkg.com/lodash.isstring/-/lodash.isstring-4.0.1.tgz#d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"
1313 | integrity sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==
1314 |
1315 | lodash.merge@^4.6.2:
1316 | version "4.6.2"
1317 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
1318 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1319 |
1320 | lodash.once@^4.0.0:
1321 | version "4.1.1"
1322 | resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
1323 | integrity sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==
1324 |
1325 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1326 | version "1.4.0"
1327 | resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
1328 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1329 | dependencies:
1330 | js-tokens "^3.0.0 || ^4.0.0"
1331 |
1332 | lru-cache@^6.0.0:
1333 | version "6.0.0"
1334 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"
1335 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1336 | dependencies:
1337 | yallist "^4.0.0"
1338 |
1339 | mdast-util-definitions@^5.0.0:
1340 | version "5.1.0"
1341 | resolved "https://registry.yarnpkg.com/mdast-util-definitions/-/mdast-util-definitions-5.1.0.tgz#b6d10ef00a3c4cf191e8d9a5fa58d7f4a366f817"
1342 | integrity sha512-5hcR7FL2EuZ4q6lLMUK5w4lHT2H3vqL9quPvYZ/Ku5iifrirfMHiGdhxdXMUbUkDmz5I+TYMd7nbaxUhbQkfpQ==
1343 | dependencies:
1344 | "@types/mdast" "^3.0.0"
1345 | "@types/unist" "^2.0.0"
1346 | unist-util-visit "^3.0.0"
1347 |
1348 | mdast-util-from-markdown@^1.0.0:
1349 | version "1.2.0"
1350 | resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-1.2.0.tgz#84df2924ccc6c995dec1e2368b2b208ad0a76268"
1351 | integrity sha512-iZJyyvKD1+K7QX1b5jXdE7Sc5dtoTry1vzV28UZZe8Z1xVnB/czKntJ7ZAkG0tANqRnBF6p3p7GpU1y19DTf2Q==
1352 | dependencies:
1353 | "@types/mdast" "^3.0.0"
1354 | "@types/unist" "^2.0.0"
1355 | decode-named-character-reference "^1.0.0"
1356 | mdast-util-to-string "^3.1.0"
1357 | micromark "^3.0.0"
1358 | micromark-util-decode-numeric-character-reference "^1.0.0"
1359 | micromark-util-decode-string "^1.0.0"
1360 | micromark-util-normalize-identifier "^1.0.0"
1361 | micromark-util-symbol "^1.0.0"
1362 | micromark-util-types "^1.0.0"
1363 | unist-util-stringify-position "^3.0.0"
1364 | uvu "^0.5.0"
1365 |
1366 | mdast-util-to-hast@^12.1.0:
1367 | version "12.1.1"
1368 | resolved "https://registry.yarnpkg.com/mdast-util-to-hast/-/mdast-util-to-hast-12.1.1.tgz#89a2bb405eaf3b05eb8bf45157678f35eef5dbca"
1369 | integrity sha512-qE09zD6ylVP14jV4mjLIhDBOrpFdShHZcEsYvvKGABlr9mGbV7mTlRWdoFxL/EYSTNDiC9GZXy7y8Shgb9Dtzw==
1370 | dependencies:
1371 | "@types/hast" "^2.0.0"
1372 | "@types/mdast" "^3.0.0"
1373 | "@types/mdurl" "^1.0.0"
1374 | mdast-util-definitions "^5.0.0"
1375 | mdurl "^1.0.0"
1376 | micromark-util-sanitize-uri "^1.0.0"
1377 | unist-builder "^3.0.0"
1378 | unist-util-generated "^2.0.0"
1379 | unist-util-position "^4.0.0"
1380 | unist-util-visit "^4.0.0"
1381 |
1382 | mdast-util-to-string@^3.1.0:
1383 | version "3.1.0"
1384 | resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-3.1.0.tgz#56c506d065fbf769515235e577b5a261552d56e9"
1385 | integrity sha512-n4Vypz/DZgwo0iMHLQL49dJzlp7YtAJP+N07MZHpjPf/5XJuHUWstviF4Mn2jEiR/GNmtnRRqnwsXExk3igfFA==
1386 |
1387 | mdurl@^1.0.0:
1388 | version "1.0.1"
1389 | resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e"
1390 | integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==
1391 |
1392 | merge2@^1.3.0, merge2@^1.4.1:
1393 | version "1.4.1"
1394 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
1395 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1396 |
1397 | micromark-core-commonmark@^1.0.1:
1398 | version "1.0.6"
1399 | resolved "https://registry.yarnpkg.com/micromark-core-commonmark/-/micromark-core-commonmark-1.0.6.tgz#edff4c72e5993d93724a3c206970f5a15b0585ad"
1400 | integrity sha512-K+PkJTxqjFfSNkfAhp4GB+cZPfQd6dxtTXnf+RjZOV7T4EEXnvgzOcnp+eSTmpGk9d1S9sL6/lqrgSNn/s0HZA==
1401 | dependencies:
1402 | decode-named-character-reference "^1.0.0"
1403 | micromark-factory-destination "^1.0.0"
1404 | micromark-factory-label "^1.0.0"
1405 | micromark-factory-space "^1.0.0"
1406 | micromark-factory-title "^1.0.0"
1407 | micromark-factory-whitespace "^1.0.0"
1408 | micromark-util-character "^1.0.0"
1409 | micromark-util-chunked "^1.0.0"
1410 | micromark-util-classify-character "^1.0.0"
1411 | micromark-util-html-tag-name "^1.0.0"
1412 | micromark-util-normalize-identifier "^1.0.0"
1413 | micromark-util-resolve-all "^1.0.0"
1414 | micromark-util-subtokenize "^1.0.0"
1415 | micromark-util-symbol "^1.0.0"
1416 | micromark-util-types "^1.0.1"
1417 | uvu "^0.5.0"
1418 |
1419 | micromark-factory-destination@^1.0.0:
1420 | version "1.0.0"
1421 | resolved "https://registry.yarnpkg.com/micromark-factory-destination/-/micromark-factory-destination-1.0.0.tgz#fef1cb59ad4997c496f887b6977aa3034a5a277e"
1422 | integrity sha512-eUBA7Rs1/xtTVun9TmV3gjfPz2wEwgK5R5xcbIM5ZYAtvGF6JkyaDsj0agx8urXnO31tEO6Ug83iVH3tdedLnw==
1423 | dependencies:
1424 | micromark-util-character "^1.0.0"
1425 | micromark-util-symbol "^1.0.0"
1426 | micromark-util-types "^1.0.0"
1427 |
1428 | micromark-factory-label@^1.0.0:
1429 | version "1.0.2"
1430 | resolved "https://registry.yarnpkg.com/micromark-factory-label/-/micromark-factory-label-1.0.2.tgz#6be2551fa8d13542fcbbac478258fb7a20047137"
1431 | integrity sha512-CTIwxlOnU7dEshXDQ+dsr2n+yxpP0+fn271pu0bwDIS8uqfFcumXpj5mLn3hSC8iw2MUr6Gx8EcKng1dD7i6hg==
1432 | dependencies:
1433 | micromark-util-character "^1.0.0"
1434 | micromark-util-symbol "^1.0.0"
1435 | micromark-util-types "^1.0.0"
1436 | uvu "^0.5.0"
1437 |
1438 | micromark-factory-space@^1.0.0:
1439 | version "1.0.0"
1440 | resolved "https://registry.yarnpkg.com/micromark-factory-space/-/micromark-factory-space-1.0.0.tgz#cebff49968f2b9616c0fcb239e96685cb9497633"
1441 | integrity sha512-qUmqs4kj9a5yBnk3JMLyjtWYN6Mzfcx8uJfi5XAveBniDevmZasdGBba5b4QsvRcAkmvGo5ACmSUmyGiKTLZew==
1442 | dependencies:
1443 | micromark-util-character "^1.0.0"
1444 | micromark-util-types "^1.0.0"
1445 |
1446 | micromark-factory-title@^1.0.0:
1447 | version "1.0.2"
1448 | resolved "https://registry.yarnpkg.com/micromark-factory-title/-/micromark-factory-title-1.0.2.tgz#7e09287c3748ff1693930f176e1c4a328382494f"
1449 | integrity sha512-zily+Nr4yFqgMGRKLpTVsNl5L4PMu485fGFDOQJQBl2NFpjGte1e86zC0da93wf97jrc4+2G2GQudFMHn3IX+A==
1450 | dependencies:
1451 | micromark-factory-space "^1.0.0"
1452 | micromark-util-character "^1.0.0"
1453 | micromark-util-symbol "^1.0.0"
1454 | micromark-util-types "^1.0.0"
1455 | uvu "^0.5.0"
1456 |
1457 | micromark-factory-whitespace@^1.0.0:
1458 | version "1.0.0"
1459 | resolved "https://registry.yarnpkg.com/micromark-factory-whitespace/-/micromark-factory-whitespace-1.0.0.tgz#e991e043ad376c1ba52f4e49858ce0794678621c"
1460 | integrity sha512-Qx7uEyahU1lt1RnsECBiuEbfr9INjQTGa6Err+gF3g0Tx4YEviPbqqGKNv/NrBaE7dVHdn1bVZKM/n5I/Bak7A==
1461 | dependencies:
1462 | micromark-factory-space "^1.0.0"
1463 | micromark-util-character "^1.0.0"
1464 | micromark-util-symbol "^1.0.0"
1465 | micromark-util-types "^1.0.0"
1466 |
1467 | micromark-util-character@^1.0.0:
1468 | version "1.1.0"
1469 | resolved "https://registry.yarnpkg.com/micromark-util-character/-/micromark-util-character-1.1.0.tgz#d97c54d5742a0d9611a68ca0cd4124331f264d86"
1470 | integrity sha512-agJ5B3unGNJ9rJvADMJ5ZiYjBRyDpzKAOk01Kpi1TKhlT1APx3XZk6eN7RtSz1erbWHC2L8T3xLZ81wdtGRZzg==
1471 | dependencies:
1472 | micromark-util-symbol "^1.0.0"
1473 | micromark-util-types "^1.0.0"
1474 |
1475 | micromark-util-chunked@^1.0.0:
1476 | version "1.0.0"
1477 | resolved "https://registry.yarnpkg.com/micromark-util-chunked/-/micromark-util-chunked-1.0.0.tgz#5b40d83f3d53b84c4c6bce30ed4257e9a4c79d06"
1478 | integrity sha512-5e8xTis5tEZKgesfbQMKRCyzvffRRUX+lK/y+DvsMFdabAicPkkZV6gO+FEWi9RfuKKoxxPwNL+dFF0SMImc1g==
1479 | dependencies:
1480 | micromark-util-symbol "^1.0.0"
1481 |
1482 | micromark-util-classify-character@^1.0.0:
1483 | version "1.0.0"
1484 | resolved "https://registry.yarnpkg.com/micromark-util-classify-character/-/micromark-util-classify-character-1.0.0.tgz#cbd7b447cb79ee6997dd274a46fc4eb806460a20"
1485 | integrity sha512-F8oW2KKrQRb3vS5ud5HIqBVkCqQi224Nm55o5wYLzY/9PwHGXC01tr3d7+TqHHz6zrKQ72Okwtvm/xQm6OVNZA==
1486 | dependencies:
1487 | micromark-util-character "^1.0.0"
1488 | micromark-util-symbol "^1.0.0"
1489 | micromark-util-types "^1.0.0"
1490 |
1491 | micromark-util-combine-extensions@^1.0.0:
1492 | version "1.0.0"
1493 | resolved "https://registry.yarnpkg.com/micromark-util-combine-extensions/-/micromark-util-combine-extensions-1.0.0.tgz#91418e1e74fb893e3628b8d496085639124ff3d5"
1494 | integrity sha512-J8H058vFBdo/6+AsjHp2NF7AJ02SZtWaVUjsayNFeAiydTxUwViQPxN0Hf8dp4FmCQi0UUFovFsEyRSUmFH3MA==
1495 | dependencies:
1496 | micromark-util-chunked "^1.0.0"
1497 | micromark-util-types "^1.0.0"
1498 |
1499 | micromark-util-decode-numeric-character-reference@^1.0.0:
1500 | version "1.0.0"
1501 | resolved "https://registry.yarnpkg.com/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-1.0.0.tgz#dcc85f13b5bd93ff8d2868c3dba28039d490b946"
1502 | integrity sha512-OzO9AI5VUtrTD7KSdagf4MWgHMtET17Ua1fIpXTpuhclCqD8egFWo85GxSGvxgkGS74bEahvtM0WP0HjvV0e4w==
1503 | dependencies:
1504 | micromark-util-symbol "^1.0.0"
1505 |
1506 | micromark-util-decode-string@^1.0.0:
1507 | version "1.0.2"
1508 | resolved "https://registry.yarnpkg.com/micromark-util-decode-string/-/micromark-util-decode-string-1.0.2.tgz#942252ab7a76dec2dbf089cc32505ee2bc3acf02"
1509 | integrity sha512-DLT5Ho02qr6QWVNYbRZ3RYOSSWWFuH3tJexd3dgN1odEuPNxCngTCXJum7+ViRAd9BbdxCvMToPOD/IvVhzG6Q==
1510 | dependencies:
1511 | decode-named-character-reference "^1.0.0"
1512 | micromark-util-character "^1.0.0"
1513 | micromark-util-decode-numeric-character-reference "^1.0.0"
1514 | micromark-util-symbol "^1.0.0"
1515 |
1516 | micromark-util-encode@^1.0.0:
1517 | version "1.0.1"
1518 | resolved "https://registry.yarnpkg.com/micromark-util-encode/-/micromark-util-encode-1.0.1.tgz#2c1c22d3800870ad770ece5686ebca5920353383"
1519 | integrity sha512-U2s5YdnAYexjKDel31SVMPbfi+eF8y1U4pfiRW/Y8EFVCy/vgxk/2wWTxzcqE71LHtCuCzlBDRU2a5CQ5j+mQA==
1520 |
1521 | micromark-util-html-tag-name@^1.0.0:
1522 | version "1.1.0"
1523 | resolved "https://registry.yarnpkg.com/micromark-util-html-tag-name/-/micromark-util-html-tag-name-1.1.0.tgz#eb227118befd51f48858e879b7a419fc0df20497"
1524 | integrity sha512-BKlClMmYROy9UiV03SwNmckkjn8QHVaWkqoAqzivabvdGcwNGMMMH/5szAnywmsTBUzDsU57/mFi0sp4BQO6dA==
1525 |
1526 | micromark-util-normalize-identifier@^1.0.0:
1527 | version "1.0.0"
1528 | resolved "https://registry.yarnpkg.com/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-1.0.0.tgz#4a3539cb8db954bbec5203952bfe8cedadae7828"
1529 | integrity sha512-yg+zrL14bBTFrQ7n35CmByWUTFsgst5JhA4gJYoty4Dqzj4Z4Fr/DHekSS5aLfH9bdlfnSvKAWsAgJhIbogyBg==
1530 | dependencies:
1531 | micromark-util-symbol "^1.0.0"
1532 |
1533 | micromark-util-resolve-all@^1.0.0:
1534 | version "1.0.0"
1535 | resolved "https://registry.yarnpkg.com/micromark-util-resolve-all/-/micromark-util-resolve-all-1.0.0.tgz#a7c363f49a0162e931960c44f3127ab58f031d88"
1536 | integrity sha512-CB/AGk98u50k42kvgaMM94wzBqozSzDDaonKU7P7jwQIuH2RU0TeBqGYJz2WY1UdihhjweivStrJ2JdkdEmcfw==
1537 | dependencies:
1538 | micromark-util-types "^1.0.0"
1539 |
1540 | micromark-util-sanitize-uri@^1.0.0:
1541 | version "1.0.0"
1542 | resolved "https://registry.yarnpkg.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-1.0.0.tgz#27dc875397cd15102274c6c6da5585d34d4f12b2"
1543 | integrity sha512-cCxvBKlmac4rxCGx6ejlIviRaMKZc0fWm5HdCHEeDWRSkn44l6NdYVRyU+0nT1XC72EQJMZV8IPHF+jTr56lAg==
1544 | dependencies:
1545 | micromark-util-character "^1.0.0"
1546 | micromark-util-encode "^1.0.0"
1547 | micromark-util-symbol "^1.0.0"
1548 |
1549 | micromark-util-subtokenize@^1.0.0:
1550 | version "1.0.2"
1551 | resolved "https://registry.yarnpkg.com/micromark-util-subtokenize/-/micromark-util-subtokenize-1.0.2.tgz#ff6f1af6ac836f8bfdbf9b02f40431760ad89105"
1552 | integrity sha512-d90uqCnXp/cy4G881Ub4psE57Sf8YD0pim9QdjCRNjfas2M1u6Lbt+XZK9gnHL2XFhnozZiEdCa9CNfXSfQ6xA==
1553 | dependencies:
1554 | micromark-util-chunked "^1.0.0"
1555 | micromark-util-symbol "^1.0.0"
1556 | micromark-util-types "^1.0.0"
1557 | uvu "^0.5.0"
1558 |
1559 | micromark-util-symbol@^1.0.0:
1560 | version "1.0.1"
1561 | resolved "https://registry.yarnpkg.com/micromark-util-symbol/-/micromark-util-symbol-1.0.1.tgz#b90344db62042ce454f351cf0bebcc0a6da4920e"
1562 | integrity sha512-oKDEMK2u5qqAptasDAwWDXq0tG9AssVwAx3E9bBF3t/shRIGsWIRG+cGafs2p/SnDSOecnt6hZPCE2o6lHfFmQ==
1563 |
1564 | micromark-util-types@^1.0.0, micromark-util-types@^1.0.1:
1565 | version "1.0.2"
1566 | resolved "https://registry.yarnpkg.com/micromark-util-types/-/micromark-util-types-1.0.2.tgz#f4220fdb319205812f99c40f8c87a9be83eded20"
1567 | integrity sha512-DCfg/T8fcrhrRKTPjRrw/5LLvdGV7BHySf/1LOZx7TzWZdYRjogNtyNq885z3nNallwr3QUKARjqvHqX1/7t+w==
1568 |
1569 | micromark@^3.0.0:
1570 | version "3.0.10"
1571 | resolved "https://registry.yarnpkg.com/micromark/-/micromark-3.0.10.tgz#1eac156f0399d42736458a14b0ca2d86190b457c"
1572 | integrity sha512-ryTDy6UUunOXy2HPjelppgJ2sNfcPz1pLlMdA6Rz9jPzhLikWXv/irpWV/I2jd68Uhmny7hHxAlAhk4+vWggpg==
1573 | dependencies:
1574 | "@types/debug" "^4.0.0"
1575 | debug "^4.0.0"
1576 | decode-named-character-reference "^1.0.0"
1577 | micromark-core-commonmark "^1.0.1"
1578 | micromark-factory-space "^1.0.0"
1579 | micromark-util-character "^1.0.0"
1580 | micromark-util-chunked "^1.0.0"
1581 | micromark-util-combine-extensions "^1.0.0"
1582 | micromark-util-decode-numeric-character-reference "^1.0.0"
1583 | micromark-util-encode "^1.0.0"
1584 | micromark-util-normalize-identifier "^1.0.0"
1585 | micromark-util-resolve-all "^1.0.0"
1586 | micromark-util-sanitize-uri "^1.0.0"
1587 | micromark-util-subtokenize "^1.0.0"
1588 | micromark-util-symbol "^1.0.0"
1589 | micromark-util-types "^1.0.1"
1590 | uvu "^0.5.0"
1591 |
1592 | micromatch@^4.0.4:
1593 | version "4.0.5"
1594 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6"
1595 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
1596 | dependencies:
1597 | braces "^3.0.2"
1598 | picomatch "^2.3.1"
1599 |
1600 | minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2:
1601 | version "3.1.2"
1602 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b"
1603 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1604 | dependencies:
1605 | brace-expansion "^1.1.7"
1606 |
1607 | minimist@^1.2.0, minimist@^1.2.6:
1608 | version "1.2.6"
1609 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
1610 | integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
1611 |
1612 | mri@^1.1.0:
1613 | version "1.2.0"
1614 | resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b"
1615 | integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==
1616 |
1617 | ms@2.0.0:
1618 | version "2.0.0"
1619 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
1620 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
1621 |
1622 | ms@2.1.2:
1623 | version "2.1.2"
1624 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
1625 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1626 |
1627 | ms@^2.1.1:
1628 | version "2.1.3"
1629 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2"
1630 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
1631 |
1632 | nanoid@^3.1.30:
1633 | version "3.3.4"
1634 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.4.tgz#730b67e3cd09e2deacf03c027c81c9d9dbc5e8ab"
1635 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
1636 |
1637 | natural-compare@^1.4.0:
1638 | version "1.4.0"
1639 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"
1640 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
1641 |
1642 | next@12.1.6:
1643 | version "12.1.6"
1644 | resolved "https://registry.yarnpkg.com/next/-/next-12.1.6.tgz#eb205e64af1998651f96f9df44556d47d8bbc533"
1645 | integrity sha512-cebwKxL3/DhNKfg9tPZDQmbRKjueqykHHbgaoG4VBRH3AHQJ2HO0dbKFiS1hPhe1/qgc2d/hFeadsbPicmLD+A==
1646 | dependencies:
1647 | "@next/env" "12.1.6"
1648 | caniuse-lite "^1.0.30001332"
1649 | postcss "8.4.5"
1650 | styled-jsx "5.0.2"
1651 | optionalDependencies:
1652 | "@next/swc-android-arm-eabi" "12.1.6"
1653 | "@next/swc-android-arm64" "12.1.6"
1654 | "@next/swc-darwin-arm64" "12.1.6"
1655 | "@next/swc-darwin-x64" "12.1.6"
1656 | "@next/swc-linux-arm-gnueabihf" "12.1.6"
1657 | "@next/swc-linux-arm64-gnu" "12.1.6"
1658 | "@next/swc-linux-arm64-musl" "12.1.6"
1659 | "@next/swc-linux-x64-gnu" "12.1.6"
1660 | "@next/swc-linux-x64-musl" "12.1.6"
1661 | "@next/swc-win32-arm64-msvc" "12.1.6"
1662 | "@next/swc-win32-ia32-msvc" "12.1.6"
1663 | "@next/swc-win32-x64-msvc" "12.1.6"
1664 |
1665 | object-assign@^4.1.1:
1666 | version "4.1.1"
1667 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
1668 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
1669 |
1670 | object-inspect@^1.12.0, object-inspect@^1.9.0:
1671 | version "1.12.2"
1672 | resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.2.tgz#c0641f26394532f28ab8d796ab954e43c009a8ea"
1673 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
1674 |
1675 | object-keys@^1.1.1:
1676 | version "1.1.1"
1677 | resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
1678 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1679 |
1680 | object.assign@^4.1.2:
1681 | version "4.1.2"
1682 | resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
1683 | integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
1684 | dependencies:
1685 | call-bind "^1.0.0"
1686 | define-properties "^1.1.3"
1687 | has-symbols "^1.0.1"
1688 | object-keys "^1.1.1"
1689 |
1690 | object.entries@^1.1.5:
1691 | version "1.1.5"
1692 | resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861"
1693 | integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==
1694 | dependencies:
1695 | call-bind "^1.0.2"
1696 | define-properties "^1.1.3"
1697 | es-abstract "^1.19.1"
1698 |
1699 | object.fromentries@^2.0.5:
1700 | version "2.0.5"
1701 | resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.5.tgz#7b37b205109c21e741e605727fe8b0ad5fa08251"
1702 | integrity sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==
1703 | dependencies:
1704 | call-bind "^1.0.2"
1705 | define-properties "^1.1.3"
1706 | es-abstract "^1.19.1"
1707 |
1708 | object.hasown@^1.1.1:
1709 | version "1.1.1"
1710 | resolved "https://registry.yarnpkg.com/object.hasown/-/object.hasown-1.1.1.tgz#ad1eecc60d03f49460600430d97f23882cf592a3"
1711 | integrity sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==
1712 | dependencies:
1713 | define-properties "^1.1.4"
1714 | es-abstract "^1.19.5"
1715 |
1716 | object.values@^1.1.5:
1717 | version "1.1.5"
1718 | resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac"
1719 | integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==
1720 | dependencies:
1721 | call-bind "^1.0.2"
1722 | define-properties "^1.1.3"
1723 | es-abstract "^1.19.1"
1724 |
1725 | once@^1.3.0:
1726 | version "1.4.0"
1727 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
1728 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
1729 | dependencies:
1730 | wrappy "1"
1731 |
1732 | optionator@^0.9.1:
1733 | version "0.9.1"
1734 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499"
1735 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
1736 | dependencies:
1737 | deep-is "^0.1.3"
1738 | fast-levenshtein "^2.0.6"
1739 | levn "^0.4.1"
1740 | prelude-ls "^1.2.1"
1741 | type-check "^0.4.0"
1742 | word-wrap "^1.2.3"
1743 |
1744 | p-limit@^1.1.0:
1745 | version "1.3.0"
1746 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
1747 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==
1748 | dependencies:
1749 | p-try "^1.0.0"
1750 |
1751 | p-locate@^2.0.0:
1752 | version "2.0.0"
1753 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
1754 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
1755 | dependencies:
1756 | p-limit "^1.1.0"
1757 |
1758 | p-try@^1.0.0:
1759 | version "1.0.0"
1760 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
1761 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
1762 |
1763 | parent-module@^1.0.0:
1764 | version "1.0.1"
1765 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2"
1766 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1767 | dependencies:
1768 | callsites "^3.0.0"
1769 |
1770 | path-exists@^3.0.0:
1771 | version "3.0.0"
1772 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
1773 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
1774 |
1775 | path-is-absolute@^1.0.0:
1776 | version "1.0.1"
1777 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
1778 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
1779 |
1780 | path-key@^3.1.0:
1781 | version "3.1.1"
1782 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375"
1783 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1784 |
1785 | path-parse@^1.0.6, path-parse@^1.0.7:
1786 | version "1.0.7"
1787 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
1788 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1789 |
1790 | path-type@^4.0.0:
1791 | version "4.0.0"
1792 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b"
1793 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1794 |
1795 | picocolors@^1.0.0:
1796 | version "1.0.0"
1797 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c"
1798 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
1799 |
1800 | picomatch@^2.3.1:
1801 | version "2.3.1"
1802 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42"
1803 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1804 |
1805 | postcss@8.4.5:
1806 | version "8.4.5"
1807 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.5.tgz#bae665764dfd4c6fcc24dc0fdf7e7aa00cc77f95"
1808 | integrity sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==
1809 | dependencies:
1810 | nanoid "^3.1.30"
1811 | picocolors "^1.0.0"
1812 | source-map-js "^1.0.1"
1813 |
1814 | prelude-ls@^1.2.1:
1815 | version "1.2.1"
1816 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396"
1817 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1818 |
1819 | prop-types@^15.0.0, prop-types@^15.8.1:
1820 | version "15.8.1"
1821 | resolved "https://registry.yarnpkg.com/prop-types/-/prop-types-15.8.1.tgz#67d87bf1a694f48435cf332c24af10214a3140b5"
1822 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
1823 | dependencies:
1824 | loose-envify "^1.4.0"
1825 | object-assign "^4.1.1"
1826 | react-is "^16.13.1"
1827 |
1828 | property-information@^6.0.0:
1829 | version "6.1.1"
1830 | resolved "https://registry.yarnpkg.com/property-information/-/property-information-6.1.1.tgz#5ca85510a3019726cb9afed4197b7b8ac5926a22"
1831 | integrity sha512-hrzC564QIl0r0vy4l6MvRLhafmUowhO/O3KgVSoXIbbA2Sz4j8HGpJc6T2cubRVwMwpdiG/vKGfhT4IixmKN9w==
1832 |
1833 | punycode@^2.1.0:
1834 | version "2.1.1"
1835 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
1836 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1837 |
1838 | queue-microtask@^1.2.2:
1839 | version "1.2.3"
1840 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243"
1841 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1842 |
1843 | raw-loader@^4.0.2:
1844 | version "4.0.2"
1845 | resolved "https://registry.yarnpkg.com/raw-loader/-/raw-loader-4.0.2.tgz#1aac6b7d1ad1501e66efdac1522c73e59a584eb6"
1846 | integrity sha512-ZnScIV3ag9A4wPX/ZayxL/jZH+euYb6FcUinPcgiQW0+UBtEv0O6Q3lGd3cqJ+GHH+rksEv3Pj99oxJ3u3VIKA==
1847 | dependencies:
1848 | loader-utils "^2.0.0"
1849 | schema-utils "^3.0.0"
1850 |
1851 | react-dom@18.1.0:
1852 | version "18.1.0"
1853 | resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.1.0.tgz#7f6dd84b706408adde05e1df575b3a024d7e8a2f"
1854 | integrity sha512-fU1Txz7Budmvamp7bshe4Zi32d0ll7ect+ccxNu9FlObT605GOEB8BfO4tmRJ39R5Zj831VCpvQ05QPBW5yb+w==
1855 | dependencies:
1856 | loose-envify "^1.1.0"
1857 | scheduler "^0.22.0"
1858 |
1859 | react-is@^16.13.1:
1860 | version "16.13.1"
1861 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
1862 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1863 |
1864 | react-is@^18.0.0:
1865 | version "18.2.0"
1866 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b"
1867 | integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==
1868 |
1869 | react-markdown@^8.0.3:
1870 | version "8.0.3"
1871 | resolved "https://registry.yarnpkg.com/react-markdown/-/react-markdown-8.0.3.tgz#e8aba0d2f5a1b2124d476ee1fff9448a2f57e4b3"
1872 | integrity sha512-We36SfqaKoVNpN1QqsZwWSv/OZt5J15LNgTLWynwAN5b265hrQrsjMtlRNwUvS+YyR3yDM8HpTNc4pK9H/Gc0A==
1873 | dependencies:
1874 | "@types/hast" "^2.0.0"
1875 | "@types/prop-types" "^15.0.0"
1876 | "@types/unist" "^2.0.0"
1877 | comma-separated-tokens "^2.0.0"
1878 | hast-util-whitespace "^2.0.0"
1879 | prop-types "^15.0.0"
1880 | property-information "^6.0.0"
1881 | react-is "^18.0.0"
1882 | remark-parse "^10.0.0"
1883 | remark-rehype "^10.0.0"
1884 | space-separated-tokens "^2.0.0"
1885 | style-to-object "^0.3.0"
1886 | unified "^10.0.0"
1887 | unist-util-visit "^4.0.0"
1888 | vfile "^5.0.0"
1889 |
1890 | react@18.1.0:
1891 | version "18.1.0"
1892 | resolved "https://registry.yarnpkg.com/react/-/react-18.1.0.tgz#6f8620382decb17fdc5cc223a115e2adbf104890"
1893 | integrity sha512-4oL8ivCz5ZEPyclFQXaNksK3adutVS8l2xzZU0cqEFrE9Sb7fC0EFK5uEk74wIreL1DERyjvsU915j1pcT2uEQ==
1894 | dependencies:
1895 | loose-envify "^1.1.0"
1896 |
1897 | regenerator-runtime@^0.13.4:
1898 | version "0.13.9"
1899 | resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz#8925742a98ffd90814988d7566ad30ca3b263b52"
1900 | integrity sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==
1901 |
1902 | regexp.prototype.flags@^1.4.1, regexp.prototype.flags@^1.4.3:
1903 | version "1.4.3"
1904 | resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac"
1905 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
1906 | dependencies:
1907 | call-bind "^1.0.2"
1908 | define-properties "^1.1.3"
1909 | functions-have-names "^1.2.2"
1910 |
1911 | regexpp@^3.2.0:
1912 | version "3.2.0"
1913 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2"
1914 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
1915 |
1916 | remark-parse@^10.0.0:
1917 | version "10.0.1"
1918 | resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-10.0.1.tgz#6f60ae53edbf0cf38ea223fe643db64d112e0775"
1919 | integrity sha512-1fUyHr2jLsVOkhbvPRBJ5zTKZZyD6yZzYaWCS6BPBdQ8vEMBCH+9zNCDA6tET/zHCi/jLqjCWtlJZUPk+DbnFw==
1920 | dependencies:
1921 | "@types/mdast" "^3.0.0"
1922 | mdast-util-from-markdown "^1.0.0"
1923 | unified "^10.0.0"
1924 |
1925 | remark-rehype@^10.0.0:
1926 | version "10.1.0"
1927 | resolved "https://registry.yarnpkg.com/remark-rehype/-/remark-rehype-10.1.0.tgz#32dc99d2034c27ecaf2e0150d22a6dcccd9a6279"
1928 | integrity sha512-EFmR5zppdBp0WQeDVZ/b66CWJipB2q2VLNFMabzDSGR66Z2fQii83G5gTBbgGEnEEA0QRussvrFHxk1HWGJskw==
1929 | dependencies:
1930 | "@types/hast" "^2.0.0"
1931 | "@types/mdast" "^3.0.0"
1932 | mdast-util-to-hast "^12.1.0"
1933 | unified "^10.0.0"
1934 |
1935 | resolve-from@^4.0.0:
1936 | version "4.0.0"
1937 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
1938 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1939 |
1940 | resolve@^1.20.0, resolve@^1.22.0:
1941 | version "1.22.0"
1942 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.0.tgz#5e0b8c67c15df57a89bdbabe603a002f21731198"
1943 | integrity sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==
1944 | dependencies:
1945 | is-core-module "^2.8.1"
1946 | path-parse "^1.0.7"
1947 | supports-preserve-symlinks-flag "^1.0.0"
1948 |
1949 | resolve@^2.0.0-next.3:
1950 | version "2.0.0-next.3"
1951 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-2.0.0-next.3.tgz#d41016293d4a8586a39ca5d9b5f15cbea1f55e46"
1952 | integrity sha512-W8LucSynKUIDu9ylraa7ueVZ7hc0uAgJBxVsQSKOXOyle8a93qXhcz+XAXZ8bIq2d6i4Ehddn6Evt+0/UwKk6Q==
1953 | dependencies:
1954 | is-core-module "^2.2.0"
1955 | path-parse "^1.0.6"
1956 |
1957 | reusify@^1.0.4:
1958 | version "1.0.4"
1959 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
1960 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1961 |
1962 | rimraf@^3.0.2:
1963 | version "3.0.2"
1964 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
1965 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1966 | dependencies:
1967 | glob "^7.1.3"
1968 |
1969 | run-parallel@^1.1.9:
1970 | version "1.2.0"
1971 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"
1972 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1973 | dependencies:
1974 | queue-microtask "^1.2.2"
1975 |
1976 | sade@^1.7.3:
1977 | version "1.8.1"
1978 | resolved "https://registry.yarnpkg.com/sade/-/sade-1.8.1.tgz#0a78e81d658d394887be57d2a409bf703a3b2701"
1979 | integrity sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==
1980 | dependencies:
1981 | mri "^1.1.0"
1982 |
1983 | safe-buffer@^5.0.1:
1984 | version "5.2.1"
1985 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
1986 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
1987 |
1988 | scheduler@^0.22.0:
1989 | version "0.22.0"
1990 | resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.22.0.tgz#83a5d63594edf074add9a7198b1bae76c3db01b8"
1991 | integrity sha512-6QAm1BgQI88NPYymgGQLCZgvep4FyePDWFpXVK+zNSUgHwlqpJy8VEh8Et0KxTACS4VWwMousBElAZOH9nkkoQ==
1992 | dependencies:
1993 | loose-envify "^1.1.0"
1994 |
1995 | schema-utils@^3.0.0:
1996 | version "3.1.1"
1997 | resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.1.1.tgz#bc74c4b6b6995c1d88f76a8b77bea7219e0c8281"
1998 | integrity sha512-Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw==
1999 | dependencies:
2000 | "@types/json-schema" "^7.0.8"
2001 | ajv "^6.12.5"
2002 | ajv-keywords "^3.5.2"
2003 |
2004 | semver@^5.6.0:
2005 | version "5.7.1"
2006 | resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
2007 | integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==
2008 |
2009 | semver@^6.3.0:
2010 | version "6.3.0"
2011 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
2012 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
2013 |
2014 | semver@^7.3.7:
2015 | version "7.3.7"
2016 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.7.tgz#12c5b649afdbf9049707796e22a4028814ce523f"
2017 | integrity sha512-QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g==
2018 | dependencies:
2019 | lru-cache "^6.0.0"
2020 |
2021 | shebang-command@^2.0.0:
2022 | version "2.0.0"
2023 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea"
2024 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
2025 | dependencies:
2026 | shebang-regex "^3.0.0"
2027 |
2028 | shebang-regex@^3.0.0:
2029 | version "3.0.0"
2030 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172"
2031 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
2032 |
2033 | side-channel@^1.0.4:
2034 | version "1.0.4"
2035 | resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf"
2036 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
2037 | dependencies:
2038 | call-bind "^1.0.0"
2039 | get-intrinsic "^1.0.2"
2040 | object-inspect "^1.9.0"
2041 |
2042 | slash@^3.0.0:
2043 | version "3.0.0"
2044 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634"
2045 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
2046 |
2047 | source-map-js@^1.0.1:
2048 | version "1.0.2"
2049 | resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
2050 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
2051 |
2052 | space-separated-tokens@^2.0.0:
2053 | version "2.0.1"
2054 | resolved "https://registry.yarnpkg.com/space-separated-tokens/-/space-separated-tokens-2.0.1.tgz#43193cec4fb858a2ce934b7f98b7f2c18107098b"
2055 | integrity sha512-ekwEbFp5aqSPKaqeY1PGrlGQxPNaq+Cnx4+bE2D8sciBQrHpbwoBbawqTN2+6jPs9IdWxxiUcN0K2pkczD3zmw==
2056 |
2057 | string.prototype.matchall@^4.0.7:
2058 | version "4.0.7"
2059 | resolved "https://registry.yarnpkg.com/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz#8e6ecb0d8a1fb1fda470d81acecb2dba057a481d"
2060 | integrity sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==
2061 | dependencies:
2062 | call-bind "^1.0.2"
2063 | define-properties "^1.1.3"
2064 | es-abstract "^1.19.1"
2065 | get-intrinsic "^1.1.1"
2066 | has-symbols "^1.0.3"
2067 | internal-slot "^1.0.3"
2068 | regexp.prototype.flags "^1.4.1"
2069 | side-channel "^1.0.4"
2070 |
2071 | string.prototype.trimend@^1.0.5:
2072 | version "1.0.5"
2073 | resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0"
2074 | integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==
2075 | dependencies:
2076 | call-bind "^1.0.2"
2077 | define-properties "^1.1.4"
2078 | es-abstract "^1.19.5"
2079 |
2080 | string.prototype.trimstart@^1.0.5:
2081 | version "1.0.5"
2082 | resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef"
2083 | integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==
2084 | dependencies:
2085 | call-bind "^1.0.2"
2086 | define-properties "^1.1.4"
2087 | es-abstract "^1.19.5"
2088 |
2089 | strip-ansi@^6.0.1:
2090 | version "6.0.1"
2091 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
2092 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
2093 | dependencies:
2094 | ansi-regex "^5.0.1"
2095 |
2096 | strip-bom@^3.0.0:
2097 | version "3.0.0"
2098 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"
2099 | integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=
2100 |
2101 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
2102 | version "3.1.1"
2103 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006"
2104 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
2105 |
2106 | style-to-object@^0.3.0:
2107 | version "0.3.0"
2108 | resolved "https://registry.yarnpkg.com/style-to-object/-/style-to-object-0.3.0.tgz#b1b790d205991cc783801967214979ee19a76e46"
2109 | integrity sha512-CzFnRRXhzWIdItT3OmF8SQfWyahHhjq3HwcMNCNLn+N7klOOqPjMeG/4JSu77D7ypZdGvSzvkrbyeTMizz2VrA==
2110 | dependencies:
2111 | inline-style-parser "0.1.1"
2112 |
2113 | styled-jsx@5.0.2:
2114 | version "5.0.2"
2115 | resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-5.0.2.tgz#ff230fd593b737e9e68b630a694d460425478729"
2116 | integrity sha512-LqPQrbBh3egD57NBcHET4qcgshPks+yblyhPlH2GY8oaDgKs8SK4C3dBh3oSJjgzJ3G5t1SYEZGHkP+QEpX9EQ==
2117 |
2118 | supports-color@^7.1.0:
2119 | version "7.2.0"
2120 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da"
2121 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
2122 | dependencies:
2123 | has-flag "^4.0.0"
2124 |
2125 | supports-preserve-symlinks-flag@^1.0.0:
2126 | version "1.0.0"
2127 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
2128 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
2129 |
2130 | text-table@^0.2.0:
2131 | version "0.2.0"
2132 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
2133 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
2134 |
2135 | to-regex-range@^5.0.1:
2136 | version "5.0.1"
2137 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4"
2138 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2139 | dependencies:
2140 | is-number "^7.0.0"
2141 |
2142 | trough@^2.0.0:
2143 | version "2.1.0"
2144 | resolved "https://registry.yarnpkg.com/trough/-/trough-2.1.0.tgz#0f7b511a4fde65a46f18477ab38849b22c554876"
2145 | integrity sha512-AqTiAOLcj85xS7vQ8QkAV41hPDIJ71XJB4RCUrzo/1GM2CQwhkJGaf9Hgr7BOugMRpgGUrqRg/DrBDl4H40+8g==
2146 |
2147 | tsconfig-paths@^3.14.1:
2148 | version "3.14.1"
2149 | resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz#ba0734599e8ea36c862798e920bcf163277b137a"
2150 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==
2151 | dependencies:
2152 | "@types/json5" "^0.0.29"
2153 | json5 "^1.0.1"
2154 | minimist "^1.2.6"
2155 | strip-bom "^3.0.0"
2156 |
2157 | tslib@^1.8.1:
2158 | version "1.14.1"
2159 | resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
2160 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
2161 |
2162 | tsutils@^3.21.0:
2163 | version "3.21.0"
2164 | resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623"
2165 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
2166 | dependencies:
2167 | tslib "^1.8.1"
2168 |
2169 | type-check@^0.4.0, type-check@~0.4.0:
2170 | version "0.4.0"
2171 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1"
2172 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
2173 | dependencies:
2174 | prelude-ls "^1.2.1"
2175 |
2176 | type-fest@^0.20.2:
2177 | version "0.20.2"
2178 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4"
2179 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
2180 |
2181 | unbox-primitive@^1.0.2:
2182 | version "1.0.2"
2183 | resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e"
2184 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
2185 | dependencies:
2186 | call-bind "^1.0.2"
2187 | has-bigints "^1.0.2"
2188 | has-symbols "^1.0.3"
2189 | which-boxed-primitive "^1.0.2"
2190 |
2191 | unified@^10.0.0:
2192 | version "10.1.2"
2193 | resolved "https://registry.yarnpkg.com/unified/-/unified-10.1.2.tgz#b1d64e55dafe1f0b98bb6c719881103ecf6c86df"
2194 | integrity sha512-pUSWAi/RAnVy1Pif2kAoeWNBa3JVrx0MId2LASj8G+7AiHWoKZNTomq6LG326T68U7/e263X6fTdcXIy7XnF7Q==
2195 | dependencies:
2196 | "@types/unist" "^2.0.0"
2197 | bail "^2.0.0"
2198 | extend "^3.0.0"
2199 | is-buffer "^2.0.0"
2200 | is-plain-obj "^4.0.0"
2201 | trough "^2.0.0"
2202 | vfile "^5.0.0"
2203 |
2204 | unist-builder@^3.0.0:
2205 | version "3.0.0"
2206 | resolved "https://registry.yarnpkg.com/unist-builder/-/unist-builder-3.0.0.tgz#728baca4767c0e784e1e64bb44b5a5a753021a04"
2207 | integrity sha512-GFxmfEAa0vi9i5sd0R2kcrI9ks0r82NasRq5QHh2ysGngrc6GiqD5CDf1FjPenY4vApmFASBIIlk/jj5J5YbmQ==
2208 | dependencies:
2209 | "@types/unist" "^2.0.0"
2210 |
2211 | unist-util-generated@^2.0.0:
2212 | version "2.0.0"
2213 | resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-2.0.0.tgz#86fafb77eb6ce9bfa6b663c3f5ad4f8e56a60113"
2214 | integrity sha512-TiWE6DVtVe7Ye2QxOVW9kqybs6cZexNwTwSMVgkfjEReqy/xwGpAXb99OxktoWwmL+Z+Epb0Dn8/GNDYP1wnUw==
2215 |
2216 | unist-util-is@^5.0.0:
2217 | version "5.1.1"
2218 | resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-5.1.1.tgz#e8aece0b102fa9bc097b0fef8f870c496d4a6236"
2219 | integrity sha512-F5CZ68eYzuSvJjGhCLPL3cYx45IxkqXSetCcRgUXtbcm50X2L9oOWQlfUfDdAf+6Pd27YDblBfdtmsThXmwpbQ==
2220 |
2221 | unist-util-position@^4.0.0:
2222 | version "4.0.3"
2223 | resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-4.0.3.tgz#5290547b014f6222dff95c48d5c3c13a88fadd07"
2224 | integrity sha512-p/5EMGIa1qwbXjA+QgcBXaPWjSnZfQ2Sc3yBEEfgPwsEmJd8Qh+DSk3LGnmOM4S1bY2C0AjmMnB8RuEYxpPwXQ==
2225 | dependencies:
2226 | "@types/unist" "^2.0.0"
2227 |
2228 | unist-util-stringify-position@^3.0.0:
2229 | version "3.0.2"
2230 | resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-3.0.2.tgz#5c6aa07c90b1deffd9153be170dce628a869a447"
2231 | integrity sha512-7A6eiDCs9UtjcwZOcCpM4aPII3bAAGv13E96IkawkOAW0OhH+yRxtY0lzo8KiHpzEMfH7Q+FizUmwp8Iqy5EWg==
2232 | dependencies:
2233 | "@types/unist" "^2.0.0"
2234 |
2235 | unist-util-visit-parents@^4.0.0:
2236 | version "4.1.1"
2237 | resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-4.1.1.tgz#e83559a4ad7e6048a46b1bdb22614f2f3f4724f2"
2238 | integrity sha512-1xAFJXAKpnnJl8G7K5KgU7FY55y3GcLIXqkzUj5QF/QVP7biUm0K0O2oqVkYsdjzJKifYeWn9+o6piAK2hGSHw==
2239 | dependencies:
2240 | "@types/unist" "^2.0.0"
2241 | unist-util-is "^5.0.0"
2242 |
2243 | unist-util-visit-parents@^5.0.0:
2244 | version "5.1.0"
2245 | resolved "https://registry.yarnpkg.com/unist-util-visit-parents/-/unist-util-visit-parents-5.1.0.tgz#44bbc5d25f2411e7dfc5cecff12de43296aa8521"
2246 | integrity sha512-y+QVLcY5eR/YVpqDsLf/xh9R3Q2Y4HxkZTp7ViLDU6WtJCEcPmRzW1gpdWDCDIqIlhuPDXOgttqPlykrHYDekg==
2247 | dependencies:
2248 | "@types/unist" "^2.0.0"
2249 | unist-util-is "^5.0.0"
2250 |
2251 | unist-util-visit@^3.0.0:
2252 | version "3.1.0"
2253 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-3.1.0.tgz#9420d285e1aee938c7d9acbafc8e160186dbaf7b"
2254 | integrity sha512-Szoh+R/Ll68QWAyQyZZpQzZQm2UPbxibDvaY8Xc9SUtYgPsDzx5AWSk++UUt2hJuow8mvwR+rG+LQLw+KsuAKA==
2255 | dependencies:
2256 | "@types/unist" "^2.0.0"
2257 | unist-util-is "^5.0.0"
2258 | unist-util-visit-parents "^4.0.0"
2259 |
2260 | unist-util-visit@^4.0.0:
2261 | version "4.1.0"
2262 | resolved "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-4.1.0.tgz#f41e407a9e94da31594e6b1c9811c51ab0b3d8f5"
2263 | integrity sha512-n7lyhFKJfVZ9MnKtqbsqkQEk5P1KShj0+//V7mAcoI6bpbUjh3C/OG8HVD+pBihfh6Ovl01m8dkcv9HNqYajmQ==
2264 | dependencies:
2265 | "@types/unist" "^2.0.0"
2266 | unist-util-is "^5.0.0"
2267 | unist-util-visit-parents "^5.0.0"
2268 |
2269 | uri-js@^4.2.2:
2270 | version "4.4.1"
2271 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e"
2272 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
2273 | dependencies:
2274 | punycode "^2.1.0"
2275 |
2276 | uvu@^0.5.0:
2277 | version "0.5.3"
2278 | resolved "https://registry.yarnpkg.com/uvu/-/uvu-0.5.3.tgz#3d83c5bc1230f153451877bfc7f4aea2392219ae"
2279 | integrity sha512-brFwqA3FXzilmtnIyJ+CxdkInkY/i4ErvP7uV0DnUVxQcQ55reuHphorpF+tZoVHK2MniZ/VJzI7zJQoc9T9Yw==
2280 | dependencies:
2281 | dequal "^2.0.0"
2282 | diff "^5.0.0"
2283 | kleur "^4.0.3"
2284 | sade "^1.7.3"
2285 |
2286 | v8-compile-cache@^2.0.3:
2287 | version "2.3.0"
2288 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"
2289 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==
2290 |
2291 | vfile-message@^3.0.0:
2292 | version "3.1.2"
2293 | resolved "https://registry.yarnpkg.com/vfile-message/-/vfile-message-3.1.2.tgz#a2908f64d9e557315ec9d7ea3a910f658ac05f7d"
2294 | integrity sha512-QjSNP6Yxzyycd4SVOtmKKyTsSvClqBPJcd00Z0zuPj3hOIjg0rUPG6DbFGPvUKRgYyaIWLPKpuEclcuvb3H8qA==
2295 | dependencies:
2296 | "@types/unist" "^2.0.0"
2297 | unist-util-stringify-position "^3.0.0"
2298 |
2299 | vfile@^5.0.0:
2300 | version "5.3.4"
2301 | resolved "https://registry.yarnpkg.com/vfile/-/vfile-5.3.4.tgz#bbb8c96b956693bbf70b2c67fdb5781dff769b93"
2302 | integrity sha512-KI+7cnst03KbEyN1+JE504zF5bJBZa+J+CrevLeyIMq0aPU681I2rQ5p4PlnQ6exFtWiUrg26QUdFMnAKR6PIw==
2303 | dependencies:
2304 | "@types/unist" "^2.0.0"
2305 | is-buffer "^2.0.0"
2306 | unist-util-stringify-position "^3.0.0"
2307 | vfile-message "^3.0.0"
2308 |
2309 | which-boxed-primitive@^1.0.2:
2310 | version "1.0.2"
2311 | resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6"
2312 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
2313 | dependencies:
2314 | is-bigint "^1.0.1"
2315 | is-boolean-object "^1.1.0"
2316 | is-number-object "^1.0.4"
2317 | is-string "^1.0.5"
2318 | is-symbol "^1.0.3"
2319 |
2320 | which@^2.0.1:
2321 | version "2.0.2"
2322 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"
2323 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
2324 | dependencies:
2325 | isexe "^2.0.0"
2326 |
2327 | word-wrap@^1.2.3:
2328 | version "1.2.3"
2329 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c"
2330 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
2331 |
2332 | wrappy@1:
2333 | version "1.0.2"
2334 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
2335 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
2336 |
2337 | yallist@^4.0.0:
2338 | version "4.0.0"
2339 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72"
2340 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
2341 |
--------------------------------------------------------------------------------