├── .env.example
├── .eslintrc.json
├── .gitignore
├── README.md
├── app
├── favicon.ico
├── globals.css
├── layout.js
└── page.js
├── jsconfig.json
├── lib
└── superagent.js
├── next.config.js
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
├── next.svg
└── vercel.svg
└── tailwind.config.js
/.env.example:
--------------------------------------------------------------------------------
1 | NEXT_PUBLIC_SUPERAGENT_API_TOKEN=
2 | NEXT_PUBLIC_AGENT_ID=
3 |
--------------------------------------------------------------------------------
/.eslintrc.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "next/core-web-vitals"
3 | }
4 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # next.js
12 | /.next/
13 | /out/
14 |
15 | # production
16 | /build
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 |
27 | # local env files
28 | .env*.local
29 | .env
30 |
31 | # vercel
32 | .vercel
33 |
34 | # typescript
35 | *.tsbuildinfo
36 | next-env.d.ts
37 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | This is a minimal example of running the [Superagent](https://superagent.sh) Javascript SDK with NextJS.
2 |
3 | ## Getting Started
4 |
5 | First, install the dependencies:
6 |
7 | ```bash
8 | npm i
9 | ```
10 |
11 | Secondly, rename `.env.example` to `.env` and add your environment variables.
12 |
13 | Lastly, start the development server:
14 |
15 | ```bash
16 | npm run dev
17 | ```
18 |
19 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
20 |
21 | ## Learn More
22 |
23 | To learn more about Superagent, take a look at the following resources:
24 |
25 | - [superagent.sh](https://superagent.sh) - sign up for a Superagent account.
26 | - [Superagent Github repo](https://github.com/homanp/superagent) - checkout superagent on Github.
27 | - [Superagent JS SDK](https://github.com/homanp/superagent-js) - read more about the JS SDK.
28 | - [Documentation](https://docs.superagent.sh) - read our docs.
29 |
--------------------------------------------------------------------------------
/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/homanp/nextjs-superagent/842f18bf25aaf77d1f56d54e3158b9e5e2e389b9/app/favicon.ico
--------------------------------------------------------------------------------
/app/globals.css:
--------------------------------------------------------------------------------
1 | @tailwind base;
2 | @tailwind components;
3 | @tailwind utilities;
4 |
5 | :root {
6 | --foreground-rgb: 0, 0, 0;
7 | --background-start-rgb: 214, 219, 220;
8 | --background-end-rgb: 255, 255, 255;
9 | }
10 |
11 | @media (prefers-color-scheme: dark) {
12 | :root {
13 | --foreground-rgb: 255, 255, 255;
14 | --background-start-rgb: 0, 0, 0;
15 | --background-end-rgb: 0, 0, 0;
16 | }
17 | }
18 |
19 | body {
20 | color: rgb(var(--foreground-rgb));
21 | background: linear-gradient(
22 | to bottom,
23 | transparent,
24 | rgb(var(--background-end-rgb))
25 | )
26 | rgb(var(--background-start-rgb));
27 | }
28 |
--------------------------------------------------------------------------------
/app/layout.js:
--------------------------------------------------------------------------------
1 | import "./globals.css";
2 | import { Inter } from "next/font/google";
3 |
4 | const inter = Inter({ subsets: ["latin"] });
5 |
6 | export const metadata = {
7 | title: "Superagent.sh NextJS example",
8 | description: "Run superagent.sh in your NextJS app",
9 | };
10 |
11 | export default function RootLayout({ children }) {
12 | return (
13 |
14 |
{children}
15 |
16 | );
17 | }
18 |
--------------------------------------------------------------------------------
/app/page.js:
--------------------------------------------------------------------------------
1 | "use client";
2 | import { useCallback, useState } from "react";
3 | import { BeatLoader } from "react-spinners";
4 | import { superagent } from "@/lib/superagent";
5 | import { useForm } from "react-hook-form";
6 |
7 | export default function Home() {
8 | const [message, setMessage] = useState();
9 | const [aiResponse, setAiResponse] = useState();
10 | const {
11 | formState: { isSubmitting, error },
12 | handleSubmit,
13 | register,
14 | } = useForm();
15 |
16 | const onSubmit = useCallback(async (values) => {
17 | const { message } = values;
18 |
19 | setMessage(message);
20 | setAiResponse();
21 |
22 | const { data } = await superagent.agents().predict({
23 | id: process.env.NEXT_PUBLIC_AGENT_ID,
24 | input: { input: message },
25 | has_streaming: false,
26 | });
27 |
28 | setAiResponse(data);
29 | }, []);
30 |
31 | return (
32 |
33 |
34 |
35 |
36 | Superagent.sh with NextJS
37 |
38 |
39 |
40 |
44 |
45 | Demo
46 |
47 |
48 | Ask questions about Alphabet Q1 2023 Earnings.
49 |
50 |
51 |
52 |
53 | {message && (
54 |
55 |
56 |
57 |
64 |
65 |
{message}
66 | {isSubmitting &&
}
67 |
68 |
69 | )}
70 | {aiResponse && (
71 |
72 |
73 |
74 |
81 |
82 |
{aiResponse}
83 |
84 |
85 | )}
86 |
87 |
88 |
89 |
110 |
111 | );
112 | }
113 |
--------------------------------------------------------------------------------
/jsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "paths": {
4 | "@/*": ["./*"]
5 | }
6 | }
7 | }
8 |
--------------------------------------------------------------------------------
/lib/superagent.js:
--------------------------------------------------------------------------------
1 | import SuperagentSDK from "superagentai-js";
2 |
3 | export const superagent = new SuperagentSDK(
4 | process.env.NEXT_PUBLIC_SUPERAGENT_API_TOKEN
5 | );
6 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "nextjs-superagent",
3 | "version": "0.1.0",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "nextjs-superagent",
9 | "version": "0.1.0",
10 | "dependencies": {
11 | "autoprefixer": "10.4.14",
12 | "eslint": "8.41.0",
13 | "eslint-config-next": "13.4.4",
14 | "next": "13.4.4",
15 | "postcss": "8.4.24",
16 | "react": "18.2.0",
17 | "react-dom": "18.2.0",
18 | "react-hook-form": "^7.44.2",
19 | "react-spinners": "^0.13.8",
20 | "superagentai-js": "^0.0.3",
21 | "tailwindcss": "3.3.2"
22 | }
23 | },
24 | "node_modules/@alloc/quick-lru": {
25 | "version": "5.2.0",
26 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
27 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
28 | "engines": {
29 | "node": ">=10"
30 | },
31 | "funding": {
32 | "url": "https://github.com/sponsors/sindresorhus"
33 | }
34 | },
35 | "node_modules/@babel/runtime": {
36 | "version": "7.22.3",
37 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.3.tgz",
38 | "integrity": "sha512-XsDuspWKLUsxwCp6r7EhsExHtYfbe5oAGQ19kqngTdCPUoPQzOPdUbD/pB9PJiwb2ptYKQDjSJT3R6dC+EPqfQ==",
39 | "dependencies": {
40 | "regenerator-runtime": "^0.13.11"
41 | },
42 | "engines": {
43 | "node": ">=6.9.0"
44 | }
45 | },
46 | "node_modules/@eslint-community/eslint-utils": {
47 | "version": "4.4.0",
48 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
49 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
50 | "dependencies": {
51 | "eslint-visitor-keys": "^3.3.0"
52 | },
53 | "engines": {
54 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
55 | },
56 | "peerDependencies": {
57 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
58 | }
59 | },
60 | "node_modules/@eslint-community/regexpp": {
61 | "version": "4.5.1",
62 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.5.1.tgz",
63 | "integrity": "sha512-Z5ba73P98O1KUYCCJTUeVpja9RcGoMdncZ6T49FCUl2lN38JtCJ+3WgIDBv0AuY4WChU5PmtJmOCTlN6FZTFKQ==",
64 | "engines": {
65 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
66 | }
67 | },
68 | "node_modules/@eslint/eslintrc": {
69 | "version": "2.0.3",
70 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.0.3.tgz",
71 | "integrity": "sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ==",
72 | "dependencies": {
73 | "ajv": "^6.12.4",
74 | "debug": "^4.3.2",
75 | "espree": "^9.5.2",
76 | "globals": "^13.19.0",
77 | "ignore": "^5.2.0",
78 | "import-fresh": "^3.2.1",
79 | "js-yaml": "^4.1.0",
80 | "minimatch": "^3.1.2",
81 | "strip-json-comments": "^3.1.1"
82 | },
83 | "engines": {
84 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
85 | },
86 | "funding": {
87 | "url": "https://opencollective.com/eslint"
88 | }
89 | },
90 | "node_modules/@eslint/js": {
91 | "version": "8.41.0",
92 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.41.0.tgz",
93 | "integrity": "sha512-LxcyMGxwmTh2lY9FwHPGWOHmYFCZvbrFCBZL4FzSSsxsRPuhrYUg/49/0KDfW8tnIEaEHtfmn6+NPN+1DqaNmA==",
94 | "engines": {
95 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
96 | }
97 | },
98 | "node_modules/@humanwhocodes/config-array": {
99 | "version": "0.11.8",
100 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz",
101 | "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==",
102 | "dependencies": {
103 | "@humanwhocodes/object-schema": "^1.2.1",
104 | "debug": "^4.1.1",
105 | "minimatch": "^3.0.5"
106 | },
107 | "engines": {
108 | "node": ">=10.10.0"
109 | }
110 | },
111 | "node_modules/@humanwhocodes/module-importer": {
112 | "version": "1.0.1",
113 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
114 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
115 | "engines": {
116 | "node": ">=12.22"
117 | },
118 | "funding": {
119 | "type": "github",
120 | "url": "https://github.com/sponsors/nzakas"
121 | }
122 | },
123 | "node_modules/@humanwhocodes/object-schema": {
124 | "version": "1.2.1",
125 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
126 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
127 | },
128 | "node_modules/@jridgewell/gen-mapping": {
129 | "version": "0.3.3",
130 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
131 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
132 | "dependencies": {
133 | "@jridgewell/set-array": "^1.0.1",
134 | "@jridgewell/sourcemap-codec": "^1.4.10",
135 | "@jridgewell/trace-mapping": "^0.3.9"
136 | },
137 | "engines": {
138 | "node": ">=6.0.0"
139 | }
140 | },
141 | "node_modules/@jridgewell/resolve-uri": {
142 | "version": "3.1.0",
143 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
144 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
145 | "engines": {
146 | "node": ">=6.0.0"
147 | }
148 | },
149 | "node_modules/@jridgewell/set-array": {
150 | "version": "1.1.2",
151 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
152 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
153 | "engines": {
154 | "node": ">=6.0.0"
155 | }
156 | },
157 | "node_modules/@jridgewell/sourcemap-codec": {
158 | "version": "1.4.15",
159 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
160 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
161 | },
162 | "node_modules/@jridgewell/trace-mapping": {
163 | "version": "0.3.18",
164 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz",
165 | "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==",
166 | "dependencies": {
167 | "@jridgewell/resolve-uri": "3.1.0",
168 | "@jridgewell/sourcemap-codec": "1.4.14"
169 | }
170 | },
171 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": {
172 | "version": "1.4.14",
173 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
174 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
175 | },
176 | "node_modules/@next/env": {
177 | "version": "13.4.4",
178 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.4.tgz",
179 | "integrity": "sha512-q/y7VZj/9YpgzDe64Zi6rY1xPizx80JjlU2BTevlajtaE3w1LqweH1gGgxou2N7hdFosXHjGrI4OUvtFXXhGLg=="
180 | },
181 | "node_modules/@next/eslint-plugin-next": {
182 | "version": "13.4.4",
183 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.4.tgz",
184 | "integrity": "sha512-5jnh7q6I15efnjR/rR+/TGTc9hn53g3JTbEjAMjmeQiExKqEUgIXqrHI5zlTNlNyzCPkBB860/ctxXheZaF2Vw==",
185 | "dependencies": {
186 | "glob": "7.1.7"
187 | }
188 | },
189 | "node_modules/@next/swc-darwin-arm64": {
190 | "version": "13.4.4",
191 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.4.tgz",
192 | "integrity": "sha512-xfjgXvp4KalNUKZMHmsFxr1Ug+aGmmO6NWP0uoh4G3WFqP/mJ1xxfww0gMOeMeSq/Jyr5k7DvoZ2Pv+XOITTtw==",
193 | "cpu": [
194 | "arm64"
195 | ],
196 | "optional": true,
197 | "os": [
198 | "darwin"
199 | ],
200 | "engines": {
201 | "node": ">= 10"
202 | }
203 | },
204 | "node_modules/@next/swc-darwin-x64": {
205 | "version": "13.4.4",
206 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.4.tgz",
207 | "integrity": "sha512-ZY9Ti1hkIwJsxGus3nlubIkvYyB0gNOYxKrfsOrLEqD0I2iCX8D7w8v6QQZ2H+dDl6UT29oeEUdDUNGk4UEpfg==",
208 | "cpu": [
209 | "x64"
210 | ],
211 | "optional": true,
212 | "os": [
213 | "darwin"
214 | ],
215 | "engines": {
216 | "node": ">= 10"
217 | }
218 | },
219 | "node_modules/@next/swc-linux-arm64-gnu": {
220 | "version": "13.4.4",
221 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.4.tgz",
222 | "integrity": "sha512-+KZnDeMShYkpkqAvGCEDeqYTRADJXc6SY1jWXz+Uo6qWQO/Jd9CoyhTJwRSxvQA16MoYzvILkGaDqirkRNctyA==",
223 | "cpu": [
224 | "arm64"
225 | ],
226 | "optional": true,
227 | "os": [
228 | "linux"
229 | ],
230 | "engines": {
231 | "node": ">= 10"
232 | }
233 | },
234 | "node_modules/@next/swc-linux-arm64-musl": {
235 | "version": "13.4.4",
236 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.4.tgz",
237 | "integrity": "sha512-evC1twrny2XDT4uOftoubZvW3EG0zs0ZxMwEtu/dDGVRO5n5pT48S8qqEIBGBUZYu/Xx4zzpOkIxx1vpWdE+9A==",
238 | "cpu": [
239 | "arm64"
240 | ],
241 | "optional": true,
242 | "os": [
243 | "linux"
244 | ],
245 | "engines": {
246 | "node": ">= 10"
247 | }
248 | },
249 | "node_modules/@next/swc-linux-x64-gnu": {
250 | "version": "13.4.4",
251 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.4.tgz",
252 | "integrity": "sha512-PX706XcCHr2FfkyhP2lpf+pX/tUvq6/ke7JYnnr0ykNdEMo+sb7cC/o91gnURh4sPYSiZJhsF2gbIqg9rciOHQ==",
253 | "cpu": [
254 | "x64"
255 | ],
256 | "optional": true,
257 | "os": [
258 | "linux"
259 | ],
260 | "engines": {
261 | "node": ">= 10"
262 | }
263 | },
264 | "node_modules/@next/swc-linux-x64-musl": {
265 | "version": "13.4.4",
266 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.4.tgz",
267 | "integrity": "sha512-TKUUx3Ftd95JlHV6XagEnqpT204Y+IsEa3awaYIjayn0MOGjgKZMZibqarK3B1FsMSPaieJf2FEAcu9z0yT5aA==",
268 | "cpu": [
269 | "x64"
270 | ],
271 | "optional": true,
272 | "os": [
273 | "linux"
274 | ],
275 | "engines": {
276 | "node": ">= 10"
277 | }
278 | },
279 | "node_modules/@next/swc-win32-arm64-msvc": {
280 | "version": "13.4.4",
281 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.4.tgz",
282 | "integrity": "sha512-FP8AadgSq4+HPtim7WBkCMGbhr5vh9FePXiWx9+YOdjwdQocwoCK5ZVC3OW8oh3TWth6iJ0AXJ/yQ1q1cwSZ3A==",
283 | "cpu": [
284 | "arm64"
285 | ],
286 | "optional": true,
287 | "os": [
288 | "win32"
289 | ],
290 | "engines": {
291 | "node": ">= 10"
292 | }
293 | },
294 | "node_modules/@next/swc-win32-ia32-msvc": {
295 | "version": "13.4.4",
296 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.4.tgz",
297 | "integrity": "sha512-3WekVmtuA2MCdcAOrgrI+PuFiFURtSyyrN1I3UPtS0ckR2HtLqyqmS334Eulf15g1/bdwMteePdK363X/Y9JMg==",
298 | "cpu": [
299 | "ia32"
300 | ],
301 | "optional": true,
302 | "os": [
303 | "win32"
304 | ],
305 | "engines": {
306 | "node": ">= 10"
307 | }
308 | },
309 | "node_modules/@next/swc-win32-x64-msvc": {
310 | "version": "13.4.4",
311 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.4.tgz",
312 | "integrity": "sha512-AHRITu/CrlQ+qzoqQtEMfaTu7GHaQ6bziQln/pVWpOYC1wU+Mq6VQQFlsDtMCnDztPZtppAXdvvbNS7pcfRzlw==",
313 | "cpu": [
314 | "x64"
315 | ],
316 | "optional": true,
317 | "os": [
318 | "win32"
319 | ],
320 | "engines": {
321 | "node": ">= 10"
322 | }
323 | },
324 | "node_modules/@nodelib/fs.scandir": {
325 | "version": "2.1.5",
326 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
327 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
328 | "dependencies": {
329 | "@nodelib/fs.stat": "2.0.5",
330 | "run-parallel": "^1.1.9"
331 | },
332 | "engines": {
333 | "node": ">= 8"
334 | }
335 | },
336 | "node_modules/@nodelib/fs.stat": {
337 | "version": "2.0.5",
338 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
339 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
340 | "engines": {
341 | "node": ">= 8"
342 | }
343 | },
344 | "node_modules/@nodelib/fs.walk": {
345 | "version": "1.2.8",
346 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
347 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
348 | "dependencies": {
349 | "@nodelib/fs.scandir": "2.1.5",
350 | "fastq": "^1.6.0"
351 | },
352 | "engines": {
353 | "node": ">= 8"
354 | }
355 | },
356 | "node_modules/@pkgr/utils": {
357 | "version": "2.4.1",
358 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.1.tgz",
359 | "integrity": "sha512-JOqwkgFEyi+OROIyq7l4Jy28h/WwhDnG/cPkXG2Z1iFbubB6jsHW1NDvmyOzTBxHr3yg68YGirmh1JUgMqa+9w==",
360 | "dependencies": {
361 | "cross-spawn": "^7.0.3",
362 | "fast-glob": "^3.2.12",
363 | "is-glob": "^4.0.3",
364 | "open": "^9.1.0",
365 | "picocolors": "^1.0.0",
366 | "tslib": "^2.5.0"
367 | },
368 | "engines": {
369 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
370 | },
371 | "funding": {
372 | "url": "https://opencollective.com/unts"
373 | }
374 | },
375 | "node_modules/@rushstack/eslint-patch": {
376 | "version": "1.3.0",
377 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.0.tgz",
378 | "integrity": "sha512-IthPJsJR85GhOkp3Hvp8zFOPK5ynKn6STyHa/WZpioK7E1aYDiBzpqQPrngc14DszIUkIrdd3k9Iu0XSzlP/1w=="
379 | },
380 | "node_modules/@swc/helpers": {
381 | "version": "0.5.1",
382 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz",
383 | "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==",
384 | "dependencies": {
385 | "tslib": "^2.4.0"
386 | }
387 | },
388 | "node_modules/@types/chai": {
389 | "version": "4.3.5",
390 | "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.5.tgz",
391 | "integrity": "sha512-mEo1sAde+UCE6b2hxn332f1g1E8WfYRu6p5SvTKr2ZKC1f7gFJXk4h5PyGP9Dt6gCaG8y8XhwnXWC6Iy2cmBng=="
392 | },
393 | "node_modules/@types/cookiejar": {
394 | "version": "2.1.2",
395 | "resolved": "https://registry.npmjs.org/@types/cookiejar/-/cookiejar-2.1.2.tgz",
396 | "integrity": "sha512-t73xJJrvdTjXrn4jLS9VSGRbz0nUY3cl2DMGDU48lKl+HR9dbbjW2A9r3g40VA++mQpy6uuHg33gy7du2BKpog=="
397 | },
398 | "node_modules/@types/json5": {
399 | "version": "0.0.29",
400 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
401 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
402 | },
403 | "node_modules/@types/node": {
404 | "version": "20.2.5",
405 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.2.5.tgz",
406 | "integrity": "sha512-JJulVEQXmiY9Px5axXHeYGLSjhkZEnD+MDPDGbCbIAbMslkKwmygtZFy1X6s/075Yo94sf8GuSlFfPzysQrWZQ=="
407 | },
408 | "node_modules/@types/superagent": {
409 | "version": "3.8.7",
410 | "resolved": "https://registry.npmjs.org/@types/superagent/-/superagent-3.8.7.tgz",
411 | "integrity": "sha512-9KhCkyXv268A2nZ1Wvu7rQWM+BmdYUVkycFeNnYrUL5Zwu7o8wPQ3wBfW59dDP+wuoxw0ww8YKgTNv8j/cgscA==",
412 | "dependencies": {
413 | "@types/cookiejar": "*",
414 | "@types/node": "*"
415 | }
416 | },
417 | "node_modules/@typescript-eslint/parser": {
418 | "version": "5.59.7",
419 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.59.7.tgz",
420 | "integrity": "sha512-VhpsIEuq/8i5SF+mPg9jSdIwgMBBp0z9XqjiEay+81PYLJuroN+ET1hM5IhkiYMJd9MkTz8iJLt7aaGAgzWUbQ==",
421 | "dependencies": {
422 | "@typescript-eslint/scope-manager": "5.59.7",
423 | "@typescript-eslint/types": "5.59.7",
424 | "@typescript-eslint/typescript-estree": "5.59.7",
425 | "debug": "^4.3.4"
426 | },
427 | "engines": {
428 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
429 | },
430 | "funding": {
431 | "type": "opencollective",
432 | "url": "https://opencollective.com/typescript-eslint"
433 | },
434 | "peerDependencies": {
435 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
436 | },
437 | "peerDependenciesMeta": {
438 | "typescript": {
439 | "optional": true
440 | }
441 | }
442 | },
443 | "node_modules/@typescript-eslint/scope-manager": {
444 | "version": "5.59.7",
445 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.59.7.tgz",
446 | "integrity": "sha512-FL6hkYWK9zBGdxT2wWEd2W8ocXMu3K94i3gvMrjXpx+koFYdYV7KprKfirpgY34vTGzEPPuKoERpP8kD5h7vZQ==",
447 | "dependencies": {
448 | "@typescript-eslint/types": "5.59.7",
449 | "@typescript-eslint/visitor-keys": "5.59.7"
450 | },
451 | "engines": {
452 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
453 | },
454 | "funding": {
455 | "type": "opencollective",
456 | "url": "https://opencollective.com/typescript-eslint"
457 | }
458 | },
459 | "node_modules/@typescript-eslint/types": {
460 | "version": "5.59.7",
461 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.59.7.tgz",
462 | "integrity": "sha512-UnVS2MRRg6p7xOSATscWkKjlf/NDKuqo5TdbWck6rIRZbmKpVNTLALzNvcjIfHBE7736kZOFc/4Z3VcZwuOM/A==",
463 | "engines": {
464 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
465 | },
466 | "funding": {
467 | "type": "opencollective",
468 | "url": "https://opencollective.com/typescript-eslint"
469 | }
470 | },
471 | "node_modules/@typescript-eslint/typescript-estree": {
472 | "version": "5.59.7",
473 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.7.tgz",
474 | "integrity": "sha512-4A1NtZ1I3wMN2UGDkU9HMBL+TIQfbrh4uS0WDMMpf3xMRursDbqEf1ahh6vAAe3mObt8k3ZATnezwG4pdtWuUQ==",
475 | "dependencies": {
476 | "@typescript-eslint/types": "5.59.7",
477 | "@typescript-eslint/visitor-keys": "5.59.7",
478 | "debug": "^4.3.4",
479 | "globby": "^11.1.0",
480 | "is-glob": "^4.0.3",
481 | "semver": "^7.3.7",
482 | "tsutils": "^3.21.0"
483 | },
484 | "engines": {
485 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
486 | },
487 | "funding": {
488 | "type": "opencollective",
489 | "url": "https://opencollective.com/typescript-eslint"
490 | },
491 | "peerDependenciesMeta": {
492 | "typescript": {
493 | "optional": true
494 | }
495 | }
496 | },
497 | "node_modules/@typescript-eslint/visitor-keys": {
498 | "version": "5.59.7",
499 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.7.tgz",
500 | "integrity": "sha512-tyN+X2jvMslUszIiYbF0ZleP+RqQsFVpGrKI6e0Eet1w8WmhsAtmzaqm8oM8WJQ1ysLwhnsK/4hYHJjOgJVfQQ==",
501 | "dependencies": {
502 | "@typescript-eslint/types": "5.59.7",
503 | "eslint-visitor-keys": "^3.3.0"
504 | },
505 | "engines": {
506 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
507 | },
508 | "funding": {
509 | "type": "opencollective",
510 | "url": "https://opencollective.com/typescript-eslint"
511 | }
512 | },
513 | "node_modules/acorn": {
514 | "version": "8.8.2",
515 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.2.tgz",
516 | "integrity": "sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw==",
517 | "bin": {
518 | "acorn": "bin/acorn"
519 | },
520 | "engines": {
521 | "node": ">=0.4.0"
522 | }
523 | },
524 | "node_modules/acorn-jsx": {
525 | "version": "5.3.2",
526 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
527 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
528 | "peerDependencies": {
529 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
530 | }
531 | },
532 | "node_modules/ajv": {
533 | "version": "6.12.6",
534 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
535 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
536 | "dependencies": {
537 | "fast-deep-equal": "^3.1.1",
538 | "fast-json-stable-stringify": "^2.0.0",
539 | "json-schema-traverse": "^0.4.1",
540 | "uri-js": "^4.2.2"
541 | },
542 | "funding": {
543 | "type": "github",
544 | "url": "https://github.com/sponsors/epoberezkin"
545 | }
546 | },
547 | "node_modules/ansi-colors": {
548 | "version": "4.1.1",
549 | "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz",
550 | "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==",
551 | "engines": {
552 | "node": ">=6"
553 | }
554 | },
555 | "node_modules/ansi-regex": {
556 | "version": "5.0.1",
557 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
558 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
559 | "engines": {
560 | "node": ">=8"
561 | }
562 | },
563 | "node_modules/ansi-styles": {
564 | "version": "4.3.0",
565 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
566 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
567 | "dependencies": {
568 | "color-convert": "^2.0.1"
569 | },
570 | "engines": {
571 | "node": ">=8"
572 | },
573 | "funding": {
574 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
575 | }
576 | },
577 | "node_modules/any-promise": {
578 | "version": "1.3.0",
579 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
580 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
581 | },
582 | "node_modules/anymatch": {
583 | "version": "3.1.3",
584 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
585 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
586 | "dependencies": {
587 | "normalize-path": "^3.0.0",
588 | "picomatch": "^2.0.4"
589 | },
590 | "engines": {
591 | "node": ">= 8"
592 | }
593 | },
594 | "node_modules/arg": {
595 | "version": "5.0.2",
596 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
597 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
598 | },
599 | "node_modules/argparse": {
600 | "version": "2.0.1",
601 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
602 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
603 | },
604 | "node_modules/aria-query": {
605 | "version": "5.1.3",
606 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz",
607 | "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==",
608 | "dependencies": {
609 | "deep-equal": "^2.0.5"
610 | }
611 | },
612 | "node_modules/array-buffer-byte-length": {
613 | "version": "1.0.0",
614 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz",
615 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==",
616 | "dependencies": {
617 | "call-bind": "^1.0.2",
618 | "is-array-buffer": "^3.0.1"
619 | },
620 | "funding": {
621 | "url": "https://github.com/sponsors/ljharb"
622 | }
623 | },
624 | "node_modules/array-includes": {
625 | "version": "3.1.6",
626 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
627 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
628 | "dependencies": {
629 | "call-bind": "^1.0.2",
630 | "define-properties": "^1.1.4",
631 | "es-abstract": "^1.20.4",
632 | "get-intrinsic": "^1.1.3",
633 | "is-string": "^1.0.7"
634 | },
635 | "engines": {
636 | "node": ">= 0.4"
637 | },
638 | "funding": {
639 | "url": "https://github.com/sponsors/ljharb"
640 | }
641 | },
642 | "node_modules/array-union": {
643 | "version": "2.1.0",
644 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
645 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
646 | "engines": {
647 | "node": ">=8"
648 | }
649 | },
650 | "node_modules/array.prototype.flat": {
651 | "version": "1.3.1",
652 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
653 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
654 | "dependencies": {
655 | "call-bind": "^1.0.2",
656 | "define-properties": "^1.1.4",
657 | "es-abstract": "^1.20.4",
658 | "es-shim-unscopables": "^1.0.0"
659 | },
660 | "engines": {
661 | "node": ">= 0.4"
662 | },
663 | "funding": {
664 | "url": "https://github.com/sponsors/ljharb"
665 | }
666 | },
667 | "node_modules/array.prototype.flatmap": {
668 | "version": "1.3.1",
669 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
670 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
671 | "dependencies": {
672 | "call-bind": "^1.0.2",
673 | "define-properties": "^1.1.4",
674 | "es-abstract": "^1.20.4",
675 | "es-shim-unscopables": "^1.0.0"
676 | },
677 | "engines": {
678 | "node": ">= 0.4"
679 | },
680 | "funding": {
681 | "url": "https://github.com/sponsors/ljharb"
682 | }
683 | },
684 | "node_modules/array.prototype.tosorted": {
685 | "version": "1.1.1",
686 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz",
687 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==",
688 | "dependencies": {
689 | "call-bind": "^1.0.2",
690 | "define-properties": "^1.1.4",
691 | "es-abstract": "^1.20.4",
692 | "es-shim-unscopables": "^1.0.0",
693 | "get-intrinsic": "^1.1.3"
694 | }
695 | },
696 | "node_modules/assertion-error": {
697 | "version": "1.1.0",
698 | "resolved": "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz",
699 | "integrity": "sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==",
700 | "engines": {
701 | "node": "*"
702 | }
703 | },
704 | "node_modules/ast-types-flow": {
705 | "version": "0.0.7",
706 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
707 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag=="
708 | },
709 | "node_modules/asynckit": {
710 | "version": "0.4.0",
711 | "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
712 | "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="
713 | },
714 | "node_modules/autoprefixer": {
715 | "version": "10.4.14",
716 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz",
717 | "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==",
718 | "funding": [
719 | {
720 | "type": "opencollective",
721 | "url": "https://opencollective.com/postcss/"
722 | },
723 | {
724 | "type": "tidelift",
725 | "url": "https://tidelift.com/funding/github/npm/autoprefixer"
726 | }
727 | ],
728 | "dependencies": {
729 | "browserslist": "^4.21.5",
730 | "caniuse-lite": "^1.0.30001464",
731 | "fraction.js": "^4.2.0",
732 | "normalize-range": "^0.1.2",
733 | "picocolors": "^1.0.0",
734 | "postcss-value-parser": "^4.2.0"
735 | },
736 | "bin": {
737 | "autoprefixer": "bin/autoprefixer"
738 | },
739 | "engines": {
740 | "node": "^10 || ^12 || >=14"
741 | },
742 | "peerDependencies": {
743 | "postcss": "^8.1.0"
744 | }
745 | },
746 | "node_modules/available-typed-arrays": {
747 | "version": "1.0.5",
748 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
749 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
750 | "engines": {
751 | "node": ">= 0.4"
752 | },
753 | "funding": {
754 | "url": "https://github.com/sponsors/ljharb"
755 | }
756 | },
757 | "node_modules/axe-core": {
758 | "version": "4.7.2",
759 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz",
760 | "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==",
761 | "engines": {
762 | "node": ">=4"
763 | }
764 | },
765 | "node_modules/axobject-query": {
766 | "version": "3.1.1",
767 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.1.1.tgz",
768 | "integrity": "sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==",
769 | "dependencies": {
770 | "deep-equal": "^2.0.5"
771 | }
772 | },
773 | "node_modules/balanced-match": {
774 | "version": "1.0.2",
775 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
776 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
777 | },
778 | "node_modules/big-integer": {
779 | "version": "1.6.51",
780 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz",
781 | "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==",
782 | "engines": {
783 | "node": ">=0.6"
784 | }
785 | },
786 | "node_modules/binary-extensions": {
787 | "version": "2.2.0",
788 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
789 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
790 | "engines": {
791 | "node": ">=8"
792 | }
793 | },
794 | "node_modules/bplist-parser": {
795 | "version": "0.2.0",
796 | "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz",
797 | "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==",
798 | "dependencies": {
799 | "big-integer": "^1.6.44"
800 | },
801 | "engines": {
802 | "node": ">= 5.10.0"
803 | }
804 | },
805 | "node_modules/brace-expansion": {
806 | "version": "1.1.11",
807 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
808 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
809 | "dependencies": {
810 | "balanced-match": "^1.0.0",
811 | "concat-map": "0.0.1"
812 | }
813 | },
814 | "node_modules/braces": {
815 | "version": "3.0.2",
816 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
817 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
818 | "dependencies": {
819 | "fill-range": "^7.0.1"
820 | },
821 | "engines": {
822 | "node": ">=8"
823 | }
824 | },
825 | "node_modules/browser-stdout": {
826 | "version": "1.3.1",
827 | "resolved": "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz",
828 | "integrity": "sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="
829 | },
830 | "node_modules/browserslist": {
831 | "version": "4.21.7",
832 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.7.tgz",
833 | "integrity": "sha512-BauCXrQ7I2ftSqd2mvKHGo85XR0u7Ru3C/Hxsy/0TkfCtjrmAbPdzLGasmoiBxplpDXlPvdjX9u7srIMfgasNA==",
834 | "funding": [
835 | {
836 | "type": "opencollective",
837 | "url": "https://opencollective.com/browserslist"
838 | },
839 | {
840 | "type": "tidelift",
841 | "url": "https://tidelift.com/funding/github/npm/browserslist"
842 | },
843 | {
844 | "type": "github",
845 | "url": "https://github.com/sponsors/ai"
846 | }
847 | ],
848 | "dependencies": {
849 | "caniuse-lite": "^1.0.30001489",
850 | "electron-to-chromium": "^1.4.411",
851 | "node-releases": "^2.0.12",
852 | "update-browserslist-db": "^1.0.11"
853 | },
854 | "bin": {
855 | "browserslist": "cli.js"
856 | },
857 | "engines": {
858 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
859 | }
860 | },
861 | "node_modules/bundle-name": {
862 | "version": "3.0.0",
863 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz",
864 | "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==",
865 | "dependencies": {
866 | "run-applescript": "^5.0.0"
867 | },
868 | "engines": {
869 | "node": ">=12"
870 | },
871 | "funding": {
872 | "url": "https://github.com/sponsors/sindresorhus"
873 | }
874 | },
875 | "node_modules/busboy": {
876 | "version": "1.6.0",
877 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
878 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
879 | "dependencies": {
880 | "streamsearch": "^1.1.0"
881 | },
882 | "engines": {
883 | "node": ">=10.16.0"
884 | }
885 | },
886 | "node_modules/call-bind": {
887 | "version": "1.0.2",
888 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
889 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
890 | "dependencies": {
891 | "function-bind": "^1.1.1",
892 | "get-intrinsic": "^1.0.2"
893 | },
894 | "funding": {
895 | "url": "https://github.com/sponsors/ljharb"
896 | }
897 | },
898 | "node_modules/callsites": {
899 | "version": "3.1.0",
900 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
901 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
902 | "engines": {
903 | "node": ">=6"
904 | }
905 | },
906 | "node_modules/camelcase": {
907 | "version": "6.3.0",
908 | "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz",
909 | "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==",
910 | "engines": {
911 | "node": ">=10"
912 | },
913 | "funding": {
914 | "url": "https://github.com/sponsors/sindresorhus"
915 | }
916 | },
917 | "node_modules/camelcase-css": {
918 | "version": "2.0.1",
919 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
920 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
921 | "engines": {
922 | "node": ">= 6"
923 | }
924 | },
925 | "node_modules/caniuse-lite": {
926 | "version": "1.0.30001489",
927 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001489.tgz",
928 | "integrity": "sha512-x1mgZEXK8jHIfAxm+xgdpHpk50IN3z3q3zP261/WS+uvePxW8izXuCu6AHz0lkuYTlATDehiZ/tNyYBdSQsOUQ==",
929 | "funding": [
930 | {
931 | "type": "opencollective",
932 | "url": "https://opencollective.com/browserslist"
933 | },
934 | {
935 | "type": "tidelift",
936 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
937 | },
938 | {
939 | "type": "github",
940 | "url": "https://github.com/sponsors/ai"
941 | }
942 | ]
943 | },
944 | "node_modules/chai": {
945 | "version": "4.3.7",
946 | "resolved": "https://registry.npmjs.org/chai/-/chai-4.3.7.tgz",
947 | "integrity": "sha512-HLnAzZ2iupm25PlN0xFreAlBA5zaBSv3og0DdeGA4Ar6h6rJ3A0rolRUKJhSF2V10GZKDgWF/VmAEsNWjCRB+A==",
948 | "dependencies": {
949 | "assertion-error": "^1.1.0",
950 | "check-error": "^1.0.2",
951 | "deep-eql": "^4.1.2",
952 | "get-func-name": "^2.0.0",
953 | "loupe": "^2.3.1",
954 | "pathval": "^1.1.1",
955 | "type-detect": "^4.0.5"
956 | },
957 | "engines": {
958 | "node": ">=4"
959 | }
960 | },
961 | "node_modules/chai-http": {
962 | "version": "4.3.0",
963 | "resolved": "https://registry.npmjs.org/chai-http/-/chai-http-4.3.0.tgz",
964 | "integrity": "sha512-zFTxlN7HLMv+7+SPXZdkd5wUlK+KxH6Q7bIEMiEx0FK3zuuMqL7cwICAQ0V1+yYRozBburYuxN1qZstgHpFZQg==",
965 | "dependencies": {
966 | "@types/chai": "4",
967 | "@types/superagent": "^3.8.3",
968 | "cookiejar": "^2.1.1",
969 | "is-ip": "^2.0.0",
970 | "methods": "^1.1.2",
971 | "qs": "^6.5.1",
972 | "superagent": "^3.7.0"
973 | },
974 | "engines": {
975 | "node": ">=4"
976 | }
977 | },
978 | "node_modules/chalk": {
979 | "version": "4.1.2",
980 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
981 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
982 | "dependencies": {
983 | "ansi-styles": "^4.1.0",
984 | "supports-color": "^7.1.0"
985 | },
986 | "engines": {
987 | "node": ">=10"
988 | },
989 | "funding": {
990 | "url": "https://github.com/chalk/chalk?sponsor=1"
991 | }
992 | },
993 | "node_modules/check-error": {
994 | "version": "1.0.2",
995 | "resolved": "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz",
996 | "integrity": "sha512-BrgHpW9NURQgzoNyjfq0Wu6VFO6D7IZEmJNdtgNqpzGG8RuNFHt2jQxWlAs4HMe119chBnv+34syEZtc6IhLtA==",
997 | "engines": {
998 | "node": "*"
999 | }
1000 | },
1001 | "node_modules/chokidar": {
1002 | "version": "3.5.3",
1003 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
1004 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
1005 | "funding": [
1006 | {
1007 | "type": "individual",
1008 | "url": "https://paulmillr.com/funding/"
1009 | }
1010 | ],
1011 | "dependencies": {
1012 | "anymatch": "~3.1.2",
1013 | "braces": "~3.0.2",
1014 | "glob-parent": "~5.1.2",
1015 | "is-binary-path": "~2.1.0",
1016 | "is-glob": "~4.0.1",
1017 | "normalize-path": "~3.0.0",
1018 | "readdirp": "~3.6.0"
1019 | },
1020 | "engines": {
1021 | "node": ">= 8.10.0"
1022 | },
1023 | "optionalDependencies": {
1024 | "fsevents": "~2.3.2"
1025 | }
1026 | },
1027 | "node_modules/chokidar/node_modules/glob-parent": {
1028 | "version": "5.1.2",
1029 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1030 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1031 | "dependencies": {
1032 | "is-glob": "^4.0.1"
1033 | },
1034 | "engines": {
1035 | "node": ">= 6"
1036 | }
1037 | },
1038 | "node_modules/client-only": {
1039 | "version": "0.0.1",
1040 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
1041 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
1042 | },
1043 | "node_modules/cliui": {
1044 | "version": "7.0.4",
1045 | "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz",
1046 | "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==",
1047 | "dependencies": {
1048 | "string-width": "^4.2.0",
1049 | "strip-ansi": "^6.0.0",
1050 | "wrap-ansi": "^7.0.0"
1051 | }
1052 | },
1053 | "node_modules/color-convert": {
1054 | "version": "2.0.1",
1055 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1056 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1057 | "dependencies": {
1058 | "color-name": "~1.1.4"
1059 | },
1060 | "engines": {
1061 | "node": ">=7.0.0"
1062 | }
1063 | },
1064 | "node_modules/color-name": {
1065 | "version": "1.1.4",
1066 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1067 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
1068 | },
1069 | "node_modules/combined-stream": {
1070 | "version": "1.0.8",
1071 | "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
1072 | "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
1073 | "dependencies": {
1074 | "delayed-stream": "~1.0.0"
1075 | },
1076 | "engines": {
1077 | "node": ">= 0.8"
1078 | }
1079 | },
1080 | "node_modules/commander": {
1081 | "version": "4.1.1",
1082 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
1083 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
1084 | "engines": {
1085 | "node": ">= 6"
1086 | }
1087 | },
1088 | "node_modules/component-emitter": {
1089 | "version": "1.3.0",
1090 | "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz",
1091 | "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="
1092 | },
1093 | "node_modules/concat-map": {
1094 | "version": "0.0.1",
1095 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1096 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
1097 | },
1098 | "node_modules/cookiejar": {
1099 | "version": "2.1.4",
1100 | "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.4.tgz",
1101 | "integrity": "sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw=="
1102 | },
1103 | "node_modules/core-util-is": {
1104 | "version": "1.0.3",
1105 | "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz",
1106 | "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="
1107 | },
1108 | "node_modules/cross-spawn": {
1109 | "version": "7.0.3",
1110 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
1111 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
1112 | "dependencies": {
1113 | "path-key": "^3.1.0",
1114 | "shebang-command": "^2.0.0",
1115 | "which": "^2.0.1"
1116 | },
1117 | "engines": {
1118 | "node": ">= 8"
1119 | }
1120 | },
1121 | "node_modules/cssesc": {
1122 | "version": "3.0.0",
1123 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
1124 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
1125 | "bin": {
1126 | "cssesc": "bin/cssesc"
1127 | },
1128 | "engines": {
1129 | "node": ">=4"
1130 | }
1131 | },
1132 | "node_modules/damerau-levenshtein": {
1133 | "version": "1.0.8",
1134 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
1135 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="
1136 | },
1137 | "node_modules/debug": {
1138 | "version": "4.3.4",
1139 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
1140 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
1141 | "dependencies": {
1142 | "ms": "2.1.2"
1143 | },
1144 | "engines": {
1145 | "node": ">=6.0"
1146 | },
1147 | "peerDependenciesMeta": {
1148 | "supports-color": {
1149 | "optional": true
1150 | }
1151 | }
1152 | },
1153 | "node_modules/decamelize": {
1154 | "version": "4.0.0",
1155 | "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-4.0.0.tgz",
1156 | "integrity": "sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==",
1157 | "engines": {
1158 | "node": ">=10"
1159 | },
1160 | "funding": {
1161 | "url": "https://github.com/sponsors/sindresorhus"
1162 | }
1163 | },
1164 | "node_modules/deep-eql": {
1165 | "version": "4.1.3",
1166 | "resolved": "https://registry.npmjs.org/deep-eql/-/deep-eql-4.1.3.tgz",
1167 | "integrity": "sha512-WaEtAOpRA1MQ0eohqZjpGD8zdI0Ovsm8mmFhaDN8dvDZzyoUMcYDnf5Y6iu7HTXxf8JDS23qWa4a+hKCDyOPzw==",
1168 | "dependencies": {
1169 | "type-detect": "^4.0.0"
1170 | },
1171 | "engines": {
1172 | "node": ">=6"
1173 | }
1174 | },
1175 | "node_modules/deep-equal": {
1176 | "version": "2.2.1",
1177 | "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.1.tgz",
1178 | "integrity": "sha512-lKdkdV6EOGoVn65XaOsPdH4rMxTZOnmFyuIkMjM1i5HHCbfjC97dawgTAy0deYNfuqUqW+Q5VrVaQYtUpSd6yQ==",
1179 | "dependencies": {
1180 | "array-buffer-byte-length": "^1.0.0",
1181 | "call-bind": "^1.0.2",
1182 | "es-get-iterator": "^1.1.3",
1183 | "get-intrinsic": "^1.2.0",
1184 | "is-arguments": "^1.1.1",
1185 | "is-array-buffer": "^3.0.2",
1186 | "is-date-object": "^1.0.5",
1187 | "is-regex": "^1.1.4",
1188 | "is-shared-array-buffer": "^1.0.2",
1189 | "isarray": "^2.0.5",
1190 | "object-is": "^1.1.5",
1191 | "object-keys": "^1.1.1",
1192 | "object.assign": "^4.1.4",
1193 | "regexp.prototype.flags": "^1.5.0",
1194 | "side-channel": "^1.0.4",
1195 | "which-boxed-primitive": "^1.0.2",
1196 | "which-collection": "^1.0.1",
1197 | "which-typed-array": "^1.1.9"
1198 | },
1199 | "funding": {
1200 | "url": "https://github.com/sponsors/ljharb"
1201 | }
1202 | },
1203 | "node_modules/deep-is": {
1204 | "version": "0.1.4",
1205 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1206 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
1207 | },
1208 | "node_modules/default-browser": {
1209 | "version": "4.0.0",
1210 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz",
1211 | "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==",
1212 | "dependencies": {
1213 | "bundle-name": "^3.0.0",
1214 | "default-browser-id": "^3.0.0",
1215 | "execa": "^7.1.1",
1216 | "titleize": "^3.0.0"
1217 | },
1218 | "engines": {
1219 | "node": ">=14.16"
1220 | },
1221 | "funding": {
1222 | "url": "https://github.com/sponsors/sindresorhus"
1223 | }
1224 | },
1225 | "node_modules/default-browser-id": {
1226 | "version": "3.0.0",
1227 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz",
1228 | "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==",
1229 | "dependencies": {
1230 | "bplist-parser": "^0.2.0",
1231 | "untildify": "^4.0.0"
1232 | },
1233 | "engines": {
1234 | "node": ">=12"
1235 | },
1236 | "funding": {
1237 | "url": "https://github.com/sponsors/sindresorhus"
1238 | }
1239 | },
1240 | "node_modules/define-lazy-prop": {
1241 | "version": "3.0.0",
1242 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
1243 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
1244 | "engines": {
1245 | "node": ">=12"
1246 | },
1247 | "funding": {
1248 | "url": "https://github.com/sponsors/sindresorhus"
1249 | }
1250 | },
1251 | "node_modules/define-properties": {
1252 | "version": "1.2.0",
1253 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz",
1254 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==",
1255 | "dependencies": {
1256 | "has-property-descriptors": "^1.0.0",
1257 | "object-keys": "^1.1.1"
1258 | },
1259 | "engines": {
1260 | "node": ">= 0.4"
1261 | },
1262 | "funding": {
1263 | "url": "https://github.com/sponsors/ljharb"
1264 | }
1265 | },
1266 | "node_modules/delayed-stream": {
1267 | "version": "1.0.0",
1268 | "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
1269 | "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==",
1270 | "engines": {
1271 | "node": ">=0.4.0"
1272 | }
1273 | },
1274 | "node_modules/didyoumean": {
1275 | "version": "1.2.2",
1276 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
1277 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="
1278 | },
1279 | "node_modules/diff": {
1280 | "version": "5.0.0",
1281 | "resolved": "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz",
1282 | "integrity": "sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w==",
1283 | "engines": {
1284 | "node": ">=0.3.1"
1285 | }
1286 | },
1287 | "node_modules/dir-glob": {
1288 | "version": "3.0.1",
1289 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
1290 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
1291 | "dependencies": {
1292 | "path-type": "^4.0.0"
1293 | },
1294 | "engines": {
1295 | "node": ">=8"
1296 | }
1297 | },
1298 | "node_modules/dlv": {
1299 | "version": "1.1.3",
1300 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
1301 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="
1302 | },
1303 | "node_modules/doctrine": {
1304 | "version": "3.0.0",
1305 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
1306 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
1307 | "dependencies": {
1308 | "esutils": "^2.0.2"
1309 | },
1310 | "engines": {
1311 | "node": ">=6.0.0"
1312 | }
1313 | },
1314 | "node_modules/electron-to-chromium": {
1315 | "version": "1.4.411",
1316 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.411.tgz",
1317 | "integrity": "sha512-5VXLW4Qw89vM2WTICHua/y8v7fKGDRVa2VPOtBB9IpLvW316B+xd8yD1wTmLPY2ot/00P/qt87xdolj4aG/Lzg=="
1318 | },
1319 | "node_modules/emoji-regex": {
1320 | "version": "9.2.2",
1321 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
1322 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
1323 | },
1324 | "node_modules/enhanced-resolve": {
1325 | "version": "5.14.1",
1326 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.14.1.tgz",
1327 | "integrity": "sha512-Vklwq2vDKtl0y/vtwjSesgJ5MYS7Etuk5txS8VdKL4AOS1aUlD96zqIfsOSLQsdv3xgMRbtkWM8eG9XDfKUPow==",
1328 | "dependencies": {
1329 | "graceful-fs": "^4.2.4",
1330 | "tapable": "^2.2.0"
1331 | },
1332 | "engines": {
1333 | "node": ">=10.13.0"
1334 | }
1335 | },
1336 | "node_modules/es-abstract": {
1337 | "version": "1.21.2",
1338 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.2.tgz",
1339 | "integrity": "sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg==",
1340 | "dependencies": {
1341 | "array-buffer-byte-length": "^1.0.0",
1342 | "available-typed-arrays": "^1.0.5",
1343 | "call-bind": "^1.0.2",
1344 | "es-set-tostringtag": "^2.0.1",
1345 | "es-to-primitive": "^1.2.1",
1346 | "function.prototype.name": "^1.1.5",
1347 | "get-intrinsic": "^1.2.0",
1348 | "get-symbol-description": "^1.0.0",
1349 | "globalthis": "^1.0.3",
1350 | "gopd": "^1.0.1",
1351 | "has": "^1.0.3",
1352 | "has-property-descriptors": "^1.0.0",
1353 | "has-proto": "^1.0.1",
1354 | "has-symbols": "^1.0.3",
1355 | "internal-slot": "^1.0.5",
1356 | "is-array-buffer": "^3.0.2",
1357 | "is-callable": "^1.2.7",
1358 | "is-negative-zero": "^2.0.2",
1359 | "is-regex": "^1.1.4",
1360 | "is-shared-array-buffer": "^1.0.2",
1361 | "is-string": "^1.0.7",
1362 | "is-typed-array": "^1.1.10",
1363 | "is-weakref": "^1.0.2",
1364 | "object-inspect": "^1.12.3",
1365 | "object-keys": "^1.1.1",
1366 | "object.assign": "^4.1.4",
1367 | "regexp.prototype.flags": "^1.4.3",
1368 | "safe-regex-test": "^1.0.0",
1369 | "string.prototype.trim": "^1.2.7",
1370 | "string.prototype.trimend": "^1.0.6",
1371 | "string.prototype.trimstart": "^1.0.6",
1372 | "typed-array-length": "^1.0.4",
1373 | "unbox-primitive": "^1.0.2",
1374 | "which-typed-array": "^1.1.9"
1375 | },
1376 | "engines": {
1377 | "node": ">= 0.4"
1378 | },
1379 | "funding": {
1380 | "url": "https://github.com/sponsors/ljharb"
1381 | }
1382 | },
1383 | "node_modules/es-get-iterator": {
1384 | "version": "1.1.3",
1385 | "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz",
1386 | "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==",
1387 | "dependencies": {
1388 | "call-bind": "^1.0.2",
1389 | "get-intrinsic": "^1.1.3",
1390 | "has-symbols": "^1.0.3",
1391 | "is-arguments": "^1.1.1",
1392 | "is-map": "^2.0.2",
1393 | "is-set": "^2.0.2",
1394 | "is-string": "^1.0.7",
1395 | "isarray": "^2.0.5",
1396 | "stop-iteration-iterator": "^1.0.0"
1397 | },
1398 | "funding": {
1399 | "url": "https://github.com/sponsors/ljharb"
1400 | }
1401 | },
1402 | "node_modules/es-set-tostringtag": {
1403 | "version": "2.0.1",
1404 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz",
1405 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==",
1406 | "dependencies": {
1407 | "get-intrinsic": "^1.1.3",
1408 | "has": "^1.0.3",
1409 | "has-tostringtag": "^1.0.0"
1410 | },
1411 | "engines": {
1412 | "node": ">= 0.4"
1413 | }
1414 | },
1415 | "node_modules/es-shim-unscopables": {
1416 | "version": "1.0.0",
1417 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz",
1418 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==",
1419 | "dependencies": {
1420 | "has": "^1.0.3"
1421 | }
1422 | },
1423 | "node_modules/es-to-primitive": {
1424 | "version": "1.2.1",
1425 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
1426 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
1427 | "dependencies": {
1428 | "is-callable": "^1.1.4",
1429 | "is-date-object": "^1.0.1",
1430 | "is-symbol": "^1.0.2"
1431 | },
1432 | "engines": {
1433 | "node": ">= 0.4"
1434 | },
1435 | "funding": {
1436 | "url": "https://github.com/sponsors/ljharb"
1437 | }
1438 | },
1439 | "node_modules/escalade": {
1440 | "version": "3.1.1",
1441 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
1442 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
1443 | "engines": {
1444 | "node": ">=6"
1445 | }
1446 | },
1447 | "node_modules/escape-string-regexp": {
1448 | "version": "4.0.0",
1449 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1450 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1451 | "engines": {
1452 | "node": ">=10"
1453 | },
1454 | "funding": {
1455 | "url": "https://github.com/sponsors/sindresorhus"
1456 | }
1457 | },
1458 | "node_modules/eslint": {
1459 | "version": "8.41.0",
1460 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.41.0.tgz",
1461 | "integrity": "sha512-WQDQpzGBOP5IrXPo4Hc0814r4/v2rrIsB0rhT7jtunIalgg6gYXWhRMOejVO8yH21T/FGaxjmFjBMNqcIlmH1Q==",
1462 | "dependencies": {
1463 | "@eslint-community/eslint-utils": "^4.2.0",
1464 | "@eslint-community/regexpp": "^4.4.0",
1465 | "@eslint/eslintrc": "^2.0.3",
1466 | "@eslint/js": "8.41.0",
1467 | "@humanwhocodes/config-array": "^0.11.8",
1468 | "@humanwhocodes/module-importer": "^1.0.1",
1469 | "@nodelib/fs.walk": "^1.2.8",
1470 | "ajv": "^6.10.0",
1471 | "chalk": "^4.0.0",
1472 | "cross-spawn": "^7.0.2",
1473 | "debug": "^4.3.2",
1474 | "doctrine": "^3.0.0",
1475 | "escape-string-regexp": "^4.0.0",
1476 | "eslint-scope": "^7.2.0",
1477 | "eslint-visitor-keys": "^3.4.1",
1478 | "espree": "^9.5.2",
1479 | "esquery": "^1.4.2",
1480 | "esutils": "^2.0.2",
1481 | "fast-deep-equal": "^3.1.3",
1482 | "file-entry-cache": "^6.0.1",
1483 | "find-up": "^5.0.0",
1484 | "glob-parent": "^6.0.2",
1485 | "globals": "^13.19.0",
1486 | "graphemer": "^1.4.0",
1487 | "ignore": "^5.2.0",
1488 | "import-fresh": "^3.0.0",
1489 | "imurmurhash": "^0.1.4",
1490 | "is-glob": "^4.0.0",
1491 | "is-path-inside": "^3.0.3",
1492 | "js-yaml": "^4.1.0",
1493 | "json-stable-stringify-without-jsonify": "^1.0.1",
1494 | "levn": "^0.4.1",
1495 | "lodash.merge": "^4.6.2",
1496 | "minimatch": "^3.1.2",
1497 | "natural-compare": "^1.4.0",
1498 | "optionator": "^0.9.1",
1499 | "strip-ansi": "^6.0.1",
1500 | "strip-json-comments": "^3.1.0",
1501 | "text-table": "^0.2.0"
1502 | },
1503 | "bin": {
1504 | "eslint": "bin/eslint.js"
1505 | },
1506 | "engines": {
1507 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1508 | },
1509 | "funding": {
1510 | "url": "https://opencollective.com/eslint"
1511 | }
1512 | },
1513 | "node_modules/eslint-config-next": {
1514 | "version": "13.4.4",
1515 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.4.tgz",
1516 | "integrity": "sha512-z/PMbm6L0iC/fwISULxe8IVy4DtNqZk2wQY711o35klenq70O6ns82A8yuMVCFjHC0DIyB2lyugesRtuk9u8dQ==",
1517 | "dependencies": {
1518 | "@next/eslint-plugin-next": "13.4.4",
1519 | "@rushstack/eslint-patch": "^1.1.3",
1520 | "@typescript-eslint/parser": "^5.42.0",
1521 | "eslint-import-resolver-node": "^0.3.6",
1522 | "eslint-import-resolver-typescript": "^3.5.2",
1523 | "eslint-plugin-import": "^2.26.0",
1524 | "eslint-plugin-jsx-a11y": "^6.5.1",
1525 | "eslint-plugin-react": "^7.31.7",
1526 | "eslint-plugin-react-hooks": "^4.5.0"
1527 | },
1528 | "peerDependencies": {
1529 | "eslint": "^7.23.0 || ^8.0.0",
1530 | "typescript": ">=3.3.1"
1531 | },
1532 | "peerDependenciesMeta": {
1533 | "typescript": {
1534 | "optional": true
1535 | }
1536 | }
1537 | },
1538 | "node_modules/eslint-import-resolver-node": {
1539 | "version": "0.3.7",
1540 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz",
1541 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==",
1542 | "dependencies": {
1543 | "debug": "^3.2.7",
1544 | "is-core-module": "^2.11.0",
1545 | "resolve": "^1.22.1"
1546 | }
1547 | },
1548 | "node_modules/eslint-import-resolver-node/node_modules/debug": {
1549 | "version": "3.2.7",
1550 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1551 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1552 | "dependencies": {
1553 | "ms": "^2.1.1"
1554 | }
1555 | },
1556 | "node_modules/eslint-import-resolver-typescript": {
1557 | "version": "3.5.5",
1558 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz",
1559 | "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==",
1560 | "dependencies": {
1561 | "debug": "^4.3.4",
1562 | "enhanced-resolve": "^5.12.0",
1563 | "eslint-module-utils": "^2.7.4",
1564 | "get-tsconfig": "^4.5.0",
1565 | "globby": "^13.1.3",
1566 | "is-core-module": "^2.11.0",
1567 | "is-glob": "^4.0.3",
1568 | "synckit": "^0.8.5"
1569 | },
1570 | "engines": {
1571 | "node": "^14.18.0 || >=16.0.0"
1572 | },
1573 | "funding": {
1574 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts"
1575 | },
1576 | "peerDependencies": {
1577 | "eslint": "*",
1578 | "eslint-plugin-import": "*"
1579 | }
1580 | },
1581 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": {
1582 | "version": "13.1.4",
1583 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.1.4.tgz",
1584 | "integrity": "sha512-iui/IiiW+QrJ1X1hKH5qwlMQyv34wJAYwH1vrf8b9kBA4sNiif3gKsMHa+BrdnOpEudWjpotfa7LrTzB1ERS/g==",
1585 | "dependencies": {
1586 | "dir-glob": "^3.0.1",
1587 | "fast-glob": "^3.2.11",
1588 | "ignore": "^5.2.0",
1589 | "merge2": "^1.4.1",
1590 | "slash": "^4.0.0"
1591 | },
1592 | "engines": {
1593 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1594 | },
1595 | "funding": {
1596 | "url": "https://github.com/sponsors/sindresorhus"
1597 | }
1598 | },
1599 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": {
1600 | "version": "4.0.0",
1601 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
1602 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
1603 | "engines": {
1604 | "node": ">=12"
1605 | },
1606 | "funding": {
1607 | "url": "https://github.com/sponsors/sindresorhus"
1608 | }
1609 | },
1610 | "node_modules/eslint-module-utils": {
1611 | "version": "2.8.0",
1612 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz",
1613 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==",
1614 | "dependencies": {
1615 | "debug": "^3.2.7"
1616 | },
1617 | "engines": {
1618 | "node": ">=4"
1619 | },
1620 | "peerDependenciesMeta": {
1621 | "eslint": {
1622 | "optional": true
1623 | }
1624 | }
1625 | },
1626 | "node_modules/eslint-module-utils/node_modules/debug": {
1627 | "version": "3.2.7",
1628 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1629 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1630 | "dependencies": {
1631 | "ms": "^2.1.1"
1632 | }
1633 | },
1634 | "node_modules/eslint-plugin-import": {
1635 | "version": "2.27.5",
1636 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz",
1637 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==",
1638 | "dependencies": {
1639 | "array-includes": "^3.1.6",
1640 | "array.prototype.flat": "^1.3.1",
1641 | "array.prototype.flatmap": "^1.3.1",
1642 | "debug": "^3.2.7",
1643 | "doctrine": "^2.1.0",
1644 | "eslint-import-resolver-node": "^0.3.7",
1645 | "eslint-module-utils": "^2.7.4",
1646 | "has": "^1.0.3",
1647 | "is-core-module": "^2.11.0",
1648 | "is-glob": "^4.0.3",
1649 | "minimatch": "^3.1.2",
1650 | "object.values": "^1.1.6",
1651 | "resolve": "^1.22.1",
1652 | "semver": "^6.3.0",
1653 | "tsconfig-paths": "^3.14.1"
1654 | },
1655 | "engines": {
1656 | "node": ">=4"
1657 | },
1658 | "peerDependencies": {
1659 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
1660 | }
1661 | },
1662 | "node_modules/eslint-plugin-import/node_modules/debug": {
1663 | "version": "3.2.7",
1664 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1665 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1666 | "dependencies": {
1667 | "ms": "^2.1.1"
1668 | }
1669 | },
1670 | "node_modules/eslint-plugin-import/node_modules/doctrine": {
1671 | "version": "2.1.0",
1672 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
1673 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
1674 | "dependencies": {
1675 | "esutils": "^2.0.2"
1676 | },
1677 | "engines": {
1678 | "node": ">=0.10.0"
1679 | }
1680 | },
1681 | "node_modules/eslint-plugin-import/node_modules/semver": {
1682 | "version": "6.3.0",
1683 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1684 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1685 | "bin": {
1686 | "semver": "bin/semver.js"
1687 | }
1688 | },
1689 | "node_modules/eslint-plugin-jsx-a11y": {
1690 | "version": "6.7.1",
1691 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz",
1692 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==",
1693 | "dependencies": {
1694 | "@babel/runtime": "^7.20.7",
1695 | "aria-query": "^5.1.3",
1696 | "array-includes": "^3.1.6",
1697 | "array.prototype.flatmap": "^1.3.1",
1698 | "ast-types-flow": "^0.0.7",
1699 | "axe-core": "^4.6.2",
1700 | "axobject-query": "^3.1.1",
1701 | "damerau-levenshtein": "^1.0.8",
1702 | "emoji-regex": "^9.2.2",
1703 | "has": "^1.0.3",
1704 | "jsx-ast-utils": "^3.3.3",
1705 | "language-tags": "=1.0.5",
1706 | "minimatch": "^3.1.2",
1707 | "object.entries": "^1.1.6",
1708 | "object.fromentries": "^2.0.6",
1709 | "semver": "^6.3.0"
1710 | },
1711 | "engines": {
1712 | "node": ">=4.0"
1713 | },
1714 | "peerDependencies": {
1715 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
1716 | }
1717 | },
1718 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": {
1719 | "version": "6.3.0",
1720 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1721 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1722 | "bin": {
1723 | "semver": "bin/semver.js"
1724 | }
1725 | },
1726 | "node_modules/eslint-plugin-react": {
1727 | "version": "7.32.2",
1728 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz",
1729 | "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==",
1730 | "dependencies": {
1731 | "array-includes": "^3.1.6",
1732 | "array.prototype.flatmap": "^1.3.1",
1733 | "array.prototype.tosorted": "^1.1.1",
1734 | "doctrine": "^2.1.0",
1735 | "estraverse": "^5.3.0",
1736 | "jsx-ast-utils": "^2.4.1 || ^3.0.0",
1737 | "minimatch": "^3.1.2",
1738 | "object.entries": "^1.1.6",
1739 | "object.fromentries": "^2.0.6",
1740 | "object.hasown": "^1.1.2",
1741 | "object.values": "^1.1.6",
1742 | "prop-types": "^15.8.1",
1743 | "resolve": "^2.0.0-next.4",
1744 | "semver": "^6.3.0",
1745 | "string.prototype.matchall": "^4.0.8"
1746 | },
1747 | "engines": {
1748 | "node": ">=4"
1749 | },
1750 | "peerDependencies": {
1751 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
1752 | }
1753 | },
1754 | "node_modules/eslint-plugin-react-hooks": {
1755 | "version": "4.6.0",
1756 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz",
1757 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==",
1758 | "engines": {
1759 | "node": ">=10"
1760 | },
1761 | "peerDependencies": {
1762 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
1763 | }
1764 | },
1765 | "node_modules/eslint-plugin-react/node_modules/doctrine": {
1766 | "version": "2.1.0",
1767 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
1768 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
1769 | "dependencies": {
1770 | "esutils": "^2.0.2"
1771 | },
1772 | "engines": {
1773 | "node": ">=0.10.0"
1774 | }
1775 | },
1776 | "node_modules/eslint-plugin-react/node_modules/resolve": {
1777 | "version": "2.0.0-next.4",
1778 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz",
1779 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==",
1780 | "dependencies": {
1781 | "is-core-module": "^2.9.0",
1782 | "path-parse": "^1.0.7",
1783 | "supports-preserve-symlinks-flag": "^1.0.0"
1784 | },
1785 | "bin": {
1786 | "resolve": "bin/resolve"
1787 | },
1788 | "funding": {
1789 | "url": "https://github.com/sponsors/ljharb"
1790 | }
1791 | },
1792 | "node_modules/eslint-plugin-react/node_modules/semver": {
1793 | "version": "6.3.0",
1794 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz",
1795 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==",
1796 | "bin": {
1797 | "semver": "bin/semver.js"
1798 | }
1799 | },
1800 | "node_modules/eslint-scope": {
1801 | "version": "7.2.0",
1802 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.0.tgz",
1803 | "integrity": "sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw==",
1804 | "dependencies": {
1805 | "esrecurse": "^4.3.0",
1806 | "estraverse": "^5.2.0"
1807 | },
1808 | "engines": {
1809 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1810 | },
1811 | "funding": {
1812 | "url": "https://opencollective.com/eslint"
1813 | }
1814 | },
1815 | "node_modules/eslint-visitor-keys": {
1816 | "version": "3.4.1",
1817 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz",
1818 | "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==",
1819 | "engines": {
1820 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1821 | },
1822 | "funding": {
1823 | "url": "https://opencollective.com/eslint"
1824 | }
1825 | },
1826 | "node_modules/espree": {
1827 | "version": "9.5.2",
1828 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.5.2.tgz",
1829 | "integrity": "sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw==",
1830 | "dependencies": {
1831 | "acorn": "^8.8.0",
1832 | "acorn-jsx": "^5.3.2",
1833 | "eslint-visitor-keys": "^3.4.1"
1834 | },
1835 | "engines": {
1836 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1837 | },
1838 | "funding": {
1839 | "url": "https://opencollective.com/eslint"
1840 | }
1841 | },
1842 | "node_modules/esquery": {
1843 | "version": "1.5.0",
1844 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
1845 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
1846 | "dependencies": {
1847 | "estraverse": "^5.1.0"
1848 | },
1849 | "engines": {
1850 | "node": ">=0.10"
1851 | }
1852 | },
1853 | "node_modules/esrecurse": {
1854 | "version": "4.3.0",
1855 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1856 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1857 | "dependencies": {
1858 | "estraverse": "^5.2.0"
1859 | },
1860 | "engines": {
1861 | "node": ">=4.0"
1862 | }
1863 | },
1864 | "node_modules/estraverse": {
1865 | "version": "5.3.0",
1866 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1867 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1868 | "engines": {
1869 | "node": ">=4.0"
1870 | }
1871 | },
1872 | "node_modules/esutils": {
1873 | "version": "2.0.3",
1874 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1875 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1876 | "engines": {
1877 | "node": ">=0.10.0"
1878 | }
1879 | },
1880 | "node_modules/execa": {
1881 | "version": "7.1.1",
1882 | "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz",
1883 | "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==",
1884 | "dependencies": {
1885 | "cross-spawn": "^7.0.3",
1886 | "get-stream": "^6.0.1",
1887 | "human-signals": "^4.3.0",
1888 | "is-stream": "^3.0.0",
1889 | "merge-stream": "^2.0.0",
1890 | "npm-run-path": "^5.1.0",
1891 | "onetime": "^6.0.0",
1892 | "signal-exit": "^3.0.7",
1893 | "strip-final-newline": "^3.0.0"
1894 | },
1895 | "engines": {
1896 | "node": "^14.18.0 || ^16.14.0 || >=18.0.0"
1897 | },
1898 | "funding": {
1899 | "url": "https://github.com/sindresorhus/execa?sponsor=1"
1900 | }
1901 | },
1902 | "node_modules/extend": {
1903 | "version": "3.0.2",
1904 | "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
1905 | "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
1906 | },
1907 | "node_modules/fast-deep-equal": {
1908 | "version": "3.1.3",
1909 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1910 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
1911 | },
1912 | "node_modules/fast-glob": {
1913 | "version": "3.2.12",
1914 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.12.tgz",
1915 | "integrity": "sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==",
1916 | "dependencies": {
1917 | "@nodelib/fs.stat": "^2.0.2",
1918 | "@nodelib/fs.walk": "^1.2.3",
1919 | "glob-parent": "^5.1.2",
1920 | "merge2": "^1.3.0",
1921 | "micromatch": "^4.0.4"
1922 | },
1923 | "engines": {
1924 | "node": ">=8.6.0"
1925 | }
1926 | },
1927 | "node_modules/fast-glob/node_modules/glob-parent": {
1928 | "version": "5.1.2",
1929 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1930 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1931 | "dependencies": {
1932 | "is-glob": "^4.0.1"
1933 | },
1934 | "engines": {
1935 | "node": ">= 6"
1936 | }
1937 | },
1938 | "node_modules/fast-json-stable-stringify": {
1939 | "version": "2.1.0",
1940 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1941 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
1942 | },
1943 | "node_modules/fast-levenshtein": {
1944 | "version": "2.0.6",
1945 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1946 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
1947 | },
1948 | "node_modules/fastq": {
1949 | "version": "1.15.0",
1950 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
1951 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
1952 | "dependencies": {
1953 | "reusify": "^1.0.4"
1954 | }
1955 | },
1956 | "node_modules/file-entry-cache": {
1957 | "version": "6.0.1",
1958 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
1959 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
1960 | "dependencies": {
1961 | "flat-cache": "^3.0.4"
1962 | },
1963 | "engines": {
1964 | "node": "^10.12.0 || >=12.0.0"
1965 | }
1966 | },
1967 | "node_modules/fill-range": {
1968 | "version": "7.0.1",
1969 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
1970 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
1971 | "dependencies": {
1972 | "to-regex-range": "^5.0.1"
1973 | },
1974 | "engines": {
1975 | "node": ">=8"
1976 | }
1977 | },
1978 | "node_modules/find-up": {
1979 | "version": "5.0.0",
1980 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1981 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1982 | "dependencies": {
1983 | "locate-path": "^6.0.0",
1984 | "path-exists": "^4.0.0"
1985 | },
1986 | "engines": {
1987 | "node": ">=10"
1988 | },
1989 | "funding": {
1990 | "url": "https://github.com/sponsors/sindresorhus"
1991 | }
1992 | },
1993 | "node_modules/flat": {
1994 | "version": "5.0.2",
1995 | "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz",
1996 | "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==",
1997 | "bin": {
1998 | "flat": "cli.js"
1999 | }
2000 | },
2001 | "node_modules/flat-cache": {
2002 | "version": "3.0.4",
2003 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
2004 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
2005 | "dependencies": {
2006 | "flatted": "^3.1.0",
2007 | "rimraf": "^3.0.2"
2008 | },
2009 | "engines": {
2010 | "node": "^10.12.0 || >=12.0.0"
2011 | }
2012 | },
2013 | "node_modules/flatted": {
2014 | "version": "3.2.7",
2015 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
2016 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ=="
2017 | },
2018 | "node_modules/for-each": {
2019 | "version": "0.3.3",
2020 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
2021 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
2022 | "dependencies": {
2023 | "is-callable": "^1.1.3"
2024 | }
2025 | },
2026 | "node_modules/form-data": {
2027 | "version": "2.5.1",
2028 | "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.5.1.tgz",
2029 | "integrity": "sha512-m21N3WOmEEURgk6B9GLOE4RuWOFf28Lhh9qGYeNlGq4VDXUlJy2th2slBNU8Gp8EzloYZOibZJ7t5ecIrFSjVA==",
2030 | "dependencies": {
2031 | "asynckit": "^0.4.0",
2032 | "combined-stream": "^1.0.6",
2033 | "mime-types": "^2.1.12"
2034 | },
2035 | "engines": {
2036 | "node": ">= 0.12"
2037 | }
2038 | },
2039 | "node_modules/formidable": {
2040 | "version": "1.2.6",
2041 | "resolved": "https://registry.npmjs.org/formidable/-/formidable-1.2.6.tgz",
2042 | "integrity": "sha512-KcpbcpuLNOwrEjnbpMC0gS+X8ciDoZE1kkqzat4a8vrprf+s9pKNQ/QIwWfbfs4ltgmFl3MD177SNTkve3BwGQ==",
2043 | "deprecated": "Please upgrade to latest, formidable@v2 or formidable@v3! Check these notes: https://bit.ly/2ZEqIau",
2044 | "funding": {
2045 | "url": "https://ko-fi.com/tunnckoCore/commissions"
2046 | }
2047 | },
2048 | "node_modules/fraction.js": {
2049 | "version": "4.2.0",
2050 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz",
2051 | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==",
2052 | "engines": {
2053 | "node": "*"
2054 | },
2055 | "funding": {
2056 | "type": "patreon",
2057 | "url": "https://www.patreon.com/infusion"
2058 | }
2059 | },
2060 | "node_modules/fs.realpath": {
2061 | "version": "1.0.0",
2062 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
2063 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
2064 | },
2065 | "node_modules/fsevents": {
2066 | "version": "2.3.2",
2067 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
2068 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
2069 | "hasInstallScript": true,
2070 | "optional": true,
2071 | "os": [
2072 | "darwin"
2073 | ],
2074 | "engines": {
2075 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2076 | }
2077 | },
2078 | "node_modules/function-bind": {
2079 | "version": "1.1.1",
2080 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
2081 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
2082 | },
2083 | "node_modules/function.prototype.name": {
2084 | "version": "1.1.5",
2085 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
2086 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
2087 | "dependencies": {
2088 | "call-bind": "^1.0.2",
2089 | "define-properties": "^1.1.3",
2090 | "es-abstract": "^1.19.0",
2091 | "functions-have-names": "^1.2.2"
2092 | },
2093 | "engines": {
2094 | "node": ">= 0.4"
2095 | },
2096 | "funding": {
2097 | "url": "https://github.com/sponsors/ljharb"
2098 | }
2099 | },
2100 | "node_modules/functions-have-names": {
2101 | "version": "1.2.3",
2102 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
2103 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
2104 | "funding": {
2105 | "url": "https://github.com/sponsors/ljharb"
2106 | }
2107 | },
2108 | "node_modules/get-caller-file": {
2109 | "version": "2.0.5",
2110 | "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
2111 | "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
2112 | "engines": {
2113 | "node": "6.* || 8.* || >= 10.*"
2114 | }
2115 | },
2116 | "node_modules/get-func-name": {
2117 | "version": "2.0.0",
2118 | "resolved": "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz",
2119 | "integrity": "sha512-Hm0ixYtaSZ/V7C8FJrtZIuBBI+iSgL+1Aq82zSu8VQNB4S3Gk8e7Qs3VwBDJAhmRZcFqkl3tQu36g/Foh5I5ig==",
2120 | "engines": {
2121 | "node": "*"
2122 | }
2123 | },
2124 | "node_modules/get-intrinsic": {
2125 | "version": "1.2.1",
2126 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
2127 | "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
2128 | "dependencies": {
2129 | "function-bind": "^1.1.1",
2130 | "has": "^1.0.3",
2131 | "has-proto": "^1.0.1",
2132 | "has-symbols": "^1.0.3"
2133 | },
2134 | "funding": {
2135 | "url": "https://github.com/sponsors/ljharb"
2136 | }
2137 | },
2138 | "node_modules/get-stream": {
2139 | "version": "6.0.1",
2140 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
2141 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
2142 | "engines": {
2143 | "node": ">=10"
2144 | },
2145 | "funding": {
2146 | "url": "https://github.com/sponsors/sindresorhus"
2147 | }
2148 | },
2149 | "node_modules/get-symbol-description": {
2150 | "version": "1.0.0",
2151 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
2152 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
2153 | "dependencies": {
2154 | "call-bind": "^1.0.2",
2155 | "get-intrinsic": "^1.1.1"
2156 | },
2157 | "engines": {
2158 | "node": ">= 0.4"
2159 | },
2160 | "funding": {
2161 | "url": "https://github.com/sponsors/ljharb"
2162 | }
2163 | },
2164 | "node_modules/get-tsconfig": {
2165 | "version": "4.5.0",
2166 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.5.0.tgz",
2167 | "integrity": "sha512-MjhiaIWCJ1sAU4pIQ5i5OfOuHHxVo1oYeNsWTON7jxYkod8pHocXeh+SSbmu5OZZZK73B6cbJ2XADzXehLyovQ==",
2168 | "funding": {
2169 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
2170 | }
2171 | },
2172 | "node_modules/glob": {
2173 | "version": "7.1.7",
2174 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
2175 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
2176 | "dependencies": {
2177 | "fs.realpath": "^1.0.0",
2178 | "inflight": "^1.0.4",
2179 | "inherits": "2",
2180 | "minimatch": "^3.0.4",
2181 | "once": "^1.3.0",
2182 | "path-is-absolute": "^1.0.0"
2183 | },
2184 | "engines": {
2185 | "node": "*"
2186 | },
2187 | "funding": {
2188 | "url": "https://github.com/sponsors/isaacs"
2189 | }
2190 | },
2191 | "node_modules/glob-parent": {
2192 | "version": "6.0.2",
2193 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
2194 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
2195 | "dependencies": {
2196 | "is-glob": "^4.0.3"
2197 | },
2198 | "engines": {
2199 | "node": ">=10.13.0"
2200 | }
2201 | },
2202 | "node_modules/globals": {
2203 | "version": "13.20.0",
2204 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
2205 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
2206 | "dependencies": {
2207 | "type-fest": "^0.20.2"
2208 | },
2209 | "engines": {
2210 | "node": ">=8"
2211 | },
2212 | "funding": {
2213 | "url": "https://github.com/sponsors/sindresorhus"
2214 | }
2215 | },
2216 | "node_modules/globalthis": {
2217 | "version": "1.0.3",
2218 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz",
2219 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==",
2220 | "dependencies": {
2221 | "define-properties": "^1.1.3"
2222 | },
2223 | "engines": {
2224 | "node": ">= 0.4"
2225 | },
2226 | "funding": {
2227 | "url": "https://github.com/sponsors/ljharb"
2228 | }
2229 | },
2230 | "node_modules/globby": {
2231 | "version": "11.1.0",
2232 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
2233 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
2234 | "dependencies": {
2235 | "array-union": "^2.1.0",
2236 | "dir-glob": "^3.0.1",
2237 | "fast-glob": "^3.2.9",
2238 | "ignore": "^5.2.0",
2239 | "merge2": "^1.4.1",
2240 | "slash": "^3.0.0"
2241 | },
2242 | "engines": {
2243 | "node": ">=10"
2244 | },
2245 | "funding": {
2246 | "url": "https://github.com/sponsors/sindresorhus"
2247 | }
2248 | },
2249 | "node_modules/gopd": {
2250 | "version": "1.0.1",
2251 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
2252 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
2253 | "dependencies": {
2254 | "get-intrinsic": "^1.1.3"
2255 | },
2256 | "funding": {
2257 | "url": "https://github.com/sponsors/ljharb"
2258 | }
2259 | },
2260 | "node_modules/graceful-fs": {
2261 | "version": "4.2.11",
2262 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2263 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
2264 | },
2265 | "node_modules/graphemer": {
2266 | "version": "1.4.0",
2267 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
2268 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="
2269 | },
2270 | "node_modules/has": {
2271 | "version": "1.0.3",
2272 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
2273 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
2274 | "dependencies": {
2275 | "function-bind": "^1.1.1"
2276 | },
2277 | "engines": {
2278 | "node": ">= 0.4.0"
2279 | }
2280 | },
2281 | "node_modules/has-bigints": {
2282 | "version": "1.0.2",
2283 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
2284 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
2285 | "funding": {
2286 | "url": "https://github.com/sponsors/ljharb"
2287 | }
2288 | },
2289 | "node_modules/has-flag": {
2290 | "version": "4.0.0",
2291 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2292 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2293 | "engines": {
2294 | "node": ">=8"
2295 | }
2296 | },
2297 | "node_modules/has-property-descriptors": {
2298 | "version": "1.0.0",
2299 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
2300 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
2301 | "dependencies": {
2302 | "get-intrinsic": "^1.1.1"
2303 | },
2304 | "funding": {
2305 | "url": "https://github.com/sponsors/ljharb"
2306 | }
2307 | },
2308 | "node_modules/has-proto": {
2309 | "version": "1.0.1",
2310 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
2311 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==",
2312 | "engines": {
2313 | "node": ">= 0.4"
2314 | },
2315 | "funding": {
2316 | "url": "https://github.com/sponsors/ljharb"
2317 | }
2318 | },
2319 | "node_modules/has-symbols": {
2320 | "version": "1.0.3",
2321 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
2322 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
2323 | "engines": {
2324 | "node": ">= 0.4"
2325 | },
2326 | "funding": {
2327 | "url": "https://github.com/sponsors/ljharb"
2328 | }
2329 | },
2330 | "node_modules/has-tostringtag": {
2331 | "version": "1.0.0",
2332 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
2333 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
2334 | "dependencies": {
2335 | "has-symbols": "^1.0.2"
2336 | },
2337 | "engines": {
2338 | "node": ">= 0.4"
2339 | },
2340 | "funding": {
2341 | "url": "https://github.com/sponsors/ljharb"
2342 | }
2343 | },
2344 | "node_modules/he": {
2345 | "version": "1.2.0",
2346 | "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
2347 | "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==",
2348 | "bin": {
2349 | "he": "bin/he"
2350 | }
2351 | },
2352 | "node_modules/human-signals": {
2353 | "version": "4.3.1",
2354 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz",
2355 | "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==",
2356 | "engines": {
2357 | "node": ">=14.18.0"
2358 | }
2359 | },
2360 | "node_modules/ignore": {
2361 | "version": "5.2.4",
2362 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
2363 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
2364 | "engines": {
2365 | "node": ">= 4"
2366 | }
2367 | },
2368 | "node_modules/import-fresh": {
2369 | "version": "3.3.0",
2370 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
2371 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
2372 | "dependencies": {
2373 | "parent-module": "^1.0.0",
2374 | "resolve-from": "^4.0.0"
2375 | },
2376 | "engines": {
2377 | "node": ">=6"
2378 | },
2379 | "funding": {
2380 | "url": "https://github.com/sponsors/sindresorhus"
2381 | }
2382 | },
2383 | "node_modules/imurmurhash": {
2384 | "version": "0.1.4",
2385 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2386 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2387 | "engines": {
2388 | "node": ">=0.8.19"
2389 | }
2390 | },
2391 | "node_modules/inflight": {
2392 | "version": "1.0.6",
2393 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
2394 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
2395 | "dependencies": {
2396 | "once": "^1.3.0",
2397 | "wrappy": "1"
2398 | }
2399 | },
2400 | "node_modules/inherits": {
2401 | "version": "2.0.4",
2402 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
2403 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
2404 | },
2405 | "node_modules/internal-slot": {
2406 | "version": "1.0.5",
2407 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz",
2408 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==",
2409 | "dependencies": {
2410 | "get-intrinsic": "^1.2.0",
2411 | "has": "^1.0.3",
2412 | "side-channel": "^1.0.4"
2413 | },
2414 | "engines": {
2415 | "node": ">= 0.4"
2416 | }
2417 | },
2418 | "node_modules/ip-regex": {
2419 | "version": "2.1.0",
2420 | "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz",
2421 | "integrity": "sha512-58yWmlHpp7VYfcdTwMTvwMmqx/Elfxjd9RXTDyMsbL7lLWmhMylLEqiYVLKuLzOZqVgiWXD9MfR62Vv89VRxkw==",
2422 | "engines": {
2423 | "node": ">=4"
2424 | }
2425 | },
2426 | "node_modules/is-arguments": {
2427 | "version": "1.1.1",
2428 | "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz",
2429 | "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==",
2430 | "dependencies": {
2431 | "call-bind": "^1.0.2",
2432 | "has-tostringtag": "^1.0.0"
2433 | },
2434 | "engines": {
2435 | "node": ">= 0.4"
2436 | },
2437 | "funding": {
2438 | "url": "https://github.com/sponsors/ljharb"
2439 | }
2440 | },
2441 | "node_modules/is-array-buffer": {
2442 | "version": "3.0.2",
2443 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz",
2444 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==",
2445 | "dependencies": {
2446 | "call-bind": "^1.0.2",
2447 | "get-intrinsic": "^1.2.0",
2448 | "is-typed-array": "^1.1.10"
2449 | },
2450 | "funding": {
2451 | "url": "https://github.com/sponsors/ljharb"
2452 | }
2453 | },
2454 | "node_modules/is-bigint": {
2455 | "version": "1.0.4",
2456 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
2457 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
2458 | "dependencies": {
2459 | "has-bigints": "^1.0.1"
2460 | },
2461 | "funding": {
2462 | "url": "https://github.com/sponsors/ljharb"
2463 | }
2464 | },
2465 | "node_modules/is-binary-path": {
2466 | "version": "2.1.0",
2467 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
2468 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
2469 | "dependencies": {
2470 | "binary-extensions": "^2.0.0"
2471 | },
2472 | "engines": {
2473 | "node": ">=8"
2474 | }
2475 | },
2476 | "node_modules/is-boolean-object": {
2477 | "version": "1.1.2",
2478 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
2479 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
2480 | "dependencies": {
2481 | "call-bind": "^1.0.2",
2482 | "has-tostringtag": "^1.0.0"
2483 | },
2484 | "engines": {
2485 | "node": ">= 0.4"
2486 | },
2487 | "funding": {
2488 | "url": "https://github.com/sponsors/ljharb"
2489 | }
2490 | },
2491 | "node_modules/is-callable": {
2492 | "version": "1.2.7",
2493 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
2494 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
2495 | "engines": {
2496 | "node": ">= 0.4"
2497 | },
2498 | "funding": {
2499 | "url": "https://github.com/sponsors/ljharb"
2500 | }
2501 | },
2502 | "node_modules/is-core-module": {
2503 | "version": "2.12.1",
2504 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz",
2505 | "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==",
2506 | "dependencies": {
2507 | "has": "^1.0.3"
2508 | },
2509 | "funding": {
2510 | "url": "https://github.com/sponsors/ljharb"
2511 | }
2512 | },
2513 | "node_modules/is-date-object": {
2514 | "version": "1.0.5",
2515 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
2516 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
2517 | "dependencies": {
2518 | "has-tostringtag": "^1.0.0"
2519 | },
2520 | "engines": {
2521 | "node": ">= 0.4"
2522 | },
2523 | "funding": {
2524 | "url": "https://github.com/sponsors/ljharb"
2525 | }
2526 | },
2527 | "node_modules/is-docker": {
2528 | "version": "3.0.0",
2529 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
2530 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
2531 | "bin": {
2532 | "is-docker": "cli.js"
2533 | },
2534 | "engines": {
2535 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2536 | },
2537 | "funding": {
2538 | "url": "https://github.com/sponsors/sindresorhus"
2539 | }
2540 | },
2541 | "node_modules/is-extglob": {
2542 | "version": "2.1.1",
2543 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2544 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2545 | "engines": {
2546 | "node": ">=0.10.0"
2547 | }
2548 | },
2549 | "node_modules/is-fullwidth-code-point": {
2550 | "version": "3.0.0",
2551 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
2552 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
2553 | "engines": {
2554 | "node": ">=8"
2555 | }
2556 | },
2557 | "node_modules/is-glob": {
2558 | "version": "4.0.3",
2559 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2560 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2561 | "dependencies": {
2562 | "is-extglob": "^2.1.1"
2563 | },
2564 | "engines": {
2565 | "node": ">=0.10.0"
2566 | }
2567 | },
2568 | "node_modules/is-inside-container": {
2569 | "version": "1.0.0",
2570 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
2571 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
2572 | "dependencies": {
2573 | "is-docker": "^3.0.0"
2574 | },
2575 | "bin": {
2576 | "is-inside-container": "cli.js"
2577 | },
2578 | "engines": {
2579 | "node": ">=14.16"
2580 | },
2581 | "funding": {
2582 | "url": "https://github.com/sponsors/sindresorhus"
2583 | }
2584 | },
2585 | "node_modules/is-ip": {
2586 | "version": "2.0.0",
2587 | "resolved": "https://registry.npmjs.org/is-ip/-/is-ip-2.0.0.tgz",
2588 | "integrity": "sha512-9MTn0dteHETtyUx8pxqMwg5hMBi3pvlyglJ+b79KOCca0po23337LbVV2Hl4xmMvfw++ljnO0/+5G6G+0Szh6g==",
2589 | "dependencies": {
2590 | "ip-regex": "^2.0.0"
2591 | },
2592 | "engines": {
2593 | "node": ">=4"
2594 | }
2595 | },
2596 | "node_modules/is-map": {
2597 | "version": "2.0.2",
2598 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz",
2599 | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==",
2600 | "funding": {
2601 | "url": "https://github.com/sponsors/ljharb"
2602 | }
2603 | },
2604 | "node_modules/is-negative-zero": {
2605 | "version": "2.0.2",
2606 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
2607 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
2608 | "engines": {
2609 | "node": ">= 0.4"
2610 | },
2611 | "funding": {
2612 | "url": "https://github.com/sponsors/ljharb"
2613 | }
2614 | },
2615 | "node_modules/is-number": {
2616 | "version": "7.0.0",
2617 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2618 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2619 | "engines": {
2620 | "node": ">=0.12.0"
2621 | }
2622 | },
2623 | "node_modules/is-number-object": {
2624 | "version": "1.0.7",
2625 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
2626 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
2627 | "dependencies": {
2628 | "has-tostringtag": "^1.0.0"
2629 | },
2630 | "engines": {
2631 | "node": ">= 0.4"
2632 | },
2633 | "funding": {
2634 | "url": "https://github.com/sponsors/ljharb"
2635 | }
2636 | },
2637 | "node_modules/is-path-inside": {
2638 | "version": "3.0.3",
2639 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
2640 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
2641 | "engines": {
2642 | "node": ">=8"
2643 | }
2644 | },
2645 | "node_modules/is-plain-obj": {
2646 | "version": "2.1.0",
2647 | "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-2.1.0.tgz",
2648 | "integrity": "sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==",
2649 | "engines": {
2650 | "node": ">=8"
2651 | }
2652 | },
2653 | "node_modules/is-regex": {
2654 | "version": "1.1.4",
2655 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
2656 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
2657 | "dependencies": {
2658 | "call-bind": "^1.0.2",
2659 | "has-tostringtag": "^1.0.0"
2660 | },
2661 | "engines": {
2662 | "node": ">= 0.4"
2663 | },
2664 | "funding": {
2665 | "url": "https://github.com/sponsors/ljharb"
2666 | }
2667 | },
2668 | "node_modules/is-set": {
2669 | "version": "2.0.2",
2670 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz",
2671 | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==",
2672 | "funding": {
2673 | "url": "https://github.com/sponsors/ljharb"
2674 | }
2675 | },
2676 | "node_modules/is-shared-array-buffer": {
2677 | "version": "1.0.2",
2678 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
2679 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==",
2680 | "dependencies": {
2681 | "call-bind": "^1.0.2"
2682 | },
2683 | "funding": {
2684 | "url": "https://github.com/sponsors/ljharb"
2685 | }
2686 | },
2687 | "node_modules/is-stream": {
2688 | "version": "3.0.0",
2689 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
2690 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
2691 | "engines": {
2692 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2693 | },
2694 | "funding": {
2695 | "url": "https://github.com/sponsors/sindresorhus"
2696 | }
2697 | },
2698 | "node_modules/is-string": {
2699 | "version": "1.0.7",
2700 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
2701 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
2702 | "dependencies": {
2703 | "has-tostringtag": "^1.0.0"
2704 | },
2705 | "engines": {
2706 | "node": ">= 0.4"
2707 | },
2708 | "funding": {
2709 | "url": "https://github.com/sponsors/ljharb"
2710 | }
2711 | },
2712 | "node_modules/is-symbol": {
2713 | "version": "1.0.4",
2714 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
2715 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
2716 | "dependencies": {
2717 | "has-symbols": "^1.0.2"
2718 | },
2719 | "engines": {
2720 | "node": ">= 0.4"
2721 | },
2722 | "funding": {
2723 | "url": "https://github.com/sponsors/ljharb"
2724 | }
2725 | },
2726 | "node_modules/is-typed-array": {
2727 | "version": "1.1.10",
2728 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz",
2729 | "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==",
2730 | "dependencies": {
2731 | "available-typed-arrays": "^1.0.5",
2732 | "call-bind": "^1.0.2",
2733 | "for-each": "^0.3.3",
2734 | "gopd": "^1.0.1",
2735 | "has-tostringtag": "^1.0.0"
2736 | },
2737 | "engines": {
2738 | "node": ">= 0.4"
2739 | },
2740 | "funding": {
2741 | "url": "https://github.com/sponsors/ljharb"
2742 | }
2743 | },
2744 | "node_modules/is-unicode-supported": {
2745 | "version": "0.1.0",
2746 | "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz",
2747 | "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==",
2748 | "engines": {
2749 | "node": ">=10"
2750 | },
2751 | "funding": {
2752 | "url": "https://github.com/sponsors/sindresorhus"
2753 | }
2754 | },
2755 | "node_modules/is-weakmap": {
2756 | "version": "2.0.1",
2757 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz",
2758 | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==",
2759 | "funding": {
2760 | "url": "https://github.com/sponsors/ljharb"
2761 | }
2762 | },
2763 | "node_modules/is-weakref": {
2764 | "version": "1.0.2",
2765 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
2766 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
2767 | "dependencies": {
2768 | "call-bind": "^1.0.2"
2769 | },
2770 | "funding": {
2771 | "url": "https://github.com/sponsors/ljharb"
2772 | }
2773 | },
2774 | "node_modules/is-weakset": {
2775 | "version": "2.0.2",
2776 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz",
2777 | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==",
2778 | "dependencies": {
2779 | "call-bind": "^1.0.2",
2780 | "get-intrinsic": "^1.1.1"
2781 | },
2782 | "funding": {
2783 | "url": "https://github.com/sponsors/ljharb"
2784 | }
2785 | },
2786 | "node_modules/is-wsl": {
2787 | "version": "2.2.0",
2788 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
2789 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
2790 | "dependencies": {
2791 | "is-docker": "^2.0.0"
2792 | },
2793 | "engines": {
2794 | "node": ">=8"
2795 | }
2796 | },
2797 | "node_modules/is-wsl/node_modules/is-docker": {
2798 | "version": "2.2.1",
2799 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
2800 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
2801 | "bin": {
2802 | "is-docker": "cli.js"
2803 | },
2804 | "engines": {
2805 | "node": ">=8"
2806 | },
2807 | "funding": {
2808 | "url": "https://github.com/sponsors/sindresorhus"
2809 | }
2810 | },
2811 | "node_modules/isarray": {
2812 | "version": "2.0.5",
2813 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
2814 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="
2815 | },
2816 | "node_modules/isexe": {
2817 | "version": "2.0.0",
2818 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2819 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
2820 | },
2821 | "node_modules/jiti": {
2822 | "version": "1.18.2",
2823 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.18.2.tgz",
2824 | "integrity": "sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg==",
2825 | "bin": {
2826 | "jiti": "bin/jiti.js"
2827 | }
2828 | },
2829 | "node_modules/js-tokens": {
2830 | "version": "4.0.0",
2831 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2832 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
2833 | },
2834 | "node_modules/js-yaml": {
2835 | "version": "4.1.0",
2836 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
2837 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
2838 | "dependencies": {
2839 | "argparse": "^2.0.1"
2840 | },
2841 | "bin": {
2842 | "js-yaml": "bin/js-yaml.js"
2843 | }
2844 | },
2845 | "node_modules/json-schema-traverse": {
2846 | "version": "0.4.1",
2847 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2848 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
2849 | },
2850 | "node_modules/json-stable-stringify-without-jsonify": {
2851 | "version": "1.0.1",
2852 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
2853 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
2854 | },
2855 | "node_modules/json5": {
2856 | "version": "1.0.2",
2857 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
2858 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
2859 | "dependencies": {
2860 | "minimist": "^1.2.0"
2861 | },
2862 | "bin": {
2863 | "json5": "lib/cli.js"
2864 | }
2865 | },
2866 | "node_modules/jsx-ast-utils": {
2867 | "version": "3.3.3",
2868 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.3.tgz",
2869 | "integrity": "sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==",
2870 | "dependencies": {
2871 | "array-includes": "^3.1.5",
2872 | "object.assign": "^4.1.3"
2873 | },
2874 | "engines": {
2875 | "node": ">=4.0"
2876 | }
2877 | },
2878 | "node_modules/language-subtag-registry": {
2879 | "version": "0.3.22",
2880 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz",
2881 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w=="
2882 | },
2883 | "node_modules/language-tags": {
2884 | "version": "1.0.5",
2885 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
2886 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==",
2887 | "dependencies": {
2888 | "language-subtag-registry": "~0.3.2"
2889 | }
2890 | },
2891 | "node_modules/levn": {
2892 | "version": "0.4.1",
2893 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
2894 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
2895 | "dependencies": {
2896 | "prelude-ls": "^1.2.1",
2897 | "type-check": "~0.4.0"
2898 | },
2899 | "engines": {
2900 | "node": ">= 0.8.0"
2901 | }
2902 | },
2903 | "node_modules/lilconfig": {
2904 | "version": "2.1.0",
2905 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
2906 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
2907 | "engines": {
2908 | "node": ">=10"
2909 | }
2910 | },
2911 | "node_modules/lines-and-columns": {
2912 | "version": "1.2.4",
2913 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
2914 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
2915 | },
2916 | "node_modules/locate-path": {
2917 | "version": "6.0.0",
2918 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
2919 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2920 | "dependencies": {
2921 | "p-locate": "^5.0.0"
2922 | },
2923 | "engines": {
2924 | "node": ">=10"
2925 | },
2926 | "funding": {
2927 | "url": "https://github.com/sponsors/sindresorhus"
2928 | }
2929 | },
2930 | "node_modules/lodash.merge": {
2931 | "version": "4.6.2",
2932 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
2933 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
2934 | },
2935 | "node_modules/log-symbols": {
2936 | "version": "4.1.0",
2937 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz",
2938 | "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==",
2939 | "dependencies": {
2940 | "chalk": "^4.1.0",
2941 | "is-unicode-supported": "^0.1.0"
2942 | },
2943 | "engines": {
2944 | "node": ">=10"
2945 | },
2946 | "funding": {
2947 | "url": "https://github.com/sponsors/sindresorhus"
2948 | }
2949 | },
2950 | "node_modules/loose-envify": {
2951 | "version": "1.4.0",
2952 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
2953 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
2954 | "dependencies": {
2955 | "js-tokens": "^3.0.0 || ^4.0.0"
2956 | },
2957 | "bin": {
2958 | "loose-envify": "cli.js"
2959 | }
2960 | },
2961 | "node_modules/loupe": {
2962 | "version": "2.3.6",
2963 | "resolved": "https://registry.npmjs.org/loupe/-/loupe-2.3.6.tgz",
2964 | "integrity": "sha512-RaPMZKiMy8/JruncMU5Bt6na1eftNoo++R4Y+N2FrxkDVTrGvcyzFTsaGif4QTeKESheMGegbhw6iUAq+5A8zA==",
2965 | "dependencies": {
2966 | "get-func-name": "^2.0.0"
2967 | }
2968 | },
2969 | "node_modules/lru-cache": {
2970 | "version": "6.0.0",
2971 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
2972 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
2973 | "dependencies": {
2974 | "yallist": "^4.0.0"
2975 | },
2976 | "engines": {
2977 | "node": ">=10"
2978 | }
2979 | },
2980 | "node_modules/merge-stream": {
2981 | "version": "2.0.0",
2982 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
2983 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="
2984 | },
2985 | "node_modules/merge2": {
2986 | "version": "1.4.1",
2987 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
2988 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
2989 | "engines": {
2990 | "node": ">= 8"
2991 | }
2992 | },
2993 | "node_modules/methods": {
2994 | "version": "1.1.2",
2995 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
2996 | "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==",
2997 | "engines": {
2998 | "node": ">= 0.6"
2999 | }
3000 | },
3001 | "node_modules/micromatch": {
3002 | "version": "4.0.5",
3003 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
3004 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
3005 | "dependencies": {
3006 | "braces": "^3.0.2",
3007 | "picomatch": "^2.3.1"
3008 | },
3009 | "engines": {
3010 | "node": ">=8.6"
3011 | }
3012 | },
3013 | "node_modules/mime": {
3014 | "version": "1.6.0",
3015 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
3016 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
3017 | "bin": {
3018 | "mime": "cli.js"
3019 | },
3020 | "engines": {
3021 | "node": ">=4"
3022 | }
3023 | },
3024 | "node_modules/mime-db": {
3025 | "version": "1.52.0",
3026 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
3027 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
3028 | "engines": {
3029 | "node": ">= 0.6"
3030 | }
3031 | },
3032 | "node_modules/mime-types": {
3033 | "version": "2.1.35",
3034 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
3035 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
3036 | "dependencies": {
3037 | "mime-db": "1.52.0"
3038 | },
3039 | "engines": {
3040 | "node": ">= 0.6"
3041 | }
3042 | },
3043 | "node_modules/mimic-fn": {
3044 | "version": "4.0.0",
3045 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
3046 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
3047 | "engines": {
3048 | "node": ">=12"
3049 | },
3050 | "funding": {
3051 | "url": "https://github.com/sponsors/sindresorhus"
3052 | }
3053 | },
3054 | "node_modules/minimatch": {
3055 | "version": "3.1.2",
3056 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
3057 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
3058 | "dependencies": {
3059 | "brace-expansion": "^1.1.7"
3060 | },
3061 | "engines": {
3062 | "node": "*"
3063 | }
3064 | },
3065 | "node_modules/minimist": {
3066 | "version": "1.2.8",
3067 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
3068 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
3069 | "funding": {
3070 | "url": "https://github.com/sponsors/ljharb"
3071 | }
3072 | },
3073 | "node_modules/mocha": {
3074 | "version": "10.2.0",
3075 | "resolved": "https://registry.npmjs.org/mocha/-/mocha-10.2.0.tgz",
3076 | "integrity": "sha512-IDY7fl/BecMwFHzoqF2sg/SHHANeBoMMXFlS9r0OXKDssYE1M5O43wUY/9BVPeIvfH2zmEbBfseqN9gBQZzXkg==",
3077 | "dependencies": {
3078 | "ansi-colors": "4.1.1",
3079 | "browser-stdout": "1.3.1",
3080 | "chokidar": "3.5.3",
3081 | "debug": "4.3.4",
3082 | "diff": "5.0.0",
3083 | "escape-string-regexp": "4.0.0",
3084 | "find-up": "5.0.0",
3085 | "glob": "7.2.0",
3086 | "he": "1.2.0",
3087 | "js-yaml": "4.1.0",
3088 | "log-symbols": "4.1.0",
3089 | "minimatch": "5.0.1",
3090 | "ms": "2.1.3",
3091 | "nanoid": "3.3.3",
3092 | "serialize-javascript": "6.0.0",
3093 | "strip-json-comments": "3.1.1",
3094 | "supports-color": "8.1.1",
3095 | "workerpool": "6.2.1",
3096 | "yargs": "16.2.0",
3097 | "yargs-parser": "20.2.4",
3098 | "yargs-unparser": "2.0.0"
3099 | },
3100 | "bin": {
3101 | "_mocha": "bin/_mocha",
3102 | "mocha": "bin/mocha.js"
3103 | },
3104 | "engines": {
3105 | "node": ">= 14.0.0"
3106 | },
3107 | "funding": {
3108 | "type": "opencollective",
3109 | "url": "https://opencollective.com/mochajs"
3110 | }
3111 | },
3112 | "node_modules/mocha/node_modules/glob": {
3113 | "version": "7.2.0",
3114 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz",
3115 | "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==",
3116 | "dependencies": {
3117 | "fs.realpath": "^1.0.0",
3118 | "inflight": "^1.0.4",
3119 | "inherits": "2",
3120 | "minimatch": "^3.0.4",
3121 | "once": "^1.3.0",
3122 | "path-is-absolute": "^1.0.0"
3123 | },
3124 | "engines": {
3125 | "node": "*"
3126 | },
3127 | "funding": {
3128 | "url": "https://github.com/sponsors/isaacs"
3129 | }
3130 | },
3131 | "node_modules/mocha/node_modules/glob/node_modules/minimatch": {
3132 | "version": "3.1.2",
3133 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
3134 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
3135 | "dependencies": {
3136 | "brace-expansion": "^1.1.7"
3137 | },
3138 | "engines": {
3139 | "node": "*"
3140 | }
3141 | },
3142 | "node_modules/mocha/node_modules/minimatch": {
3143 | "version": "5.0.1",
3144 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.0.1.tgz",
3145 | "integrity": "sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==",
3146 | "dependencies": {
3147 | "brace-expansion": "^2.0.1"
3148 | },
3149 | "engines": {
3150 | "node": ">=10"
3151 | }
3152 | },
3153 | "node_modules/mocha/node_modules/minimatch/node_modules/brace-expansion": {
3154 | "version": "2.0.1",
3155 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
3156 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==",
3157 | "dependencies": {
3158 | "balanced-match": "^1.0.0"
3159 | }
3160 | },
3161 | "node_modules/mocha/node_modules/ms": {
3162 | "version": "2.1.3",
3163 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3164 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
3165 | },
3166 | "node_modules/mocha/node_modules/nanoid": {
3167 | "version": "3.3.3",
3168 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.3.tgz",
3169 | "integrity": "sha512-p1sjXuopFs0xg+fPASzQ28agW1oHD7xDsd9Xkf3T15H3c/cifrFHVwrh74PdoklAPi+i7MdRsE47vm2r6JoB+w==",
3170 | "bin": {
3171 | "nanoid": "bin/nanoid.cjs"
3172 | },
3173 | "engines": {
3174 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3175 | }
3176 | },
3177 | "node_modules/mocha/node_modules/supports-color": {
3178 | "version": "8.1.1",
3179 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
3180 | "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
3181 | "dependencies": {
3182 | "has-flag": "^4.0.0"
3183 | },
3184 | "engines": {
3185 | "node": ">=10"
3186 | },
3187 | "funding": {
3188 | "url": "https://github.com/chalk/supports-color?sponsor=1"
3189 | }
3190 | },
3191 | "node_modules/ms": {
3192 | "version": "2.1.2",
3193 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
3194 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
3195 | },
3196 | "node_modules/mz": {
3197 | "version": "2.7.0",
3198 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
3199 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
3200 | "dependencies": {
3201 | "any-promise": "^1.0.0",
3202 | "object-assign": "^4.0.1",
3203 | "thenify-all": "^1.0.0"
3204 | }
3205 | },
3206 | "node_modules/nanoid": {
3207 | "version": "3.3.6",
3208 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
3209 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
3210 | "funding": [
3211 | {
3212 | "type": "github",
3213 | "url": "https://github.com/sponsors/ai"
3214 | }
3215 | ],
3216 | "bin": {
3217 | "nanoid": "bin/nanoid.cjs"
3218 | },
3219 | "engines": {
3220 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3221 | }
3222 | },
3223 | "node_modules/natural-compare": {
3224 | "version": "1.4.0",
3225 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
3226 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
3227 | },
3228 | "node_modules/next": {
3229 | "version": "13.4.4",
3230 | "resolved": "https://registry.npmjs.org/next/-/next-13.4.4.tgz",
3231 | "integrity": "sha512-C5S0ysM0Ily9McL4Jb48nOQHT1BukOWI59uC3X/xCMlYIh9rJZCv7nzG92J6e1cOBqQbKovlpgvHWFmz4eKKEA==",
3232 | "dependencies": {
3233 | "@next/env": "13.4.4",
3234 | "@swc/helpers": "0.5.1",
3235 | "busboy": "1.6.0",
3236 | "caniuse-lite": "^1.0.30001406",
3237 | "postcss": "8.4.14",
3238 | "styled-jsx": "5.1.1",
3239 | "zod": "3.21.4"
3240 | },
3241 | "bin": {
3242 | "next": "dist/bin/next"
3243 | },
3244 | "engines": {
3245 | "node": ">=16.8.0"
3246 | },
3247 | "optionalDependencies": {
3248 | "@next/swc-darwin-arm64": "13.4.4",
3249 | "@next/swc-darwin-x64": "13.4.4",
3250 | "@next/swc-linux-arm64-gnu": "13.4.4",
3251 | "@next/swc-linux-arm64-musl": "13.4.4",
3252 | "@next/swc-linux-x64-gnu": "13.4.4",
3253 | "@next/swc-linux-x64-musl": "13.4.4",
3254 | "@next/swc-win32-arm64-msvc": "13.4.4",
3255 | "@next/swc-win32-ia32-msvc": "13.4.4",
3256 | "@next/swc-win32-x64-msvc": "13.4.4"
3257 | },
3258 | "peerDependencies": {
3259 | "@opentelemetry/api": "^1.1.0",
3260 | "fibers": ">= 3.1.0",
3261 | "react": "^18.2.0",
3262 | "react-dom": "^18.2.0",
3263 | "sass": "^1.3.0"
3264 | },
3265 | "peerDependenciesMeta": {
3266 | "@opentelemetry/api": {
3267 | "optional": true
3268 | },
3269 | "fibers": {
3270 | "optional": true
3271 | },
3272 | "sass": {
3273 | "optional": true
3274 | }
3275 | }
3276 | },
3277 | "node_modules/next/node_modules/postcss": {
3278 | "version": "8.4.14",
3279 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz",
3280 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==",
3281 | "funding": [
3282 | {
3283 | "type": "opencollective",
3284 | "url": "https://opencollective.com/postcss/"
3285 | },
3286 | {
3287 | "type": "tidelift",
3288 | "url": "https://tidelift.com/funding/github/npm/postcss"
3289 | }
3290 | ],
3291 | "dependencies": {
3292 | "nanoid": "^3.3.4",
3293 | "picocolors": "^1.0.0",
3294 | "source-map-js": "^1.0.2"
3295 | },
3296 | "engines": {
3297 | "node": "^10 || ^12 || >=14"
3298 | }
3299 | },
3300 | "node_modules/node-releases": {
3301 | "version": "2.0.12",
3302 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.12.tgz",
3303 | "integrity": "sha512-QzsYKWhXTWx8h1kIvqfnC++o0pEmpRQA/aenALsL2F4pqNVr7YzcdMlDij5WBnwftRbJCNJL/O7zdKaxKPHqgQ=="
3304 | },
3305 | "node_modules/normalize-path": {
3306 | "version": "3.0.0",
3307 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
3308 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
3309 | "engines": {
3310 | "node": ">=0.10.0"
3311 | }
3312 | },
3313 | "node_modules/normalize-range": {
3314 | "version": "0.1.2",
3315 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
3316 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
3317 | "engines": {
3318 | "node": ">=0.10.0"
3319 | }
3320 | },
3321 | "node_modules/npm-run-path": {
3322 | "version": "5.1.0",
3323 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz",
3324 | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==",
3325 | "dependencies": {
3326 | "path-key": "^4.0.0"
3327 | },
3328 | "engines": {
3329 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
3330 | },
3331 | "funding": {
3332 | "url": "https://github.com/sponsors/sindresorhus"
3333 | }
3334 | },
3335 | "node_modules/npm-run-path/node_modules/path-key": {
3336 | "version": "4.0.0",
3337 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
3338 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
3339 | "engines": {
3340 | "node": ">=12"
3341 | },
3342 | "funding": {
3343 | "url": "https://github.com/sponsors/sindresorhus"
3344 | }
3345 | },
3346 | "node_modules/object-assign": {
3347 | "version": "4.1.1",
3348 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
3349 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
3350 | "engines": {
3351 | "node": ">=0.10.0"
3352 | }
3353 | },
3354 | "node_modules/object-hash": {
3355 | "version": "3.0.0",
3356 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
3357 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
3358 | "engines": {
3359 | "node": ">= 6"
3360 | }
3361 | },
3362 | "node_modules/object-inspect": {
3363 | "version": "1.12.3",
3364 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
3365 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==",
3366 | "funding": {
3367 | "url": "https://github.com/sponsors/ljharb"
3368 | }
3369 | },
3370 | "node_modules/object-is": {
3371 | "version": "1.1.5",
3372 | "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz",
3373 | "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==",
3374 | "dependencies": {
3375 | "call-bind": "^1.0.2",
3376 | "define-properties": "^1.1.3"
3377 | },
3378 | "engines": {
3379 | "node": ">= 0.4"
3380 | },
3381 | "funding": {
3382 | "url": "https://github.com/sponsors/ljharb"
3383 | }
3384 | },
3385 | "node_modules/object-keys": {
3386 | "version": "1.1.1",
3387 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
3388 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
3389 | "engines": {
3390 | "node": ">= 0.4"
3391 | }
3392 | },
3393 | "node_modules/object.assign": {
3394 | "version": "4.1.4",
3395 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
3396 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==",
3397 | "dependencies": {
3398 | "call-bind": "^1.0.2",
3399 | "define-properties": "^1.1.4",
3400 | "has-symbols": "^1.0.3",
3401 | "object-keys": "^1.1.1"
3402 | },
3403 | "engines": {
3404 | "node": ">= 0.4"
3405 | },
3406 | "funding": {
3407 | "url": "https://github.com/sponsors/ljharb"
3408 | }
3409 | },
3410 | "node_modules/object.entries": {
3411 | "version": "1.1.6",
3412 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz",
3413 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==",
3414 | "dependencies": {
3415 | "call-bind": "^1.0.2",
3416 | "define-properties": "^1.1.4",
3417 | "es-abstract": "^1.20.4"
3418 | },
3419 | "engines": {
3420 | "node": ">= 0.4"
3421 | }
3422 | },
3423 | "node_modules/object.fromentries": {
3424 | "version": "2.0.6",
3425 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz",
3426 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==",
3427 | "dependencies": {
3428 | "call-bind": "^1.0.2",
3429 | "define-properties": "^1.1.4",
3430 | "es-abstract": "^1.20.4"
3431 | },
3432 | "engines": {
3433 | "node": ">= 0.4"
3434 | },
3435 | "funding": {
3436 | "url": "https://github.com/sponsors/ljharb"
3437 | }
3438 | },
3439 | "node_modules/object.hasown": {
3440 | "version": "1.1.2",
3441 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz",
3442 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==",
3443 | "dependencies": {
3444 | "define-properties": "^1.1.4",
3445 | "es-abstract": "^1.20.4"
3446 | },
3447 | "funding": {
3448 | "url": "https://github.com/sponsors/ljharb"
3449 | }
3450 | },
3451 | "node_modules/object.values": {
3452 | "version": "1.1.6",
3453 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz",
3454 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==",
3455 | "dependencies": {
3456 | "call-bind": "^1.0.2",
3457 | "define-properties": "^1.1.4",
3458 | "es-abstract": "^1.20.4"
3459 | },
3460 | "engines": {
3461 | "node": ">= 0.4"
3462 | },
3463 | "funding": {
3464 | "url": "https://github.com/sponsors/ljharb"
3465 | }
3466 | },
3467 | "node_modules/once": {
3468 | "version": "1.4.0",
3469 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
3470 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
3471 | "dependencies": {
3472 | "wrappy": "1"
3473 | }
3474 | },
3475 | "node_modules/onetime": {
3476 | "version": "6.0.0",
3477 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
3478 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
3479 | "dependencies": {
3480 | "mimic-fn": "^4.0.0"
3481 | },
3482 | "engines": {
3483 | "node": ">=12"
3484 | },
3485 | "funding": {
3486 | "url": "https://github.com/sponsors/sindresorhus"
3487 | }
3488 | },
3489 | "node_modules/open": {
3490 | "version": "9.1.0",
3491 | "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz",
3492 | "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==",
3493 | "dependencies": {
3494 | "default-browser": "^4.0.0",
3495 | "define-lazy-prop": "^3.0.0",
3496 | "is-inside-container": "^1.0.0",
3497 | "is-wsl": "^2.2.0"
3498 | },
3499 | "engines": {
3500 | "node": ">=14.16"
3501 | },
3502 | "funding": {
3503 | "url": "https://github.com/sponsors/sindresorhus"
3504 | }
3505 | },
3506 | "node_modules/optionator": {
3507 | "version": "0.9.1",
3508 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz",
3509 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==",
3510 | "dependencies": {
3511 | "deep-is": "^0.1.3",
3512 | "fast-levenshtein": "^2.0.6",
3513 | "levn": "^0.4.1",
3514 | "prelude-ls": "^1.2.1",
3515 | "type-check": "^0.4.0",
3516 | "word-wrap": "^1.2.3"
3517 | },
3518 | "engines": {
3519 | "node": ">= 0.8.0"
3520 | }
3521 | },
3522 | "node_modules/p-limit": {
3523 | "version": "3.1.0",
3524 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
3525 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
3526 | "dependencies": {
3527 | "yocto-queue": "^0.1.0"
3528 | },
3529 | "engines": {
3530 | "node": ">=10"
3531 | },
3532 | "funding": {
3533 | "url": "https://github.com/sponsors/sindresorhus"
3534 | }
3535 | },
3536 | "node_modules/p-locate": {
3537 | "version": "5.0.0",
3538 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
3539 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
3540 | "dependencies": {
3541 | "p-limit": "^3.0.2"
3542 | },
3543 | "engines": {
3544 | "node": ">=10"
3545 | },
3546 | "funding": {
3547 | "url": "https://github.com/sponsors/sindresorhus"
3548 | }
3549 | },
3550 | "node_modules/parent-module": {
3551 | "version": "1.0.1",
3552 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
3553 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
3554 | "dependencies": {
3555 | "callsites": "^3.0.0"
3556 | },
3557 | "engines": {
3558 | "node": ">=6"
3559 | }
3560 | },
3561 | "node_modules/path-exists": {
3562 | "version": "4.0.0",
3563 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
3564 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
3565 | "engines": {
3566 | "node": ">=8"
3567 | }
3568 | },
3569 | "node_modules/path-is-absolute": {
3570 | "version": "1.0.1",
3571 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
3572 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
3573 | "engines": {
3574 | "node": ">=0.10.0"
3575 | }
3576 | },
3577 | "node_modules/path-key": {
3578 | "version": "3.1.1",
3579 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
3580 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3581 | "engines": {
3582 | "node": ">=8"
3583 | }
3584 | },
3585 | "node_modules/path-parse": {
3586 | "version": "1.0.7",
3587 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
3588 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
3589 | },
3590 | "node_modules/path-type": {
3591 | "version": "4.0.0",
3592 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
3593 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
3594 | "engines": {
3595 | "node": ">=8"
3596 | }
3597 | },
3598 | "node_modules/pathval": {
3599 | "version": "1.1.1",
3600 | "resolved": "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz",
3601 | "integrity": "sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==",
3602 | "engines": {
3603 | "node": "*"
3604 | }
3605 | },
3606 | "node_modules/picocolors": {
3607 | "version": "1.0.0",
3608 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
3609 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
3610 | },
3611 | "node_modules/picomatch": {
3612 | "version": "2.3.1",
3613 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
3614 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
3615 | "engines": {
3616 | "node": ">=8.6"
3617 | },
3618 | "funding": {
3619 | "url": "https://github.com/sponsors/jonschlinkert"
3620 | }
3621 | },
3622 | "node_modules/pify": {
3623 | "version": "2.3.0",
3624 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
3625 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
3626 | "engines": {
3627 | "node": ">=0.10.0"
3628 | }
3629 | },
3630 | "node_modules/pirates": {
3631 | "version": "4.0.5",
3632 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz",
3633 | "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==",
3634 | "engines": {
3635 | "node": ">= 6"
3636 | }
3637 | },
3638 | "node_modules/postcss": {
3639 | "version": "8.4.24",
3640 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.24.tgz",
3641 | "integrity": "sha512-M0RzbcI0sO/XJNucsGjvWU9ERWxb/ytp1w6dKtxTKgixdtQDq4rmx/g8W1hnaheq9jgwL/oyEdH5Bc4WwJKMqg==",
3642 | "funding": [
3643 | {
3644 | "type": "opencollective",
3645 | "url": "https://opencollective.com/postcss/"
3646 | },
3647 | {
3648 | "type": "tidelift",
3649 | "url": "https://tidelift.com/funding/github/npm/postcss"
3650 | },
3651 | {
3652 | "type": "github",
3653 | "url": "https://github.com/sponsors/ai"
3654 | }
3655 | ],
3656 | "dependencies": {
3657 | "nanoid": "^3.3.6",
3658 | "picocolors": "^1.0.0",
3659 | "source-map-js": "^1.0.2"
3660 | },
3661 | "engines": {
3662 | "node": "^10 || ^12 || >=14"
3663 | }
3664 | },
3665 | "node_modules/postcss-import": {
3666 | "version": "15.1.0",
3667 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
3668 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
3669 | "dependencies": {
3670 | "postcss-value-parser": "^4.0.0",
3671 | "read-cache": "^1.0.0",
3672 | "resolve": "^1.1.7"
3673 | },
3674 | "engines": {
3675 | "node": ">=14.0.0"
3676 | },
3677 | "peerDependencies": {
3678 | "postcss": "^8.0.0"
3679 | }
3680 | },
3681 | "node_modules/postcss-js": {
3682 | "version": "4.0.1",
3683 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz",
3684 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
3685 | "dependencies": {
3686 | "camelcase-css": "^2.0.1"
3687 | },
3688 | "engines": {
3689 | "node": "^12 || ^14 || >= 16"
3690 | },
3691 | "funding": {
3692 | "type": "opencollective",
3693 | "url": "https://opencollective.com/postcss/"
3694 | },
3695 | "peerDependencies": {
3696 | "postcss": "^8.4.21"
3697 | }
3698 | },
3699 | "node_modules/postcss-load-config": {
3700 | "version": "4.0.1",
3701 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz",
3702 | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==",
3703 | "dependencies": {
3704 | "lilconfig": "^2.0.5",
3705 | "yaml": "^2.1.1"
3706 | },
3707 | "engines": {
3708 | "node": ">= 14"
3709 | },
3710 | "funding": {
3711 | "type": "opencollective",
3712 | "url": "https://opencollective.com/postcss/"
3713 | },
3714 | "peerDependencies": {
3715 | "postcss": ">=8.0.9",
3716 | "ts-node": ">=9.0.0"
3717 | },
3718 | "peerDependenciesMeta": {
3719 | "postcss": {
3720 | "optional": true
3721 | },
3722 | "ts-node": {
3723 | "optional": true
3724 | }
3725 | }
3726 | },
3727 | "node_modules/postcss-nested": {
3728 | "version": "6.0.1",
3729 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz",
3730 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==",
3731 | "dependencies": {
3732 | "postcss-selector-parser": "^6.0.11"
3733 | },
3734 | "engines": {
3735 | "node": ">=12.0"
3736 | },
3737 | "funding": {
3738 | "type": "opencollective",
3739 | "url": "https://opencollective.com/postcss/"
3740 | },
3741 | "peerDependencies": {
3742 | "postcss": "^8.2.14"
3743 | }
3744 | },
3745 | "node_modules/postcss-selector-parser": {
3746 | "version": "6.0.13",
3747 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz",
3748 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==",
3749 | "dependencies": {
3750 | "cssesc": "^3.0.0",
3751 | "util-deprecate": "^1.0.2"
3752 | },
3753 | "engines": {
3754 | "node": ">=4"
3755 | }
3756 | },
3757 | "node_modules/postcss-value-parser": {
3758 | "version": "4.2.0",
3759 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
3760 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
3761 | },
3762 | "node_modules/prelude-ls": {
3763 | "version": "1.2.1",
3764 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
3765 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
3766 | "engines": {
3767 | "node": ">= 0.8.0"
3768 | }
3769 | },
3770 | "node_modules/process-nextick-args": {
3771 | "version": "2.0.1",
3772 | "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
3773 | "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="
3774 | },
3775 | "node_modules/prop-types": {
3776 | "version": "15.8.1",
3777 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
3778 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
3779 | "dependencies": {
3780 | "loose-envify": "^1.4.0",
3781 | "object-assign": "^4.1.1",
3782 | "react-is": "^16.13.1"
3783 | }
3784 | },
3785 | "node_modules/punycode": {
3786 | "version": "2.3.0",
3787 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
3788 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
3789 | "engines": {
3790 | "node": ">=6"
3791 | }
3792 | },
3793 | "node_modules/qs": {
3794 | "version": "6.11.2",
3795 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz",
3796 | "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==",
3797 | "dependencies": {
3798 | "side-channel": "^1.0.4"
3799 | },
3800 | "engines": {
3801 | "node": ">=0.6"
3802 | },
3803 | "funding": {
3804 | "url": "https://github.com/sponsors/ljharb"
3805 | }
3806 | },
3807 | "node_modules/queue-microtask": {
3808 | "version": "1.2.3",
3809 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
3810 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
3811 | "funding": [
3812 | {
3813 | "type": "github",
3814 | "url": "https://github.com/sponsors/feross"
3815 | },
3816 | {
3817 | "type": "patreon",
3818 | "url": "https://www.patreon.com/feross"
3819 | },
3820 | {
3821 | "type": "consulting",
3822 | "url": "https://feross.org/support"
3823 | }
3824 | ]
3825 | },
3826 | "node_modules/randombytes": {
3827 | "version": "2.1.0",
3828 | "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz",
3829 | "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==",
3830 | "dependencies": {
3831 | "safe-buffer": "^5.1.0"
3832 | }
3833 | },
3834 | "node_modules/react": {
3835 | "version": "18.2.0",
3836 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
3837 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
3838 | "dependencies": {
3839 | "loose-envify": "^1.1.0"
3840 | },
3841 | "engines": {
3842 | "node": ">=0.10.0"
3843 | }
3844 | },
3845 | "node_modules/react-dom": {
3846 | "version": "18.2.0",
3847 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
3848 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
3849 | "dependencies": {
3850 | "loose-envify": "^1.1.0",
3851 | "scheduler": "^0.23.0"
3852 | },
3853 | "peerDependencies": {
3854 | "react": "^18.2.0"
3855 | }
3856 | },
3857 | "node_modules/react-hook-form": {
3858 | "version": "7.44.2",
3859 | "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.44.2.tgz",
3860 | "integrity": "sha512-IyihmIbCwzDI/iqlecTRa7+4BCnzNx40upSlGvIU7qwENhTf6APatm4bmL9ANtWKPYlD67SIlxfls7GwCUe+Lg==",
3861 | "engines": {
3862 | "node": ">=12.22.0"
3863 | },
3864 | "funding": {
3865 | "type": "opencollective",
3866 | "url": "https://opencollective.com/react-hook-form"
3867 | },
3868 | "peerDependencies": {
3869 | "react": "^16.8.0 || ^17 || ^18"
3870 | }
3871 | },
3872 | "node_modules/react-is": {
3873 | "version": "16.13.1",
3874 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
3875 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
3876 | },
3877 | "node_modules/react-spinners": {
3878 | "version": "0.13.8",
3879 | "resolved": "https://registry.npmjs.org/react-spinners/-/react-spinners-0.13.8.tgz",
3880 | "integrity": "sha512-3e+k56lUkPj0vb5NDXPVFAOkPC//XyhKPJjvcGjyMNPWsBKpplfeyialP74G7H7+It7KzhtET+MvGqbKgAqpZA==",
3881 | "peerDependencies": {
3882 | "react": "^16.0.0 || ^17.0.0 || ^18.0.0",
3883 | "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
3884 | }
3885 | },
3886 | "node_modules/read-cache": {
3887 | "version": "1.0.0",
3888 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
3889 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
3890 | "dependencies": {
3891 | "pify": "^2.3.0"
3892 | }
3893 | },
3894 | "node_modules/readable-stream": {
3895 | "version": "2.3.8",
3896 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz",
3897 | "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==",
3898 | "dependencies": {
3899 | "core-util-is": "~1.0.0",
3900 | "inherits": "~2.0.3",
3901 | "isarray": "~1.0.0",
3902 | "process-nextick-args": "~2.0.0",
3903 | "safe-buffer": "~5.1.1",
3904 | "string_decoder": "~1.1.1",
3905 | "util-deprecate": "~1.0.1"
3906 | }
3907 | },
3908 | "node_modules/readable-stream/node_modules/isarray": {
3909 | "version": "1.0.0",
3910 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz",
3911 | "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ=="
3912 | },
3913 | "node_modules/readable-stream/node_modules/safe-buffer": {
3914 | "version": "5.1.2",
3915 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
3916 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
3917 | },
3918 | "node_modules/readdirp": {
3919 | "version": "3.6.0",
3920 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
3921 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
3922 | "dependencies": {
3923 | "picomatch": "^2.2.1"
3924 | },
3925 | "engines": {
3926 | "node": ">=8.10.0"
3927 | }
3928 | },
3929 | "node_modules/regenerator-runtime": {
3930 | "version": "0.13.11",
3931 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
3932 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
3933 | },
3934 | "node_modules/regexp.prototype.flags": {
3935 | "version": "1.5.0",
3936 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz",
3937 | "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==",
3938 | "dependencies": {
3939 | "call-bind": "^1.0.2",
3940 | "define-properties": "^1.2.0",
3941 | "functions-have-names": "^1.2.3"
3942 | },
3943 | "engines": {
3944 | "node": ">= 0.4"
3945 | },
3946 | "funding": {
3947 | "url": "https://github.com/sponsors/ljharb"
3948 | }
3949 | },
3950 | "node_modules/require-directory": {
3951 | "version": "2.1.1",
3952 | "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
3953 | "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
3954 | "engines": {
3955 | "node": ">=0.10.0"
3956 | }
3957 | },
3958 | "node_modules/resolve": {
3959 | "version": "1.22.2",
3960 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz",
3961 | "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==",
3962 | "dependencies": {
3963 | "is-core-module": "^2.11.0",
3964 | "path-parse": "^1.0.7",
3965 | "supports-preserve-symlinks-flag": "^1.0.0"
3966 | },
3967 | "bin": {
3968 | "resolve": "bin/resolve"
3969 | },
3970 | "funding": {
3971 | "url": "https://github.com/sponsors/ljharb"
3972 | }
3973 | },
3974 | "node_modules/resolve-from": {
3975 | "version": "4.0.0",
3976 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3977 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3978 | "engines": {
3979 | "node": ">=4"
3980 | }
3981 | },
3982 | "node_modules/reusify": {
3983 | "version": "1.0.4",
3984 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
3985 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
3986 | "engines": {
3987 | "iojs": ">=1.0.0",
3988 | "node": ">=0.10.0"
3989 | }
3990 | },
3991 | "node_modules/rimraf": {
3992 | "version": "3.0.2",
3993 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
3994 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
3995 | "dependencies": {
3996 | "glob": "^7.1.3"
3997 | },
3998 | "bin": {
3999 | "rimraf": "bin.js"
4000 | },
4001 | "funding": {
4002 | "url": "https://github.com/sponsors/isaacs"
4003 | }
4004 | },
4005 | "node_modules/run-applescript": {
4006 | "version": "5.0.0",
4007 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz",
4008 | "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==",
4009 | "dependencies": {
4010 | "execa": "^5.0.0"
4011 | },
4012 | "engines": {
4013 | "node": ">=12"
4014 | },
4015 | "funding": {
4016 | "url": "https://github.com/sponsors/sindresorhus"
4017 | }
4018 | },
4019 | "node_modules/run-applescript/node_modules/execa": {
4020 | "version": "5.1.1",
4021 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
4022 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
4023 | "dependencies": {
4024 | "cross-spawn": "^7.0.3",
4025 | "get-stream": "^6.0.0",
4026 | "human-signals": "^2.1.0",
4027 | "is-stream": "^2.0.0",
4028 | "merge-stream": "^2.0.0",
4029 | "npm-run-path": "^4.0.1",
4030 | "onetime": "^5.1.2",
4031 | "signal-exit": "^3.0.3",
4032 | "strip-final-newline": "^2.0.0"
4033 | },
4034 | "engines": {
4035 | "node": ">=10"
4036 | },
4037 | "funding": {
4038 | "url": "https://github.com/sindresorhus/execa?sponsor=1"
4039 | }
4040 | },
4041 | "node_modules/run-applescript/node_modules/human-signals": {
4042 | "version": "2.1.0",
4043 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
4044 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
4045 | "engines": {
4046 | "node": ">=10.17.0"
4047 | }
4048 | },
4049 | "node_modules/run-applescript/node_modules/is-stream": {
4050 | "version": "2.0.1",
4051 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
4052 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
4053 | "engines": {
4054 | "node": ">=8"
4055 | },
4056 | "funding": {
4057 | "url": "https://github.com/sponsors/sindresorhus"
4058 | }
4059 | },
4060 | "node_modules/run-applescript/node_modules/mimic-fn": {
4061 | "version": "2.1.0",
4062 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
4063 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
4064 | "engines": {
4065 | "node": ">=6"
4066 | }
4067 | },
4068 | "node_modules/run-applescript/node_modules/npm-run-path": {
4069 | "version": "4.0.1",
4070 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
4071 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
4072 | "dependencies": {
4073 | "path-key": "^3.0.0"
4074 | },
4075 | "engines": {
4076 | "node": ">=8"
4077 | }
4078 | },
4079 | "node_modules/run-applescript/node_modules/onetime": {
4080 | "version": "5.1.2",
4081 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
4082 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
4083 | "dependencies": {
4084 | "mimic-fn": "^2.1.0"
4085 | },
4086 | "engines": {
4087 | "node": ">=6"
4088 | },
4089 | "funding": {
4090 | "url": "https://github.com/sponsors/sindresorhus"
4091 | }
4092 | },
4093 | "node_modules/run-applescript/node_modules/strip-final-newline": {
4094 | "version": "2.0.0",
4095 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
4096 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
4097 | "engines": {
4098 | "node": ">=6"
4099 | }
4100 | },
4101 | "node_modules/run-parallel": {
4102 | "version": "1.2.0",
4103 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
4104 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
4105 | "funding": [
4106 | {
4107 | "type": "github",
4108 | "url": "https://github.com/sponsors/feross"
4109 | },
4110 | {
4111 | "type": "patreon",
4112 | "url": "https://www.patreon.com/feross"
4113 | },
4114 | {
4115 | "type": "consulting",
4116 | "url": "https://feross.org/support"
4117 | }
4118 | ],
4119 | "dependencies": {
4120 | "queue-microtask": "^1.2.2"
4121 | }
4122 | },
4123 | "node_modules/safe-buffer": {
4124 | "version": "5.2.1",
4125 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
4126 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
4127 | "funding": [
4128 | {
4129 | "type": "github",
4130 | "url": "https://github.com/sponsors/feross"
4131 | },
4132 | {
4133 | "type": "patreon",
4134 | "url": "https://www.patreon.com/feross"
4135 | },
4136 | {
4137 | "type": "consulting",
4138 | "url": "https://feross.org/support"
4139 | }
4140 | ]
4141 | },
4142 | "node_modules/safe-regex-test": {
4143 | "version": "1.0.0",
4144 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
4145 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
4146 | "dependencies": {
4147 | "call-bind": "^1.0.2",
4148 | "get-intrinsic": "^1.1.3",
4149 | "is-regex": "^1.1.4"
4150 | },
4151 | "funding": {
4152 | "url": "https://github.com/sponsors/ljharb"
4153 | }
4154 | },
4155 | "node_modules/scheduler": {
4156 | "version": "0.23.0",
4157 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
4158 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
4159 | "dependencies": {
4160 | "loose-envify": "^1.1.0"
4161 | }
4162 | },
4163 | "node_modules/semver": {
4164 | "version": "7.5.1",
4165 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.1.tgz",
4166 | "integrity": "sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==",
4167 | "dependencies": {
4168 | "lru-cache": "^6.0.0"
4169 | },
4170 | "bin": {
4171 | "semver": "bin/semver.js"
4172 | },
4173 | "engines": {
4174 | "node": ">=10"
4175 | }
4176 | },
4177 | "node_modules/serialize-javascript": {
4178 | "version": "6.0.0",
4179 | "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz",
4180 | "integrity": "sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==",
4181 | "dependencies": {
4182 | "randombytes": "^2.1.0"
4183 | }
4184 | },
4185 | "node_modules/shebang-command": {
4186 | "version": "2.0.0",
4187 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
4188 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
4189 | "dependencies": {
4190 | "shebang-regex": "^3.0.0"
4191 | },
4192 | "engines": {
4193 | "node": ">=8"
4194 | }
4195 | },
4196 | "node_modules/shebang-regex": {
4197 | "version": "3.0.0",
4198 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
4199 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
4200 | "engines": {
4201 | "node": ">=8"
4202 | }
4203 | },
4204 | "node_modules/side-channel": {
4205 | "version": "1.0.4",
4206 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
4207 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
4208 | "dependencies": {
4209 | "call-bind": "^1.0.0",
4210 | "get-intrinsic": "^1.0.2",
4211 | "object-inspect": "^1.9.0"
4212 | },
4213 | "funding": {
4214 | "url": "https://github.com/sponsors/ljharb"
4215 | }
4216 | },
4217 | "node_modules/signal-exit": {
4218 | "version": "3.0.7",
4219 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
4220 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
4221 | },
4222 | "node_modules/slash": {
4223 | "version": "3.0.0",
4224 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
4225 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
4226 | "engines": {
4227 | "node": ">=8"
4228 | }
4229 | },
4230 | "node_modules/source-map-js": {
4231 | "version": "1.0.2",
4232 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
4233 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
4234 | "engines": {
4235 | "node": ">=0.10.0"
4236 | }
4237 | },
4238 | "node_modules/stop-iteration-iterator": {
4239 | "version": "1.0.0",
4240 | "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.0.0.tgz",
4241 | "integrity": "sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==",
4242 | "dependencies": {
4243 | "internal-slot": "^1.0.4"
4244 | },
4245 | "engines": {
4246 | "node": ">= 0.4"
4247 | }
4248 | },
4249 | "node_modules/streamsearch": {
4250 | "version": "1.1.0",
4251 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
4252 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
4253 | "engines": {
4254 | "node": ">=10.0.0"
4255 | }
4256 | },
4257 | "node_modules/string_decoder": {
4258 | "version": "1.1.1",
4259 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz",
4260 | "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==",
4261 | "dependencies": {
4262 | "safe-buffer": "~5.1.0"
4263 | }
4264 | },
4265 | "node_modules/string_decoder/node_modules/safe-buffer": {
4266 | "version": "5.1.2",
4267 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz",
4268 | "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="
4269 | },
4270 | "node_modules/string-width": {
4271 | "version": "4.2.3",
4272 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
4273 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
4274 | "dependencies": {
4275 | "emoji-regex": "^8.0.0",
4276 | "is-fullwidth-code-point": "^3.0.0",
4277 | "strip-ansi": "^6.0.1"
4278 | },
4279 | "engines": {
4280 | "node": ">=8"
4281 | }
4282 | },
4283 | "node_modules/string-width/node_modules/emoji-regex": {
4284 | "version": "8.0.0",
4285 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
4286 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="
4287 | },
4288 | "node_modules/string.prototype.matchall": {
4289 | "version": "4.0.8",
4290 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz",
4291 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==",
4292 | "dependencies": {
4293 | "call-bind": "^1.0.2",
4294 | "define-properties": "^1.1.4",
4295 | "es-abstract": "^1.20.4",
4296 | "get-intrinsic": "^1.1.3",
4297 | "has-symbols": "^1.0.3",
4298 | "internal-slot": "^1.0.3",
4299 | "regexp.prototype.flags": "^1.4.3",
4300 | "side-channel": "^1.0.4"
4301 | },
4302 | "funding": {
4303 | "url": "https://github.com/sponsors/ljharb"
4304 | }
4305 | },
4306 | "node_modules/string.prototype.trim": {
4307 | "version": "1.2.7",
4308 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz",
4309 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==",
4310 | "dependencies": {
4311 | "call-bind": "^1.0.2",
4312 | "define-properties": "^1.1.4",
4313 | "es-abstract": "^1.20.4"
4314 | },
4315 | "engines": {
4316 | "node": ">= 0.4"
4317 | },
4318 | "funding": {
4319 | "url": "https://github.com/sponsors/ljharb"
4320 | }
4321 | },
4322 | "node_modules/string.prototype.trimend": {
4323 | "version": "1.0.6",
4324 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz",
4325 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==",
4326 | "dependencies": {
4327 | "call-bind": "^1.0.2",
4328 | "define-properties": "^1.1.4",
4329 | "es-abstract": "^1.20.4"
4330 | },
4331 | "funding": {
4332 | "url": "https://github.com/sponsors/ljharb"
4333 | }
4334 | },
4335 | "node_modules/string.prototype.trimstart": {
4336 | "version": "1.0.6",
4337 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz",
4338 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==",
4339 | "dependencies": {
4340 | "call-bind": "^1.0.2",
4341 | "define-properties": "^1.1.4",
4342 | "es-abstract": "^1.20.4"
4343 | },
4344 | "funding": {
4345 | "url": "https://github.com/sponsors/ljharb"
4346 | }
4347 | },
4348 | "node_modules/strip-ansi": {
4349 | "version": "6.0.1",
4350 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
4351 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
4352 | "dependencies": {
4353 | "ansi-regex": "^5.0.1"
4354 | },
4355 | "engines": {
4356 | "node": ">=8"
4357 | }
4358 | },
4359 | "node_modules/strip-bom": {
4360 | "version": "3.0.0",
4361 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
4362 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
4363 | "engines": {
4364 | "node": ">=4"
4365 | }
4366 | },
4367 | "node_modules/strip-final-newline": {
4368 | "version": "3.0.0",
4369 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
4370 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
4371 | "engines": {
4372 | "node": ">=12"
4373 | },
4374 | "funding": {
4375 | "url": "https://github.com/sponsors/sindresorhus"
4376 | }
4377 | },
4378 | "node_modules/strip-json-comments": {
4379 | "version": "3.1.1",
4380 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
4381 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
4382 | "engines": {
4383 | "node": ">=8"
4384 | },
4385 | "funding": {
4386 | "url": "https://github.com/sponsors/sindresorhus"
4387 | }
4388 | },
4389 | "node_modules/styled-jsx": {
4390 | "version": "5.1.1",
4391 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz",
4392 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==",
4393 | "dependencies": {
4394 | "client-only": "0.0.1"
4395 | },
4396 | "engines": {
4397 | "node": ">= 12.0.0"
4398 | },
4399 | "peerDependencies": {
4400 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
4401 | },
4402 | "peerDependenciesMeta": {
4403 | "@babel/core": {
4404 | "optional": true
4405 | },
4406 | "babel-plugin-macros": {
4407 | "optional": true
4408 | }
4409 | }
4410 | },
4411 | "node_modules/sucrase": {
4412 | "version": "3.32.0",
4413 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.32.0.tgz",
4414 | "integrity": "sha512-ydQOU34rpSyj2TGyz4D2p8rbktIOZ8QY9s+DGLvFU1i5pWJE8vkpruCjGCMHsdXwnD7JDcS+noSwM/a7zyNFDQ==",
4415 | "dependencies": {
4416 | "@jridgewell/gen-mapping": "^0.3.2",
4417 | "commander": "^4.0.0",
4418 | "glob": "7.1.6",
4419 | "lines-and-columns": "^1.1.6",
4420 | "mz": "^2.7.0",
4421 | "pirates": "^4.0.1",
4422 | "ts-interface-checker": "^0.1.9"
4423 | },
4424 | "bin": {
4425 | "sucrase": "bin/sucrase",
4426 | "sucrase-node": "bin/sucrase-node"
4427 | },
4428 | "engines": {
4429 | "node": ">=8"
4430 | }
4431 | },
4432 | "node_modules/sucrase/node_modules/glob": {
4433 | "version": "7.1.6",
4434 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
4435 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
4436 | "dependencies": {
4437 | "fs.realpath": "^1.0.0",
4438 | "inflight": "^1.0.4",
4439 | "inherits": "2",
4440 | "minimatch": "^3.0.4",
4441 | "once": "^1.3.0",
4442 | "path-is-absolute": "^1.0.0"
4443 | },
4444 | "engines": {
4445 | "node": "*"
4446 | },
4447 | "funding": {
4448 | "url": "https://github.com/sponsors/isaacs"
4449 | }
4450 | },
4451 | "node_modules/superagent": {
4452 | "version": "3.8.3",
4453 | "resolved": "https://registry.npmjs.org/superagent/-/superagent-3.8.3.tgz",
4454 | "integrity": "sha512-GLQtLMCoEIK4eDv6OGtkOoSMt3D+oq0y3dsxMuYuDvaNUvuT8eFBuLmfR0iYYzHC1e8hpzC6ZsxbuP6DIalMFA==",
4455 | "deprecated": "Please upgrade to v7.0.2+ of superagent. We have fixed numerous issues with streams, form-data, attach(), filesystem errors not bubbling up (ENOENT on attach()), and all tests are now passing. See the releases tab for more information at .",
4456 | "dependencies": {
4457 | "component-emitter": "^1.2.0",
4458 | "cookiejar": "^2.1.0",
4459 | "debug": "^3.1.0",
4460 | "extend": "^3.0.0",
4461 | "form-data": "^2.3.1",
4462 | "formidable": "^1.2.0",
4463 | "methods": "^1.1.1",
4464 | "mime": "^1.4.1",
4465 | "qs": "^6.5.1",
4466 | "readable-stream": "^2.3.5"
4467 | },
4468 | "engines": {
4469 | "node": ">= 4.0"
4470 | }
4471 | },
4472 | "node_modules/superagent/node_modules/debug": {
4473 | "version": "3.2.7",
4474 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
4475 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
4476 | "dependencies": {
4477 | "ms": "^2.1.1"
4478 | }
4479 | },
4480 | "node_modules/superagentai-js": {
4481 | "version": "0.0.3",
4482 | "resolved": "https://registry.npmjs.org/superagentai-js/-/superagentai-js-0.0.3.tgz",
4483 | "integrity": "sha512-eMIsom7XH8f2l/UG6ufdrmABJFzfs6fQnoVhu434anJpy+9nOxCfWSlsUfbeVoZhQPmrDWv8OJFV6nm8+SqRug==",
4484 | "dependencies": {
4485 | "chai": "^4.3.7",
4486 | "chai-http": "^4.3.0",
4487 | "mocha": "^10.2.0"
4488 | }
4489 | },
4490 | "node_modules/supports-color": {
4491 | "version": "7.2.0",
4492 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
4493 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
4494 | "dependencies": {
4495 | "has-flag": "^4.0.0"
4496 | },
4497 | "engines": {
4498 | "node": ">=8"
4499 | }
4500 | },
4501 | "node_modules/supports-preserve-symlinks-flag": {
4502 | "version": "1.0.0",
4503 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
4504 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
4505 | "engines": {
4506 | "node": ">= 0.4"
4507 | },
4508 | "funding": {
4509 | "url": "https://github.com/sponsors/ljharb"
4510 | }
4511 | },
4512 | "node_modules/synckit": {
4513 | "version": "0.8.5",
4514 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz",
4515 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==",
4516 | "dependencies": {
4517 | "@pkgr/utils": "^2.3.1",
4518 | "tslib": "^2.5.0"
4519 | },
4520 | "engines": {
4521 | "node": "^14.18.0 || >=16.0.0"
4522 | },
4523 | "funding": {
4524 | "url": "https://opencollective.com/unts"
4525 | }
4526 | },
4527 | "node_modules/tailwindcss": {
4528 | "version": "3.3.2",
4529 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.2.tgz",
4530 | "integrity": "sha512-9jPkMiIBXvPc2KywkraqsUfbfj+dHDb+JPWtSJa9MLFdrPyazI7q6WX2sUrm7R9eVR7qqv3Pas7EvQFzxKnI6w==",
4531 | "dependencies": {
4532 | "@alloc/quick-lru": "^5.2.0",
4533 | "arg": "^5.0.2",
4534 | "chokidar": "^3.5.3",
4535 | "didyoumean": "^1.2.2",
4536 | "dlv": "^1.1.3",
4537 | "fast-glob": "^3.2.12",
4538 | "glob-parent": "^6.0.2",
4539 | "is-glob": "^4.0.3",
4540 | "jiti": "^1.18.2",
4541 | "lilconfig": "^2.1.0",
4542 | "micromatch": "^4.0.5",
4543 | "normalize-path": "^3.0.0",
4544 | "object-hash": "^3.0.0",
4545 | "picocolors": "^1.0.0",
4546 | "postcss": "^8.4.23",
4547 | "postcss-import": "^15.1.0",
4548 | "postcss-js": "^4.0.1",
4549 | "postcss-load-config": "^4.0.1",
4550 | "postcss-nested": "^6.0.1",
4551 | "postcss-selector-parser": "^6.0.11",
4552 | "postcss-value-parser": "^4.2.0",
4553 | "resolve": "^1.22.2",
4554 | "sucrase": "^3.32.0"
4555 | },
4556 | "bin": {
4557 | "tailwind": "lib/cli.js",
4558 | "tailwindcss": "lib/cli.js"
4559 | },
4560 | "engines": {
4561 | "node": ">=14.0.0"
4562 | }
4563 | },
4564 | "node_modules/tapable": {
4565 | "version": "2.2.1",
4566 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
4567 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
4568 | "engines": {
4569 | "node": ">=6"
4570 | }
4571 | },
4572 | "node_modules/text-table": {
4573 | "version": "0.2.0",
4574 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
4575 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="
4576 | },
4577 | "node_modules/thenify": {
4578 | "version": "3.3.1",
4579 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
4580 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
4581 | "dependencies": {
4582 | "any-promise": "^1.0.0"
4583 | }
4584 | },
4585 | "node_modules/thenify-all": {
4586 | "version": "1.6.0",
4587 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
4588 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
4589 | "dependencies": {
4590 | "thenify": ">= 3.1.0 < 4"
4591 | },
4592 | "engines": {
4593 | "node": ">=0.8"
4594 | }
4595 | },
4596 | "node_modules/titleize": {
4597 | "version": "3.0.0",
4598 | "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz",
4599 | "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==",
4600 | "engines": {
4601 | "node": ">=12"
4602 | },
4603 | "funding": {
4604 | "url": "https://github.com/sponsors/sindresorhus"
4605 | }
4606 | },
4607 | "node_modules/to-regex-range": {
4608 | "version": "5.0.1",
4609 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
4610 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
4611 | "dependencies": {
4612 | "is-number": "^7.0.0"
4613 | },
4614 | "engines": {
4615 | "node": ">=8.0"
4616 | }
4617 | },
4618 | "node_modules/ts-interface-checker": {
4619 | "version": "0.1.13",
4620 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
4621 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="
4622 | },
4623 | "node_modules/tsconfig-paths": {
4624 | "version": "3.14.2",
4625 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz",
4626 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==",
4627 | "dependencies": {
4628 | "@types/json5": "^0.0.29",
4629 | "json5": "^1.0.2",
4630 | "minimist": "^1.2.6",
4631 | "strip-bom": "^3.0.0"
4632 | }
4633 | },
4634 | "node_modules/tslib": {
4635 | "version": "2.5.2",
4636 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.5.2.tgz",
4637 | "integrity": "sha512-5svOrSA2w3iGFDs1HibEVBGbDrAY82bFQ3HZ3ixB+88nsbsWQoKqDRb5UBYAUPEzbBn6dAp5gRNXglySbx1MlA=="
4638 | },
4639 | "node_modules/tsutils": {
4640 | "version": "3.21.0",
4641 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
4642 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
4643 | "dependencies": {
4644 | "tslib": "^1.8.1"
4645 | },
4646 | "engines": {
4647 | "node": ">= 6"
4648 | },
4649 | "peerDependencies": {
4650 | "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
4651 | }
4652 | },
4653 | "node_modules/tsutils/node_modules/tslib": {
4654 | "version": "1.14.1",
4655 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
4656 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
4657 | },
4658 | "node_modules/type-check": {
4659 | "version": "0.4.0",
4660 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
4661 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
4662 | "dependencies": {
4663 | "prelude-ls": "^1.2.1"
4664 | },
4665 | "engines": {
4666 | "node": ">= 0.8.0"
4667 | }
4668 | },
4669 | "node_modules/type-detect": {
4670 | "version": "4.0.8",
4671 | "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz",
4672 | "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==",
4673 | "engines": {
4674 | "node": ">=4"
4675 | }
4676 | },
4677 | "node_modules/type-fest": {
4678 | "version": "0.20.2",
4679 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
4680 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
4681 | "engines": {
4682 | "node": ">=10"
4683 | },
4684 | "funding": {
4685 | "url": "https://github.com/sponsors/sindresorhus"
4686 | }
4687 | },
4688 | "node_modules/typed-array-length": {
4689 | "version": "1.0.4",
4690 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz",
4691 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==",
4692 | "dependencies": {
4693 | "call-bind": "^1.0.2",
4694 | "for-each": "^0.3.3",
4695 | "is-typed-array": "^1.1.9"
4696 | },
4697 | "funding": {
4698 | "url": "https://github.com/sponsors/ljharb"
4699 | }
4700 | },
4701 | "node_modules/typescript": {
4702 | "version": "5.0.4",
4703 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.0.4.tgz",
4704 | "integrity": "sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==",
4705 | "peer": true,
4706 | "bin": {
4707 | "tsc": "bin/tsc",
4708 | "tsserver": "bin/tsserver"
4709 | },
4710 | "engines": {
4711 | "node": ">=12.20"
4712 | }
4713 | },
4714 | "node_modules/unbox-primitive": {
4715 | "version": "1.0.2",
4716 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",
4717 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==",
4718 | "dependencies": {
4719 | "call-bind": "^1.0.2",
4720 | "has-bigints": "^1.0.2",
4721 | "has-symbols": "^1.0.3",
4722 | "which-boxed-primitive": "^1.0.2"
4723 | },
4724 | "funding": {
4725 | "url": "https://github.com/sponsors/ljharb"
4726 | }
4727 | },
4728 | "node_modules/untildify": {
4729 | "version": "4.0.0",
4730 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz",
4731 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
4732 | "engines": {
4733 | "node": ">=8"
4734 | }
4735 | },
4736 | "node_modules/update-browserslist-db": {
4737 | "version": "1.0.11",
4738 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz",
4739 | "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==",
4740 | "funding": [
4741 | {
4742 | "type": "opencollective",
4743 | "url": "https://opencollective.com/browserslist"
4744 | },
4745 | {
4746 | "type": "tidelift",
4747 | "url": "https://tidelift.com/funding/github/npm/browserslist"
4748 | },
4749 | {
4750 | "type": "github",
4751 | "url": "https://github.com/sponsors/ai"
4752 | }
4753 | ],
4754 | "dependencies": {
4755 | "escalade": "^3.1.1",
4756 | "picocolors": "^1.0.0"
4757 | },
4758 | "bin": {
4759 | "update-browserslist-db": "cli.js"
4760 | },
4761 | "peerDependencies": {
4762 | "browserslist": ">= 4.21.0"
4763 | }
4764 | },
4765 | "node_modules/uri-js": {
4766 | "version": "4.4.1",
4767 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
4768 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
4769 | "dependencies": {
4770 | "punycode": "^2.1.0"
4771 | }
4772 | },
4773 | "node_modules/util-deprecate": {
4774 | "version": "1.0.2",
4775 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
4776 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
4777 | },
4778 | "node_modules/which": {
4779 | "version": "2.0.2",
4780 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
4781 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
4782 | "dependencies": {
4783 | "isexe": "^2.0.0"
4784 | },
4785 | "bin": {
4786 | "node-which": "bin/node-which"
4787 | },
4788 | "engines": {
4789 | "node": ">= 8"
4790 | }
4791 | },
4792 | "node_modules/which-boxed-primitive": {
4793 | "version": "1.0.2",
4794 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
4795 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
4796 | "dependencies": {
4797 | "is-bigint": "^1.0.1",
4798 | "is-boolean-object": "^1.1.0",
4799 | "is-number-object": "^1.0.4",
4800 | "is-string": "^1.0.5",
4801 | "is-symbol": "^1.0.3"
4802 | },
4803 | "funding": {
4804 | "url": "https://github.com/sponsors/ljharb"
4805 | }
4806 | },
4807 | "node_modules/which-collection": {
4808 | "version": "1.0.1",
4809 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz",
4810 | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==",
4811 | "dependencies": {
4812 | "is-map": "^2.0.1",
4813 | "is-set": "^2.0.1",
4814 | "is-weakmap": "^2.0.1",
4815 | "is-weakset": "^2.0.1"
4816 | },
4817 | "funding": {
4818 | "url": "https://github.com/sponsors/ljharb"
4819 | }
4820 | },
4821 | "node_modules/which-typed-array": {
4822 | "version": "1.1.9",
4823 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz",
4824 | "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==",
4825 | "dependencies": {
4826 | "available-typed-arrays": "^1.0.5",
4827 | "call-bind": "^1.0.2",
4828 | "for-each": "^0.3.3",
4829 | "gopd": "^1.0.1",
4830 | "has-tostringtag": "^1.0.0",
4831 | "is-typed-array": "^1.1.10"
4832 | },
4833 | "engines": {
4834 | "node": ">= 0.4"
4835 | },
4836 | "funding": {
4837 | "url": "https://github.com/sponsors/ljharb"
4838 | }
4839 | },
4840 | "node_modules/word-wrap": {
4841 | "version": "1.2.3",
4842 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz",
4843 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==",
4844 | "engines": {
4845 | "node": ">=0.10.0"
4846 | }
4847 | },
4848 | "node_modules/workerpool": {
4849 | "version": "6.2.1",
4850 | "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz",
4851 | "integrity": "sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw=="
4852 | },
4853 | "node_modules/wrap-ansi": {
4854 | "version": "7.0.0",
4855 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
4856 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
4857 | "dependencies": {
4858 | "ansi-styles": "^4.0.0",
4859 | "string-width": "^4.1.0",
4860 | "strip-ansi": "^6.0.0"
4861 | },
4862 | "engines": {
4863 | "node": ">=10"
4864 | },
4865 | "funding": {
4866 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
4867 | }
4868 | },
4869 | "node_modules/wrappy": {
4870 | "version": "1.0.2",
4871 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
4872 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
4873 | },
4874 | "node_modules/y18n": {
4875 | "version": "5.0.8",
4876 | "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
4877 | "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
4878 | "engines": {
4879 | "node": ">=10"
4880 | }
4881 | },
4882 | "node_modules/yallist": {
4883 | "version": "4.0.0",
4884 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
4885 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
4886 | },
4887 | "node_modules/yaml": {
4888 | "version": "2.3.1",
4889 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz",
4890 | "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==",
4891 | "engines": {
4892 | "node": ">= 14"
4893 | }
4894 | },
4895 | "node_modules/yargs": {
4896 | "version": "16.2.0",
4897 | "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz",
4898 | "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==",
4899 | "dependencies": {
4900 | "cliui": "^7.0.2",
4901 | "escalade": "^3.1.1",
4902 | "get-caller-file": "^2.0.5",
4903 | "require-directory": "^2.1.1",
4904 | "string-width": "^4.2.0",
4905 | "y18n": "^5.0.5",
4906 | "yargs-parser": "^20.2.2"
4907 | },
4908 | "engines": {
4909 | "node": ">=10"
4910 | }
4911 | },
4912 | "node_modules/yargs-parser": {
4913 | "version": "20.2.4",
4914 | "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz",
4915 | "integrity": "sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA==",
4916 | "engines": {
4917 | "node": ">=10"
4918 | }
4919 | },
4920 | "node_modules/yargs-unparser": {
4921 | "version": "2.0.0",
4922 | "resolved": "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-2.0.0.tgz",
4923 | "integrity": "sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==",
4924 | "dependencies": {
4925 | "camelcase": "^6.0.0",
4926 | "decamelize": "^4.0.0",
4927 | "flat": "^5.0.2",
4928 | "is-plain-obj": "^2.1.0"
4929 | },
4930 | "engines": {
4931 | "node": ">=10"
4932 | }
4933 | },
4934 | "node_modules/yocto-queue": {
4935 | "version": "0.1.0",
4936 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
4937 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
4938 | "engines": {
4939 | "node": ">=10"
4940 | },
4941 | "funding": {
4942 | "url": "https://github.com/sponsors/sindresorhus"
4943 | }
4944 | },
4945 | "node_modules/zod": {
4946 | "version": "3.21.4",
4947 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz",
4948 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==",
4949 | "funding": {
4950 | "url": "https://github.com/sponsors/colinhacks"
4951 | }
4952 | }
4953 | }
4954 | }
4955 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "nextjs-superagent",
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 | "autoprefixer": "10.4.14",
13 | "eslint": "8.41.0",
14 | "eslint-config-next": "13.4.4",
15 | "next": "13.4.4",
16 | "postcss": "8.4.24",
17 | "react": "18.2.0",
18 | "react-dom": "18.2.0",
19 | "react-hook-form": "^7.44.2",
20 | "react-spinners": "^0.13.8",
21 | "superagentai-js": "^0.0.3",
22 | "tailwindcss": "3.3.2"
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/postcss.config.js:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/public/next.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/vercel.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/tailwind.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('tailwindcss').Config} */
2 | module.exports = {
3 | content: [
4 | './pages/**/*.{js,ts,jsx,tsx,mdx}',
5 | './components/**/*.{js,ts,jsx,tsx,mdx}',
6 | './app/**/*.{js,ts,jsx,tsx,mdx}',
7 | ],
8 | theme: {
9 | extend: {
10 | backgroundImage: {
11 | 'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
12 | 'gradient-conic':
13 | 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
14 | },
15 | },
16 | },
17 | plugins: [],
18 | }
19 |
--------------------------------------------------------------------------------