├── assets
├── supershot.png
├── sql-ease-sqr.png
└── buildspace-logo.png
├── public
├── favicon.ico
├── favicon.png
├── black-button.png
├── query-analysis.ico
├── violet-button.png
└── vercel.svg
├── next.config.js
├── pages
├── _app.js
├── _document.js
├── api
│ └── generate.js
├── index.js
└── styles.css
├── .gitignore
├── package.json
├── README.md
└── yarn.lock
/assets/supershot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arjun-ms/SQL-Ease/HEAD/assets/supershot.png
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arjun-ms/SQL-Ease/HEAD/public/favicon.ico
--------------------------------------------------------------------------------
/public/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arjun-ms/SQL-Ease/HEAD/public/favicon.png
--------------------------------------------------------------------------------
/assets/sql-ease-sqr.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arjun-ms/SQL-Ease/HEAD/assets/sql-ease-sqr.png
--------------------------------------------------------------------------------
/public/black-button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arjun-ms/SQL-Ease/HEAD/public/black-button.png
--------------------------------------------------------------------------------
/public/query-analysis.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arjun-ms/SQL-Ease/HEAD/public/query-analysis.ico
--------------------------------------------------------------------------------
/public/violet-button.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arjun-ms/SQL-Ease/HEAD/public/violet-button.png
--------------------------------------------------------------------------------
/assets/buildspace-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/arjun-ms/SQL-Ease/HEAD/assets/buildspace-logo.png
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {
3 | reactStrictMode: true,
4 | }
5 |
6 | module.exports = nextConfig
7 |
--------------------------------------------------------------------------------
/pages/_app.js:
--------------------------------------------------------------------------------
1 | import './styles.css';
2 |
3 | function App({ Component, pageProps }) {
4 | return
5 | }
6 | export default App;
7 |
--------------------------------------------------------------------------------
/.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 |
34 | # typescript
35 | *.tsbuildinfo
36 | next-env.d.ts
37 |
38 | .env
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "scratchpad",
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 | "@emotion/react": "^11.10.5",
13 | "@emotion/styled": "^11.10.5",
14 | "eslint": "8.27.0",
15 | "eslint-config-next": "13.0.3",
16 | "framer-motion": "^6.5.1",
17 | "next": "^13.0.7",
18 | "openai": "^4.0.0",
19 | "react": "^18.2.0",
20 | "react-dom": "^18.2.0"
21 | }
22 | }
23 |
--------------------------------------------------------------------------------
/pages/_document.js:
--------------------------------------------------------------------------------
1 | import { Html, Head, Main, NextScript } from 'next/document'
2 |
3 | export default function Document() {
4 | return (
5 |
6 |
7 |
8 |
9 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 | )
21 | }
22 |
--------------------------------------------------------------------------------
/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
3 |
4 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | ---
7 |
8 |
9 |
Are you tired of struggling with SQL syntax? 🤨
10 | Introducing an AI-powered web app to generate SQL query from plain english 📃
11 |
12 |
13 | ---
14 | ❤️ If you like the product, consider an upvote →
15 | [SQL Ease](https://www.producthunt.com/posts/sql-ease)
16 |
17 |
18 |
19 | 
20 |
21 |
22 |
23 | ## Features ❤️🔥
24 |
25 | - Generate SQL Queries from Plain English
26 | - Cross platform
27 |
28 |
29 |
30 | ## Demo 📼
31 |
32 | [](https://www.youtube.com/watch?v=S_bu1qPaz_w)
33 |
34 |
35 |
36 | ## Environment Variables 🔑
37 |
38 | To run this project, you will need to add the following environment variables to your .env file
39 |
40 | `OPENAI_API_KEY`
41 |
42 |
43 |
44 | ## Run Locally 🏃🏻
45 |
46 | Clone the project
47 |
48 | ```bash
49 | git clone https://github.com/arjun-ms/SQL-Ease.git
50 | ```
51 |
52 | Go to the project directory
53 |
54 | ```bash
55 | cd SQL-Ease
56 | ```
57 |
58 | Install dependencies
59 |
60 | ```bash
61 | npm install
62 | ```
63 |
64 | Start the server
65 |
66 | ```bash
67 | npm run start
68 | ```
69 |
70 |
71 |
72 | ## Contributing 📜
73 |
74 | Pull requests are welcome. For major changes, please open an issue first
75 | to discuss what you would like to change.
76 |
77 | Please make sure to update tests as appropriate.
78 |
79 |
80 |
81 | ## Feedback 📮
82 |
83 | If you have any feedback, please reach out to us at arjunachu123.aa@gmail.com
84 |
85 |
--------------------------------------------------------------------------------
/pages/api/generate.js:
--------------------------------------------------------------------------------
1 | // import { Configuration, OpenAIApi } from 'openai';
2 |
3 | // const configuration = new Configuration({
4 | // apiKey: process.env.OPENAI_API_KEY,
5 | // });
6 |
7 | // const openai = new OpenAIApi(configuration);
8 |
9 | // const basePromptPrefix = "Write an SQL query for: ";
10 | // const generateAction = async (req, res) => {
11 | // // Run first prompt
12 | // console.log(`API: ${basePromptPrefix}${req.body.userInput}`)
13 |
14 | // const baseCompletion = await openai.createCompletion({
15 | // model: 'text-davinci-003',
16 | // prompt: `${basePromptPrefix}${req.body.userInput}`,
17 | // temperature: 0.7,
18 | // max_tokens: 250,
19 | // });
20 |
21 | // const basePromptOutput = baseCompletion.data.choices.pop();
22 |
23 | // res.status(200).json({ output: basePromptOutput });
24 | // };
25 |
26 | // export default generateAction;
27 |
28 |
29 |
30 | //================================= GROQ INFERENCE ================================
31 |
32 |
33 |
34 | import OpenAI from "openai";
35 |
36 | const client = new OpenAI({
37 | apiKey: process.env.GROQ_API_KEY, // keep this safe in .env.local
38 | baseURL: "https://api.groq.com/openai/v1",
39 | });
40 |
41 | const basePromptPrefix = `
42 | Role: You are an expert SQL query writer with deep knowledge of relational databases.
43 | Task: Given a natural language request, write a correct, optimized SQL query that fulfills the request.
44 | Context: Assume a generic SQL database (PostgreSQL-compatible).
45 | - Do not include explanations, comments, or extra text.
46 | - Only return the SQL query as plain text.
47 | Request:
48 | `;
49 |
50 | const generateAction = async (req, res) => {
51 | try {
52 | console.log(`API: ${basePromptPrefix}${req.body.userInput}`);
53 |
54 | const response = await client.responses.create({
55 | // model: "mixtral-8x7b-instruct", // Groq recommends Mixtral for SQL/text
56 | model: "openai/gpt-oss-120b", // gpt oss model
57 | input: `${basePromptPrefix}${req.body.userInput}`,
58 | temperature: 0.8,
59 | max_output_tokens: 250,
60 | });
61 |
62 | // response.output is an array of structured outputs, easier to flatten:
63 | const outputText = response.output_text;
64 |
65 | res.status(200).json({ output: outputText });
66 | } catch (error) {
67 | console.error(error);
68 | res.status(500).json({ error: "Something went wrong." });
69 | }
70 | };
71 |
72 | export default generateAction;
73 |
--------------------------------------------------------------------------------
/pages/index.js:
--------------------------------------------------------------------------------
1 | import Head from 'next/head';
2 | import Image from 'next/image';
3 | // import buildspaceLogo from '../assets/buildspace-logo.png';
4 | import { useState } from 'react';
5 |
6 | const Home = () => {
7 | const [userInput, setUserInput] = useState('');
8 | const [apiOutput, setApiOutput] = useState('')
9 | const [isGenerating, setIsGenerating] = useState(false)
10 |
11 | const callGenerateEndpoint = async () => {
12 | setIsGenerating(true);
13 |
14 | console.log("Calling API...")
15 | const response = await fetch('/api/generate', {
16 | method: 'POST',
17 | headers: {
18 | 'Content-Type': 'application/json',
19 | },
20 | body: JSON.stringify({ userInput }),
21 | });
22 |
23 | if (!response.ok) {
24 | // Handle HTTP errors (like 405, 500, etc.)
25 | const errorData = await response.json().catch(() => ({}));
26 | throw new Error(errorData.error || "Something went wrong");
27 | }
28 |
29 | const data = await response.json();
30 | const { output } = data;
31 | // console.log("OpenAI replied...", output.text)
32 |
33 | // setApiOutput(`${output.text}`);
34 |
35 | // Groq API response
36 | console.log("API replied...", output);
37 | setApiOutput(output);
38 |
39 | setIsGenerating(false);
40 | }
41 | const onUserChangedText = (event) => {
42 | console.log(event.target.value);
43 | setUserInput(event.target.value);
44 | };
45 | return (
46 |
47 |
48 |
49 |
50 |
Generate SQL Queries from Natural Language
51 |
52 |
53 |
Write a quick sentence about what you want the query to be about (ex. Find name of all students in the table, Fetch current date-time from the system, create a table called heroes).
54 |
55 |
56 | {/* Add this code here*/}
57 |
58 |
64 |
74 | {/* New code I added here */}
75 | {apiOutput && (
76 |
77 |
78 |
79 |
Output
80 |
81 |
82 |
85 |
86 | )}
87 |
88 |
89 |
101 |
102 | );
103 | };
104 |
105 | export default Home;
106 |
--------------------------------------------------------------------------------
/pages/styles.css:
--------------------------------------------------------------------------------
1 | @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;700;800&display=swap');
2 |
3 | body {
4 | margin: 0;
5 | padding: 0;
6 | font-family: 'Manrope', sans-serif;
7 | }
8 |
9 | .root {
10 | display: flex;
11 | place-content: center flex-start;
12 | align-items: center;
13 | background-color: rgb(0, 0, 0);
14 | flex-flow: column nowrap;
15 | gap: 10px;
16 | height: 100vh;
17 | overflow: auto;
18 | padding: 0px;
19 | position: relative;
20 | }
21 |
22 | .container {
23 | display: flex;
24 | place-content: center flex-start;
25 | align-items: center;
26 | flex: 0 0 auto;
27 | flex-flow: column nowrap;
28 | gap: 10px;
29 | height: fit-content;
30 | max-width: 975px;
31 | overflow: auto;
32 | padding: 50px;
33 | position: relative;
34 | width: auto;
35 | gap: 64px;
36 | }
37 |
38 | .header {
39 | display: flex;
40 | flex-direction: column;
41 | width: 100%;
42 | align-items: center;
43 | color: #FFF
44 | }
45 |
46 | .header-title {
47 | display: flex;
48 | gap: 12px;
49 | }
50 |
51 | .header-title h1 {
52 | width: 100%;
53 | font-weight: 700;
54 | font-size: 72px;
55 | letter-spacing: -4px;
56 | line-height: 1.2em;
57 | text-align: center;
58 | margin: 0;
59 | }
60 |
61 | .header-subtitle h2 {
62 | font-size: 20px;
63 | font-style: normal;
64 | font-weight: 400;
65 | line-height: 1.4em;
66 | color: rgba(255, 255, 255, 0.75);
67 | }
68 |
69 | .prompt-container {
70 | place-content: flex-end center;
71 | align-items: center;
72 | display: flex;
73 | flex: 0 0 auto;
74 | flex-flow: column nowrap;
75 | gap: 16px;
76 | height: min-content;
77 | padding: 0px;
78 | width: min-content;
79 | }
80 |
81 | .prompt-box {
82 | border-bottom-width: 1px;
83 | border-color: rgba(255, 255, 255, 0.1);
84 | border-left-width: 1px;
85 | border-right-width: 1px;
86 | border-style: solid;
87 | border-top-width: 1px;
88 | place-content: flex-start;
89 | align-items: flex-start;
90 | background-color: rgba(255, 255, 255, 0.05);
91 | border-radius: 16px;
92 | display: flex;
93 | flex: 0 0 auto;
94 | flex-flow: column nowrap;
95 | gap: 10px;
96 | height: 150px;
97 | overflow: hidden;
98 | padding: 20px;
99 | position: relative;
100 | width: 610px;
101 | max-width: 1200px;
102 | will-change: transform;
103 | overflow: auto;
104 | outline: none;
105 | resize: none;
106 | font-size: 16px;
107 | font-style: normal;
108 | letter-spacing: 0px;
109 | line-height: 1.6em;
110 | text-align: start;
111 | color: rgba(255, 255, 255, 0.75);
112 | text-decoration: none;
113 | text-transform: none;
114 | }
115 |
116 | textarea {
117 | font-family: 'Manrope', sans-serif;
118 | }
119 |
120 |
121 | .prompt-box:focus {
122 | border-color:rgba(255, 255, 255, 0.75)
123 | }
124 |
125 |
126 | .prompt-buttons {
127 | display: flex;
128 | place-content: center;
129 | align-items: center;
130 | justify-content: flex-end;
131 | flex: 0 0 auto;
132 | flex-flow: row nowrap;
133 | gap: 12px;
134 | height: min-content;
135 | overflow: hidden;
136 | padding: 0px;
137 | position: relative;
138 | width: 100%;
139 | }
140 |
141 | .key-stroke {
142 | outline: none;
143 | display: flex;
144 | flex-direction: column;
145 | justify-content: flex-start;
146 | flex-shrink: 0;
147 | transform: none;
148 | }
149 |
150 | .key-stroke p {
151 | color: rgba(255, 255, 255, 0.75);
152 | flex: 0 0 auto;
153 | height: auto;
154 | position: relative;
155 | white-space: pre;
156 | width: auto;
157 | }
158 |
159 | .or {
160 | outline: none;
161 | display: flex;
162 | flex-direction: column;
163 | justify-content: flex-start;
164 | flex-shrink: 0;
165 | transform: none;
166 | }
167 |
168 | .or p {
169 | color: rgba(255, 255, 255, 0.25)
170 | }
171 |
172 | .generate-button {
173 | place-content: flex-start;
174 | align-items: flex-start;
175 | background-color: rgb(127, 0, 255);
176 | border-radius: 100px;
177 | display: flex;
178 | flex: 0 0 auto;
179 | flex-flow: column nowrap;
180 | gap: 10px;
181 | height: min-content;
182 | overflow: hidden;
183 | padding: 16px 24px;
184 | position: relative;
185 | text-decoration: none;
186 | width: min-content;
187 | will-change: transform;
188 | cursor: pointer;
189 | }
190 |
191 | .generate {
192 | outline: none;
193 | display: flex;
194 | flex-direction: column;
195 | justify-content: flex-start;
196 | flex-shrink: 0;
197 | transform: none;
198 | }
199 |
200 | .generate p {
201 | color: rgb(255, 255, 255);
202 | margin: 0;
203 | }
204 |
205 | .loading {
206 | opacity: 0.7;
207 | cursor: default;
208 | }
209 |
210 | .badge-container {
211 | display: flex;
212 | bottom: 20px;
213 | flex: 0 0 auto;
214 | height: auto;
215 | right: 20px;
216 | position: fixed;
217 | width: auto;
218 | z-index: 1;
219 | }
220 |
221 |
222 | .badge {
223 | height: 70px;
224 | display: flex;
225 | align-items: center;
226 | }
227 |
228 | .grow {
229 | transition: all .2s ease-in-out;
230 | }
231 |
232 | .grow:hover {
233 | transform: scale(1.1);
234 | }
235 |
236 | .output {
237 | place-content: center flex-start;
238 | align-items: center;
239 | display: flex;
240 | flex: 0 0 auto;
241 | flex-flow: column nowrap;
242 | gap: 10px;
243 | height: min-content;
244 | max-width: 1200px;
245 | overflow: hidden;
246 | position: relative;
247 | width: 100%;
248 | }
249 |
250 | .output-header-container {
251 | place-content: center;
252 | align-items: center;
253 | display: flex;
254 | flex: 0 0 auto;
255 | flex-flow: column nowrap;
256 | gap: 16px;
257 | height: min-content;
258 | overflow: hidden;
259 | padding: 0px;
260 | position: relative;
261 | width: 100%;
262 | }
263 |
264 | .output-header h3 {
265 | font-family: "Manrope", serif;
266 | font-size: 28px;
267 | font-style: normal;
268 | font-weight: 800;
269 | letter-spacing: 0px;
270 | line-height: 1.4em;
271 | text-align: start;
272 | color: #ffffff;
273 | text-decoration: none;
274 | text-transform: none;
275 | margin: 0;
276 | }
277 |
278 | .output-content {
279 | outline: none;
280 | display: flex;
281 | /* max-width: 25%; */
282 | flex-direction: column;
283 | justify-content: flex-start;
284 | flex-shrink: 0;
285 | transform: none;
286 | }
287 |
288 | .output-content p {
289 | text-align: center;
290 | white-space: pre-line;
291 | color: rgba(255, 255, 255, 0.5);
292 | }
293 |
294 | @media (min-width: 810px) and (max-width: 1199px) {
295 | .container {
296 | max-width: 600px;
297 | width: 100%;
298 | }
299 |
300 | .prompt-container {
301 | max-width: 600px;
302 | width: 100%;
303 | }
304 |
305 | .prompt-box {
306 | width: 100%;
307 | }
308 |
309 | .badge-container{
310 | position: relative;
311 | }
312 |
313 | .badge{
314 |
315 | position: relative;
316 | }
317 | }
318 |
319 | @media screen and (max-width: 809px) {
320 | .container {
321 | max-width: 500px;
322 | width: 100%;
323 | }
324 | .header-subtitle h2 {
325 | text-align: center;
326 | }
327 | .prompt-container {
328 | max-width: 500px;
329 | width: 100%;
330 | }
331 |
332 | .prompt-box {
333 | width: 100%;
334 | }
335 |
336 | .badge-container{
337 | position: relative;
338 | }
339 |
340 | .badge{
341 |
342 | position: relative;
343 | }
344 |
345 | }
346 |
347 | @media screen and (max-width: 600px) {
348 | .container {
349 | max-width: 400px;
350 | width: 100%;
351 | }
352 |
353 | .header-title h1 {
354 | font-size: 50px;
355 | }
356 |
357 | .header-subtitle h2 {
358 | text-align: center;
359 | }
360 |
361 | .key-stroke, .or {
362 | display: none;
363 | }
364 |
365 | .prompt-buttons {
366 | justify-content: center;
367 | }
368 |
369 | .prompt-container {
370 |
371 | width:80vw !important;
372 | }
373 |
374 | .prompt-box {
375 |
376 | width:80vw !important;
377 | }
378 |
379 | .badge-container{
380 | left: 0.1%;
381 | position: relative;
382 | }
383 |
384 | .badge{
385 | left: 0.1%;
386 | position: relative;
387 | }
388 | }
389 |
390 |
391 |
392 | /* Loading ring animation */
393 | .loader {
394 | width: 18px;
395 | height: 18px;
396 | border-radius: 50%;
397 | display: inline-block;
398 | border-top: 2px solid #FFF;
399 | border-right: 2px solid transparent;
400 | box-sizing: border-box;
401 | animation: rotation 1s linear infinite;
402 | }
403 |
404 | @keyframes rotation {
405 | 0% {
406 | transform: rotate(0deg);
407 | }
408 |
409 | 100% {
410 | transform: rotate(360deg);
411 | }
412 | }
413 |
--------------------------------------------------------------------------------
/yarn.lock:
--------------------------------------------------------------------------------
1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
2 | # yarn lockfile v1
3 |
4 |
5 | "@babel/code-frame@^7.0.0":
6 | version "7.18.6"
7 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz"
8 | integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==
9 | dependencies:
10 | "@babel/highlight" "^7.18.6"
11 |
12 | "@babel/helper-module-imports@^7.16.7":
13 | version "7.18.6"
14 | resolved "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz"
15 | integrity sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==
16 | dependencies:
17 | "@babel/types" "^7.18.6"
18 |
19 | "@babel/helper-plugin-utils@^7.18.6":
20 | version "7.20.2"
21 | resolved "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz"
22 | integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==
23 |
24 | "@babel/helper-string-parser@^7.19.4":
25 | version "7.19.4"
26 | resolved "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz"
27 | integrity sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==
28 |
29 | "@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1":
30 | version "7.19.1"
31 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz"
32 | integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==
33 |
34 | "@babel/highlight@^7.18.6":
35 | version "7.18.6"
36 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz"
37 | integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==
38 | dependencies:
39 | "@babel/helper-validator-identifier" "^7.18.6"
40 | chalk "^2.0.0"
41 | js-tokens "^4.0.0"
42 |
43 | "@babel/plugin-syntax-jsx@^7.17.12":
44 | version "7.18.6"
45 | resolved "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz"
46 | integrity sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==
47 | dependencies:
48 | "@babel/helper-plugin-utils" "^7.18.6"
49 |
50 | "@babel/runtime-corejs3@^7.10.2":
51 | version "7.20.1"
52 | resolved "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz"
53 | integrity sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==
54 | dependencies:
55 | core-js-pure "^3.25.1"
56 | regenerator-runtime "^0.13.10"
57 |
58 | "@babel/runtime@^7.10.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.18.3", "@babel/runtime@^7.18.9":
59 | version "7.20.1"
60 | resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.20.1.tgz"
61 | integrity sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==
62 | dependencies:
63 | regenerator-runtime "^0.13.10"
64 |
65 | "@babel/types@^7.18.6":
66 | version "7.20.2"
67 | resolved "https://registry.npmjs.org/@babel/types/-/types-7.20.2.tgz"
68 | integrity sha512-FnnvsNWgZCr232sqtXggapvlkk/tuwR/qhGzcmxI0GXLCjmPYQPzio2FbdlWuY6y1sHFfQKk+rRbUZ9VStQMog==
69 | dependencies:
70 | "@babel/helper-string-parser" "^7.19.4"
71 | "@babel/helper-validator-identifier" "^7.19.1"
72 | to-fast-properties "^2.0.0"
73 |
74 | "@emotion/babel-plugin@^11.10.5":
75 | version "11.10.5"
76 | resolved "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.10.5.tgz"
77 | integrity sha512-xE7/hyLHJac7D2Ve9dKroBBZqBT7WuPQmWcq7HSGb84sUuP4mlOWoB8dvVfD9yk5DHkU1m6RW7xSoDtnQHNQeA==
78 | dependencies:
79 | "@babel/helper-module-imports" "^7.16.7"
80 | "@babel/plugin-syntax-jsx" "^7.17.12"
81 | "@babel/runtime" "^7.18.3"
82 | "@emotion/hash" "^0.9.0"
83 | "@emotion/memoize" "^0.8.0"
84 | "@emotion/serialize" "^1.1.1"
85 | babel-plugin-macros "^3.1.0"
86 | convert-source-map "^1.5.0"
87 | escape-string-regexp "^4.0.0"
88 | find-root "^1.1.0"
89 | source-map "^0.5.7"
90 | stylis "4.1.3"
91 |
92 | "@emotion/cache@^11.10.5":
93 | version "11.10.5"
94 | resolved "https://registry.npmjs.org/@emotion/cache/-/cache-11.10.5.tgz"
95 | integrity sha512-dGYHWyzTdmK+f2+EnIGBpkz1lKc4Zbj2KHd4cX3Wi8/OWr5pKslNjc3yABKH4adRGCvSX4VDC0i04mrrq0aiRA==
96 | dependencies:
97 | "@emotion/memoize" "^0.8.0"
98 | "@emotion/sheet" "^1.2.1"
99 | "@emotion/utils" "^1.2.0"
100 | "@emotion/weak-memoize" "^0.3.0"
101 | stylis "4.1.3"
102 |
103 | "@emotion/hash@^0.9.0":
104 | version "0.9.0"
105 | resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.0.tgz"
106 | integrity sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==
107 |
108 | "@emotion/is-prop-valid@^0.8.2":
109 | version "0.8.8"
110 | resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz"
111 | integrity sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==
112 | dependencies:
113 | "@emotion/memoize" "0.7.4"
114 |
115 | "@emotion/is-prop-valid@^1.2.0":
116 | version "1.2.0"
117 | resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.0.tgz"
118 | integrity sha512-3aDpDprjM0AwaxGE09bOPkNxHpBd+kA6jty3RnaEXdweX1DF1U3VQpPYb0g1IStAuK7SVQ1cy+bNBBKp4W3Fjg==
119 | dependencies:
120 | "@emotion/memoize" "^0.8.0"
121 |
122 | "@emotion/memoize@0.7.4":
123 | version "0.7.4"
124 | resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz"
125 | integrity sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==
126 |
127 | "@emotion/memoize@^0.8.0":
128 | version "0.8.0"
129 | resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.0.tgz"
130 | integrity sha512-G/YwXTkv7Den9mXDO7AhLWkE3q+I92B+VqAE+dYG4NGPaHZGvt3G8Q0p9vmE+sq7rTGphUbAvmQ9YpbfMQGGlA==
131 |
132 | "@emotion/react@^11.10.5":
133 | version "11.10.5"
134 | resolved "https://registry.npmjs.org/@emotion/react/-/react-11.10.5.tgz"
135 | integrity sha512-TZs6235tCJ/7iF6/rvTaOH4oxQg2gMAcdHemjwLKIjKz4rRuYe1HJ2TQJKnAcRAfOUDdU8XoDadCe1rl72iv8A==
136 | dependencies:
137 | "@babel/runtime" "^7.18.3"
138 | "@emotion/babel-plugin" "^11.10.5"
139 | "@emotion/cache" "^11.10.5"
140 | "@emotion/serialize" "^1.1.1"
141 | "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0"
142 | "@emotion/utils" "^1.2.0"
143 | "@emotion/weak-memoize" "^0.3.0"
144 | hoist-non-react-statics "^3.3.1"
145 |
146 | "@emotion/serialize@^1.1.1":
147 | version "1.1.1"
148 | resolved "https://registry.npmjs.org/@emotion/serialize/-/serialize-1.1.1.tgz"
149 | integrity sha512-Zl/0LFggN7+L1liljxXdsVSVlg6E/Z/olVWpfxUTxOAmi8NU7YoeWeLfi1RmnB2TATHoaWwIBRoL+FvAJiTUQA==
150 | dependencies:
151 | "@emotion/hash" "^0.9.0"
152 | "@emotion/memoize" "^0.8.0"
153 | "@emotion/unitless" "^0.8.0"
154 | "@emotion/utils" "^1.2.0"
155 | csstype "^3.0.2"
156 |
157 | "@emotion/sheet@^1.2.1":
158 | version "1.2.1"
159 | resolved "https://registry.npmjs.org/@emotion/sheet/-/sheet-1.2.1.tgz"
160 | integrity sha512-zxRBwl93sHMsOj4zs+OslQKg/uhF38MB+OMKoCrVuS0nyTkqnau+BM3WGEoOptg9Oz45T/aIGs1qbVAsEFo3nA==
161 |
162 | "@emotion/styled@^11.10.5":
163 | version "11.10.5"
164 | resolved "https://registry.npmjs.org/@emotion/styled/-/styled-11.10.5.tgz"
165 | integrity sha512-8EP6dD7dMkdku2foLoruPCNkRevzdcBaY6q0l0OsbyJK+x8D9HWjX27ARiSIKNF634hY9Zdoedh8bJCiva8yZw==
166 | dependencies:
167 | "@babel/runtime" "^7.18.3"
168 | "@emotion/babel-plugin" "^11.10.5"
169 | "@emotion/is-prop-valid" "^1.2.0"
170 | "@emotion/serialize" "^1.1.1"
171 | "@emotion/use-insertion-effect-with-fallbacks" "^1.0.0"
172 | "@emotion/utils" "^1.2.0"
173 |
174 | "@emotion/unitless@^0.8.0":
175 | version "0.8.0"
176 | resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.0.tgz"
177 | integrity sha512-VINS5vEYAscRl2ZUDiT3uMPlrFQupiKgHz5AA4bCH1miKBg4qtwkim1qPmJj/4WG6TreYMY111rEFsjupcOKHw==
178 |
179 | "@emotion/use-insertion-effect-with-fallbacks@^1.0.0":
180 | version "1.0.0"
181 | resolved "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz"
182 | integrity sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==
183 |
184 | "@emotion/utils@^1.2.0":
185 | version "1.2.0"
186 | resolved "https://registry.npmjs.org/@emotion/utils/-/utils-1.2.0.tgz"
187 | integrity sha512-sn3WH53Kzpw8oQ5mgMmIzzyAaH2ZqFEbozVVBSYp538E06OSE6ytOp7pRAjNQR+Q/orwqdQYJSe2m3hCOeznkw==
188 |
189 | "@emotion/weak-memoize@^0.3.0":
190 | version "0.3.0"
191 | resolved "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.3.0.tgz"
192 | integrity sha512-AHPmaAx+RYfZz0eYu6Gviiagpmiyw98ySSlQvCUhVGDRtDFe4DBS0x1bSjdF3gqUDYOczB+yYvBTtEylYSdRhg==
193 |
194 | "@eslint/eslintrc@^1.3.3":
195 | version "1.3.3"
196 | resolved "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz"
197 | integrity sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==
198 | dependencies:
199 | ajv "^6.12.4"
200 | debug "^4.3.2"
201 | espree "^9.4.0"
202 | globals "^13.15.0"
203 | ignore "^5.2.0"
204 | import-fresh "^3.2.1"
205 | js-yaml "^4.1.0"
206 | minimatch "^3.1.2"
207 | strip-json-comments "^3.1.1"
208 |
209 | "@humanwhocodes/config-array@^0.11.6":
210 | version "0.11.7"
211 | resolved "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.7.tgz"
212 | integrity sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw==
213 | dependencies:
214 | "@humanwhocodes/object-schema" "^1.2.1"
215 | debug "^4.1.1"
216 | minimatch "^3.0.5"
217 |
218 | "@humanwhocodes/module-importer@^1.0.1":
219 | version "1.0.1"
220 | resolved "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz"
221 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==
222 |
223 | "@humanwhocodes/object-schema@^1.2.1":
224 | version "1.2.1"
225 | resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz"
226 | integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==
227 |
228 | "@motionone/animation@^10.12.0":
229 | version "10.14.0"
230 | resolved "https://registry.npmjs.org/@motionone/animation/-/animation-10.14.0.tgz"
231 | integrity sha512-h+1sdyBP8vbxEBW5gPFDnj+m2DCqdlAuf2g6Iafb1lcMnqjsRXWlPw1AXgvUMXmreyhqmPbJqoNfIKdytampRQ==
232 | dependencies:
233 | "@motionone/easing" "^10.14.0"
234 | "@motionone/types" "^10.14.0"
235 | "@motionone/utils" "^10.14.0"
236 | tslib "^2.3.1"
237 |
238 | "@motionone/dom@10.12.0":
239 | version "10.12.0"
240 | resolved "https://registry.npmjs.org/@motionone/dom/-/dom-10.12.0.tgz"
241 | integrity sha512-UdPTtLMAktHiqV0atOczNYyDd/d8Cf5fFsd1tua03PqTwwCe/6lwhLSQ8a7TbnQ5SN0gm44N1slBfj+ORIhrqw==
242 | dependencies:
243 | "@motionone/animation" "^10.12.0"
244 | "@motionone/generators" "^10.12.0"
245 | "@motionone/types" "^10.12.0"
246 | "@motionone/utils" "^10.12.0"
247 | hey-listen "^1.0.8"
248 | tslib "^2.3.1"
249 |
250 | "@motionone/easing@^10.14.0":
251 | version "10.14.0"
252 | resolved "https://registry.npmjs.org/@motionone/easing/-/easing-10.14.0.tgz"
253 | integrity sha512-2vUBdH9uWTlRbuErhcsMmt1jvMTTqvGmn9fHq8FleFDXBlHFs5jZzHJT9iw+4kR1h6a4SZQuCf72b9ji92qNYA==
254 | dependencies:
255 | "@motionone/utils" "^10.14.0"
256 | tslib "^2.3.1"
257 |
258 | "@motionone/generators@^10.12.0":
259 | version "10.14.0"
260 | resolved "https://registry.npmjs.org/@motionone/generators/-/generators-10.14.0.tgz"
261 | integrity sha512-6kRHezoFfIjFN7pPpaxmkdZXD36tQNcyJe3nwVqwJ+ZfC0e3rFmszR8kp9DEVFs9QL/akWjuGPSLBI1tvz+Vjg==
262 | dependencies:
263 | "@motionone/types" "^10.14.0"
264 | "@motionone/utils" "^10.14.0"
265 | tslib "^2.3.1"
266 |
267 | "@motionone/types@^10.12.0", "@motionone/types@^10.14.0":
268 | version "10.14.0"
269 | resolved "https://registry.npmjs.org/@motionone/types/-/types-10.14.0.tgz"
270 | integrity sha512-3bNWyYBHtVd27KncnJLhksMFQ5o2MSdk1cA/IZqsHtA9DnRM1SYgN01CTcJ8Iw8pCXF5Ocp34tyAjY7WRpOJJQ==
271 |
272 | "@motionone/utils@^10.12.0", "@motionone/utils@^10.14.0":
273 | version "10.14.0"
274 | resolved "https://registry.npmjs.org/@motionone/utils/-/utils-10.14.0.tgz"
275 | integrity sha512-sLWBLPzRqkxmOTRzSaD3LFQXCPHvDzyHJ1a3VP9PRzBxyVd2pv51/gMOsdAcxQ9n+MIeGJnxzXBYplUHKj4jkw==
276 | dependencies:
277 | "@motionone/types" "^10.14.0"
278 | hey-listen "^1.0.8"
279 | tslib "^2.3.1"
280 |
281 | "@next/env@13.0.7":
282 | version "13.0.7"
283 | resolved "https://registry.npmjs.org/@next/env/-/env-13.0.7.tgz"
284 | integrity sha512-ZBclBRB7DbkSswXgbJ+muF5RxfgmAuQKAWL8tcm86aZmoiL1ZainxQK0hMcMYdh+IYG8UObAKV2wKB5O+6P4ng==
285 |
286 | "@next/eslint-plugin-next@13.0.3":
287 | version "13.0.3"
288 | resolved "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.0.3.tgz"
289 | integrity sha512-slmTAHNKDyc7jhx4VF8lFbmOPWJ3PShtUUWpb6x9+ga59CyOxgP6AdcDhxfapnWYACKe/TwYiaveufu7LqXgZg==
290 | dependencies:
291 | glob "7.1.7"
292 |
293 | "@next/swc-android-arm-eabi@13.0.7":
294 | version "13.0.7"
295 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm-eabi/-/swc-android-arm-eabi-13.0.7.tgz#ddbf3d092d22f17238aa34072f5dcb8129d8b23e"
296 | integrity sha512-QTEamOK/LCwBf05GZ261rULMbZEpE3TYdjHlXfznV+nXwTztzkBNFXwP67gv2wW44BROzgi/vrR9H8oP+J5jxg==
297 |
298 | "@next/swc-android-arm64@13.0.7":
299 | version "13.0.7"
300 | resolved "https://registry.yarnpkg.com/@next/swc-android-arm64/-/swc-android-arm64-13.0.7.tgz#96f150232eb66da377226f21a371d30389371ed5"
301 | integrity sha512-wcy2H0Tl9ME8vKy2GnJZ7Mybwys+43F/Eh2Pvph7mSDpMbYBJ6iA0zeY62iYYXxlZhnAID3+h79FUqUEakkClw==
302 |
303 | "@next/swc-darwin-arm64@13.0.7":
304 | version "13.0.7"
305 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.0.7.tgz#34e80a22573b5321ade8417dfb814cf6e1fd9997"
306 | integrity sha512-F/mU7csN1/J2cqXJPMgTQ6MwAbc1pJ6sp6W+X0z5JEY4IFDzxKd3wRc3pCiNF7j8xW381JlNpWxhjCctnNmfaw==
307 |
308 | "@next/swc-darwin-x64@13.0.7":
309 | version "13.0.7"
310 | resolved "https://registry.yarnpkg.com/@next/swc-darwin-x64/-/swc-darwin-x64-13.0.7.tgz#ecec57211bf54a15872bb44e5ea70c99c2efe785"
311 | integrity sha512-636AuRQynCPnIPRVzcCk5B7OMq9XjaYam2T0HeWUCE6y7EqEO3kxiuZ4QmN81T7A6Ydb+JnivYrLelHXmgdj6A==
312 |
313 | "@next/swc-freebsd-x64@13.0.7":
314 | version "13.0.7"
315 | resolved "https://registry.yarnpkg.com/@next/swc-freebsd-x64/-/swc-freebsd-x64-13.0.7.tgz#b4a8a49c3c3d200c9d6c43193b82ee39c6eb1d59"
316 | integrity sha512-92XAMzNgQazowZ9t7uZmHRA5VdBl/SwEdrf5UybdfRovsxB4r3+yJWEvFaqYpSEp0gwndbwLokJdpz7OwFdL3Q==
317 |
318 | "@next/swc-linux-arm-gnueabihf@13.0.7":
319 | version "13.0.7"
320 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm-gnueabihf/-/swc-linux-arm-gnueabihf-13.0.7.tgz#6f550d348c6ece2b25426a53c5be49a3a8fc54a3"
321 | integrity sha512-3r1CWl5P6I5n5Yxip8EXv/Rfu2Cp6wVmIOpvmczyUR82j+bcMkwPAcUjNkG/vMCagS4xV7NElrcdGb39iFmfLg==
322 |
323 | "@next/swc-linux-arm64-gnu@13.0.7":
324 | version "13.0.7"
325 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.0.7.tgz#20bd7f25a3af0edb4d3506c005f54212eb9a855b"
326 | integrity sha512-RXo8tt6ppiwyS6hpDw3JdAjKcdVewsefxnxk9xOH4mRhMyq9V2lQx0e24X/dRiZqkx3jnWReR2WRrUlgN1UkSQ==
327 |
328 | "@next/swc-linux-arm64-musl@13.0.7":
329 | version "13.0.7"
330 | resolved "https://registry.yarnpkg.com/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.0.7.tgz#f421bedcf2e1ad1ad7c90af1102df83634e92b6a"
331 | integrity sha512-RWpnW+bmfXyxyY7iARbueYDGuIF+BEp3etLeYh/RUNHb9PhOHLDgJOG8haGSykud3a6CcyBI8hEjqOhoObaDpw==
332 |
333 | "@next/swc-linux-x64-gnu@13.0.7":
334 | version "13.0.7"
335 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.0.7.tgz#76cb25d3c00041dabc02e0b3ddd10f9325eb3f60"
336 | integrity sha512-/ygUIiMMTYnbKlFs5Ba9J5k/tNxFWy8eI1bBF8UuMTvV8QJHl/aLDiA5dwsei2kk99/cu3eay62JnJXkSk3RSQ==
337 |
338 | "@next/swc-linux-x64-musl@13.0.7":
339 | version "13.0.7"
340 | resolved "https://registry.yarnpkg.com/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.0.7.tgz#4e49b54b3578f7c4753dd7ac9c5e683914427884"
341 | integrity sha512-dLzr6AL77USJN0ejgx5AS8O8SbFlbYTzs0XwAWag4oQpUG2p3ARvxwQgYQ0Z+6EP0zIRZ/XfLkN/mhsyi3m4PA==
342 |
343 | "@next/swc-win32-arm64-msvc@13.0.7":
344 | version "13.0.7"
345 | resolved "https://registry.yarnpkg.com/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.0.7.tgz#98f622f9d0e34746e1ec7f25ce436a809a42313d"
346 | integrity sha512-+vFIVa82AwqFkpFClKT+n73fGxrhAZ2u1u3mDYEBdxO6c9U4Pj3S5tZFsGFK9kLT/bFvf/eeVOICSLCC7MSgJQ==
347 |
348 | "@next/swc-win32-ia32-msvc@13.0.7":
349 | version "13.0.7"
350 | resolved "https://registry.yarnpkg.com/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.0.7.tgz#f27f99aeec4207be7688a417f5934ea4868dadfc"
351 | integrity sha512-RNLXIhp+assD39dQY9oHhDxw+/qSJRARKhOFsHfOtf8yEfCHqcKkn3X/L+ih60ntaEqK294y1WkMk6ylotsxwA==
352 |
353 | "@next/swc-win32-x64-msvc@13.0.7":
354 | version "13.0.7"
355 | resolved "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.0.7.tgz"
356 | integrity sha512-kvdnlLcrnEq72ZP0lqe2Z5NqvB9N5uSCvtXJ0PhKvNncWWd0fEG9Ec9erXgwCmVlM2ytw41k9/uuQ+SVw4Pihw==
357 |
358 | "@nodelib/fs.scandir@2.1.5":
359 | version "2.1.5"
360 | resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
361 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==
362 | dependencies:
363 | "@nodelib/fs.stat" "2.0.5"
364 | run-parallel "^1.1.9"
365 |
366 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
367 | version "2.0.5"
368 | resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
369 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
370 |
371 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8":
372 | version "1.2.8"
373 | resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"
374 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==
375 | dependencies:
376 | "@nodelib/fs.scandir" "2.1.5"
377 | fastq "^1.6.0"
378 |
379 | "@rushstack/eslint-patch@^1.1.3":
380 | version "1.2.0"
381 | resolved "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.2.0.tgz"
382 | integrity sha512-sXo/qW2/pAcmT43VoRKOJbDOfV3cYpq3szSVfIThQXNt+E4DfKj361vaAt3c88U5tPUxzEswam7GW48PJqtKAg==
383 |
384 | "@swc/helpers@0.4.14":
385 | version "0.4.14"
386 | resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.4.14.tgz"
387 | integrity sha512-4C7nX/dvpzB7za4Ql9K81xK3HPxCpHMgwTZVyf+9JQ6VUbn9jjZVN7/Nkdz/Ugzs2CSjqnL/UPXroiVBVHUWUw==
388 | dependencies:
389 | tslib "^2.4.0"
390 |
391 | "@types/json5@^0.0.29":
392 | version "0.0.29"
393 | resolved "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz"
394 | integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==
395 |
396 | "@types/parse-json@^4.0.0":
397 | version "4.0.0"
398 | resolved "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz"
399 | integrity sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==
400 |
401 | "@typescript-eslint/parser@^5.42.0":
402 | version "5.43.0"
403 | resolved "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.43.0.tgz"
404 | integrity sha512-2iHUK2Lh7PwNUlhFxxLI2haSDNyXvebBO9izhjhMoDC+S3XI9qt2DGFUsiJ89m2k7gGYch2aEpYqV5F/+nwZug==
405 | dependencies:
406 | "@typescript-eslint/scope-manager" "5.43.0"
407 | "@typescript-eslint/types" "5.43.0"
408 | "@typescript-eslint/typescript-estree" "5.43.0"
409 | debug "^4.3.4"
410 |
411 | "@typescript-eslint/scope-manager@5.43.0":
412 | version "5.43.0"
413 | resolved "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.43.0.tgz"
414 | integrity sha512-XNWnGaqAtTJsUiZaoiGIrdJYHsUOd3BZ3Qj5zKp9w6km6HsrjPk/TGZv0qMTWyWj0+1QOqpHQ2gZOLXaGA9Ekw==
415 | dependencies:
416 | "@typescript-eslint/types" "5.43.0"
417 | "@typescript-eslint/visitor-keys" "5.43.0"
418 |
419 | "@typescript-eslint/types@5.43.0":
420 | version "5.43.0"
421 | resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.43.0.tgz"
422 | integrity sha512-jpsbcD0x6AUvV7tyOlyvon0aUsQpF8W+7TpJntfCUWU1qaIKu2K34pMwQKSzQH8ORgUrGYY6pVIh1Pi8TNeteg==
423 |
424 | "@typescript-eslint/typescript-estree@5.43.0":
425 | version "5.43.0"
426 | resolved "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.43.0.tgz"
427 | integrity sha512-BZ1WVe+QQ+igWal2tDbNg1j2HWUkAa+CVqdU79L4HP9izQY6CNhXfkNwd1SS4+sSZAP/EthI1uiCSY/+H0pROg==
428 | dependencies:
429 | "@typescript-eslint/types" "5.43.0"
430 | "@typescript-eslint/visitor-keys" "5.43.0"
431 | debug "^4.3.4"
432 | globby "^11.1.0"
433 | is-glob "^4.0.3"
434 | semver "^7.3.7"
435 | tsutils "^3.21.0"
436 |
437 | "@typescript-eslint/visitor-keys@5.43.0":
438 | version "5.43.0"
439 | resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.43.0.tgz"
440 | integrity sha512-icl1jNH/d18OVHLfcwdL3bWUKsBeIiKYTGxMJCoGe7xFht+E4QgzOqoWYrU8XSLJWhVw8nTacbm03v23J/hFTg==
441 | dependencies:
442 | "@typescript-eslint/types" "5.43.0"
443 | eslint-visitor-keys "^3.3.0"
444 |
445 | acorn-jsx@^5.3.2:
446 | version "5.3.2"
447 | resolved "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz"
448 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==
449 |
450 | acorn@^8.8.0:
451 | version "8.8.1"
452 | resolved "https://registry.npmjs.org/acorn/-/acorn-8.8.1.tgz"
453 | integrity sha512-7zFpHzhnqYKrkYdUjF1HI1bzd0VygEGX8lFk4k5zVMqHEoES+P+7TKI+EvLO9WVMJ8eekdO0aDEK044xTXwPPA==
454 |
455 | ajv@^6.10.0, ajv@^6.12.4:
456 | version "6.12.6"
457 | resolved "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"
458 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==
459 | dependencies:
460 | fast-deep-equal "^3.1.1"
461 | fast-json-stable-stringify "^2.0.0"
462 | json-schema-traverse "^0.4.1"
463 | uri-js "^4.2.2"
464 |
465 | ansi-regex@^5.0.1:
466 | version "5.0.1"
467 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"
468 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
469 |
470 | ansi-styles@^3.2.1:
471 | version "3.2.1"
472 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"
473 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==
474 | dependencies:
475 | color-convert "^1.9.0"
476 |
477 | ansi-styles@^4.1.0:
478 | version "4.3.0"
479 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"
480 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==
481 | dependencies:
482 | color-convert "^2.0.1"
483 |
484 | argparse@^2.0.1:
485 | version "2.0.1"
486 | resolved "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz"
487 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==
488 |
489 | aria-query@^4.2.2:
490 | version "4.2.2"
491 | resolved "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz"
492 | integrity sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==
493 | dependencies:
494 | "@babel/runtime" "^7.10.2"
495 | "@babel/runtime-corejs3" "^7.10.2"
496 |
497 | array-includes@^3.1.4, array-includes@^3.1.5:
498 | version "3.1.6"
499 | resolved "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz"
500 | integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==
501 | dependencies:
502 | call-bind "^1.0.2"
503 | define-properties "^1.1.4"
504 | es-abstract "^1.20.4"
505 | get-intrinsic "^1.1.3"
506 | is-string "^1.0.7"
507 |
508 | array-union@^2.1.0:
509 | version "2.1.0"
510 | resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"
511 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==
512 |
513 | array.prototype.flat@^1.2.5:
514 | version "1.3.1"
515 | resolved "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz"
516 | integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==
517 | dependencies:
518 | call-bind "^1.0.2"
519 | define-properties "^1.1.4"
520 | es-abstract "^1.20.4"
521 | es-shim-unscopables "^1.0.0"
522 |
523 | array.prototype.flatmap@^1.3.0:
524 | version "1.3.1"
525 | resolved "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz"
526 | integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==
527 | dependencies:
528 | call-bind "^1.0.2"
529 | define-properties "^1.1.4"
530 | es-abstract "^1.20.4"
531 | es-shim-unscopables "^1.0.0"
532 |
533 | ast-types-flow@^0.0.7:
534 | version "0.0.7"
535 | resolved "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz"
536 | integrity sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==
537 |
538 | asynckit@^0.4.0:
539 | version "0.4.0"
540 | resolved "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"
541 | integrity sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==
542 |
543 | axe-core@^4.4.3:
544 | version "4.5.2"
545 | resolved "https://registry.npmjs.org/axe-core/-/axe-core-4.5.2.tgz"
546 | integrity sha512-u2MVsXfew5HBvjsczCv+xlwdNnB1oQR9HlAcsejZttNjKKSkeDNVwB1vMThIUIFI9GoT57Vtk8iQLwqOfAkboA==
547 |
548 | axios@^0.26.0:
549 | version "0.26.1"
550 | resolved "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz"
551 | integrity sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==
552 | dependencies:
553 | follow-redirects "^1.14.8"
554 |
555 | axobject-query@^2.2.0:
556 | version "2.2.0"
557 | resolved "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz"
558 | integrity sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==
559 |
560 | babel-plugin-macros@^3.1.0:
561 | version "3.1.0"
562 | resolved "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz"
563 | integrity sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==
564 | dependencies:
565 | "@babel/runtime" "^7.12.5"
566 | cosmiconfig "^7.0.0"
567 | resolve "^1.19.0"
568 |
569 | balanced-match@^1.0.0:
570 | version "1.0.2"
571 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"
572 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==
573 |
574 | brace-expansion@^1.1.7:
575 | version "1.1.11"
576 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"
577 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
578 | dependencies:
579 | balanced-match "^1.0.0"
580 | concat-map "0.0.1"
581 |
582 | braces@^3.0.2:
583 | version "3.0.2"
584 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"
585 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==
586 | dependencies:
587 | fill-range "^7.0.1"
588 |
589 | call-bind@^1.0.0, call-bind@^1.0.2:
590 | version "1.0.2"
591 | resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"
592 | integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==
593 | dependencies:
594 | function-bind "^1.1.1"
595 | get-intrinsic "^1.0.2"
596 |
597 | callsites@^3.0.0:
598 | version "3.1.0"
599 | resolved "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"
600 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==
601 |
602 | caniuse-lite@^1.0.30001406:
603 | version "1.0.30001431"
604 | resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001431.tgz"
605 | integrity sha512-zBUoFU0ZcxpvSt9IU66dXVT/3ctO1cy4y9cscs1szkPlcWb6pasYM144GqrUygUbT+k7cmUCW61cvskjcv0enQ==
606 |
607 | chalk@^2.0.0:
608 | version "2.4.2"
609 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"
610 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
611 | dependencies:
612 | ansi-styles "^3.2.1"
613 | escape-string-regexp "^1.0.5"
614 | supports-color "^5.3.0"
615 |
616 | chalk@^4.0.0:
617 | version "4.1.2"
618 | resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
619 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
620 | dependencies:
621 | ansi-styles "^4.1.0"
622 | supports-color "^7.1.0"
623 |
624 | client-only@0.0.1:
625 | version "0.0.1"
626 | resolved "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz"
627 | integrity sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==
628 |
629 | color-convert@^1.9.0:
630 | version "1.9.3"
631 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"
632 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==
633 | dependencies:
634 | color-name "1.1.3"
635 |
636 | color-convert@^2.0.1:
637 | version "2.0.1"
638 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"
639 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==
640 | dependencies:
641 | color-name "~1.1.4"
642 |
643 | color-name@1.1.3:
644 | version "1.1.3"
645 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"
646 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==
647 |
648 | color-name@~1.1.4:
649 | version "1.1.4"
650 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"
651 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==
652 |
653 | combined-stream@^1.0.8:
654 | version "1.0.8"
655 | resolved "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"
656 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==
657 | dependencies:
658 | delayed-stream "~1.0.0"
659 |
660 | concat-map@0.0.1:
661 | version "0.0.1"
662 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"
663 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==
664 |
665 | convert-source-map@^1.5.0:
666 | version "1.9.0"
667 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz"
668 | integrity sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==
669 |
670 | core-js-pure@^3.25.1:
671 | version "3.26.1"
672 | resolved "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.1.tgz"
673 | integrity sha512-VVXcDpp/xJ21KdULRq/lXdLzQAtX7+37LzpyfFM973il0tWSsDEoyzG38G14AjTpK9VTfiNM9jnFauq/CpaWGQ==
674 |
675 | cosmiconfig@^7.0.0:
676 | version "7.1.0"
677 | resolved "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz"
678 | integrity sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==
679 | dependencies:
680 | "@types/parse-json" "^4.0.0"
681 | import-fresh "^3.2.1"
682 | parse-json "^5.0.0"
683 | path-type "^4.0.0"
684 | yaml "^1.10.0"
685 |
686 | cross-spawn@^7.0.2:
687 | version "7.0.3"
688 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"
689 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
690 | dependencies:
691 | path-key "^3.1.0"
692 | shebang-command "^2.0.0"
693 | which "^2.0.1"
694 |
695 | csstype@^3.0.2:
696 | version "3.1.1"
697 | resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz"
698 | integrity sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==
699 |
700 | damerau-levenshtein@^1.0.8:
701 | version "1.0.8"
702 | resolved "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz"
703 | integrity sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==
704 |
705 | debug@^2.6.9:
706 | version "2.6.9"
707 | resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
708 | integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
709 | dependencies:
710 | ms "2.0.0"
711 |
712 | debug@^3.2.7:
713 | version "3.2.7"
714 | resolved "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"
715 | integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==
716 | dependencies:
717 | ms "^2.1.1"
718 |
719 | debug@^4.1.1, debug@^4.3.2, debug@^4.3.4:
720 | version "4.3.4"
721 | resolved "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"
722 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==
723 | dependencies:
724 | ms "2.1.2"
725 |
726 | deep-is@^0.1.3:
727 | version "0.1.4"
728 | resolved "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz"
729 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==
730 |
731 | define-properties@^1.1.3, define-properties@^1.1.4:
732 | version "1.1.4"
733 | resolved "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"
734 | integrity sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==
735 | dependencies:
736 | has-property-descriptors "^1.0.0"
737 | object-keys "^1.1.1"
738 |
739 | delayed-stream@~1.0.0:
740 | version "1.0.0"
741 | resolved "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"
742 | integrity sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==
743 |
744 | dir-glob@^3.0.1:
745 | version "3.0.1"
746 | resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"
747 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==
748 | dependencies:
749 | path-type "^4.0.0"
750 |
751 | doctrine@^2.1.0:
752 | version "2.1.0"
753 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz"
754 | integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==
755 | dependencies:
756 | esutils "^2.0.2"
757 |
758 | doctrine@^3.0.0:
759 | version "3.0.0"
760 | resolved "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz"
761 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==
762 | dependencies:
763 | esutils "^2.0.2"
764 |
765 | emoji-regex@^9.2.2:
766 | version "9.2.2"
767 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz"
768 | integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==
769 |
770 | error-ex@^1.3.1:
771 | version "1.3.2"
772 | resolved "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"
773 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==
774 | dependencies:
775 | is-arrayish "^0.2.1"
776 |
777 | es-abstract@^1.19.0, es-abstract@^1.20.4:
778 | version "1.20.4"
779 | resolved "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz"
780 | integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==
781 | dependencies:
782 | call-bind "^1.0.2"
783 | es-to-primitive "^1.2.1"
784 | function-bind "^1.1.1"
785 | function.prototype.name "^1.1.5"
786 | get-intrinsic "^1.1.3"
787 | get-symbol-description "^1.0.0"
788 | has "^1.0.3"
789 | has-property-descriptors "^1.0.0"
790 | has-symbols "^1.0.3"
791 | internal-slot "^1.0.3"
792 | is-callable "^1.2.7"
793 | is-negative-zero "^2.0.2"
794 | is-regex "^1.1.4"
795 | is-shared-array-buffer "^1.0.2"
796 | is-string "^1.0.7"
797 | is-weakref "^1.0.2"
798 | object-inspect "^1.12.2"
799 | object-keys "^1.1.1"
800 | object.assign "^4.1.4"
801 | regexp.prototype.flags "^1.4.3"
802 | safe-regex-test "^1.0.0"
803 | string.prototype.trimend "^1.0.5"
804 | string.prototype.trimstart "^1.0.5"
805 | unbox-primitive "^1.0.2"
806 |
807 | es-shim-unscopables@^1.0.0:
808 | version "1.0.0"
809 | resolved "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz"
810 | integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==
811 | dependencies:
812 | has "^1.0.3"
813 |
814 | es-to-primitive@^1.2.1:
815 | version "1.2.1"
816 | resolved "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"
817 | integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==
818 | dependencies:
819 | is-callable "^1.1.4"
820 | is-date-object "^1.0.1"
821 | is-symbol "^1.0.2"
822 |
823 | escape-string-regexp@^1.0.5:
824 | version "1.0.5"
825 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"
826 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==
827 |
828 | escape-string-regexp@^4.0.0:
829 | version "4.0.0"
830 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"
831 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==
832 |
833 | eslint-config-next@13.0.3:
834 | version "13.0.3"
835 | resolved "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.0.3.tgz"
836 | integrity sha512-i2JoQP8gGv303GjXTonA27fm1ckRRkRoAP1WYEQgN0D2DDoFeBPqlJgHlMHnXKWjmNct/sW8jQEvy9am2juc8g==
837 | dependencies:
838 | "@next/eslint-plugin-next" "13.0.3"
839 | "@rushstack/eslint-patch" "^1.1.3"
840 | "@typescript-eslint/parser" "^5.42.0"
841 | eslint-import-resolver-node "^0.3.6"
842 | eslint-import-resolver-typescript "^2.7.1"
843 | eslint-plugin-import "^2.26.0"
844 | eslint-plugin-jsx-a11y "^6.5.1"
845 | eslint-plugin-react "^7.31.7"
846 | eslint-plugin-react-hooks "^4.5.0"
847 |
848 | eslint-import-resolver-node@^0.3.6:
849 | version "0.3.6"
850 | resolved "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz"
851 | integrity sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==
852 | dependencies:
853 | debug "^3.2.7"
854 | resolve "^1.20.0"
855 |
856 | eslint-import-resolver-typescript@^2.7.1:
857 | version "2.7.1"
858 | resolved "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-2.7.1.tgz"
859 | integrity sha512-00UbgGwV8bSgUv34igBDbTOtKhqoRMy9bFjNehT40bXg6585PNIct8HhXZ0SybqB9rWtXj9crcku8ndDn/gIqQ==
860 | dependencies:
861 | debug "^4.3.4"
862 | glob "^7.2.0"
863 | is-glob "^4.0.3"
864 | resolve "^1.22.0"
865 | tsconfig-paths "^3.14.1"
866 |
867 | eslint-module-utils@^2.7.3:
868 | version "2.7.4"
869 | resolved "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz"
870 | integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==
871 | dependencies:
872 | debug "^3.2.7"
873 |
874 | eslint-plugin-import@^2.26.0:
875 | version "2.26.0"
876 | resolved "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz"
877 | integrity sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==
878 | dependencies:
879 | array-includes "^3.1.4"
880 | array.prototype.flat "^1.2.5"
881 | debug "^2.6.9"
882 | doctrine "^2.1.0"
883 | eslint-import-resolver-node "^0.3.6"
884 | eslint-module-utils "^2.7.3"
885 | has "^1.0.3"
886 | is-core-module "^2.8.1"
887 | is-glob "^4.0.3"
888 | minimatch "^3.1.2"
889 | object.values "^1.1.5"
890 | resolve "^1.22.0"
891 | tsconfig-paths "^3.14.1"
892 |
893 | eslint-plugin-jsx-a11y@^6.5.1:
894 | version "6.6.1"
895 | resolved "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz"
896 | integrity sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==
897 | dependencies:
898 | "@babel/runtime" "^7.18.9"
899 | aria-query "^4.2.2"
900 | array-includes "^3.1.5"
901 | ast-types-flow "^0.0.7"
902 | axe-core "^4.4.3"
903 | axobject-query "^2.2.0"
904 | damerau-levenshtein "^1.0.8"
905 | emoji-regex "^9.2.2"
906 | has "^1.0.3"
907 | jsx-ast-utils "^3.3.2"
908 | language-tags "^1.0.5"
909 | minimatch "^3.1.2"
910 | semver "^6.3.0"
911 |
912 | eslint-plugin-react-hooks@^4.5.0:
913 | version "4.6.0"
914 | resolved "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz"
915 | integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==
916 |
917 | eslint-plugin-react@^7.31.7:
918 | version "7.31.10"
919 | resolved "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.10.tgz"
920 | integrity sha512-e4N/nc6AAlg4UKW/mXeYWd3R++qUano5/o+t+wnWxIf+bLsOaH3a4q74kX3nDjYym3VBN4HyO9nEn1GcAqgQOA==
921 | dependencies:
922 | array-includes "^3.1.5"
923 | array.prototype.flatmap "^1.3.0"
924 | doctrine "^2.1.0"
925 | estraverse "^5.3.0"
926 | jsx-ast-utils "^2.4.1 || ^3.0.0"
927 | minimatch "^3.1.2"
928 | object.entries "^1.1.5"
929 | object.fromentries "^2.0.5"
930 | object.hasown "^1.1.1"
931 | object.values "^1.1.5"
932 | prop-types "^15.8.1"
933 | resolve "^2.0.0-next.3"
934 | semver "^6.3.0"
935 | string.prototype.matchall "^4.0.7"
936 |
937 | eslint-scope@^7.1.1:
938 | version "7.1.1"
939 | resolved "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz"
940 | integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==
941 | dependencies:
942 | esrecurse "^4.3.0"
943 | estraverse "^5.2.0"
944 |
945 | eslint-utils@^3.0.0:
946 | version "3.0.0"
947 | resolved "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz"
948 | integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==
949 | dependencies:
950 | eslint-visitor-keys "^2.0.0"
951 |
952 | eslint-visitor-keys@^2.0.0:
953 | version "2.1.0"
954 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"
955 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
956 |
957 | eslint-visitor-keys@^3.3.0:
958 | version "3.3.0"
959 | resolved "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz"
960 | integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
961 |
962 | eslint@8.27.0:
963 | version "8.27.0"
964 | resolved "https://registry.npmjs.org/eslint/-/eslint-8.27.0.tgz"
965 | integrity sha512-0y1bfG2ho7mty+SiILVf9PfuRA49ek4Nc60Wmmu62QlobNR+CeXa4xXIJgcuwSQgZiWaPH+5BDsctpIW0PR/wQ==
966 | dependencies:
967 | "@eslint/eslintrc" "^1.3.3"
968 | "@humanwhocodes/config-array" "^0.11.6"
969 | "@humanwhocodes/module-importer" "^1.0.1"
970 | "@nodelib/fs.walk" "^1.2.8"
971 | ajv "^6.10.0"
972 | chalk "^4.0.0"
973 | cross-spawn "^7.0.2"
974 | debug "^4.3.2"
975 | doctrine "^3.0.0"
976 | escape-string-regexp "^4.0.0"
977 | eslint-scope "^7.1.1"
978 | eslint-utils "^3.0.0"
979 | eslint-visitor-keys "^3.3.0"
980 | espree "^9.4.0"
981 | esquery "^1.4.0"
982 | esutils "^2.0.2"
983 | fast-deep-equal "^3.1.3"
984 | file-entry-cache "^6.0.1"
985 | find-up "^5.0.0"
986 | glob-parent "^6.0.2"
987 | globals "^13.15.0"
988 | grapheme-splitter "^1.0.4"
989 | ignore "^5.2.0"
990 | import-fresh "^3.0.0"
991 | imurmurhash "^0.1.4"
992 | is-glob "^4.0.0"
993 | is-path-inside "^3.0.3"
994 | js-sdsl "^4.1.4"
995 | js-yaml "^4.1.0"
996 | json-stable-stringify-without-jsonify "^1.0.1"
997 | levn "^0.4.1"
998 | lodash.merge "^4.6.2"
999 | minimatch "^3.1.2"
1000 | natural-compare "^1.4.0"
1001 | optionator "^0.9.1"
1002 | regexpp "^3.2.0"
1003 | strip-ansi "^6.0.1"
1004 | strip-json-comments "^3.1.0"
1005 | text-table "^0.2.0"
1006 |
1007 | espree@^9.4.0:
1008 | version "9.4.1"
1009 | resolved "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz"
1010 | integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==
1011 | dependencies:
1012 | acorn "^8.8.0"
1013 | acorn-jsx "^5.3.2"
1014 | eslint-visitor-keys "^3.3.0"
1015 |
1016 | esquery@^1.4.0:
1017 | version "1.4.0"
1018 | resolved "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"
1019 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==
1020 | dependencies:
1021 | estraverse "^5.1.0"
1022 |
1023 | esrecurse@^4.3.0:
1024 | version "4.3.0"
1025 | resolved "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz"
1026 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==
1027 | dependencies:
1028 | estraverse "^5.2.0"
1029 |
1030 | estraverse@^5.1.0, estraverse@^5.2.0, estraverse@^5.3.0:
1031 | version "5.3.0"
1032 | resolved "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz"
1033 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==
1034 |
1035 | esutils@^2.0.2:
1036 | version "2.0.3"
1037 | resolved "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"
1038 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==
1039 |
1040 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3:
1041 | version "3.1.3"
1042 | resolved "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz"
1043 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
1044 |
1045 | fast-glob@^3.2.9:
1046 | version "3.2.12"
1047 | resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz"
1048 | integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==
1049 | dependencies:
1050 | "@nodelib/fs.stat" "^2.0.2"
1051 | "@nodelib/fs.walk" "^1.2.3"
1052 | glob-parent "^5.1.2"
1053 | merge2 "^1.3.0"
1054 | micromatch "^4.0.4"
1055 |
1056 | fast-json-stable-stringify@^2.0.0:
1057 | version "2.1.0"
1058 | resolved "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz"
1059 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==
1060 |
1061 | fast-levenshtein@^2.0.6:
1062 | version "2.0.6"
1063 | resolved "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz"
1064 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==
1065 |
1066 | fastq@^1.6.0:
1067 | version "1.13.0"
1068 | resolved "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz"
1069 | integrity sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==
1070 | dependencies:
1071 | reusify "^1.0.4"
1072 |
1073 | file-entry-cache@^6.0.1:
1074 | version "6.0.1"
1075 | resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"
1076 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==
1077 | dependencies:
1078 | flat-cache "^3.0.4"
1079 |
1080 | fill-range@^7.0.1:
1081 | version "7.0.1"
1082 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"
1083 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==
1084 | dependencies:
1085 | to-regex-range "^5.0.1"
1086 |
1087 | find-root@^1.1.0:
1088 | version "1.1.0"
1089 | resolved "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz"
1090 | integrity sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==
1091 |
1092 | find-up@^5.0.0:
1093 | version "5.0.0"
1094 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz"
1095 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
1096 | dependencies:
1097 | locate-path "^6.0.0"
1098 | path-exists "^4.0.0"
1099 |
1100 | flat-cache@^3.0.4:
1101 | version "3.0.4"
1102 | resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"
1103 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==
1104 | dependencies:
1105 | flatted "^3.1.0"
1106 | rimraf "^3.0.2"
1107 |
1108 | flatted@^3.1.0:
1109 | version "3.2.7"
1110 | resolved "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz"
1111 | integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==
1112 |
1113 | follow-redirects@^1.14.8:
1114 | version "1.15.2"
1115 | resolved "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.2.tgz"
1116 | integrity sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==
1117 |
1118 | form-data@^4.0.0:
1119 | version "4.0.0"
1120 | resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz"
1121 | integrity sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==
1122 | dependencies:
1123 | asynckit "^0.4.0"
1124 | combined-stream "^1.0.8"
1125 | mime-types "^2.1.12"
1126 |
1127 | framer-motion@^6.5.1:
1128 | version "6.5.1"
1129 | resolved "https://registry.npmjs.org/framer-motion/-/framer-motion-6.5.1.tgz"
1130 | integrity sha512-o1BGqqposwi7cgDrtg0dNONhkmPsUFDaLcKXigzuTFC5x58mE8iyTazxSudFzmT6MEyJKfjjU8ItoMe3W+3fiw==
1131 | dependencies:
1132 | "@motionone/dom" "10.12.0"
1133 | framesync "6.0.1"
1134 | hey-listen "^1.0.8"
1135 | popmotion "11.0.3"
1136 | style-value-types "5.0.0"
1137 | tslib "^2.1.0"
1138 | optionalDependencies:
1139 | "@emotion/is-prop-valid" "^0.8.2"
1140 |
1141 | framesync@6.0.1:
1142 | version "6.0.1"
1143 | resolved "https://registry.npmjs.org/framesync/-/framesync-6.0.1.tgz"
1144 | integrity sha512-fUY88kXvGiIItgNC7wcTOl0SNRCVXMKSWW2Yzfmn7EKNc+MpCzcz9DhdHcdjbrtN3c6R4H5dTY2jiCpPdysEjA==
1145 | dependencies:
1146 | tslib "^2.1.0"
1147 |
1148 | fs.realpath@^1.0.0:
1149 | version "1.0.0"
1150 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
1151 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
1152 |
1153 | function-bind@^1.1.1:
1154 | version "1.1.1"
1155 | resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"
1156 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==
1157 |
1158 | function.prototype.name@^1.1.5:
1159 | version "1.1.5"
1160 | resolved "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz"
1161 | integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==
1162 | dependencies:
1163 | call-bind "^1.0.2"
1164 | define-properties "^1.1.3"
1165 | es-abstract "^1.19.0"
1166 | functions-have-names "^1.2.2"
1167 |
1168 | functions-have-names@^1.2.2:
1169 | version "1.2.3"
1170 | resolved "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz"
1171 | integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==
1172 |
1173 | get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3:
1174 | version "1.1.3"
1175 | resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz"
1176 | integrity sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==
1177 | dependencies:
1178 | function-bind "^1.1.1"
1179 | has "^1.0.3"
1180 | has-symbols "^1.0.3"
1181 |
1182 | get-symbol-description@^1.0.0:
1183 | version "1.0.0"
1184 | resolved "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz"
1185 | integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==
1186 | dependencies:
1187 | call-bind "^1.0.2"
1188 | get-intrinsic "^1.1.1"
1189 |
1190 | glob-parent@^5.1.2:
1191 | version "5.1.2"
1192 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"
1193 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==
1194 | dependencies:
1195 | is-glob "^4.0.1"
1196 |
1197 | glob-parent@^6.0.2:
1198 | version "6.0.2"
1199 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz"
1200 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==
1201 | dependencies:
1202 | is-glob "^4.0.3"
1203 |
1204 | glob@7.1.7, glob@^7.1.3:
1205 | version "7.1.7"
1206 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz"
1207 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==
1208 | dependencies:
1209 | fs.realpath "^1.0.0"
1210 | inflight "^1.0.4"
1211 | inherits "2"
1212 | minimatch "^3.0.4"
1213 | once "^1.3.0"
1214 | path-is-absolute "^1.0.0"
1215 |
1216 | glob@^7.2.0:
1217 | version "7.2.3"
1218 | resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
1219 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==
1220 | dependencies:
1221 | fs.realpath "^1.0.0"
1222 | inflight "^1.0.4"
1223 | inherits "2"
1224 | minimatch "^3.1.1"
1225 | once "^1.3.0"
1226 | path-is-absolute "^1.0.0"
1227 |
1228 | globals@^13.15.0:
1229 | version "13.17.0"
1230 | resolved "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz"
1231 | integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==
1232 | dependencies:
1233 | type-fest "^0.20.2"
1234 |
1235 | globby@^11.1.0:
1236 | version "11.1.0"
1237 | resolved "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"
1238 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==
1239 | dependencies:
1240 | array-union "^2.1.0"
1241 | dir-glob "^3.0.1"
1242 | fast-glob "^3.2.9"
1243 | ignore "^5.2.0"
1244 | merge2 "^1.4.1"
1245 | slash "^3.0.0"
1246 |
1247 | grapheme-splitter@^1.0.4:
1248 | version "1.0.4"
1249 | resolved "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz"
1250 | integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
1251 |
1252 | has-bigints@^1.0.1, has-bigints@^1.0.2:
1253 | version "1.0.2"
1254 | resolved "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz"
1255 | integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==
1256 |
1257 | has-flag@^3.0.0:
1258 | version "3.0.0"
1259 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"
1260 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==
1261 |
1262 | has-flag@^4.0.0:
1263 | version "4.0.0"
1264 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"
1265 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==
1266 |
1267 | has-property-descriptors@^1.0.0:
1268 | version "1.0.0"
1269 | resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"
1270 | integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==
1271 | dependencies:
1272 | get-intrinsic "^1.1.1"
1273 |
1274 | has-symbols@^1.0.2, has-symbols@^1.0.3:
1275 | version "1.0.3"
1276 | resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"
1277 | integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==
1278 |
1279 | has-tostringtag@^1.0.0:
1280 | version "1.0.0"
1281 | resolved "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"
1282 | integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==
1283 | dependencies:
1284 | has-symbols "^1.0.2"
1285 |
1286 | has@^1.0.3:
1287 | version "1.0.3"
1288 | resolved "https://registry.npmjs.org/has/-/has-1.0.3.tgz"
1289 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==
1290 | dependencies:
1291 | function-bind "^1.1.1"
1292 |
1293 | hey-listen@^1.0.8:
1294 | version "1.0.8"
1295 | resolved "https://registry.npmjs.org/hey-listen/-/hey-listen-1.0.8.tgz"
1296 | integrity sha512-COpmrF2NOg4TBWUJ5UVyaCU2A88wEMkUPK4hNqyCkqHbxT92BbvfjoSozkAIIm6XhicGlJHhFdullInrdhwU8Q==
1297 |
1298 | hoist-non-react-statics@^3.3.1:
1299 | version "3.3.2"
1300 | resolved "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz"
1301 | integrity sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==
1302 | dependencies:
1303 | react-is "^16.7.0"
1304 |
1305 | ignore@^5.2.0:
1306 | version "5.2.0"
1307 | resolved "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz"
1308 | integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==
1309 |
1310 | import-fresh@^3.0.0, import-fresh@^3.2.1:
1311 | version "3.3.0"
1312 | resolved "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"
1313 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==
1314 | dependencies:
1315 | parent-module "^1.0.0"
1316 | resolve-from "^4.0.0"
1317 |
1318 | imurmurhash@^0.1.4:
1319 | version "0.1.4"
1320 | resolved "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"
1321 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==
1322 |
1323 | inflight@^1.0.4:
1324 | version "1.0.6"
1325 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"
1326 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==
1327 | dependencies:
1328 | once "^1.3.0"
1329 | wrappy "1"
1330 |
1331 | inherits@2:
1332 | version "2.0.4"
1333 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
1334 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
1335 |
1336 | internal-slot@^1.0.3:
1337 | version "1.0.3"
1338 | resolved "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz"
1339 | integrity sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==
1340 | dependencies:
1341 | get-intrinsic "^1.1.0"
1342 | has "^1.0.3"
1343 | side-channel "^1.0.4"
1344 |
1345 | is-arrayish@^0.2.1:
1346 | version "0.2.1"
1347 | resolved "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"
1348 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==
1349 |
1350 | is-bigint@^1.0.1:
1351 | version "1.0.4"
1352 | resolved "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"
1353 | integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==
1354 | dependencies:
1355 | has-bigints "^1.0.1"
1356 |
1357 | is-boolean-object@^1.1.0:
1358 | version "1.1.2"
1359 | resolved "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"
1360 | integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==
1361 | dependencies:
1362 | call-bind "^1.0.2"
1363 | has-tostringtag "^1.0.0"
1364 |
1365 | is-callable@^1.1.4, is-callable@^1.2.7:
1366 | version "1.2.7"
1367 | resolved "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz"
1368 | integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==
1369 |
1370 | is-core-module@^2.8.1, is-core-module@^2.9.0:
1371 | version "2.11.0"
1372 | resolved "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz"
1373 | integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==
1374 | dependencies:
1375 | has "^1.0.3"
1376 |
1377 | is-date-object@^1.0.1:
1378 | version "1.0.5"
1379 | resolved "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"
1380 | integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==
1381 | dependencies:
1382 | has-tostringtag "^1.0.0"
1383 |
1384 | is-extglob@^2.1.1:
1385 | version "2.1.1"
1386 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"
1387 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==
1388 |
1389 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3:
1390 | version "4.0.3"
1391 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"
1392 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==
1393 | dependencies:
1394 | is-extglob "^2.1.1"
1395 |
1396 | is-negative-zero@^2.0.2:
1397 | version "2.0.2"
1398 | resolved "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz"
1399 | integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==
1400 |
1401 | is-number-object@^1.0.4:
1402 | version "1.0.7"
1403 | resolved "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"
1404 | integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==
1405 | dependencies:
1406 | has-tostringtag "^1.0.0"
1407 |
1408 | is-number@^7.0.0:
1409 | version "7.0.0"
1410 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"
1411 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==
1412 |
1413 | is-path-inside@^3.0.3:
1414 | version "3.0.3"
1415 | resolved "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz"
1416 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==
1417 |
1418 | is-regex@^1.1.4:
1419 | version "1.1.4"
1420 | resolved "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"
1421 | integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==
1422 | dependencies:
1423 | call-bind "^1.0.2"
1424 | has-tostringtag "^1.0.0"
1425 |
1426 | is-shared-array-buffer@^1.0.2:
1427 | version "1.0.2"
1428 | resolved "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"
1429 | integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==
1430 | dependencies:
1431 | call-bind "^1.0.2"
1432 |
1433 | is-string@^1.0.5, is-string@^1.0.7:
1434 | version "1.0.7"
1435 | resolved "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"
1436 | integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==
1437 | dependencies:
1438 | has-tostringtag "^1.0.0"
1439 |
1440 | is-symbol@^1.0.2, is-symbol@^1.0.3:
1441 | version "1.0.4"
1442 | resolved "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"
1443 | integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==
1444 | dependencies:
1445 | has-symbols "^1.0.2"
1446 |
1447 | is-weakref@^1.0.2:
1448 | version "1.0.2"
1449 | resolved "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz"
1450 | integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==
1451 | dependencies:
1452 | call-bind "^1.0.2"
1453 |
1454 | isexe@^2.0.0:
1455 | version "2.0.0"
1456 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"
1457 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==
1458 |
1459 | js-sdsl@^4.1.4:
1460 | version "4.1.5"
1461 | resolved "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.1.5.tgz"
1462 | integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q==
1463 |
1464 | "js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
1465 | version "4.0.0"
1466 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"
1467 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==
1468 |
1469 | js-yaml@^4.1.0:
1470 | version "4.1.0"
1471 | resolved "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz"
1472 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==
1473 | dependencies:
1474 | argparse "^2.0.1"
1475 |
1476 | json-parse-even-better-errors@^2.3.0:
1477 | version "2.3.1"
1478 | resolved "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"
1479 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==
1480 |
1481 | json-schema-traverse@^0.4.1:
1482 | version "0.4.1"
1483 | resolved "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz"
1484 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==
1485 |
1486 | json-stable-stringify-without-jsonify@^1.0.1:
1487 | version "1.0.1"
1488 | resolved "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz"
1489 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==
1490 |
1491 | json5@^1.0.1:
1492 | version "1.0.1"
1493 | resolved "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz"
1494 | integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
1495 | dependencies:
1496 | minimist "^1.2.0"
1497 |
1498 | "jsx-ast-utils@^2.4.1 || ^3.0.0", jsx-ast-utils@^3.3.2:
1499 | version "3.3.3"
1500 | resolved "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz"
1501 | integrity sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==
1502 | dependencies:
1503 | array-includes "^3.1.5"
1504 | object.assign "^4.1.3"
1505 |
1506 | language-subtag-registry@~0.3.2:
1507 | version "0.3.22"
1508 | resolved "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz"
1509 | integrity sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==
1510 |
1511 | language-tags@^1.0.5:
1512 | version "1.0.5"
1513 | resolved "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz"
1514 | integrity sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==
1515 | dependencies:
1516 | language-subtag-registry "~0.3.2"
1517 |
1518 | levn@^0.4.1:
1519 | version "0.4.1"
1520 | resolved "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz"
1521 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==
1522 | dependencies:
1523 | prelude-ls "^1.2.1"
1524 | type-check "~0.4.0"
1525 |
1526 | lines-and-columns@^1.1.6:
1527 | version "1.2.4"
1528 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz"
1529 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==
1530 |
1531 | locate-path@^6.0.0:
1532 | version "6.0.0"
1533 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz"
1534 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==
1535 | dependencies:
1536 | p-locate "^5.0.0"
1537 |
1538 | lodash.merge@^4.6.2:
1539 | version "4.6.2"
1540 | resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"
1541 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
1542 |
1543 | loose-envify@^1.1.0, loose-envify@^1.4.0:
1544 | version "1.4.0"
1545 | resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"
1546 | integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
1547 | dependencies:
1548 | js-tokens "^3.0.0 || ^4.0.0"
1549 |
1550 | lru-cache@^6.0.0:
1551 | version "6.0.0"
1552 | resolved "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"
1553 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==
1554 | dependencies:
1555 | yallist "^4.0.0"
1556 |
1557 | merge2@^1.3.0, merge2@^1.4.1:
1558 | version "1.4.1"
1559 | resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"
1560 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==
1561 |
1562 | micromatch@^4.0.4:
1563 | version "4.0.5"
1564 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"
1565 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==
1566 | dependencies:
1567 | braces "^3.0.2"
1568 | picomatch "^2.3.1"
1569 |
1570 | mime-db@1.52.0:
1571 | version "1.52.0"
1572 | resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz"
1573 | integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
1574 |
1575 | mime-types@^2.1.12:
1576 | version "2.1.35"
1577 | resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz"
1578 | integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==
1579 | dependencies:
1580 | mime-db "1.52.0"
1581 |
1582 | minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
1583 | version "3.1.2"
1584 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"
1585 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==
1586 | dependencies:
1587 | brace-expansion "^1.1.7"
1588 |
1589 | minimist@^1.2.0, minimist@^1.2.6:
1590 | version "1.2.7"
1591 | resolved "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz"
1592 | integrity sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==
1593 |
1594 | ms@2.0.0:
1595 | version "2.0.0"
1596 | resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
1597 | integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
1598 |
1599 | ms@2.1.2, ms@^2.1.1:
1600 | version "2.1.2"
1601 | resolved "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"
1602 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
1603 |
1604 | nanoid@^3.3.4:
1605 | version "3.3.4"
1606 | resolved "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz"
1607 | integrity sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==
1608 |
1609 | natural-compare@^1.4.0:
1610 | version "1.4.0"
1611 | resolved "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz"
1612 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==
1613 |
1614 | next@^13.0.7:
1615 | version "13.0.7"
1616 | resolved "https://registry.npmjs.org/next/-/next-13.0.7.tgz"
1617 | integrity sha512-YfTifqX9vfHm+rSU/H/3xvzOHDkYuMuh4wsvTjiqj9h7qHEF7KHB66X4qrH96Po+ohdid4JY8YVGPziDwdXL0A==
1618 | dependencies:
1619 | "@next/env" "13.0.7"
1620 | "@swc/helpers" "0.4.14"
1621 | caniuse-lite "^1.0.30001406"
1622 | postcss "8.4.14"
1623 | styled-jsx "5.1.0"
1624 | optionalDependencies:
1625 | "@next/swc-android-arm-eabi" "13.0.7"
1626 | "@next/swc-android-arm64" "13.0.7"
1627 | "@next/swc-darwin-arm64" "13.0.7"
1628 | "@next/swc-darwin-x64" "13.0.7"
1629 | "@next/swc-freebsd-x64" "13.0.7"
1630 | "@next/swc-linux-arm-gnueabihf" "13.0.7"
1631 | "@next/swc-linux-arm64-gnu" "13.0.7"
1632 | "@next/swc-linux-arm64-musl" "13.0.7"
1633 | "@next/swc-linux-x64-gnu" "13.0.7"
1634 | "@next/swc-linux-x64-musl" "13.0.7"
1635 | "@next/swc-win32-arm64-msvc" "13.0.7"
1636 | "@next/swc-win32-ia32-msvc" "13.0.7"
1637 | "@next/swc-win32-x64-msvc" "13.0.7"
1638 |
1639 | object-assign@^4.1.1:
1640 | version "4.1.1"
1641 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz"
1642 | integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
1643 |
1644 | object-inspect@^1.12.2, object-inspect@^1.9.0:
1645 | version "1.12.2"
1646 | resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"
1647 | integrity sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==
1648 |
1649 | object-keys@^1.1.1:
1650 | version "1.1.1"
1651 | resolved "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"
1652 | integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
1653 |
1654 | object.assign@^4.1.3, object.assign@^4.1.4:
1655 | version "4.1.4"
1656 | resolved "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz"
1657 | integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==
1658 | dependencies:
1659 | call-bind "^1.0.2"
1660 | define-properties "^1.1.4"
1661 | has-symbols "^1.0.3"
1662 | object-keys "^1.1.1"
1663 |
1664 | object.entries@^1.1.5:
1665 | version "1.1.6"
1666 | resolved "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz"
1667 | integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==
1668 | dependencies:
1669 | call-bind "^1.0.2"
1670 | define-properties "^1.1.4"
1671 | es-abstract "^1.20.4"
1672 |
1673 | object.fromentries@^2.0.5:
1674 | version "2.0.6"
1675 | resolved "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz"
1676 | integrity sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==
1677 | dependencies:
1678 | call-bind "^1.0.2"
1679 | define-properties "^1.1.4"
1680 | es-abstract "^1.20.4"
1681 |
1682 | object.hasown@^1.1.1:
1683 | version "1.1.2"
1684 | resolved "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz"
1685 | integrity sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==
1686 | dependencies:
1687 | define-properties "^1.1.4"
1688 | es-abstract "^1.20.4"
1689 |
1690 | object.values@^1.1.5:
1691 | version "1.1.6"
1692 | resolved "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz"
1693 | integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==
1694 | dependencies:
1695 | call-bind "^1.0.2"
1696 | define-properties "^1.1.4"
1697 | es-abstract "^1.20.4"
1698 |
1699 | once@^1.3.0:
1700 | version "1.4.0"
1701 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz"
1702 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==
1703 | dependencies:
1704 | wrappy "1"
1705 |
1706 | openai@^3.1.0:
1707 | version "3.1.0"
1708 | resolved "https://registry.npmjs.org/openai/-/openai-3.1.0.tgz"
1709 | integrity sha512-v5kKFH5o+8ld+t0arudj833Mgm3GcgBnbyN9946bj6u7bvel4Yg6YFz2A4HLIYDzmMjIo0s6vSG9x73kOwvdCg==
1710 | dependencies:
1711 | axios "^0.26.0"
1712 | form-data "^4.0.0"
1713 |
1714 | optionator@^0.9.1:
1715 | version "0.9.1"
1716 | resolved "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz"
1717 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==
1718 | dependencies:
1719 | deep-is "^0.1.3"
1720 | fast-levenshtein "^2.0.6"
1721 | levn "^0.4.1"
1722 | prelude-ls "^1.2.1"
1723 | type-check "^0.4.0"
1724 | word-wrap "^1.2.3"
1725 |
1726 | p-limit@^3.0.2:
1727 | version "3.1.0"
1728 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz"
1729 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==
1730 | dependencies:
1731 | yocto-queue "^0.1.0"
1732 |
1733 | p-locate@^5.0.0:
1734 | version "5.0.0"
1735 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz"
1736 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==
1737 | dependencies:
1738 | p-limit "^3.0.2"
1739 |
1740 | parent-module@^1.0.0:
1741 | version "1.0.1"
1742 | resolved "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"
1743 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==
1744 | dependencies:
1745 | callsites "^3.0.0"
1746 |
1747 | parse-json@^5.0.0:
1748 | version "5.2.0"
1749 | resolved "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz"
1750 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==
1751 | dependencies:
1752 | "@babel/code-frame" "^7.0.0"
1753 | error-ex "^1.3.1"
1754 | json-parse-even-better-errors "^2.3.0"
1755 | lines-and-columns "^1.1.6"
1756 |
1757 | path-exists@^4.0.0:
1758 | version "4.0.0"
1759 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"
1760 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==
1761 |
1762 | path-is-absolute@^1.0.0:
1763 | version "1.0.1"
1764 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"
1765 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==
1766 |
1767 | path-key@^3.1.0:
1768 | version "3.1.1"
1769 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"
1770 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==
1771 |
1772 | path-parse@^1.0.7:
1773 | version "1.0.7"
1774 | resolved "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"
1775 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
1776 |
1777 | path-type@^4.0.0:
1778 | version "4.0.0"
1779 | resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"
1780 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==
1781 |
1782 | picocolors@^1.0.0:
1783 | version "1.0.0"
1784 | resolved "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"
1785 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==
1786 |
1787 | picomatch@^2.3.1:
1788 | version "2.3.1"
1789 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"
1790 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==
1791 |
1792 | popmotion@11.0.3:
1793 | version "11.0.3"
1794 | resolved "https://registry.npmjs.org/popmotion/-/popmotion-11.0.3.tgz"
1795 | integrity sha512-Y55FLdj3UxkR7Vl3s7Qr4e9m0onSnP8W7d/xQLsoJM40vs6UKHFdygs6SWryasTZYqugMjm3BepCF4CWXDiHgA==
1796 | dependencies:
1797 | framesync "6.0.1"
1798 | hey-listen "^1.0.8"
1799 | style-value-types "5.0.0"
1800 | tslib "^2.1.0"
1801 |
1802 | postcss@8.4.14:
1803 | version "8.4.14"
1804 | resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz"
1805 | integrity sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==
1806 | dependencies:
1807 | nanoid "^3.3.4"
1808 | picocolors "^1.0.0"
1809 | source-map-js "^1.0.2"
1810 |
1811 | prelude-ls@^1.2.1:
1812 | version "1.2.1"
1813 | resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
1814 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==
1815 |
1816 | prop-types@^15.8.1:
1817 | version "15.8.1"
1818 | resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz"
1819 | integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
1820 | dependencies:
1821 | loose-envify "^1.4.0"
1822 | object-assign "^4.1.1"
1823 | react-is "^16.13.1"
1824 |
1825 | punycode@^2.1.0:
1826 | version "2.1.1"
1827 | resolved "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"
1828 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
1829 |
1830 | queue-microtask@^1.2.2:
1831 | version "1.2.3"
1832 | resolved "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"
1833 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==
1834 |
1835 | react-dom@^18.2.0:
1836 | version "18.2.0"
1837 | resolved "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz"
1838 | integrity sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==
1839 | dependencies:
1840 | loose-envify "^1.1.0"
1841 | scheduler "^0.23.0"
1842 |
1843 | react-is@^16.13.1, react-is@^16.7.0:
1844 | version "16.13.1"
1845 | resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
1846 | integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
1847 |
1848 | react@^18.2.0:
1849 | version "18.2.0"
1850 | resolved "https://registry.npmjs.org/react/-/react-18.2.0.tgz"
1851 | integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==
1852 | dependencies:
1853 | loose-envify "^1.1.0"
1854 |
1855 | regenerator-runtime@^0.13.10:
1856 | version "0.13.10"
1857 | resolved "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz"
1858 | integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==
1859 |
1860 | regexp.prototype.flags@^1.4.3:
1861 | version "1.4.3"
1862 | resolved "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz"
1863 | integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==
1864 | dependencies:
1865 | call-bind "^1.0.2"
1866 | define-properties "^1.1.3"
1867 | functions-have-names "^1.2.2"
1868 |
1869 | regexpp@^3.2.0:
1870 | version "3.2.0"
1871 | resolved "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz"
1872 | integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==
1873 |
1874 | resolve-from@^4.0.0:
1875 | version "4.0.0"
1876 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"
1877 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
1878 |
1879 | resolve@^1.19.0, resolve@^1.20.0, resolve@^1.22.0:
1880 | version "1.22.1"
1881 | resolved "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz"
1882 | integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==
1883 | dependencies:
1884 | is-core-module "^2.9.0"
1885 | path-parse "^1.0.7"
1886 | supports-preserve-symlinks-flag "^1.0.0"
1887 |
1888 | resolve@^2.0.0-next.3:
1889 | version "2.0.0-next.4"
1890 | resolved "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz"
1891 | integrity sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==
1892 | dependencies:
1893 | is-core-module "^2.9.0"
1894 | path-parse "^1.0.7"
1895 | supports-preserve-symlinks-flag "^1.0.0"
1896 |
1897 | reusify@^1.0.4:
1898 | version "1.0.4"
1899 | resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"
1900 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
1901 |
1902 | rimraf@^3.0.2:
1903 | version "3.0.2"
1904 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"
1905 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
1906 | dependencies:
1907 | glob "^7.1.3"
1908 |
1909 | run-parallel@^1.1.9:
1910 | version "1.2.0"
1911 | resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"
1912 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==
1913 | dependencies:
1914 | queue-microtask "^1.2.2"
1915 |
1916 | safe-regex-test@^1.0.0:
1917 | version "1.0.0"
1918 | resolved "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz"
1919 | integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==
1920 | dependencies:
1921 | call-bind "^1.0.2"
1922 | get-intrinsic "^1.1.3"
1923 | is-regex "^1.1.4"
1924 |
1925 | scheduler@^0.23.0:
1926 | version "0.23.0"
1927 | resolved "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz"
1928 | integrity sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==
1929 | dependencies:
1930 | loose-envify "^1.1.0"
1931 |
1932 | semver@^6.3.0:
1933 | version "6.3.0"
1934 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"
1935 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
1936 |
1937 | semver@^7.3.7:
1938 | version "7.3.8"
1939 | resolved "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz"
1940 | integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==
1941 | dependencies:
1942 | lru-cache "^6.0.0"
1943 |
1944 | shebang-command@^2.0.0:
1945 | version "2.0.0"
1946 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"
1947 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==
1948 | dependencies:
1949 | shebang-regex "^3.0.0"
1950 |
1951 | shebang-regex@^3.0.0:
1952 | version "3.0.0"
1953 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"
1954 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==
1955 |
1956 | side-channel@^1.0.4:
1957 | version "1.0.4"
1958 | resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"
1959 | integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==
1960 | dependencies:
1961 | call-bind "^1.0.0"
1962 | get-intrinsic "^1.0.2"
1963 | object-inspect "^1.9.0"
1964 |
1965 | slash@^3.0.0:
1966 | version "3.0.0"
1967 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"
1968 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==
1969 |
1970 | source-map-js@^1.0.2:
1971 | version "1.0.2"
1972 | resolved "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"
1973 | integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
1974 |
1975 | source-map@^0.5.7:
1976 | version "0.5.7"
1977 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"
1978 | integrity sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==
1979 |
1980 | string.prototype.matchall@^4.0.7:
1981 | version "4.0.8"
1982 | resolved "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz"
1983 | integrity sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==
1984 | dependencies:
1985 | call-bind "^1.0.2"
1986 | define-properties "^1.1.4"
1987 | es-abstract "^1.20.4"
1988 | get-intrinsic "^1.1.3"
1989 | has-symbols "^1.0.3"
1990 | internal-slot "^1.0.3"
1991 | regexp.prototype.flags "^1.4.3"
1992 | side-channel "^1.0.4"
1993 |
1994 | string.prototype.trimend@^1.0.5:
1995 | version "1.0.6"
1996 | resolved "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz"
1997 | integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==
1998 | dependencies:
1999 | call-bind "^1.0.2"
2000 | define-properties "^1.1.4"
2001 | es-abstract "^1.20.4"
2002 |
2003 | string.prototype.trimstart@^1.0.5:
2004 | version "1.0.6"
2005 | resolved "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz"
2006 | integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==
2007 | dependencies:
2008 | call-bind "^1.0.2"
2009 | define-properties "^1.1.4"
2010 | es-abstract "^1.20.4"
2011 |
2012 | strip-ansi@^6.0.1:
2013 | version "6.0.1"
2014 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"
2015 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
2016 | dependencies:
2017 | ansi-regex "^5.0.1"
2018 |
2019 | strip-bom@^3.0.0:
2020 | version "3.0.0"
2021 | resolved "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"
2022 | integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==
2023 |
2024 | strip-json-comments@^3.1.0, strip-json-comments@^3.1.1:
2025 | version "3.1.1"
2026 | resolved "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz"
2027 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==
2028 |
2029 | style-value-types@5.0.0:
2030 | version "5.0.0"
2031 | resolved "https://registry.npmjs.org/style-value-types/-/style-value-types-5.0.0.tgz"
2032 | integrity sha512-08yq36Ikn4kx4YU6RD7jWEv27v4V+PUsOGa4n/as8Et3CuODMJQ00ENeAVXAeydX4Z2j1XHZF1K2sX4mGl18fA==
2033 | dependencies:
2034 | hey-listen "^1.0.8"
2035 | tslib "^2.1.0"
2036 |
2037 | styled-jsx@5.1.0:
2038 | version "5.1.0"
2039 | resolved "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.0.tgz"
2040 | integrity sha512-/iHaRJt9U7T+5tp6TRelLnqBqiaIT0HsO0+vgyj8hK2KUk7aejFqRrumqPUlAqDwAj8IbS/1hk3IhBAAK/FCUQ==
2041 | dependencies:
2042 | client-only "0.0.1"
2043 |
2044 | stylis@4.1.3:
2045 | version "4.1.3"
2046 | resolved "https://registry.npmjs.org/stylis/-/stylis-4.1.3.tgz"
2047 | integrity sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==
2048 |
2049 | supports-color@^5.3.0:
2050 | version "5.5.0"
2051 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"
2052 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==
2053 | dependencies:
2054 | has-flag "^3.0.0"
2055 |
2056 | supports-color@^7.1.0:
2057 | version "7.2.0"
2058 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"
2059 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==
2060 | dependencies:
2061 | has-flag "^4.0.0"
2062 |
2063 | supports-preserve-symlinks-flag@^1.0.0:
2064 | version "1.0.0"
2065 | resolved "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"
2066 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
2067 |
2068 | text-table@^0.2.0:
2069 | version "0.2.0"
2070 | resolved "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"
2071 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==
2072 |
2073 | to-fast-properties@^2.0.0:
2074 | version "2.0.0"
2075 | resolved "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"
2076 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==
2077 |
2078 | to-regex-range@^5.0.1:
2079 | version "5.0.1"
2080 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"
2081 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==
2082 | dependencies:
2083 | is-number "^7.0.0"
2084 |
2085 | tsconfig-paths@^3.14.1:
2086 | version "3.14.1"
2087 | resolved "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz"
2088 | integrity sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==
2089 | dependencies:
2090 | "@types/json5" "^0.0.29"
2091 | json5 "^1.0.1"
2092 | minimist "^1.2.6"
2093 | strip-bom "^3.0.0"
2094 |
2095 | tslib@^1.8.1:
2096 | version "1.14.1"
2097 | resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
2098 | integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
2099 |
2100 | tslib@^2.1.0, tslib@^2.3.1, tslib@^2.4.0:
2101 | version "2.4.1"
2102 | resolved "https://registry.npmjs.org/tslib/-/tslib-2.4.1.tgz"
2103 | integrity sha512-tGyy4dAjRIEwI7BzsB0lynWgOpfqjUdq91XXAlIWD2OwKBH7oCl/GZG/HT4BOHrTlPMOASlMQ7veyTqpmRcrNA==
2104 |
2105 | tsutils@^3.21.0:
2106 | version "3.21.0"
2107 | resolved "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"
2108 | integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==
2109 | dependencies:
2110 | tslib "^1.8.1"
2111 |
2112 | type-check@^0.4.0, type-check@~0.4.0:
2113 | version "0.4.0"
2114 | resolved "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz"
2115 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==
2116 | dependencies:
2117 | prelude-ls "^1.2.1"
2118 |
2119 | type-fest@^0.20.2:
2120 | version "0.20.2"
2121 | resolved "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"
2122 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==
2123 |
2124 | unbox-primitive@^1.0.2:
2125 | version "1.0.2"
2126 | resolved "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz"
2127 | integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==
2128 | dependencies:
2129 | call-bind "^1.0.2"
2130 | has-bigints "^1.0.2"
2131 | has-symbols "^1.0.3"
2132 | which-boxed-primitive "^1.0.2"
2133 |
2134 | uri-js@^4.2.2:
2135 | version "4.4.1"
2136 | resolved "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"
2137 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==
2138 | dependencies:
2139 | punycode "^2.1.0"
2140 |
2141 | which-boxed-primitive@^1.0.2:
2142 | version "1.0.2"
2143 | resolved "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"
2144 | integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==
2145 | dependencies:
2146 | is-bigint "^1.0.1"
2147 | is-boolean-object "^1.1.0"
2148 | is-number-object "^1.0.4"
2149 | is-string "^1.0.5"
2150 | is-symbol "^1.0.3"
2151 |
2152 | which@^2.0.1:
2153 | version "2.0.2"
2154 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz"
2155 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==
2156 | dependencies:
2157 | isexe "^2.0.0"
2158 |
2159 | word-wrap@^1.2.3:
2160 | version "1.2.3"
2161 | resolved "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"
2162 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==
2163 |
2164 | wrappy@1:
2165 | version "1.0.2"
2166 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"
2167 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==
2168 |
2169 | yallist@^4.0.0:
2170 | version "4.0.0"
2171 | resolved "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"
2172 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==
2173 |
2174 | yaml@^1.10.0:
2175 | version "1.10.2"
2176 | resolved "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz"
2177 | integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==
2178 |
2179 | yocto-queue@^0.1.0:
2180 | version "0.1.0"
2181 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz"
2182 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==
2183 |
--------------------------------------------------------------------------------