├── .eslintrc.json
├── .gitignore
├── README.md
├── app
├── api
│ └── signup
│ │ └── route.ts
├── favicon.ico
├── globals.css
├── layout.tsx
└── page.tsx
├── components
├── form-with-react-hook-form.tsx
├── form-with-rhf-and-zod-and-server.tsx
├── form-with-rhf-and-zod.tsx
└── form-without-react-hook-form.tsx
├── lib
└── types.ts
├── next.config.js
├── package-lock.json
├── package.json
├── postcss.config.js
├── public
├── next.svg
└── vercel.svg
├── tailwind.config.js
└── tsconfig.json
/.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 |
30 | # vercel
31 | .vercel
32 |
33 | # typescript
34 | *.tsbuildinfo
35 | next-env.d.ts
36 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | [](https://youtu.be/u6PQ5xZAv7Q)
2 |
3 | # [Watch video here](https://youtu.be/u6PQ5xZAv7Q)
4 |
5 | ## What you will learn
6 |
7 | - Traditional form
8 | - Form with React-Hook-Form
9 | - Form with React-Hook-Form PLUS Zod
10 | - Form with React-Hook-Form PLUS Zod PLUS server-side errors
11 |
12 | ## Important
13 |
14 | If you want to be a professional developer, you have to know the fundamentals like JavaScript and CSS really well. I highly recommend you go through my [Professional JavaScript](https://bytegrad.com/courses/professional-javascript) and [Professional CSS](https://bytegrad.com/courses/professional-css) courses.
15 |
16 | I'm close to releasing a complete React & Next.js course. Get on the email list to receive early-bird pricing: [link](https://email.bytegrad.com/).
17 |
--------------------------------------------------------------------------------
/app/api/signup/route.ts:
--------------------------------------------------------------------------------
1 | import { signUpSchema } from "@/lib/types";
2 | import { NextResponse } from "next/server";
3 |
4 | export async function POST(request: Request) {
5 | const body: unknown = await request.json();
6 |
7 | const result = signUpSchema.safeParse(body);
8 |
9 | // check out Zod's .flatten() method for an easier way to process errors
10 | let zodErrors = {};
11 | if (!result.success) {
12 | result.error.issues.forEach((issue) => {
13 | zodErrors = { ...zodErrors, [issue.path[0]]: issue.message };
14 | });
15 | }
16 |
17 | return NextResponse.json(
18 | Object.keys(zodErrors).length > 0
19 | ? { errors: zodErrors }
20 | : { success: true }
21 | );
22 | }
23 |
--------------------------------------------------------------------------------
/app/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ByteGrad/react-hook-form-with-zod-and-server-side/a62abc6188e58611de69616254d70218623eeb80/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.tsx:
--------------------------------------------------------------------------------
1 | import './globals.css'
2 | import type { Metadata } from 'next'
3 | import { Inter } from 'next/font/google'
4 |
5 | const inter = Inter({ subsets: ['latin'] })
6 |
7 | export const metadata: Metadata = {
8 | title: 'Create Next App',
9 | description: 'Generated by create next app',
10 | }
11 |
12 | export default function RootLayout({
13 | children,
14 | }: {
15 | children: React.ReactNode
16 | }) {
17 | return (
18 |
19 |
{children}
20 |
21 | )
22 | }
23 |
--------------------------------------------------------------------------------
/app/page.tsx:
--------------------------------------------------------------------------------
1 | import FormWithReactHookForm from "@/components/form-with-react-hook-form";
2 | import FormWithReactHookFormAndZod from "@/components/form-with-rhf-and-zod";
3 | import FormWithReactHookFormAndZodAndServer from "@/components/form-with-rhf-and-zod-and-server";
4 | import FormWithoutReactHookForm from "@/components/form-without-react-hook-form";
5 |
6 | export default function Home() {
7 | return (
8 |
9 | {/* */}
10 | {/* */}
11 | {/* */}
12 |
13 |
14 | );
15 | }
16 |
--------------------------------------------------------------------------------
/components/form-with-react-hook-form.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 |
3 | import React from "react";
4 | import { useForm, type FieldValues } from "react-hook-form";
5 |
6 | export default function FormWithReactHookForm() {
7 | const {
8 | register,
9 | handleSubmit,
10 | formState: { errors, isSubmitting },
11 | reset,
12 | getValues,
13 | } = useForm();
14 |
15 | const onSubmit = async (data: FieldValues) => {
16 | // TODO: submit to server
17 | // ...
18 | await new Promise((resolve) => setTimeout(resolve, 1000));
19 |
20 | reset();
21 | };
22 |
23 | return (
24 |
75 | );
76 | }
77 |
--------------------------------------------------------------------------------
/components/form-with-rhf-and-zod-and-server.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 |
3 | import { TSignUpSchema, signUpSchema } from "@/lib/types";
4 | import { zodResolver } from "@hookform/resolvers/zod";
5 | import React from "react";
6 | import { useForm } from "react-hook-form";
7 |
8 | export default function FormWithReactHookFormAndZodAndServer() {
9 | const {
10 | register,
11 | handleSubmit,
12 | formState: { errors, isSubmitting },
13 | reset,
14 | setError,
15 | } = useForm({
16 | resolver: zodResolver(signUpSchema),
17 | });
18 |
19 | const onSubmit = async (data: TSignUpSchema) => {
20 | const response = await fetch("/api/signup", {
21 | method: "POST",
22 | body: JSON.stringify(data),
23 | headers: {
24 | "Content-Type": "application/json",
25 | },
26 | });
27 | const responseData = await response.json();
28 | if (!response.ok) {
29 | // response status is not 2xx
30 | alert("Submitting form failed!");
31 | return;
32 | }
33 |
34 | if (responseData.errors) {
35 | const errors = responseData.errors;
36 |
37 | if (errors.email) {
38 | setError("email", {
39 | type: "server",
40 | message: errors.email,
41 | });
42 | } else if (errors.password) {
43 | setError("password", {
44 | type: "server",
45 | message: errors.password,
46 | });
47 | } else if (errors.confirmPassword) {
48 | setError("confirmPassword", {
49 | type: "server",
50 | message: errors.confirmPassword,
51 | });
52 | } else {
53 | alert("Something went wrong!");
54 | }
55 | }
56 |
57 | // reset();
58 | };
59 |
60 | return (
61 |
100 | );
101 | }
102 |
--------------------------------------------------------------------------------
/components/form-with-rhf-and-zod.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 |
3 | import { TSignUpSchema, signUpSchema } from "@/lib/types";
4 | import { zodResolver } from "@hookform/resolvers/zod";
5 | import React from "react";
6 | import { useForm } from "react-hook-form";
7 |
8 | export default function FormWithReactHookFormAndZod() {
9 | const {
10 | register,
11 | handleSubmit,
12 | formState: { errors, isSubmitting },
13 | reset,
14 | } = useForm({
15 | resolver: zodResolver(signUpSchema),
16 | });
17 |
18 | const onSubmit = async (data: TSignUpSchema) => {
19 | // TODO: submit to server
20 | // ...
21 | await new Promise((resolve) => setTimeout(resolve, 1000));
22 |
23 | reset();
24 | };
25 |
26 | return (
27 |
66 | );
67 | }
68 |
--------------------------------------------------------------------------------
/components/form-without-react-hook-form.tsx:
--------------------------------------------------------------------------------
1 | "use client";
2 |
3 | import React, { useState } from "react";
4 |
5 | export default function FormWithoutReactHookForm() {
6 | const [email, setEmail] = useState("");
7 | const [password, setPassword] = useState("");
8 | const [confirmPassword, setConfirmPassword] = useState("");
9 | const [isSubmitting, setIsSubmitting] = useState(false);
10 | const [errors, setErrors] = useState([]);
11 |
12 | const handleSubmit = async (e: React.FormEvent) => {
13 | e.preventDefault();
14 | setIsSubmitting(true);
15 |
16 | if (password !== confirmPassword) {
17 | setErrors(["Password and confirm password must match"]);
18 | setIsSubmitting(false);
19 | return;
20 | }
21 |
22 | // TODO: submit to server
23 | // ...
24 | await new Promise((resolve) => setTimeout(resolve, 1000));
25 |
26 | setEmail("");
27 | setPassword("");
28 | setConfirmPassword("");
29 | setIsSubmitting(false);
30 | };
31 |
32 | return (
33 |
79 | );
80 | }
81 |
--------------------------------------------------------------------------------
/lib/types.ts:
--------------------------------------------------------------------------------
1 | import { z } from "zod";
2 |
3 | export const signUpSchema = z
4 | .object({
5 | email: z.string().email(),
6 | password: z.string().min(10, "Password must be at least 10 characters"),
7 | confirmPassword: z.string(),
8 | })
9 | .refine((data) => data.password === data.confirmPassword, {
10 | message: "Passwords must match",
11 | path: ["confirmPassword"],
12 | });
13 |
14 | export type TSignUpSchema = z.infer;
15 |
--------------------------------------------------------------------------------
/next.config.js:
--------------------------------------------------------------------------------
1 | /** @type {import('next').NextConfig} */
2 | const nextConfig = {}
3 |
4 | module.exports = nextConfig
5 |
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "nextjs-boilerplate",
3 | "version": "0.1.0",
4 | "lockfileVersion": 3,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "name": "nextjs-boilerplate",
9 | "version": "0.1.0",
10 | "dependencies": {
11 | "@hookform/resolvers": "^3.1.1",
12 | "@types/node": "20.4.5",
13 | "@types/react": "18.2.17",
14 | "@types/react-dom": "18.2.7",
15 | "autoprefixer": "10.4.14",
16 | "eslint": "8.45.0",
17 | "eslint-config-next": "13.4.12",
18 | "next": "13.4.12",
19 | "postcss": "8.4.27",
20 | "react": "18.2.0",
21 | "react-dom": "18.2.0",
22 | "react-hook-form": "^7.45.2",
23 | "tailwindcss": "3.3.3",
24 | "typescript": "5.1.6",
25 | "zod": "^3.21.4"
26 | }
27 | },
28 | "node_modules/@aashutoshrathi/word-wrap": {
29 | "version": "1.2.6",
30 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz",
31 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==",
32 | "engines": {
33 | "node": ">=0.10.0"
34 | }
35 | },
36 | "node_modules/@alloc/quick-lru": {
37 | "version": "5.2.0",
38 | "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
39 | "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
40 | "engines": {
41 | "node": ">=10"
42 | },
43 | "funding": {
44 | "url": "https://github.com/sponsors/sindresorhus"
45 | }
46 | },
47 | "node_modules/@babel/runtime": {
48 | "version": "7.22.6",
49 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.22.6.tgz",
50 | "integrity": "sha512-wDb5pWm4WDdF6LFUde3Jl8WzPA+3ZbxYqkC6xAXuD3irdEHN1k0NfTRrJD8ZD378SJ61miMLCqIOXYhd8x+AJQ==",
51 | "dependencies": {
52 | "regenerator-runtime": "^0.13.11"
53 | },
54 | "engines": {
55 | "node": ">=6.9.0"
56 | }
57 | },
58 | "node_modules/@eslint-community/eslint-utils": {
59 | "version": "4.4.0",
60 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz",
61 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==",
62 | "dependencies": {
63 | "eslint-visitor-keys": "^3.3.0"
64 | },
65 | "engines": {
66 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
67 | },
68 | "peerDependencies": {
69 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
70 | }
71 | },
72 | "node_modules/@eslint-community/regexpp": {
73 | "version": "4.6.2",
74 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.6.2.tgz",
75 | "integrity": "sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==",
76 | "engines": {
77 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
78 | }
79 | },
80 | "node_modules/@eslint/eslintrc": {
81 | "version": "2.1.0",
82 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.0.tgz",
83 | "integrity": "sha512-Lj7DECXqIVCqnqjjHMPna4vn6GJcMgul/wuS0je9OZ9gsL0zzDpKPVtcG1HaDVc+9y+qgXneTeUMbCqXJNpH1A==",
84 | "dependencies": {
85 | "ajv": "^6.12.4",
86 | "debug": "^4.3.2",
87 | "espree": "^9.6.0",
88 | "globals": "^13.19.0",
89 | "ignore": "^5.2.0",
90 | "import-fresh": "^3.2.1",
91 | "js-yaml": "^4.1.0",
92 | "minimatch": "^3.1.2",
93 | "strip-json-comments": "^3.1.1"
94 | },
95 | "engines": {
96 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
97 | },
98 | "funding": {
99 | "url": "https://opencollective.com/eslint"
100 | }
101 | },
102 | "node_modules/@eslint/js": {
103 | "version": "8.44.0",
104 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.44.0.tgz",
105 | "integrity": "sha512-Ag+9YM4ocKQx9AarydN0KY2j0ErMHNIocPDrVo8zAE44xLTjEtz81OdR68/cydGtk6m6jDb5Za3r2useMzYmSw==",
106 | "engines": {
107 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
108 | }
109 | },
110 | "node_modules/@hookform/resolvers": {
111 | "version": "3.1.1",
112 | "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.1.1.tgz",
113 | "integrity": "sha512-tS16bAUkqjITNSvbJuO1x7MXbn7Oe8ZziDTJdA9mMvsoYthnOOiznOTGBYwbdlYBgU+tgpI/BtTU3paRbCuSlg==",
114 | "peerDependencies": {
115 | "react-hook-form": "^7.0.0"
116 | }
117 | },
118 | "node_modules/@humanwhocodes/config-array": {
119 | "version": "0.11.10",
120 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz",
121 | "integrity": "sha512-KVVjQmNUepDVGXNuoRRdmmEjruj0KfiGSbS8LVc12LMsWDQzRXJ0qdhN8L8uUigKpfEHRhlaQFY0ib1tnUbNeQ==",
122 | "dependencies": {
123 | "@humanwhocodes/object-schema": "^1.2.1",
124 | "debug": "^4.1.1",
125 | "minimatch": "^3.0.5"
126 | },
127 | "engines": {
128 | "node": ">=10.10.0"
129 | }
130 | },
131 | "node_modules/@humanwhocodes/module-importer": {
132 | "version": "1.0.1",
133 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz",
134 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==",
135 | "engines": {
136 | "node": ">=12.22"
137 | },
138 | "funding": {
139 | "type": "github",
140 | "url": "https://github.com/sponsors/nzakas"
141 | }
142 | },
143 | "node_modules/@humanwhocodes/object-schema": {
144 | "version": "1.2.1",
145 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz",
146 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA=="
147 | },
148 | "node_modules/@jridgewell/gen-mapping": {
149 | "version": "0.3.3",
150 | "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz",
151 | "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==",
152 | "dependencies": {
153 | "@jridgewell/set-array": "^1.0.1",
154 | "@jridgewell/sourcemap-codec": "^1.4.10",
155 | "@jridgewell/trace-mapping": "^0.3.9"
156 | },
157 | "engines": {
158 | "node": ">=6.0.0"
159 | }
160 | },
161 | "node_modules/@jridgewell/resolve-uri": {
162 | "version": "3.1.0",
163 | "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz",
164 | "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==",
165 | "engines": {
166 | "node": ">=6.0.0"
167 | }
168 | },
169 | "node_modules/@jridgewell/set-array": {
170 | "version": "1.1.2",
171 | "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz",
172 | "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==",
173 | "engines": {
174 | "node": ">=6.0.0"
175 | }
176 | },
177 | "node_modules/@jridgewell/sourcemap-codec": {
178 | "version": "1.4.15",
179 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz",
180 | "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg=="
181 | },
182 | "node_modules/@jridgewell/trace-mapping": {
183 | "version": "0.3.18",
184 | "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.18.tgz",
185 | "integrity": "sha512-w+niJYzMHdd7USdiH2U6869nqhD2nbfZXND5Yp93qIbEmnDNk7PD48o+YchRVpzMU7M6jVCbenTR7PA1FLQ9pA==",
186 | "dependencies": {
187 | "@jridgewell/resolve-uri": "3.1.0",
188 | "@jridgewell/sourcemap-codec": "1.4.14"
189 | }
190 | },
191 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": {
192 | "version": "1.4.14",
193 | "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz",
194 | "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw=="
195 | },
196 | "node_modules/@next/env": {
197 | "version": "13.4.12",
198 | "resolved": "https://registry.npmjs.org/@next/env/-/env-13.4.12.tgz",
199 | "integrity": "sha512-RmHanbV21saP/6OEPBJ7yJMuys68cIf8OBBWd7+uj40LdpmswVAwe1uzeuFyUsd6SfeITWT3XnQfn6wULeKwDQ=="
200 | },
201 | "node_modules/@next/eslint-plugin-next": {
202 | "version": "13.4.12",
203 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-13.4.12.tgz",
204 | "integrity": "sha512-6rhK9CdxEgj/j1qvXIyLTWEaeFv7zOK8yJMulz3Owel0uek0U9MJCGzmKgYxM3aAUBo3gKeywCZKyQnJKto60A==",
205 | "dependencies": {
206 | "glob": "7.1.7"
207 | }
208 | },
209 | "node_modules/@next/swc-darwin-arm64": {
210 | "version": "13.4.12",
211 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-13.4.12.tgz",
212 | "integrity": "sha512-deUrbCXTMZ6ZhbOoloqecnUeNpUOupi8SE2tx4jPfNS9uyUR9zK4iXBvH65opVcA/9F5I/p8vDXSYbUlbmBjZg==",
213 | "cpu": [
214 | "arm64"
215 | ],
216 | "optional": true,
217 | "os": [
218 | "darwin"
219 | ],
220 | "engines": {
221 | "node": ">= 10"
222 | }
223 | },
224 | "node_modules/@next/swc-darwin-x64": {
225 | "version": "13.4.12",
226 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-13.4.12.tgz",
227 | "integrity": "sha512-WRvH7RxgRHlC1yb5oG0ZLx8F7uci9AivM5/HGGv9ZyG2Als8Ij64GC3d+mQ5sJhWjusyU6T6V1WKTUoTmOB0zQ==",
228 | "cpu": [
229 | "x64"
230 | ],
231 | "optional": true,
232 | "os": [
233 | "darwin"
234 | ],
235 | "engines": {
236 | "node": ">= 10"
237 | }
238 | },
239 | "node_modules/@next/swc-linux-arm64-gnu": {
240 | "version": "13.4.12",
241 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-13.4.12.tgz",
242 | "integrity": "sha512-YEKracAWuxp54tKiAvvq73PUs9lok57cc8meYRibTWe/VdPB2vLgkTVWFcw31YDuRXdEhdX0fWS6Q+ESBhnEig==",
243 | "cpu": [
244 | "arm64"
245 | ],
246 | "optional": true,
247 | "os": [
248 | "linux"
249 | ],
250 | "engines": {
251 | "node": ">= 10"
252 | }
253 | },
254 | "node_modules/@next/swc-linux-arm64-musl": {
255 | "version": "13.4.12",
256 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-13.4.12.tgz",
257 | "integrity": "sha512-LhJR7/RAjdHJ2Isl2pgc/JaoxNk0KtBgkVpiDJPVExVWA1c6gzY57+3zWuxuyWzTG+fhLZo2Y80pLXgIJv7g3g==",
258 | "cpu": [
259 | "arm64"
260 | ],
261 | "optional": true,
262 | "os": [
263 | "linux"
264 | ],
265 | "engines": {
266 | "node": ">= 10"
267 | }
268 | },
269 | "node_modules/@next/swc-linux-x64-gnu": {
270 | "version": "13.4.12",
271 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-13.4.12.tgz",
272 | "integrity": "sha512-1DWLL/B9nBNiQRng+1aqs3OaZcxC16Nf+mOnpcrZZSdyKHek3WQh6j/fkbukObgNGwmCoVevLUa/p3UFTTqgqg==",
273 | "cpu": [
274 | "x64"
275 | ],
276 | "optional": true,
277 | "os": [
278 | "linux"
279 | ],
280 | "engines": {
281 | "node": ">= 10"
282 | }
283 | },
284 | "node_modules/@next/swc-linux-x64-musl": {
285 | "version": "13.4.12",
286 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-13.4.12.tgz",
287 | "integrity": "sha512-kEAJmgYFhp0VL+eRWmUkVxLVunn7oL9Mdue/FS8yzRBVj7Z0AnIrHpTIeIUl1bbdQq1VaoOztnKicAjfkLTRCQ==",
288 | "cpu": [
289 | "x64"
290 | ],
291 | "optional": true,
292 | "os": [
293 | "linux"
294 | ],
295 | "engines": {
296 | "node": ">= 10"
297 | }
298 | },
299 | "node_modules/@next/swc-win32-arm64-msvc": {
300 | "version": "13.4.12",
301 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-13.4.12.tgz",
302 | "integrity": "sha512-GMLuL/loR6yIIRTnPRY6UGbLL9MBdw2anxkOnANxvLvsml4F0HNIgvnU3Ej4BjbqMTNjD4hcPFdlEow4XHPdZA==",
303 | "cpu": [
304 | "arm64"
305 | ],
306 | "optional": true,
307 | "os": [
308 | "win32"
309 | ],
310 | "engines": {
311 | "node": ">= 10"
312 | }
313 | },
314 | "node_modules/@next/swc-win32-ia32-msvc": {
315 | "version": "13.4.12",
316 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-13.4.12.tgz",
317 | "integrity": "sha512-PhgNqN2Vnkm7XaMdRmmX0ZSwZXQAtamBVSa9A/V1dfKQCV1rjIZeiy/dbBnVYGdj63ANfsOR/30XpxP71W0eww==",
318 | "cpu": [
319 | "ia32"
320 | ],
321 | "optional": true,
322 | "os": [
323 | "win32"
324 | ],
325 | "engines": {
326 | "node": ">= 10"
327 | }
328 | },
329 | "node_modules/@next/swc-win32-x64-msvc": {
330 | "version": "13.4.12",
331 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-13.4.12.tgz",
332 | "integrity": "sha512-Z+56e/Ljt0bUs+T+jPjhFyxYBcdY2RIq9ELFU+qAMQMteHo7ymbV7CKmlcX59RI9C4YzN8PgMgLyAoi916b5HA==",
333 | "cpu": [
334 | "x64"
335 | ],
336 | "optional": true,
337 | "os": [
338 | "win32"
339 | ],
340 | "engines": {
341 | "node": ">= 10"
342 | }
343 | },
344 | "node_modules/@nodelib/fs.scandir": {
345 | "version": "2.1.5",
346 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz",
347 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==",
348 | "dependencies": {
349 | "@nodelib/fs.stat": "2.0.5",
350 | "run-parallel": "^1.1.9"
351 | },
352 | "engines": {
353 | "node": ">= 8"
354 | }
355 | },
356 | "node_modules/@nodelib/fs.stat": {
357 | "version": "2.0.5",
358 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz",
359 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==",
360 | "engines": {
361 | "node": ">= 8"
362 | }
363 | },
364 | "node_modules/@nodelib/fs.walk": {
365 | "version": "1.2.8",
366 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz",
367 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==",
368 | "dependencies": {
369 | "@nodelib/fs.scandir": "2.1.5",
370 | "fastq": "^1.6.0"
371 | },
372 | "engines": {
373 | "node": ">= 8"
374 | }
375 | },
376 | "node_modules/@pkgr/utils": {
377 | "version": "2.4.2",
378 | "resolved": "https://registry.npmjs.org/@pkgr/utils/-/utils-2.4.2.tgz",
379 | "integrity": "sha512-POgTXhjrTfbTV63DiFXav4lBHiICLKKwDeaKn9Nphwj7WH6m0hMMCaJkMyRWjgtPFyRKRVoMXXjczsTQRDEhYw==",
380 | "dependencies": {
381 | "cross-spawn": "^7.0.3",
382 | "fast-glob": "^3.3.0",
383 | "is-glob": "^4.0.3",
384 | "open": "^9.1.0",
385 | "picocolors": "^1.0.0",
386 | "tslib": "^2.6.0"
387 | },
388 | "engines": {
389 | "node": "^12.20.0 || ^14.18.0 || >=16.0.0"
390 | },
391 | "funding": {
392 | "url": "https://opencollective.com/unts"
393 | }
394 | },
395 | "node_modules/@rushstack/eslint-patch": {
396 | "version": "1.3.2",
397 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.3.2.tgz",
398 | "integrity": "sha512-V+MvGwaHH03hYhY+k6Ef/xKd6RYlc4q8WBx+2ANmipHJcKuktNcI/NgEsJgdSUF6Lw32njT6OnrRsKYCdgHjYw=="
399 | },
400 | "node_modules/@swc/helpers": {
401 | "version": "0.5.1",
402 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.1.tgz",
403 | "integrity": "sha512-sJ902EfIzn1Fa+qYmjdQqh8tPsoxyBz+8yBKC2HKUxyezKJFwPGOn7pv4WY6QuQW//ySQi5lJjA/ZT9sNWWNTg==",
404 | "dependencies": {
405 | "tslib": "^2.4.0"
406 | }
407 | },
408 | "node_modules/@types/json5": {
409 | "version": "0.0.29",
410 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz",
411 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ=="
412 | },
413 | "node_modules/@types/node": {
414 | "version": "20.4.5",
415 | "resolved": "https://registry.npmjs.org/@types/node/-/node-20.4.5.tgz",
416 | "integrity": "sha512-rt40Nk13II9JwQBdeYqmbn2Q6IVTA5uPhvSO+JVqdXw/6/4glI6oR9ezty/A9Hg5u7JH4OmYmuQ+XvjKm0Datg=="
417 | },
418 | "node_modules/@types/prop-types": {
419 | "version": "15.7.5",
420 | "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz",
421 | "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w=="
422 | },
423 | "node_modules/@types/react": {
424 | "version": "18.2.17",
425 | "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.17.tgz",
426 | "integrity": "sha512-u+e7OlgPPh+aryjOm5UJMX32OvB2E3QASOAqVMY6Ahs90djagxwv2ya0IctglNbNTexC12qCSMZG47KPfy1hAA==",
427 | "dependencies": {
428 | "@types/prop-types": "*",
429 | "@types/scheduler": "*",
430 | "csstype": "^3.0.2"
431 | }
432 | },
433 | "node_modules/@types/react-dom": {
434 | "version": "18.2.7",
435 | "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.7.tgz",
436 | "integrity": "sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==",
437 | "dependencies": {
438 | "@types/react": "*"
439 | }
440 | },
441 | "node_modules/@types/scheduler": {
442 | "version": "0.16.3",
443 | "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.3.tgz",
444 | "integrity": "sha512-5cJ8CB4yAx7BH1oMvdU0Jh9lrEXyPkar6F9G/ERswkCuvP4KQZfZkSjcMbAICCpQTN4OuZn8tz0HiKv9TGZgrQ=="
445 | },
446 | "node_modules/@typescript-eslint/parser": {
447 | "version": "5.62.0",
448 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz",
449 | "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==",
450 | "dependencies": {
451 | "@typescript-eslint/scope-manager": "5.62.0",
452 | "@typescript-eslint/types": "5.62.0",
453 | "@typescript-eslint/typescript-estree": "5.62.0",
454 | "debug": "^4.3.4"
455 | },
456 | "engines": {
457 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
458 | },
459 | "funding": {
460 | "type": "opencollective",
461 | "url": "https://opencollective.com/typescript-eslint"
462 | },
463 | "peerDependencies": {
464 | "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
465 | },
466 | "peerDependenciesMeta": {
467 | "typescript": {
468 | "optional": true
469 | }
470 | }
471 | },
472 | "node_modules/@typescript-eslint/scope-manager": {
473 | "version": "5.62.0",
474 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz",
475 | "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==",
476 | "dependencies": {
477 | "@typescript-eslint/types": "5.62.0",
478 | "@typescript-eslint/visitor-keys": "5.62.0"
479 | },
480 | "engines": {
481 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
482 | },
483 | "funding": {
484 | "type": "opencollective",
485 | "url": "https://opencollective.com/typescript-eslint"
486 | }
487 | },
488 | "node_modules/@typescript-eslint/types": {
489 | "version": "5.62.0",
490 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz",
491 | "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==",
492 | "engines": {
493 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
494 | },
495 | "funding": {
496 | "type": "opencollective",
497 | "url": "https://opencollective.com/typescript-eslint"
498 | }
499 | },
500 | "node_modules/@typescript-eslint/typescript-estree": {
501 | "version": "5.62.0",
502 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz",
503 | "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==",
504 | "dependencies": {
505 | "@typescript-eslint/types": "5.62.0",
506 | "@typescript-eslint/visitor-keys": "5.62.0",
507 | "debug": "^4.3.4",
508 | "globby": "^11.1.0",
509 | "is-glob": "^4.0.3",
510 | "semver": "^7.3.7",
511 | "tsutils": "^3.21.0"
512 | },
513 | "engines": {
514 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
515 | },
516 | "funding": {
517 | "type": "opencollective",
518 | "url": "https://opencollective.com/typescript-eslint"
519 | },
520 | "peerDependenciesMeta": {
521 | "typescript": {
522 | "optional": true
523 | }
524 | }
525 | },
526 | "node_modules/@typescript-eslint/visitor-keys": {
527 | "version": "5.62.0",
528 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz",
529 | "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==",
530 | "dependencies": {
531 | "@typescript-eslint/types": "5.62.0",
532 | "eslint-visitor-keys": "^3.3.0"
533 | },
534 | "engines": {
535 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
536 | },
537 | "funding": {
538 | "type": "opencollective",
539 | "url": "https://opencollective.com/typescript-eslint"
540 | }
541 | },
542 | "node_modules/acorn": {
543 | "version": "8.10.0",
544 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz",
545 | "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==",
546 | "bin": {
547 | "acorn": "bin/acorn"
548 | },
549 | "engines": {
550 | "node": ">=0.4.0"
551 | }
552 | },
553 | "node_modules/acorn-jsx": {
554 | "version": "5.3.2",
555 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
556 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
557 | "peerDependencies": {
558 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
559 | }
560 | },
561 | "node_modules/ajv": {
562 | "version": "6.12.6",
563 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz",
564 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==",
565 | "dependencies": {
566 | "fast-deep-equal": "^3.1.1",
567 | "fast-json-stable-stringify": "^2.0.0",
568 | "json-schema-traverse": "^0.4.1",
569 | "uri-js": "^4.2.2"
570 | },
571 | "funding": {
572 | "type": "github",
573 | "url": "https://github.com/sponsors/epoberezkin"
574 | }
575 | },
576 | "node_modules/ansi-regex": {
577 | "version": "5.0.1",
578 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
579 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
580 | "engines": {
581 | "node": ">=8"
582 | }
583 | },
584 | "node_modules/ansi-styles": {
585 | "version": "4.3.0",
586 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
587 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
588 | "dependencies": {
589 | "color-convert": "^2.0.1"
590 | },
591 | "engines": {
592 | "node": ">=8"
593 | },
594 | "funding": {
595 | "url": "https://github.com/chalk/ansi-styles?sponsor=1"
596 | }
597 | },
598 | "node_modules/any-promise": {
599 | "version": "1.3.0",
600 | "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz",
601 | "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A=="
602 | },
603 | "node_modules/anymatch": {
604 | "version": "3.1.3",
605 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz",
606 | "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==",
607 | "dependencies": {
608 | "normalize-path": "^3.0.0",
609 | "picomatch": "^2.0.4"
610 | },
611 | "engines": {
612 | "node": ">= 8"
613 | }
614 | },
615 | "node_modules/arg": {
616 | "version": "5.0.2",
617 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz",
618 | "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg=="
619 | },
620 | "node_modules/argparse": {
621 | "version": "2.0.1",
622 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz",
623 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q=="
624 | },
625 | "node_modules/aria-query": {
626 | "version": "5.3.0",
627 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz",
628 | "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==",
629 | "dependencies": {
630 | "dequal": "^2.0.3"
631 | }
632 | },
633 | "node_modules/array-buffer-byte-length": {
634 | "version": "1.0.0",
635 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz",
636 | "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==",
637 | "dependencies": {
638 | "call-bind": "^1.0.2",
639 | "is-array-buffer": "^3.0.1"
640 | },
641 | "funding": {
642 | "url": "https://github.com/sponsors/ljharb"
643 | }
644 | },
645 | "node_modules/array-includes": {
646 | "version": "3.1.6",
647 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz",
648 | "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==",
649 | "dependencies": {
650 | "call-bind": "^1.0.2",
651 | "define-properties": "^1.1.4",
652 | "es-abstract": "^1.20.4",
653 | "get-intrinsic": "^1.1.3",
654 | "is-string": "^1.0.7"
655 | },
656 | "engines": {
657 | "node": ">= 0.4"
658 | },
659 | "funding": {
660 | "url": "https://github.com/sponsors/ljharb"
661 | }
662 | },
663 | "node_modules/array-union": {
664 | "version": "2.1.0",
665 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz",
666 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==",
667 | "engines": {
668 | "node": ">=8"
669 | }
670 | },
671 | "node_modules/array.prototype.flat": {
672 | "version": "1.3.1",
673 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz",
674 | "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==",
675 | "dependencies": {
676 | "call-bind": "^1.0.2",
677 | "define-properties": "^1.1.4",
678 | "es-abstract": "^1.20.4",
679 | "es-shim-unscopables": "^1.0.0"
680 | },
681 | "engines": {
682 | "node": ">= 0.4"
683 | },
684 | "funding": {
685 | "url": "https://github.com/sponsors/ljharb"
686 | }
687 | },
688 | "node_modules/array.prototype.flatmap": {
689 | "version": "1.3.1",
690 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz",
691 | "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==",
692 | "dependencies": {
693 | "call-bind": "^1.0.2",
694 | "define-properties": "^1.1.4",
695 | "es-abstract": "^1.20.4",
696 | "es-shim-unscopables": "^1.0.0"
697 | },
698 | "engines": {
699 | "node": ">= 0.4"
700 | },
701 | "funding": {
702 | "url": "https://github.com/sponsors/ljharb"
703 | }
704 | },
705 | "node_modules/array.prototype.tosorted": {
706 | "version": "1.1.1",
707 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz",
708 | "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==",
709 | "dependencies": {
710 | "call-bind": "^1.0.2",
711 | "define-properties": "^1.1.4",
712 | "es-abstract": "^1.20.4",
713 | "es-shim-unscopables": "^1.0.0",
714 | "get-intrinsic": "^1.1.3"
715 | }
716 | },
717 | "node_modules/arraybuffer.prototype.slice": {
718 | "version": "1.0.1",
719 | "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.1.tgz",
720 | "integrity": "sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==",
721 | "dependencies": {
722 | "array-buffer-byte-length": "^1.0.0",
723 | "call-bind": "^1.0.2",
724 | "define-properties": "^1.2.0",
725 | "get-intrinsic": "^1.2.1",
726 | "is-array-buffer": "^3.0.2",
727 | "is-shared-array-buffer": "^1.0.2"
728 | },
729 | "engines": {
730 | "node": ">= 0.4"
731 | },
732 | "funding": {
733 | "url": "https://github.com/sponsors/ljharb"
734 | }
735 | },
736 | "node_modules/ast-types-flow": {
737 | "version": "0.0.7",
738 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz",
739 | "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag=="
740 | },
741 | "node_modules/autoprefixer": {
742 | "version": "10.4.14",
743 | "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.14.tgz",
744 | "integrity": "sha512-FQzyfOsTlwVzjHxKEqRIAdJx9niO6VCBCoEwax/VLSoQF29ggECcPuBqUMZ+u8jCZOPSy8b8/8KnuFbp0SaFZQ==",
745 | "funding": [
746 | {
747 | "type": "opencollective",
748 | "url": "https://opencollective.com/postcss/"
749 | },
750 | {
751 | "type": "tidelift",
752 | "url": "https://tidelift.com/funding/github/npm/autoprefixer"
753 | }
754 | ],
755 | "dependencies": {
756 | "browserslist": "^4.21.5",
757 | "caniuse-lite": "^1.0.30001464",
758 | "fraction.js": "^4.2.0",
759 | "normalize-range": "^0.1.2",
760 | "picocolors": "^1.0.0",
761 | "postcss-value-parser": "^4.2.0"
762 | },
763 | "bin": {
764 | "autoprefixer": "bin/autoprefixer"
765 | },
766 | "engines": {
767 | "node": "^10 || ^12 || >=14"
768 | },
769 | "peerDependencies": {
770 | "postcss": "^8.1.0"
771 | }
772 | },
773 | "node_modules/available-typed-arrays": {
774 | "version": "1.0.5",
775 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz",
776 | "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==",
777 | "engines": {
778 | "node": ">= 0.4"
779 | },
780 | "funding": {
781 | "url": "https://github.com/sponsors/ljharb"
782 | }
783 | },
784 | "node_modules/axe-core": {
785 | "version": "4.7.2",
786 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.2.tgz",
787 | "integrity": "sha512-zIURGIS1E1Q4pcrMjp+nnEh+16G56eG/MUllJH8yEvw7asDo7Ac9uhC9KIH5jzpITueEZolfYglnCGIuSBz39g==",
788 | "engines": {
789 | "node": ">=4"
790 | }
791 | },
792 | "node_modules/axobject-query": {
793 | "version": "3.2.1",
794 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz",
795 | "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==",
796 | "dependencies": {
797 | "dequal": "^2.0.3"
798 | }
799 | },
800 | "node_modules/balanced-match": {
801 | "version": "1.0.2",
802 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
803 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="
804 | },
805 | "node_modules/big-integer": {
806 | "version": "1.6.51",
807 | "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz",
808 | "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==",
809 | "engines": {
810 | "node": ">=0.6"
811 | }
812 | },
813 | "node_modules/binary-extensions": {
814 | "version": "2.2.0",
815 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
816 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
817 | "engines": {
818 | "node": ">=8"
819 | }
820 | },
821 | "node_modules/bplist-parser": {
822 | "version": "0.2.0",
823 | "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz",
824 | "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==",
825 | "dependencies": {
826 | "big-integer": "^1.6.44"
827 | },
828 | "engines": {
829 | "node": ">= 5.10.0"
830 | }
831 | },
832 | "node_modules/brace-expansion": {
833 | "version": "1.1.11",
834 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
835 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
836 | "dependencies": {
837 | "balanced-match": "^1.0.0",
838 | "concat-map": "0.0.1"
839 | }
840 | },
841 | "node_modules/braces": {
842 | "version": "3.0.2",
843 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
844 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
845 | "dependencies": {
846 | "fill-range": "^7.0.1"
847 | },
848 | "engines": {
849 | "node": ">=8"
850 | }
851 | },
852 | "node_modules/browserslist": {
853 | "version": "4.21.9",
854 | "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.9.tgz",
855 | "integrity": "sha512-M0MFoZzbUrRU4KNfCrDLnvyE7gub+peetoTid3TBIqtunaDJyXlwhakT+/VkvSXcfIzFfK/nkCs4nmyTmxdNSg==",
856 | "funding": [
857 | {
858 | "type": "opencollective",
859 | "url": "https://opencollective.com/browserslist"
860 | },
861 | {
862 | "type": "tidelift",
863 | "url": "https://tidelift.com/funding/github/npm/browserslist"
864 | },
865 | {
866 | "type": "github",
867 | "url": "https://github.com/sponsors/ai"
868 | }
869 | ],
870 | "dependencies": {
871 | "caniuse-lite": "^1.0.30001503",
872 | "electron-to-chromium": "^1.4.431",
873 | "node-releases": "^2.0.12",
874 | "update-browserslist-db": "^1.0.11"
875 | },
876 | "bin": {
877 | "browserslist": "cli.js"
878 | },
879 | "engines": {
880 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
881 | }
882 | },
883 | "node_modules/bundle-name": {
884 | "version": "3.0.0",
885 | "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz",
886 | "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==",
887 | "dependencies": {
888 | "run-applescript": "^5.0.0"
889 | },
890 | "engines": {
891 | "node": ">=12"
892 | },
893 | "funding": {
894 | "url": "https://github.com/sponsors/sindresorhus"
895 | }
896 | },
897 | "node_modules/busboy": {
898 | "version": "1.6.0",
899 | "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
900 | "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
901 | "dependencies": {
902 | "streamsearch": "^1.1.0"
903 | },
904 | "engines": {
905 | "node": ">=10.16.0"
906 | }
907 | },
908 | "node_modules/call-bind": {
909 | "version": "1.0.2",
910 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
911 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
912 | "dependencies": {
913 | "function-bind": "^1.1.1",
914 | "get-intrinsic": "^1.0.2"
915 | },
916 | "funding": {
917 | "url": "https://github.com/sponsors/ljharb"
918 | }
919 | },
920 | "node_modules/callsites": {
921 | "version": "3.1.0",
922 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz",
923 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==",
924 | "engines": {
925 | "node": ">=6"
926 | }
927 | },
928 | "node_modules/camelcase-css": {
929 | "version": "2.0.1",
930 | "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz",
931 | "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==",
932 | "engines": {
933 | "node": ">= 6"
934 | }
935 | },
936 | "node_modules/caniuse-lite": {
937 | "version": "1.0.30001517",
938 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz",
939 | "integrity": "sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==",
940 | "funding": [
941 | {
942 | "type": "opencollective",
943 | "url": "https://opencollective.com/browserslist"
944 | },
945 | {
946 | "type": "tidelift",
947 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
948 | },
949 | {
950 | "type": "github",
951 | "url": "https://github.com/sponsors/ai"
952 | }
953 | ]
954 | },
955 | "node_modules/chalk": {
956 | "version": "4.1.2",
957 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
958 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
959 | "dependencies": {
960 | "ansi-styles": "^4.1.0",
961 | "supports-color": "^7.1.0"
962 | },
963 | "engines": {
964 | "node": ">=10"
965 | },
966 | "funding": {
967 | "url": "https://github.com/chalk/chalk?sponsor=1"
968 | }
969 | },
970 | "node_modules/chokidar": {
971 | "version": "3.5.3",
972 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz",
973 | "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==",
974 | "funding": [
975 | {
976 | "type": "individual",
977 | "url": "https://paulmillr.com/funding/"
978 | }
979 | ],
980 | "dependencies": {
981 | "anymatch": "~3.1.2",
982 | "braces": "~3.0.2",
983 | "glob-parent": "~5.1.2",
984 | "is-binary-path": "~2.1.0",
985 | "is-glob": "~4.0.1",
986 | "normalize-path": "~3.0.0",
987 | "readdirp": "~3.6.0"
988 | },
989 | "engines": {
990 | "node": ">= 8.10.0"
991 | },
992 | "optionalDependencies": {
993 | "fsevents": "~2.3.2"
994 | }
995 | },
996 | "node_modules/chokidar/node_modules/glob-parent": {
997 | "version": "5.1.2",
998 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
999 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1000 | "dependencies": {
1001 | "is-glob": "^4.0.1"
1002 | },
1003 | "engines": {
1004 | "node": ">= 6"
1005 | }
1006 | },
1007 | "node_modules/client-only": {
1008 | "version": "0.0.1",
1009 | "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
1010 | "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA=="
1011 | },
1012 | "node_modules/color-convert": {
1013 | "version": "2.0.1",
1014 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1015 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1016 | "dependencies": {
1017 | "color-name": "~1.1.4"
1018 | },
1019 | "engines": {
1020 | "node": ">=7.0.0"
1021 | }
1022 | },
1023 | "node_modules/color-name": {
1024 | "version": "1.1.4",
1025 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1026 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="
1027 | },
1028 | "node_modules/commander": {
1029 | "version": "4.1.1",
1030 | "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz",
1031 | "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==",
1032 | "engines": {
1033 | "node": ">= 6"
1034 | }
1035 | },
1036 | "node_modules/concat-map": {
1037 | "version": "0.0.1",
1038 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1039 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="
1040 | },
1041 | "node_modules/cross-spawn": {
1042 | "version": "7.0.3",
1043 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz",
1044 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==",
1045 | "dependencies": {
1046 | "path-key": "^3.1.0",
1047 | "shebang-command": "^2.0.0",
1048 | "which": "^2.0.1"
1049 | },
1050 | "engines": {
1051 | "node": ">= 8"
1052 | }
1053 | },
1054 | "node_modules/cssesc": {
1055 | "version": "3.0.0",
1056 | "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz",
1057 | "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==",
1058 | "bin": {
1059 | "cssesc": "bin/cssesc"
1060 | },
1061 | "engines": {
1062 | "node": ">=4"
1063 | }
1064 | },
1065 | "node_modules/csstype": {
1066 | "version": "3.1.2",
1067 | "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.2.tgz",
1068 | "integrity": "sha512-I7K1Uu0MBPzaFKg4nI5Q7Vs2t+3gWWW648spaF+Rg7pI9ds18Ugn+lvg4SHczUdKlHI5LWBXyqfS8+DufyBsgQ=="
1069 | },
1070 | "node_modules/damerau-levenshtein": {
1071 | "version": "1.0.8",
1072 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz",
1073 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA=="
1074 | },
1075 | "node_modules/debug": {
1076 | "version": "4.3.4",
1077 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz",
1078 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==",
1079 | "dependencies": {
1080 | "ms": "2.1.2"
1081 | },
1082 | "engines": {
1083 | "node": ">=6.0"
1084 | },
1085 | "peerDependenciesMeta": {
1086 | "supports-color": {
1087 | "optional": true
1088 | }
1089 | }
1090 | },
1091 | "node_modules/deep-is": {
1092 | "version": "0.1.4",
1093 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz",
1094 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="
1095 | },
1096 | "node_modules/default-browser": {
1097 | "version": "4.0.0",
1098 | "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz",
1099 | "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==",
1100 | "dependencies": {
1101 | "bundle-name": "^3.0.0",
1102 | "default-browser-id": "^3.0.0",
1103 | "execa": "^7.1.1",
1104 | "titleize": "^3.0.0"
1105 | },
1106 | "engines": {
1107 | "node": ">=14.16"
1108 | },
1109 | "funding": {
1110 | "url": "https://github.com/sponsors/sindresorhus"
1111 | }
1112 | },
1113 | "node_modules/default-browser-id": {
1114 | "version": "3.0.0",
1115 | "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz",
1116 | "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==",
1117 | "dependencies": {
1118 | "bplist-parser": "^0.2.0",
1119 | "untildify": "^4.0.0"
1120 | },
1121 | "engines": {
1122 | "node": ">=12"
1123 | },
1124 | "funding": {
1125 | "url": "https://github.com/sponsors/sindresorhus"
1126 | }
1127 | },
1128 | "node_modules/define-lazy-prop": {
1129 | "version": "3.0.0",
1130 | "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz",
1131 | "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==",
1132 | "engines": {
1133 | "node": ">=12"
1134 | },
1135 | "funding": {
1136 | "url": "https://github.com/sponsors/sindresorhus"
1137 | }
1138 | },
1139 | "node_modules/define-properties": {
1140 | "version": "1.2.0",
1141 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.0.tgz",
1142 | "integrity": "sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==",
1143 | "dependencies": {
1144 | "has-property-descriptors": "^1.0.0",
1145 | "object-keys": "^1.1.1"
1146 | },
1147 | "engines": {
1148 | "node": ">= 0.4"
1149 | },
1150 | "funding": {
1151 | "url": "https://github.com/sponsors/ljharb"
1152 | }
1153 | },
1154 | "node_modules/dequal": {
1155 | "version": "2.0.3",
1156 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
1157 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
1158 | "engines": {
1159 | "node": ">=6"
1160 | }
1161 | },
1162 | "node_modules/didyoumean": {
1163 | "version": "1.2.2",
1164 | "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz",
1165 | "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw=="
1166 | },
1167 | "node_modules/dir-glob": {
1168 | "version": "3.0.1",
1169 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz",
1170 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==",
1171 | "dependencies": {
1172 | "path-type": "^4.0.0"
1173 | },
1174 | "engines": {
1175 | "node": ">=8"
1176 | }
1177 | },
1178 | "node_modules/dlv": {
1179 | "version": "1.1.3",
1180 | "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz",
1181 | "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA=="
1182 | },
1183 | "node_modules/doctrine": {
1184 | "version": "3.0.0",
1185 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz",
1186 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==",
1187 | "dependencies": {
1188 | "esutils": "^2.0.2"
1189 | },
1190 | "engines": {
1191 | "node": ">=6.0.0"
1192 | }
1193 | },
1194 | "node_modules/electron-to-chromium": {
1195 | "version": "1.4.471",
1196 | "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.471.tgz",
1197 | "integrity": "sha512-GpmGRC1vTl60w/k6YpQ18pSiqnmr0j3un//5TV1idPi6aheNfkT1Ye71tMEabWyNDO6sBMgAR+95Eb0eUUr1tA=="
1198 | },
1199 | "node_modules/emoji-regex": {
1200 | "version": "9.2.2",
1201 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz",
1202 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg=="
1203 | },
1204 | "node_modules/enhanced-resolve": {
1205 | "version": "5.15.0",
1206 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz",
1207 | "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==",
1208 | "dependencies": {
1209 | "graceful-fs": "^4.2.4",
1210 | "tapable": "^2.2.0"
1211 | },
1212 | "engines": {
1213 | "node": ">=10.13.0"
1214 | }
1215 | },
1216 | "node_modules/es-abstract": {
1217 | "version": "1.22.1",
1218 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.1.tgz",
1219 | "integrity": "sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==",
1220 | "dependencies": {
1221 | "array-buffer-byte-length": "^1.0.0",
1222 | "arraybuffer.prototype.slice": "^1.0.1",
1223 | "available-typed-arrays": "^1.0.5",
1224 | "call-bind": "^1.0.2",
1225 | "es-set-tostringtag": "^2.0.1",
1226 | "es-to-primitive": "^1.2.1",
1227 | "function.prototype.name": "^1.1.5",
1228 | "get-intrinsic": "^1.2.1",
1229 | "get-symbol-description": "^1.0.0",
1230 | "globalthis": "^1.0.3",
1231 | "gopd": "^1.0.1",
1232 | "has": "^1.0.3",
1233 | "has-property-descriptors": "^1.0.0",
1234 | "has-proto": "^1.0.1",
1235 | "has-symbols": "^1.0.3",
1236 | "internal-slot": "^1.0.5",
1237 | "is-array-buffer": "^3.0.2",
1238 | "is-callable": "^1.2.7",
1239 | "is-negative-zero": "^2.0.2",
1240 | "is-regex": "^1.1.4",
1241 | "is-shared-array-buffer": "^1.0.2",
1242 | "is-string": "^1.0.7",
1243 | "is-typed-array": "^1.1.10",
1244 | "is-weakref": "^1.0.2",
1245 | "object-inspect": "^1.12.3",
1246 | "object-keys": "^1.1.1",
1247 | "object.assign": "^4.1.4",
1248 | "regexp.prototype.flags": "^1.5.0",
1249 | "safe-array-concat": "^1.0.0",
1250 | "safe-regex-test": "^1.0.0",
1251 | "string.prototype.trim": "^1.2.7",
1252 | "string.prototype.trimend": "^1.0.6",
1253 | "string.prototype.trimstart": "^1.0.6",
1254 | "typed-array-buffer": "^1.0.0",
1255 | "typed-array-byte-length": "^1.0.0",
1256 | "typed-array-byte-offset": "^1.0.0",
1257 | "typed-array-length": "^1.0.4",
1258 | "unbox-primitive": "^1.0.2",
1259 | "which-typed-array": "^1.1.10"
1260 | },
1261 | "engines": {
1262 | "node": ">= 0.4"
1263 | },
1264 | "funding": {
1265 | "url": "https://github.com/sponsors/ljharb"
1266 | }
1267 | },
1268 | "node_modules/es-set-tostringtag": {
1269 | "version": "2.0.1",
1270 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz",
1271 | "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==",
1272 | "dependencies": {
1273 | "get-intrinsic": "^1.1.3",
1274 | "has": "^1.0.3",
1275 | "has-tostringtag": "^1.0.0"
1276 | },
1277 | "engines": {
1278 | "node": ">= 0.4"
1279 | }
1280 | },
1281 | "node_modules/es-shim-unscopables": {
1282 | "version": "1.0.0",
1283 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz",
1284 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==",
1285 | "dependencies": {
1286 | "has": "^1.0.3"
1287 | }
1288 | },
1289 | "node_modules/es-to-primitive": {
1290 | "version": "1.2.1",
1291 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz",
1292 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==",
1293 | "dependencies": {
1294 | "is-callable": "^1.1.4",
1295 | "is-date-object": "^1.0.1",
1296 | "is-symbol": "^1.0.2"
1297 | },
1298 | "engines": {
1299 | "node": ">= 0.4"
1300 | },
1301 | "funding": {
1302 | "url": "https://github.com/sponsors/ljharb"
1303 | }
1304 | },
1305 | "node_modules/escalade": {
1306 | "version": "3.1.1",
1307 | "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz",
1308 | "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==",
1309 | "engines": {
1310 | "node": ">=6"
1311 | }
1312 | },
1313 | "node_modules/escape-string-regexp": {
1314 | "version": "4.0.0",
1315 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz",
1316 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==",
1317 | "engines": {
1318 | "node": ">=10"
1319 | },
1320 | "funding": {
1321 | "url": "https://github.com/sponsors/sindresorhus"
1322 | }
1323 | },
1324 | "node_modules/eslint": {
1325 | "version": "8.45.0",
1326 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.45.0.tgz",
1327 | "integrity": "sha512-pd8KSxiQpdYRfYa9Wufvdoct3ZPQQuVuU5O6scNgMuOMYuxvH0IGaYK0wUFjo4UYYQQCUndlXiMbnxopwvvTiw==",
1328 | "dependencies": {
1329 | "@eslint-community/eslint-utils": "^4.2.0",
1330 | "@eslint-community/regexpp": "^4.4.0",
1331 | "@eslint/eslintrc": "^2.1.0",
1332 | "@eslint/js": "8.44.0",
1333 | "@humanwhocodes/config-array": "^0.11.10",
1334 | "@humanwhocodes/module-importer": "^1.0.1",
1335 | "@nodelib/fs.walk": "^1.2.8",
1336 | "ajv": "^6.10.0",
1337 | "chalk": "^4.0.0",
1338 | "cross-spawn": "^7.0.2",
1339 | "debug": "^4.3.2",
1340 | "doctrine": "^3.0.0",
1341 | "escape-string-regexp": "^4.0.0",
1342 | "eslint-scope": "^7.2.0",
1343 | "eslint-visitor-keys": "^3.4.1",
1344 | "espree": "^9.6.0",
1345 | "esquery": "^1.4.2",
1346 | "esutils": "^2.0.2",
1347 | "fast-deep-equal": "^3.1.3",
1348 | "file-entry-cache": "^6.0.1",
1349 | "find-up": "^5.0.0",
1350 | "glob-parent": "^6.0.2",
1351 | "globals": "^13.19.0",
1352 | "graphemer": "^1.4.0",
1353 | "ignore": "^5.2.0",
1354 | "imurmurhash": "^0.1.4",
1355 | "is-glob": "^4.0.0",
1356 | "is-path-inside": "^3.0.3",
1357 | "js-yaml": "^4.1.0",
1358 | "json-stable-stringify-without-jsonify": "^1.0.1",
1359 | "levn": "^0.4.1",
1360 | "lodash.merge": "^4.6.2",
1361 | "minimatch": "^3.1.2",
1362 | "natural-compare": "^1.4.0",
1363 | "optionator": "^0.9.3",
1364 | "strip-ansi": "^6.0.1",
1365 | "text-table": "^0.2.0"
1366 | },
1367 | "bin": {
1368 | "eslint": "bin/eslint.js"
1369 | },
1370 | "engines": {
1371 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1372 | },
1373 | "funding": {
1374 | "url": "https://opencollective.com/eslint"
1375 | }
1376 | },
1377 | "node_modules/eslint-config-next": {
1378 | "version": "13.4.12",
1379 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-13.4.12.tgz",
1380 | "integrity": "sha512-ZF0r5vxKaVazyZH/37Au/XItiG7qUOBw+HaH3PeyXltIMwXorsn6bdrl0Nn9N5v5v9spc+6GM2ryjugbjF6X2g==",
1381 | "dependencies": {
1382 | "@next/eslint-plugin-next": "13.4.12",
1383 | "@rushstack/eslint-patch": "^1.1.3",
1384 | "@typescript-eslint/parser": "^5.42.0",
1385 | "eslint-import-resolver-node": "^0.3.6",
1386 | "eslint-import-resolver-typescript": "^3.5.2",
1387 | "eslint-plugin-import": "^2.26.0",
1388 | "eslint-plugin-jsx-a11y": "^6.5.1",
1389 | "eslint-plugin-react": "^7.31.7",
1390 | "eslint-plugin-react-hooks": "5.0.0-canary-7118f5dd7-20230705"
1391 | },
1392 | "peerDependencies": {
1393 | "eslint": "^7.23.0 || ^8.0.0",
1394 | "typescript": ">=3.3.1"
1395 | },
1396 | "peerDependenciesMeta": {
1397 | "typescript": {
1398 | "optional": true
1399 | }
1400 | }
1401 | },
1402 | "node_modules/eslint-import-resolver-node": {
1403 | "version": "0.3.7",
1404 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz",
1405 | "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==",
1406 | "dependencies": {
1407 | "debug": "^3.2.7",
1408 | "is-core-module": "^2.11.0",
1409 | "resolve": "^1.22.1"
1410 | }
1411 | },
1412 | "node_modules/eslint-import-resolver-node/node_modules/debug": {
1413 | "version": "3.2.7",
1414 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1415 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1416 | "dependencies": {
1417 | "ms": "^2.1.1"
1418 | }
1419 | },
1420 | "node_modules/eslint-import-resolver-typescript": {
1421 | "version": "3.5.5",
1422 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.5.5.tgz",
1423 | "integrity": "sha512-TdJqPHs2lW5J9Zpe17DZNQuDnox4xo2o+0tE7Pggain9Rbc19ik8kFtXdxZ250FVx2kF4vlt2RSf4qlUpG7bhw==",
1424 | "dependencies": {
1425 | "debug": "^4.3.4",
1426 | "enhanced-resolve": "^5.12.0",
1427 | "eslint-module-utils": "^2.7.4",
1428 | "get-tsconfig": "^4.5.0",
1429 | "globby": "^13.1.3",
1430 | "is-core-module": "^2.11.0",
1431 | "is-glob": "^4.0.3",
1432 | "synckit": "^0.8.5"
1433 | },
1434 | "engines": {
1435 | "node": "^14.18.0 || >=16.0.0"
1436 | },
1437 | "funding": {
1438 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts"
1439 | },
1440 | "peerDependencies": {
1441 | "eslint": "*",
1442 | "eslint-plugin-import": "*"
1443 | }
1444 | },
1445 | "node_modules/eslint-import-resolver-typescript/node_modules/globby": {
1446 | "version": "13.2.2",
1447 | "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz",
1448 | "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==",
1449 | "dependencies": {
1450 | "dir-glob": "^3.0.1",
1451 | "fast-glob": "^3.3.0",
1452 | "ignore": "^5.2.4",
1453 | "merge2": "^1.4.1",
1454 | "slash": "^4.0.0"
1455 | },
1456 | "engines": {
1457 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
1458 | },
1459 | "funding": {
1460 | "url": "https://github.com/sponsors/sindresorhus"
1461 | }
1462 | },
1463 | "node_modules/eslint-import-resolver-typescript/node_modules/slash": {
1464 | "version": "4.0.0",
1465 | "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz",
1466 | "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==",
1467 | "engines": {
1468 | "node": ">=12"
1469 | },
1470 | "funding": {
1471 | "url": "https://github.com/sponsors/sindresorhus"
1472 | }
1473 | },
1474 | "node_modules/eslint-module-utils": {
1475 | "version": "2.8.0",
1476 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz",
1477 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==",
1478 | "dependencies": {
1479 | "debug": "^3.2.7"
1480 | },
1481 | "engines": {
1482 | "node": ">=4"
1483 | },
1484 | "peerDependenciesMeta": {
1485 | "eslint": {
1486 | "optional": true
1487 | }
1488 | }
1489 | },
1490 | "node_modules/eslint-module-utils/node_modules/debug": {
1491 | "version": "3.2.7",
1492 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1493 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1494 | "dependencies": {
1495 | "ms": "^2.1.1"
1496 | }
1497 | },
1498 | "node_modules/eslint-plugin-import": {
1499 | "version": "2.27.5",
1500 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz",
1501 | "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==",
1502 | "dependencies": {
1503 | "array-includes": "^3.1.6",
1504 | "array.prototype.flat": "^1.3.1",
1505 | "array.prototype.flatmap": "^1.3.1",
1506 | "debug": "^3.2.7",
1507 | "doctrine": "^2.1.0",
1508 | "eslint-import-resolver-node": "^0.3.7",
1509 | "eslint-module-utils": "^2.7.4",
1510 | "has": "^1.0.3",
1511 | "is-core-module": "^2.11.0",
1512 | "is-glob": "^4.0.3",
1513 | "minimatch": "^3.1.2",
1514 | "object.values": "^1.1.6",
1515 | "resolve": "^1.22.1",
1516 | "semver": "^6.3.0",
1517 | "tsconfig-paths": "^3.14.1"
1518 | },
1519 | "engines": {
1520 | "node": ">=4"
1521 | },
1522 | "peerDependencies": {
1523 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8"
1524 | }
1525 | },
1526 | "node_modules/eslint-plugin-import/node_modules/debug": {
1527 | "version": "3.2.7",
1528 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1529 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1530 | "dependencies": {
1531 | "ms": "^2.1.1"
1532 | }
1533 | },
1534 | "node_modules/eslint-plugin-import/node_modules/doctrine": {
1535 | "version": "2.1.0",
1536 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
1537 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
1538 | "dependencies": {
1539 | "esutils": "^2.0.2"
1540 | },
1541 | "engines": {
1542 | "node": ">=0.10.0"
1543 | }
1544 | },
1545 | "node_modules/eslint-plugin-import/node_modules/semver": {
1546 | "version": "6.3.1",
1547 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
1548 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
1549 | "bin": {
1550 | "semver": "bin/semver.js"
1551 | }
1552 | },
1553 | "node_modules/eslint-plugin-jsx-a11y": {
1554 | "version": "6.7.1",
1555 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.7.1.tgz",
1556 | "integrity": "sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==",
1557 | "dependencies": {
1558 | "@babel/runtime": "^7.20.7",
1559 | "aria-query": "^5.1.3",
1560 | "array-includes": "^3.1.6",
1561 | "array.prototype.flatmap": "^1.3.1",
1562 | "ast-types-flow": "^0.0.7",
1563 | "axe-core": "^4.6.2",
1564 | "axobject-query": "^3.1.1",
1565 | "damerau-levenshtein": "^1.0.8",
1566 | "emoji-regex": "^9.2.2",
1567 | "has": "^1.0.3",
1568 | "jsx-ast-utils": "^3.3.3",
1569 | "language-tags": "=1.0.5",
1570 | "minimatch": "^3.1.2",
1571 | "object.entries": "^1.1.6",
1572 | "object.fromentries": "^2.0.6",
1573 | "semver": "^6.3.0"
1574 | },
1575 | "engines": {
1576 | "node": ">=4.0"
1577 | },
1578 | "peerDependencies": {
1579 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
1580 | }
1581 | },
1582 | "node_modules/eslint-plugin-jsx-a11y/node_modules/semver": {
1583 | "version": "6.3.1",
1584 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
1585 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
1586 | "bin": {
1587 | "semver": "bin/semver.js"
1588 | }
1589 | },
1590 | "node_modules/eslint-plugin-react": {
1591 | "version": "7.33.0",
1592 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.0.tgz",
1593 | "integrity": "sha512-qewL/8P34WkY8jAqdQxsiL82pDUeT7nhs8IsuXgfgnsEloKCT4miAV9N9kGtx7/KM9NH/NCGUE7Edt9iGxLXFw==",
1594 | "dependencies": {
1595 | "array-includes": "^3.1.6",
1596 | "array.prototype.flatmap": "^1.3.1",
1597 | "array.prototype.tosorted": "^1.1.1",
1598 | "doctrine": "^2.1.0",
1599 | "estraverse": "^5.3.0",
1600 | "jsx-ast-utils": "^2.4.1 || ^3.0.0",
1601 | "minimatch": "^3.1.2",
1602 | "object.entries": "^1.1.6",
1603 | "object.fromentries": "^2.0.6",
1604 | "object.hasown": "^1.1.2",
1605 | "object.values": "^1.1.6",
1606 | "prop-types": "^15.8.1",
1607 | "resolve": "^2.0.0-next.4",
1608 | "semver": "^6.3.1",
1609 | "string.prototype.matchall": "^4.0.8"
1610 | },
1611 | "engines": {
1612 | "node": ">=4"
1613 | },
1614 | "peerDependencies": {
1615 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8"
1616 | }
1617 | },
1618 | "node_modules/eslint-plugin-react-hooks": {
1619 | "version": "5.0.0-canary-7118f5dd7-20230705",
1620 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0-canary-7118f5dd7-20230705.tgz",
1621 | "integrity": "sha512-AZYbMo/NW9chdL7vk6HQzQhT+PvTAEVqWk9ziruUoW2kAOcN5qNyelv70e0F1VNQAbvutOC9oc+xfWycI9FxDw==",
1622 | "engines": {
1623 | "node": ">=10"
1624 | },
1625 | "peerDependencies": {
1626 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0"
1627 | }
1628 | },
1629 | "node_modules/eslint-plugin-react/node_modules/doctrine": {
1630 | "version": "2.1.0",
1631 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz",
1632 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==",
1633 | "dependencies": {
1634 | "esutils": "^2.0.2"
1635 | },
1636 | "engines": {
1637 | "node": ">=0.10.0"
1638 | }
1639 | },
1640 | "node_modules/eslint-plugin-react/node_modules/resolve": {
1641 | "version": "2.0.0-next.4",
1642 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz",
1643 | "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==",
1644 | "dependencies": {
1645 | "is-core-module": "^2.9.0",
1646 | "path-parse": "^1.0.7",
1647 | "supports-preserve-symlinks-flag": "^1.0.0"
1648 | },
1649 | "bin": {
1650 | "resolve": "bin/resolve"
1651 | },
1652 | "funding": {
1653 | "url": "https://github.com/sponsors/ljharb"
1654 | }
1655 | },
1656 | "node_modules/eslint-plugin-react/node_modules/semver": {
1657 | "version": "6.3.1",
1658 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz",
1659 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==",
1660 | "bin": {
1661 | "semver": "bin/semver.js"
1662 | }
1663 | },
1664 | "node_modules/eslint-scope": {
1665 | "version": "7.2.1",
1666 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.1.tgz",
1667 | "integrity": "sha512-CvefSOsDdaYYvxChovdrPo/ZGt8d5lrJWleAc1diXRKhHGiTYEI26cvo8Kle/wGnsizoCJjK73FMg1/IkIwiNA==",
1668 | "dependencies": {
1669 | "esrecurse": "^4.3.0",
1670 | "estraverse": "^5.2.0"
1671 | },
1672 | "engines": {
1673 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1674 | },
1675 | "funding": {
1676 | "url": "https://opencollective.com/eslint"
1677 | }
1678 | },
1679 | "node_modules/eslint-visitor-keys": {
1680 | "version": "3.4.1",
1681 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz",
1682 | "integrity": "sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==",
1683 | "engines": {
1684 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1685 | },
1686 | "funding": {
1687 | "url": "https://opencollective.com/eslint"
1688 | }
1689 | },
1690 | "node_modules/espree": {
1691 | "version": "9.6.1",
1692 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz",
1693 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==",
1694 | "dependencies": {
1695 | "acorn": "^8.9.0",
1696 | "acorn-jsx": "^5.3.2",
1697 | "eslint-visitor-keys": "^3.4.1"
1698 | },
1699 | "engines": {
1700 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
1701 | },
1702 | "funding": {
1703 | "url": "https://opencollective.com/eslint"
1704 | }
1705 | },
1706 | "node_modules/esquery": {
1707 | "version": "1.5.0",
1708 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz",
1709 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==",
1710 | "dependencies": {
1711 | "estraverse": "^5.1.0"
1712 | },
1713 | "engines": {
1714 | "node": ">=0.10"
1715 | }
1716 | },
1717 | "node_modules/esrecurse": {
1718 | "version": "4.3.0",
1719 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz",
1720 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==",
1721 | "dependencies": {
1722 | "estraverse": "^5.2.0"
1723 | },
1724 | "engines": {
1725 | "node": ">=4.0"
1726 | }
1727 | },
1728 | "node_modules/estraverse": {
1729 | "version": "5.3.0",
1730 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz",
1731 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==",
1732 | "engines": {
1733 | "node": ">=4.0"
1734 | }
1735 | },
1736 | "node_modules/esutils": {
1737 | "version": "2.0.3",
1738 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz",
1739 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==",
1740 | "engines": {
1741 | "node": ">=0.10.0"
1742 | }
1743 | },
1744 | "node_modules/execa": {
1745 | "version": "7.1.1",
1746 | "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz",
1747 | "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==",
1748 | "dependencies": {
1749 | "cross-spawn": "^7.0.3",
1750 | "get-stream": "^6.0.1",
1751 | "human-signals": "^4.3.0",
1752 | "is-stream": "^3.0.0",
1753 | "merge-stream": "^2.0.0",
1754 | "npm-run-path": "^5.1.0",
1755 | "onetime": "^6.0.0",
1756 | "signal-exit": "^3.0.7",
1757 | "strip-final-newline": "^3.0.0"
1758 | },
1759 | "engines": {
1760 | "node": "^14.18.0 || ^16.14.0 || >=18.0.0"
1761 | },
1762 | "funding": {
1763 | "url": "https://github.com/sindresorhus/execa?sponsor=1"
1764 | }
1765 | },
1766 | "node_modules/fast-deep-equal": {
1767 | "version": "3.1.3",
1768 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
1769 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
1770 | },
1771 | "node_modules/fast-glob": {
1772 | "version": "3.3.1",
1773 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz",
1774 | "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==",
1775 | "dependencies": {
1776 | "@nodelib/fs.stat": "^2.0.2",
1777 | "@nodelib/fs.walk": "^1.2.3",
1778 | "glob-parent": "^5.1.2",
1779 | "merge2": "^1.3.0",
1780 | "micromatch": "^4.0.4"
1781 | },
1782 | "engines": {
1783 | "node": ">=8.6.0"
1784 | }
1785 | },
1786 | "node_modules/fast-glob/node_modules/glob-parent": {
1787 | "version": "5.1.2",
1788 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1789 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1790 | "dependencies": {
1791 | "is-glob": "^4.0.1"
1792 | },
1793 | "engines": {
1794 | "node": ">= 6"
1795 | }
1796 | },
1797 | "node_modules/fast-json-stable-stringify": {
1798 | "version": "2.1.0",
1799 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
1800 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
1801 | },
1802 | "node_modules/fast-levenshtein": {
1803 | "version": "2.0.6",
1804 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz",
1805 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw=="
1806 | },
1807 | "node_modules/fastq": {
1808 | "version": "1.15.0",
1809 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz",
1810 | "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==",
1811 | "dependencies": {
1812 | "reusify": "^1.0.4"
1813 | }
1814 | },
1815 | "node_modules/file-entry-cache": {
1816 | "version": "6.0.1",
1817 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz",
1818 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==",
1819 | "dependencies": {
1820 | "flat-cache": "^3.0.4"
1821 | },
1822 | "engines": {
1823 | "node": "^10.12.0 || >=12.0.0"
1824 | }
1825 | },
1826 | "node_modules/fill-range": {
1827 | "version": "7.0.1",
1828 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
1829 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
1830 | "dependencies": {
1831 | "to-regex-range": "^5.0.1"
1832 | },
1833 | "engines": {
1834 | "node": ">=8"
1835 | }
1836 | },
1837 | "node_modules/find-up": {
1838 | "version": "5.0.0",
1839 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz",
1840 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==",
1841 | "dependencies": {
1842 | "locate-path": "^6.0.0",
1843 | "path-exists": "^4.0.0"
1844 | },
1845 | "engines": {
1846 | "node": ">=10"
1847 | },
1848 | "funding": {
1849 | "url": "https://github.com/sponsors/sindresorhus"
1850 | }
1851 | },
1852 | "node_modules/flat-cache": {
1853 | "version": "3.0.4",
1854 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz",
1855 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==",
1856 | "dependencies": {
1857 | "flatted": "^3.1.0",
1858 | "rimraf": "^3.0.2"
1859 | },
1860 | "engines": {
1861 | "node": "^10.12.0 || >=12.0.0"
1862 | }
1863 | },
1864 | "node_modules/flatted": {
1865 | "version": "3.2.7",
1866 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.7.tgz",
1867 | "integrity": "sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ=="
1868 | },
1869 | "node_modules/for-each": {
1870 | "version": "0.3.3",
1871 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz",
1872 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==",
1873 | "dependencies": {
1874 | "is-callable": "^1.1.3"
1875 | }
1876 | },
1877 | "node_modules/fraction.js": {
1878 | "version": "4.2.0",
1879 | "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz",
1880 | "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==",
1881 | "engines": {
1882 | "node": "*"
1883 | },
1884 | "funding": {
1885 | "type": "patreon",
1886 | "url": "https://www.patreon.com/infusion"
1887 | }
1888 | },
1889 | "node_modules/fs.realpath": {
1890 | "version": "1.0.0",
1891 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
1892 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw=="
1893 | },
1894 | "node_modules/fsevents": {
1895 | "version": "2.3.2",
1896 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
1897 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
1898 | "hasInstallScript": true,
1899 | "optional": true,
1900 | "os": [
1901 | "darwin"
1902 | ],
1903 | "engines": {
1904 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
1905 | }
1906 | },
1907 | "node_modules/function-bind": {
1908 | "version": "1.1.1",
1909 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
1910 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
1911 | },
1912 | "node_modules/function.prototype.name": {
1913 | "version": "1.1.5",
1914 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz",
1915 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==",
1916 | "dependencies": {
1917 | "call-bind": "^1.0.2",
1918 | "define-properties": "^1.1.3",
1919 | "es-abstract": "^1.19.0",
1920 | "functions-have-names": "^1.2.2"
1921 | },
1922 | "engines": {
1923 | "node": ">= 0.4"
1924 | },
1925 | "funding": {
1926 | "url": "https://github.com/sponsors/ljharb"
1927 | }
1928 | },
1929 | "node_modules/functions-have-names": {
1930 | "version": "1.2.3",
1931 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz",
1932 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==",
1933 | "funding": {
1934 | "url": "https://github.com/sponsors/ljharb"
1935 | }
1936 | },
1937 | "node_modules/get-intrinsic": {
1938 | "version": "1.2.1",
1939 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
1940 | "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
1941 | "dependencies": {
1942 | "function-bind": "^1.1.1",
1943 | "has": "^1.0.3",
1944 | "has-proto": "^1.0.1",
1945 | "has-symbols": "^1.0.3"
1946 | },
1947 | "funding": {
1948 | "url": "https://github.com/sponsors/ljharb"
1949 | }
1950 | },
1951 | "node_modules/get-stream": {
1952 | "version": "6.0.1",
1953 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz",
1954 | "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==",
1955 | "engines": {
1956 | "node": ">=10"
1957 | },
1958 | "funding": {
1959 | "url": "https://github.com/sponsors/sindresorhus"
1960 | }
1961 | },
1962 | "node_modules/get-symbol-description": {
1963 | "version": "1.0.0",
1964 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz",
1965 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==",
1966 | "dependencies": {
1967 | "call-bind": "^1.0.2",
1968 | "get-intrinsic": "^1.1.1"
1969 | },
1970 | "engines": {
1971 | "node": ">= 0.4"
1972 | },
1973 | "funding": {
1974 | "url": "https://github.com/sponsors/ljharb"
1975 | }
1976 | },
1977 | "node_modules/get-tsconfig": {
1978 | "version": "4.6.2",
1979 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.6.2.tgz",
1980 | "integrity": "sha512-E5XrT4CbbXcXWy+1jChlZmrmCwd5KGx502kDCXJJ7y898TtWW9FwoG5HfOLVRKmlmDGkWN2HM9Ho+/Y8F0sJDg==",
1981 | "dependencies": {
1982 | "resolve-pkg-maps": "^1.0.0"
1983 | },
1984 | "funding": {
1985 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
1986 | }
1987 | },
1988 | "node_modules/glob": {
1989 | "version": "7.1.7",
1990 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz",
1991 | "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==",
1992 | "dependencies": {
1993 | "fs.realpath": "^1.0.0",
1994 | "inflight": "^1.0.4",
1995 | "inherits": "2",
1996 | "minimatch": "^3.0.4",
1997 | "once": "^1.3.0",
1998 | "path-is-absolute": "^1.0.0"
1999 | },
2000 | "engines": {
2001 | "node": "*"
2002 | },
2003 | "funding": {
2004 | "url": "https://github.com/sponsors/isaacs"
2005 | }
2006 | },
2007 | "node_modules/glob-parent": {
2008 | "version": "6.0.2",
2009 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz",
2010 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==",
2011 | "dependencies": {
2012 | "is-glob": "^4.0.3"
2013 | },
2014 | "engines": {
2015 | "node": ">=10.13.0"
2016 | }
2017 | },
2018 | "node_modules/glob-to-regexp": {
2019 | "version": "0.4.1",
2020 | "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz",
2021 | "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw=="
2022 | },
2023 | "node_modules/globals": {
2024 | "version": "13.20.0",
2025 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.20.0.tgz",
2026 | "integrity": "sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==",
2027 | "dependencies": {
2028 | "type-fest": "^0.20.2"
2029 | },
2030 | "engines": {
2031 | "node": ">=8"
2032 | },
2033 | "funding": {
2034 | "url": "https://github.com/sponsors/sindresorhus"
2035 | }
2036 | },
2037 | "node_modules/globalthis": {
2038 | "version": "1.0.3",
2039 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz",
2040 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==",
2041 | "dependencies": {
2042 | "define-properties": "^1.1.3"
2043 | },
2044 | "engines": {
2045 | "node": ">= 0.4"
2046 | },
2047 | "funding": {
2048 | "url": "https://github.com/sponsors/ljharb"
2049 | }
2050 | },
2051 | "node_modules/globby": {
2052 | "version": "11.1.0",
2053 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz",
2054 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==",
2055 | "dependencies": {
2056 | "array-union": "^2.1.0",
2057 | "dir-glob": "^3.0.1",
2058 | "fast-glob": "^3.2.9",
2059 | "ignore": "^5.2.0",
2060 | "merge2": "^1.4.1",
2061 | "slash": "^3.0.0"
2062 | },
2063 | "engines": {
2064 | "node": ">=10"
2065 | },
2066 | "funding": {
2067 | "url": "https://github.com/sponsors/sindresorhus"
2068 | }
2069 | },
2070 | "node_modules/gopd": {
2071 | "version": "1.0.1",
2072 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz",
2073 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==",
2074 | "dependencies": {
2075 | "get-intrinsic": "^1.1.3"
2076 | },
2077 | "funding": {
2078 | "url": "https://github.com/sponsors/ljharb"
2079 | }
2080 | },
2081 | "node_modules/graceful-fs": {
2082 | "version": "4.2.11",
2083 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2084 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ=="
2085 | },
2086 | "node_modules/graphemer": {
2087 | "version": "1.4.0",
2088 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz",
2089 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag=="
2090 | },
2091 | "node_modules/has": {
2092 | "version": "1.0.3",
2093 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
2094 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
2095 | "dependencies": {
2096 | "function-bind": "^1.1.1"
2097 | },
2098 | "engines": {
2099 | "node": ">= 0.4.0"
2100 | }
2101 | },
2102 | "node_modules/has-bigints": {
2103 | "version": "1.0.2",
2104 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz",
2105 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==",
2106 | "funding": {
2107 | "url": "https://github.com/sponsors/ljharb"
2108 | }
2109 | },
2110 | "node_modules/has-flag": {
2111 | "version": "4.0.0",
2112 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2113 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2114 | "engines": {
2115 | "node": ">=8"
2116 | }
2117 | },
2118 | "node_modules/has-property-descriptors": {
2119 | "version": "1.0.0",
2120 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz",
2121 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==",
2122 | "dependencies": {
2123 | "get-intrinsic": "^1.1.1"
2124 | },
2125 | "funding": {
2126 | "url": "https://github.com/sponsors/ljharb"
2127 | }
2128 | },
2129 | "node_modules/has-proto": {
2130 | "version": "1.0.1",
2131 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
2132 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==",
2133 | "engines": {
2134 | "node": ">= 0.4"
2135 | },
2136 | "funding": {
2137 | "url": "https://github.com/sponsors/ljharb"
2138 | }
2139 | },
2140 | "node_modules/has-symbols": {
2141 | "version": "1.0.3",
2142 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
2143 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
2144 | "engines": {
2145 | "node": ">= 0.4"
2146 | },
2147 | "funding": {
2148 | "url": "https://github.com/sponsors/ljharb"
2149 | }
2150 | },
2151 | "node_modules/has-tostringtag": {
2152 | "version": "1.0.0",
2153 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz",
2154 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==",
2155 | "dependencies": {
2156 | "has-symbols": "^1.0.2"
2157 | },
2158 | "engines": {
2159 | "node": ">= 0.4"
2160 | },
2161 | "funding": {
2162 | "url": "https://github.com/sponsors/ljharb"
2163 | }
2164 | },
2165 | "node_modules/human-signals": {
2166 | "version": "4.3.1",
2167 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz",
2168 | "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==",
2169 | "engines": {
2170 | "node": ">=14.18.0"
2171 | }
2172 | },
2173 | "node_modules/ignore": {
2174 | "version": "5.2.4",
2175 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz",
2176 | "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==",
2177 | "engines": {
2178 | "node": ">= 4"
2179 | }
2180 | },
2181 | "node_modules/import-fresh": {
2182 | "version": "3.3.0",
2183 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz",
2184 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==",
2185 | "dependencies": {
2186 | "parent-module": "^1.0.0",
2187 | "resolve-from": "^4.0.0"
2188 | },
2189 | "engines": {
2190 | "node": ">=6"
2191 | },
2192 | "funding": {
2193 | "url": "https://github.com/sponsors/sindresorhus"
2194 | }
2195 | },
2196 | "node_modules/imurmurhash": {
2197 | "version": "0.1.4",
2198 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz",
2199 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==",
2200 | "engines": {
2201 | "node": ">=0.8.19"
2202 | }
2203 | },
2204 | "node_modules/inflight": {
2205 | "version": "1.0.6",
2206 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
2207 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==",
2208 | "dependencies": {
2209 | "once": "^1.3.0",
2210 | "wrappy": "1"
2211 | }
2212 | },
2213 | "node_modules/inherits": {
2214 | "version": "2.0.4",
2215 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
2216 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
2217 | },
2218 | "node_modules/internal-slot": {
2219 | "version": "1.0.5",
2220 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz",
2221 | "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==",
2222 | "dependencies": {
2223 | "get-intrinsic": "^1.2.0",
2224 | "has": "^1.0.3",
2225 | "side-channel": "^1.0.4"
2226 | },
2227 | "engines": {
2228 | "node": ">= 0.4"
2229 | }
2230 | },
2231 | "node_modules/is-array-buffer": {
2232 | "version": "3.0.2",
2233 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz",
2234 | "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==",
2235 | "dependencies": {
2236 | "call-bind": "^1.0.2",
2237 | "get-intrinsic": "^1.2.0",
2238 | "is-typed-array": "^1.1.10"
2239 | },
2240 | "funding": {
2241 | "url": "https://github.com/sponsors/ljharb"
2242 | }
2243 | },
2244 | "node_modules/is-bigint": {
2245 | "version": "1.0.4",
2246 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz",
2247 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==",
2248 | "dependencies": {
2249 | "has-bigints": "^1.0.1"
2250 | },
2251 | "funding": {
2252 | "url": "https://github.com/sponsors/ljharb"
2253 | }
2254 | },
2255 | "node_modules/is-binary-path": {
2256 | "version": "2.1.0",
2257 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
2258 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
2259 | "dependencies": {
2260 | "binary-extensions": "^2.0.0"
2261 | },
2262 | "engines": {
2263 | "node": ">=8"
2264 | }
2265 | },
2266 | "node_modules/is-boolean-object": {
2267 | "version": "1.1.2",
2268 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz",
2269 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==",
2270 | "dependencies": {
2271 | "call-bind": "^1.0.2",
2272 | "has-tostringtag": "^1.0.0"
2273 | },
2274 | "engines": {
2275 | "node": ">= 0.4"
2276 | },
2277 | "funding": {
2278 | "url": "https://github.com/sponsors/ljharb"
2279 | }
2280 | },
2281 | "node_modules/is-callable": {
2282 | "version": "1.2.7",
2283 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz",
2284 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==",
2285 | "engines": {
2286 | "node": ">= 0.4"
2287 | },
2288 | "funding": {
2289 | "url": "https://github.com/sponsors/ljharb"
2290 | }
2291 | },
2292 | "node_modules/is-core-module": {
2293 | "version": "2.12.1",
2294 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.12.1.tgz",
2295 | "integrity": "sha512-Q4ZuBAe2FUsKtyQJoQHlvP8OvBERxO3jEmy1I7hcRXcJBGGHFh/aJBswbXuS9sgrDH2QUO8ilkwNPHvHMd8clg==",
2296 | "dependencies": {
2297 | "has": "^1.0.3"
2298 | },
2299 | "funding": {
2300 | "url": "https://github.com/sponsors/ljharb"
2301 | }
2302 | },
2303 | "node_modules/is-date-object": {
2304 | "version": "1.0.5",
2305 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz",
2306 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==",
2307 | "dependencies": {
2308 | "has-tostringtag": "^1.0.0"
2309 | },
2310 | "engines": {
2311 | "node": ">= 0.4"
2312 | },
2313 | "funding": {
2314 | "url": "https://github.com/sponsors/ljharb"
2315 | }
2316 | },
2317 | "node_modules/is-docker": {
2318 | "version": "3.0.0",
2319 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz",
2320 | "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==",
2321 | "bin": {
2322 | "is-docker": "cli.js"
2323 | },
2324 | "engines": {
2325 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2326 | },
2327 | "funding": {
2328 | "url": "https://github.com/sponsors/sindresorhus"
2329 | }
2330 | },
2331 | "node_modules/is-extglob": {
2332 | "version": "2.1.1",
2333 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
2334 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==",
2335 | "engines": {
2336 | "node": ">=0.10.0"
2337 | }
2338 | },
2339 | "node_modules/is-glob": {
2340 | "version": "4.0.3",
2341 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz",
2342 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==",
2343 | "dependencies": {
2344 | "is-extglob": "^2.1.1"
2345 | },
2346 | "engines": {
2347 | "node": ">=0.10.0"
2348 | }
2349 | },
2350 | "node_modules/is-inside-container": {
2351 | "version": "1.0.0",
2352 | "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz",
2353 | "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==",
2354 | "dependencies": {
2355 | "is-docker": "^3.0.0"
2356 | },
2357 | "bin": {
2358 | "is-inside-container": "cli.js"
2359 | },
2360 | "engines": {
2361 | "node": ">=14.16"
2362 | },
2363 | "funding": {
2364 | "url": "https://github.com/sponsors/sindresorhus"
2365 | }
2366 | },
2367 | "node_modules/is-negative-zero": {
2368 | "version": "2.0.2",
2369 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
2370 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
2371 | "engines": {
2372 | "node": ">= 0.4"
2373 | },
2374 | "funding": {
2375 | "url": "https://github.com/sponsors/ljharb"
2376 | }
2377 | },
2378 | "node_modules/is-number": {
2379 | "version": "7.0.0",
2380 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
2381 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
2382 | "engines": {
2383 | "node": ">=0.12.0"
2384 | }
2385 | },
2386 | "node_modules/is-number-object": {
2387 | "version": "1.0.7",
2388 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz",
2389 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==",
2390 | "dependencies": {
2391 | "has-tostringtag": "^1.0.0"
2392 | },
2393 | "engines": {
2394 | "node": ">= 0.4"
2395 | },
2396 | "funding": {
2397 | "url": "https://github.com/sponsors/ljharb"
2398 | }
2399 | },
2400 | "node_modules/is-path-inside": {
2401 | "version": "3.0.3",
2402 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz",
2403 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==",
2404 | "engines": {
2405 | "node": ">=8"
2406 | }
2407 | },
2408 | "node_modules/is-regex": {
2409 | "version": "1.1.4",
2410 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz",
2411 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==",
2412 | "dependencies": {
2413 | "call-bind": "^1.0.2",
2414 | "has-tostringtag": "^1.0.0"
2415 | },
2416 | "engines": {
2417 | "node": ">= 0.4"
2418 | },
2419 | "funding": {
2420 | "url": "https://github.com/sponsors/ljharb"
2421 | }
2422 | },
2423 | "node_modules/is-shared-array-buffer": {
2424 | "version": "1.0.2",
2425 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz",
2426 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==",
2427 | "dependencies": {
2428 | "call-bind": "^1.0.2"
2429 | },
2430 | "funding": {
2431 | "url": "https://github.com/sponsors/ljharb"
2432 | }
2433 | },
2434 | "node_modules/is-stream": {
2435 | "version": "3.0.0",
2436 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz",
2437 | "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==",
2438 | "engines": {
2439 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2440 | },
2441 | "funding": {
2442 | "url": "https://github.com/sponsors/sindresorhus"
2443 | }
2444 | },
2445 | "node_modules/is-string": {
2446 | "version": "1.0.7",
2447 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz",
2448 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==",
2449 | "dependencies": {
2450 | "has-tostringtag": "^1.0.0"
2451 | },
2452 | "engines": {
2453 | "node": ">= 0.4"
2454 | },
2455 | "funding": {
2456 | "url": "https://github.com/sponsors/ljharb"
2457 | }
2458 | },
2459 | "node_modules/is-symbol": {
2460 | "version": "1.0.4",
2461 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz",
2462 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==",
2463 | "dependencies": {
2464 | "has-symbols": "^1.0.2"
2465 | },
2466 | "engines": {
2467 | "node": ">= 0.4"
2468 | },
2469 | "funding": {
2470 | "url": "https://github.com/sponsors/ljharb"
2471 | }
2472 | },
2473 | "node_modules/is-typed-array": {
2474 | "version": "1.1.12",
2475 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz",
2476 | "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==",
2477 | "dependencies": {
2478 | "which-typed-array": "^1.1.11"
2479 | },
2480 | "engines": {
2481 | "node": ">= 0.4"
2482 | },
2483 | "funding": {
2484 | "url": "https://github.com/sponsors/ljharb"
2485 | }
2486 | },
2487 | "node_modules/is-weakref": {
2488 | "version": "1.0.2",
2489 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz",
2490 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==",
2491 | "dependencies": {
2492 | "call-bind": "^1.0.2"
2493 | },
2494 | "funding": {
2495 | "url": "https://github.com/sponsors/ljharb"
2496 | }
2497 | },
2498 | "node_modules/is-wsl": {
2499 | "version": "2.2.0",
2500 | "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz",
2501 | "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==",
2502 | "dependencies": {
2503 | "is-docker": "^2.0.0"
2504 | },
2505 | "engines": {
2506 | "node": ">=8"
2507 | }
2508 | },
2509 | "node_modules/is-wsl/node_modules/is-docker": {
2510 | "version": "2.2.1",
2511 | "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz",
2512 | "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==",
2513 | "bin": {
2514 | "is-docker": "cli.js"
2515 | },
2516 | "engines": {
2517 | "node": ">=8"
2518 | },
2519 | "funding": {
2520 | "url": "https://github.com/sponsors/sindresorhus"
2521 | }
2522 | },
2523 | "node_modules/isarray": {
2524 | "version": "2.0.5",
2525 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz",
2526 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw=="
2527 | },
2528 | "node_modules/isexe": {
2529 | "version": "2.0.0",
2530 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
2531 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw=="
2532 | },
2533 | "node_modules/jiti": {
2534 | "version": "1.19.1",
2535 | "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.19.1.tgz",
2536 | "integrity": "sha512-oVhqoRDaBXf7sjkll95LHVS6Myyyb1zaunVwk4Z0+WPSW4gjS0pl01zYKHScTuyEhQsFxV5L4DR5r+YqSyqyyg==",
2537 | "bin": {
2538 | "jiti": "bin/jiti.js"
2539 | }
2540 | },
2541 | "node_modules/js-tokens": {
2542 | "version": "4.0.0",
2543 | "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2544 | "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="
2545 | },
2546 | "node_modules/js-yaml": {
2547 | "version": "4.1.0",
2548 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz",
2549 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==",
2550 | "dependencies": {
2551 | "argparse": "^2.0.1"
2552 | },
2553 | "bin": {
2554 | "js-yaml": "bin/js-yaml.js"
2555 | }
2556 | },
2557 | "node_modules/json-schema-traverse": {
2558 | "version": "0.4.1",
2559 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
2560 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
2561 | },
2562 | "node_modules/json-stable-stringify-without-jsonify": {
2563 | "version": "1.0.1",
2564 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz",
2565 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw=="
2566 | },
2567 | "node_modules/json5": {
2568 | "version": "1.0.2",
2569 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz",
2570 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==",
2571 | "dependencies": {
2572 | "minimist": "^1.2.0"
2573 | },
2574 | "bin": {
2575 | "json5": "lib/cli.js"
2576 | }
2577 | },
2578 | "node_modules/jsx-ast-utils": {
2579 | "version": "3.3.4",
2580 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.4.tgz",
2581 | "integrity": "sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==",
2582 | "dependencies": {
2583 | "array-includes": "^3.1.6",
2584 | "array.prototype.flat": "^1.3.1",
2585 | "object.assign": "^4.1.4",
2586 | "object.values": "^1.1.6"
2587 | },
2588 | "engines": {
2589 | "node": ">=4.0"
2590 | }
2591 | },
2592 | "node_modules/language-subtag-registry": {
2593 | "version": "0.3.22",
2594 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz",
2595 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w=="
2596 | },
2597 | "node_modules/language-tags": {
2598 | "version": "1.0.5",
2599 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz",
2600 | "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==",
2601 | "dependencies": {
2602 | "language-subtag-registry": "~0.3.2"
2603 | }
2604 | },
2605 | "node_modules/levn": {
2606 | "version": "0.4.1",
2607 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz",
2608 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==",
2609 | "dependencies": {
2610 | "prelude-ls": "^1.2.1",
2611 | "type-check": "~0.4.0"
2612 | },
2613 | "engines": {
2614 | "node": ">= 0.8.0"
2615 | }
2616 | },
2617 | "node_modules/lilconfig": {
2618 | "version": "2.1.0",
2619 | "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz",
2620 | "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==",
2621 | "engines": {
2622 | "node": ">=10"
2623 | }
2624 | },
2625 | "node_modules/lines-and-columns": {
2626 | "version": "1.2.4",
2627 | "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz",
2628 | "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg=="
2629 | },
2630 | "node_modules/locate-path": {
2631 | "version": "6.0.0",
2632 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz",
2633 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==",
2634 | "dependencies": {
2635 | "p-locate": "^5.0.0"
2636 | },
2637 | "engines": {
2638 | "node": ">=10"
2639 | },
2640 | "funding": {
2641 | "url": "https://github.com/sponsors/sindresorhus"
2642 | }
2643 | },
2644 | "node_modules/lodash.merge": {
2645 | "version": "4.6.2",
2646 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz",
2647 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="
2648 | },
2649 | "node_modules/loose-envify": {
2650 | "version": "1.4.0",
2651 | "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
2652 | "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
2653 | "dependencies": {
2654 | "js-tokens": "^3.0.0 || ^4.0.0"
2655 | },
2656 | "bin": {
2657 | "loose-envify": "cli.js"
2658 | }
2659 | },
2660 | "node_modules/lru-cache": {
2661 | "version": "6.0.0",
2662 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz",
2663 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==",
2664 | "dependencies": {
2665 | "yallist": "^4.0.0"
2666 | },
2667 | "engines": {
2668 | "node": ">=10"
2669 | }
2670 | },
2671 | "node_modules/merge-stream": {
2672 | "version": "2.0.0",
2673 | "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz",
2674 | "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="
2675 | },
2676 | "node_modules/merge2": {
2677 | "version": "1.4.1",
2678 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz",
2679 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==",
2680 | "engines": {
2681 | "node": ">= 8"
2682 | }
2683 | },
2684 | "node_modules/micromatch": {
2685 | "version": "4.0.5",
2686 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz",
2687 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==",
2688 | "dependencies": {
2689 | "braces": "^3.0.2",
2690 | "picomatch": "^2.3.1"
2691 | },
2692 | "engines": {
2693 | "node": ">=8.6"
2694 | }
2695 | },
2696 | "node_modules/mimic-fn": {
2697 | "version": "4.0.0",
2698 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz",
2699 | "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==",
2700 | "engines": {
2701 | "node": ">=12"
2702 | },
2703 | "funding": {
2704 | "url": "https://github.com/sponsors/sindresorhus"
2705 | }
2706 | },
2707 | "node_modules/minimatch": {
2708 | "version": "3.1.2",
2709 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
2710 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
2711 | "dependencies": {
2712 | "brace-expansion": "^1.1.7"
2713 | },
2714 | "engines": {
2715 | "node": "*"
2716 | }
2717 | },
2718 | "node_modules/minimist": {
2719 | "version": "1.2.8",
2720 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz",
2721 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==",
2722 | "funding": {
2723 | "url": "https://github.com/sponsors/ljharb"
2724 | }
2725 | },
2726 | "node_modules/ms": {
2727 | "version": "2.1.2",
2728 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz",
2729 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="
2730 | },
2731 | "node_modules/mz": {
2732 | "version": "2.7.0",
2733 | "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz",
2734 | "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==",
2735 | "dependencies": {
2736 | "any-promise": "^1.0.0",
2737 | "object-assign": "^4.0.1",
2738 | "thenify-all": "^1.0.0"
2739 | }
2740 | },
2741 | "node_modules/nanoid": {
2742 | "version": "3.3.6",
2743 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.6.tgz",
2744 | "integrity": "sha512-BGcqMMJuToF7i1rt+2PWSNVnWIkGCU78jBG3RxO/bZlnZPK2Cmi2QaffxGO/2RvWi9sL+FAiRiXMgsyxQ1DIDA==",
2745 | "funding": [
2746 | {
2747 | "type": "github",
2748 | "url": "https://github.com/sponsors/ai"
2749 | }
2750 | ],
2751 | "bin": {
2752 | "nanoid": "bin/nanoid.cjs"
2753 | },
2754 | "engines": {
2755 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2756 | }
2757 | },
2758 | "node_modules/natural-compare": {
2759 | "version": "1.4.0",
2760 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz",
2761 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw=="
2762 | },
2763 | "node_modules/next": {
2764 | "version": "13.4.12",
2765 | "resolved": "https://registry.npmjs.org/next/-/next-13.4.12.tgz",
2766 | "integrity": "sha512-eHfnru9x6NRmTMcjQp6Nz0J4XH9OubmzOa7CkWL+AUrUxpibub3vWwttjduu9No16dug1kq04hiUUpo7J3m3Xw==",
2767 | "dependencies": {
2768 | "@next/env": "13.4.12",
2769 | "@swc/helpers": "0.5.1",
2770 | "busboy": "1.6.0",
2771 | "caniuse-lite": "^1.0.30001406",
2772 | "postcss": "8.4.14",
2773 | "styled-jsx": "5.1.1",
2774 | "watchpack": "2.4.0",
2775 | "zod": "3.21.4"
2776 | },
2777 | "bin": {
2778 | "next": "dist/bin/next"
2779 | },
2780 | "engines": {
2781 | "node": ">=16.8.0"
2782 | },
2783 | "optionalDependencies": {
2784 | "@next/swc-darwin-arm64": "13.4.12",
2785 | "@next/swc-darwin-x64": "13.4.12",
2786 | "@next/swc-linux-arm64-gnu": "13.4.12",
2787 | "@next/swc-linux-arm64-musl": "13.4.12",
2788 | "@next/swc-linux-x64-gnu": "13.4.12",
2789 | "@next/swc-linux-x64-musl": "13.4.12",
2790 | "@next/swc-win32-arm64-msvc": "13.4.12",
2791 | "@next/swc-win32-ia32-msvc": "13.4.12",
2792 | "@next/swc-win32-x64-msvc": "13.4.12"
2793 | },
2794 | "peerDependencies": {
2795 | "@opentelemetry/api": "^1.1.0",
2796 | "fibers": ">= 3.1.0",
2797 | "react": "^18.2.0",
2798 | "react-dom": "^18.2.0",
2799 | "sass": "^1.3.0"
2800 | },
2801 | "peerDependenciesMeta": {
2802 | "@opentelemetry/api": {
2803 | "optional": true
2804 | },
2805 | "fibers": {
2806 | "optional": true
2807 | },
2808 | "sass": {
2809 | "optional": true
2810 | }
2811 | }
2812 | },
2813 | "node_modules/next/node_modules/postcss": {
2814 | "version": "8.4.14",
2815 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz",
2816 | "integrity": "sha512-E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig==",
2817 | "funding": [
2818 | {
2819 | "type": "opencollective",
2820 | "url": "https://opencollective.com/postcss/"
2821 | },
2822 | {
2823 | "type": "tidelift",
2824 | "url": "https://tidelift.com/funding/github/npm/postcss"
2825 | }
2826 | ],
2827 | "dependencies": {
2828 | "nanoid": "^3.3.4",
2829 | "picocolors": "^1.0.0",
2830 | "source-map-js": "^1.0.2"
2831 | },
2832 | "engines": {
2833 | "node": "^10 || ^12 || >=14"
2834 | }
2835 | },
2836 | "node_modules/node-releases": {
2837 | "version": "2.0.13",
2838 | "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz",
2839 | "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ=="
2840 | },
2841 | "node_modules/normalize-path": {
2842 | "version": "3.0.0",
2843 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
2844 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
2845 | "engines": {
2846 | "node": ">=0.10.0"
2847 | }
2848 | },
2849 | "node_modules/normalize-range": {
2850 | "version": "0.1.2",
2851 | "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz",
2852 | "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==",
2853 | "engines": {
2854 | "node": ">=0.10.0"
2855 | }
2856 | },
2857 | "node_modules/npm-run-path": {
2858 | "version": "5.1.0",
2859 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz",
2860 | "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==",
2861 | "dependencies": {
2862 | "path-key": "^4.0.0"
2863 | },
2864 | "engines": {
2865 | "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
2866 | },
2867 | "funding": {
2868 | "url": "https://github.com/sponsors/sindresorhus"
2869 | }
2870 | },
2871 | "node_modules/npm-run-path/node_modules/path-key": {
2872 | "version": "4.0.0",
2873 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz",
2874 | "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==",
2875 | "engines": {
2876 | "node": ">=12"
2877 | },
2878 | "funding": {
2879 | "url": "https://github.com/sponsors/sindresorhus"
2880 | }
2881 | },
2882 | "node_modules/object-assign": {
2883 | "version": "4.1.1",
2884 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
2885 | "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==",
2886 | "engines": {
2887 | "node": ">=0.10.0"
2888 | }
2889 | },
2890 | "node_modules/object-hash": {
2891 | "version": "3.0.0",
2892 | "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz",
2893 | "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==",
2894 | "engines": {
2895 | "node": ">= 6"
2896 | }
2897 | },
2898 | "node_modules/object-inspect": {
2899 | "version": "1.12.3",
2900 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
2901 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==",
2902 | "funding": {
2903 | "url": "https://github.com/sponsors/ljharb"
2904 | }
2905 | },
2906 | "node_modules/object-keys": {
2907 | "version": "1.1.1",
2908 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz",
2909 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==",
2910 | "engines": {
2911 | "node": ">= 0.4"
2912 | }
2913 | },
2914 | "node_modules/object.assign": {
2915 | "version": "4.1.4",
2916 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz",
2917 | "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==",
2918 | "dependencies": {
2919 | "call-bind": "^1.0.2",
2920 | "define-properties": "^1.1.4",
2921 | "has-symbols": "^1.0.3",
2922 | "object-keys": "^1.1.1"
2923 | },
2924 | "engines": {
2925 | "node": ">= 0.4"
2926 | },
2927 | "funding": {
2928 | "url": "https://github.com/sponsors/ljharb"
2929 | }
2930 | },
2931 | "node_modules/object.entries": {
2932 | "version": "1.1.6",
2933 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz",
2934 | "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==",
2935 | "dependencies": {
2936 | "call-bind": "^1.0.2",
2937 | "define-properties": "^1.1.4",
2938 | "es-abstract": "^1.20.4"
2939 | },
2940 | "engines": {
2941 | "node": ">= 0.4"
2942 | }
2943 | },
2944 | "node_modules/object.fromentries": {
2945 | "version": "2.0.6",
2946 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz",
2947 | "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==",
2948 | "dependencies": {
2949 | "call-bind": "^1.0.2",
2950 | "define-properties": "^1.1.4",
2951 | "es-abstract": "^1.20.4"
2952 | },
2953 | "engines": {
2954 | "node": ">= 0.4"
2955 | },
2956 | "funding": {
2957 | "url": "https://github.com/sponsors/ljharb"
2958 | }
2959 | },
2960 | "node_modules/object.hasown": {
2961 | "version": "1.1.2",
2962 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz",
2963 | "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==",
2964 | "dependencies": {
2965 | "define-properties": "^1.1.4",
2966 | "es-abstract": "^1.20.4"
2967 | },
2968 | "funding": {
2969 | "url": "https://github.com/sponsors/ljharb"
2970 | }
2971 | },
2972 | "node_modules/object.values": {
2973 | "version": "1.1.6",
2974 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz",
2975 | "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==",
2976 | "dependencies": {
2977 | "call-bind": "^1.0.2",
2978 | "define-properties": "^1.1.4",
2979 | "es-abstract": "^1.20.4"
2980 | },
2981 | "engines": {
2982 | "node": ">= 0.4"
2983 | },
2984 | "funding": {
2985 | "url": "https://github.com/sponsors/ljharb"
2986 | }
2987 | },
2988 | "node_modules/once": {
2989 | "version": "1.4.0",
2990 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
2991 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==",
2992 | "dependencies": {
2993 | "wrappy": "1"
2994 | }
2995 | },
2996 | "node_modules/onetime": {
2997 | "version": "6.0.0",
2998 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz",
2999 | "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==",
3000 | "dependencies": {
3001 | "mimic-fn": "^4.0.0"
3002 | },
3003 | "engines": {
3004 | "node": ">=12"
3005 | },
3006 | "funding": {
3007 | "url": "https://github.com/sponsors/sindresorhus"
3008 | }
3009 | },
3010 | "node_modules/open": {
3011 | "version": "9.1.0",
3012 | "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz",
3013 | "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==",
3014 | "dependencies": {
3015 | "default-browser": "^4.0.0",
3016 | "define-lazy-prop": "^3.0.0",
3017 | "is-inside-container": "^1.0.0",
3018 | "is-wsl": "^2.2.0"
3019 | },
3020 | "engines": {
3021 | "node": ">=14.16"
3022 | },
3023 | "funding": {
3024 | "url": "https://github.com/sponsors/sindresorhus"
3025 | }
3026 | },
3027 | "node_modules/optionator": {
3028 | "version": "0.9.3",
3029 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz",
3030 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==",
3031 | "dependencies": {
3032 | "@aashutoshrathi/word-wrap": "^1.2.3",
3033 | "deep-is": "^0.1.3",
3034 | "fast-levenshtein": "^2.0.6",
3035 | "levn": "^0.4.1",
3036 | "prelude-ls": "^1.2.1",
3037 | "type-check": "^0.4.0"
3038 | },
3039 | "engines": {
3040 | "node": ">= 0.8.0"
3041 | }
3042 | },
3043 | "node_modules/p-limit": {
3044 | "version": "3.1.0",
3045 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz",
3046 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==",
3047 | "dependencies": {
3048 | "yocto-queue": "^0.1.0"
3049 | },
3050 | "engines": {
3051 | "node": ">=10"
3052 | },
3053 | "funding": {
3054 | "url": "https://github.com/sponsors/sindresorhus"
3055 | }
3056 | },
3057 | "node_modules/p-locate": {
3058 | "version": "5.0.0",
3059 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz",
3060 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==",
3061 | "dependencies": {
3062 | "p-limit": "^3.0.2"
3063 | },
3064 | "engines": {
3065 | "node": ">=10"
3066 | },
3067 | "funding": {
3068 | "url": "https://github.com/sponsors/sindresorhus"
3069 | }
3070 | },
3071 | "node_modules/parent-module": {
3072 | "version": "1.0.1",
3073 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz",
3074 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==",
3075 | "dependencies": {
3076 | "callsites": "^3.0.0"
3077 | },
3078 | "engines": {
3079 | "node": ">=6"
3080 | }
3081 | },
3082 | "node_modules/path-exists": {
3083 | "version": "4.0.0",
3084 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz",
3085 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==",
3086 | "engines": {
3087 | "node": ">=8"
3088 | }
3089 | },
3090 | "node_modules/path-is-absolute": {
3091 | "version": "1.0.1",
3092 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
3093 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==",
3094 | "engines": {
3095 | "node": ">=0.10.0"
3096 | }
3097 | },
3098 | "node_modules/path-key": {
3099 | "version": "3.1.1",
3100 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz",
3101 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==",
3102 | "engines": {
3103 | "node": ">=8"
3104 | }
3105 | },
3106 | "node_modules/path-parse": {
3107 | "version": "1.0.7",
3108 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz",
3109 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="
3110 | },
3111 | "node_modules/path-type": {
3112 | "version": "4.0.0",
3113 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz",
3114 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==",
3115 | "engines": {
3116 | "node": ">=8"
3117 | }
3118 | },
3119 | "node_modules/picocolors": {
3120 | "version": "1.0.0",
3121 | "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz",
3122 | "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="
3123 | },
3124 | "node_modules/picomatch": {
3125 | "version": "2.3.1",
3126 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz",
3127 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==",
3128 | "engines": {
3129 | "node": ">=8.6"
3130 | },
3131 | "funding": {
3132 | "url": "https://github.com/sponsors/jonschlinkert"
3133 | }
3134 | },
3135 | "node_modules/pify": {
3136 | "version": "2.3.0",
3137 | "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz",
3138 | "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==",
3139 | "engines": {
3140 | "node": ">=0.10.0"
3141 | }
3142 | },
3143 | "node_modules/pirates": {
3144 | "version": "4.0.6",
3145 | "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz",
3146 | "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==",
3147 | "engines": {
3148 | "node": ">= 6"
3149 | }
3150 | },
3151 | "node_modules/postcss": {
3152 | "version": "8.4.27",
3153 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.27.tgz",
3154 | "integrity": "sha512-gY/ACJtJPSmUFPDCHtX78+01fHa64FaU4zaaWfuh1MhGJISufJAH4cun6k/8fwsHYeK4UQmENQK+tRLCFJE8JQ==",
3155 | "funding": [
3156 | {
3157 | "type": "opencollective",
3158 | "url": "https://opencollective.com/postcss/"
3159 | },
3160 | {
3161 | "type": "tidelift",
3162 | "url": "https://tidelift.com/funding/github/npm/postcss"
3163 | },
3164 | {
3165 | "type": "github",
3166 | "url": "https://github.com/sponsors/ai"
3167 | }
3168 | ],
3169 | "dependencies": {
3170 | "nanoid": "^3.3.6",
3171 | "picocolors": "^1.0.0",
3172 | "source-map-js": "^1.0.2"
3173 | },
3174 | "engines": {
3175 | "node": "^10 || ^12 || >=14"
3176 | }
3177 | },
3178 | "node_modules/postcss-import": {
3179 | "version": "15.1.0",
3180 | "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz",
3181 | "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==",
3182 | "dependencies": {
3183 | "postcss-value-parser": "^4.0.0",
3184 | "read-cache": "^1.0.0",
3185 | "resolve": "^1.1.7"
3186 | },
3187 | "engines": {
3188 | "node": ">=14.0.0"
3189 | },
3190 | "peerDependencies": {
3191 | "postcss": "^8.0.0"
3192 | }
3193 | },
3194 | "node_modules/postcss-js": {
3195 | "version": "4.0.1",
3196 | "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz",
3197 | "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==",
3198 | "dependencies": {
3199 | "camelcase-css": "^2.0.1"
3200 | },
3201 | "engines": {
3202 | "node": "^12 || ^14 || >= 16"
3203 | },
3204 | "funding": {
3205 | "type": "opencollective",
3206 | "url": "https://opencollective.com/postcss/"
3207 | },
3208 | "peerDependencies": {
3209 | "postcss": "^8.4.21"
3210 | }
3211 | },
3212 | "node_modules/postcss-load-config": {
3213 | "version": "4.0.1",
3214 | "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz",
3215 | "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==",
3216 | "dependencies": {
3217 | "lilconfig": "^2.0.5",
3218 | "yaml": "^2.1.1"
3219 | },
3220 | "engines": {
3221 | "node": ">= 14"
3222 | },
3223 | "funding": {
3224 | "type": "opencollective",
3225 | "url": "https://opencollective.com/postcss/"
3226 | },
3227 | "peerDependencies": {
3228 | "postcss": ">=8.0.9",
3229 | "ts-node": ">=9.0.0"
3230 | },
3231 | "peerDependenciesMeta": {
3232 | "postcss": {
3233 | "optional": true
3234 | },
3235 | "ts-node": {
3236 | "optional": true
3237 | }
3238 | }
3239 | },
3240 | "node_modules/postcss-nested": {
3241 | "version": "6.0.1",
3242 | "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.0.1.tgz",
3243 | "integrity": "sha512-mEp4xPMi5bSWiMbsgoPfcP74lsWLHkQbZc3sY+jWYd65CUwXrUaTp0fmNpa01ZcETKlIgUdFN/MpS2xZtqL9dQ==",
3244 | "dependencies": {
3245 | "postcss-selector-parser": "^6.0.11"
3246 | },
3247 | "engines": {
3248 | "node": ">=12.0"
3249 | },
3250 | "funding": {
3251 | "type": "opencollective",
3252 | "url": "https://opencollective.com/postcss/"
3253 | },
3254 | "peerDependencies": {
3255 | "postcss": "^8.2.14"
3256 | }
3257 | },
3258 | "node_modules/postcss-selector-parser": {
3259 | "version": "6.0.13",
3260 | "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz",
3261 | "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==",
3262 | "dependencies": {
3263 | "cssesc": "^3.0.0",
3264 | "util-deprecate": "^1.0.2"
3265 | },
3266 | "engines": {
3267 | "node": ">=4"
3268 | }
3269 | },
3270 | "node_modules/postcss-value-parser": {
3271 | "version": "4.2.0",
3272 | "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz",
3273 | "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ=="
3274 | },
3275 | "node_modules/prelude-ls": {
3276 | "version": "1.2.1",
3277 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz",
3278 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==",
3279 | "engines": {
3280 | "node": ">= 0.8.0"
3281 | }
3282 | },
3283 | "node_modules/prop-types": {
3284 | "version": "15.8.1",
3285 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz",
3286 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==",
3287 | "dependencies": {
3288 | "loose-envify": "^1.4.0",
3289 | "object-assign": "^4.1.1",
3290 | "react-is": "^16.13.1"
3291 | }
3292 | },
3293 | "node_modules/punycode": {
3294 | "version": "2.3.0",
3295 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz",
3296 | "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==",
3297 | "engines": {
3298 | "node": ">=6"
3299 | }
3300 | },
3301 | "node_modules/queue-microtask": {
3302 | "version": "1.2.3",
3303 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz",
3304 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==",
3305 | "funding": [
3306 | {
3307 | "type": "github",
3308 | "url": "https://github.com/sponsors/feross"
3309 | },
3310 | {
3311 | "type": "patreon",
3312 | "url": "https://www.patreon.com/feross"
3313 | },
3314 | {
3315 | "type": "consulting",
3316 | "url": "https://feross.org/support"
3317 | }
3318 | ]
3319 | },
3320 | "node_modules/react": {
3321 | "version": "18.2.0",
3322 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz",
3323 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==",
3324 | "dependencies": {
3325 | "loose-envify": "^1.1.0"
3326 | },
3327 | "engines": {
3328 | "node": ">=0.10.0"
3329 | }
3330 | },
3331 | "node_modules/react-dom": {
3332 | "version": "18.2.0",
3333 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz",
3334 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==",
3335 | "dependencies": {
3336 | "loose-envify": "^1.1.0",
3337 | "scheduler": "^0.23.0"
3338 | },
3339 | "peerDependencies": {
3340 | "react": "^18.2.0"
3341 | }
3342 | },
3343 | "node_modules/react-hook-form": {
3344 | "version": "7.45.2",
3345 | "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.45.2.tgz",
3346 | "integrity": "sha512-9s45OdTaKN+4NSTbXVqeDITd/nwIg++nxJGL8+OD5uf1DxvhsXQ641kaYHk5K28cpIOTYm71O/fYk7rFaygb3A==",
3347 | "engines": {
3348 | "node": ">=12.22.0"
3349 | },
3350 | "funding": {
3351 | "type": "opencollective",
3352 | "url": "https://opencollective.com/react-hook-form"
3353 | },
3354 | "peerDependencies": {
3355 | "react": "^16.8.0 || ^17 || ^18"
3356 | }
3357 | },
3358 | "node_modules/react-is": {
3359 | "version": "16.13.1",
3360 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz",
3361 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="
3362 | },
3363 | "node_modules/read-cache": {
3364 | "version": "1.0.0",
3365 | "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz",
3366 | "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==",
3367 | "dependencies": {
3368 | "pify": "^2.3.0"
3369 | }
3370 | },
3371 | "node_modules/readdirp": {
3372 | "version": "3.6.0",
3373 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
3374 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
3375 | "dependencies": {
3376 | "picomatch": "^2.2.1"
3377 | },
3378 | "engines": {
3379 | "node": ">=8.10.0"
3380 | }
3381 | },
3382 | "node_modules/regenerator-runtime": {
3383 | "version": "0.13.11",
3384 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz",
3385 | "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg=="
3386 | },
3387 | "node_modules/regexp.prototype.flags": {
3388 | "version": "1.5.0",
3389 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.0.tgz",
3390 | "integrity": "sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==",
3391 | "dependencies": {
3392 | "call-bind": "^1.0.2",
3393 | "define-properties": "^1.2.0",
3394 | "functions-have-names": "^1.2.3"
3395 | },
3396 | "engines": {
3397 | "node": ">= 0.4"
3398 | },
3399 | "funding": {
3400 | "url": "https://github.com/sponsors/ljharb"
3401 | }
3402 | },
3403 | "node_modules/resolve": {
3404 | "version": "1.22.2",
3405 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.2.tgz",
3406 | "integrity": "sha512-Sb+mjNHOULsBv818T40qSPeRiuWLyaGMa5ewydRLFimneixmVy2zdivRl+AF6jaYPC8ERxGDmFSiqui6SfPd+g==",
3407 | "dependencies": {
3408 | "is-core-module": "^2.11.0",
3409 | "path-parse": "^1.0.7",
3410 | "supports-preserve-symlinks-flag": "^1.0.0"
3411 | },
3412 | "bin": {
3413 | "resolve": "bin/resolve"
3414 | },
3415 | "funding": {
3416 | "url": "https://github.com/sponsors/ljharb"
3417 | }
3418 | },
3419 | "node_modules/resolve-from": {
3420 | "version": "4.0.0",
3421 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz",
3422 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==",
3423 | "engines": {
3424 | "node": ">=4"
3425 | }
3426 | },
3427 | "node_modules/resolve-pkg-maps": {
3428 | "version": "1.0.0",
3429 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
3430 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
3431 | "funding": {
3432 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
3433 | }
3434 | },
3435 | "node_modules/reusify": {
3436 | "version": "1.0.4",
3437 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
3438 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
3439 | "engines": {
3440 | "iojs": ">=1.0.0",
3441 | "node": ">=0.10.0"
3442 | }
3443 | },
3444 | "node_modules/rimraf": {
3445 | "version": "3.0.2",
3446 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz",
3447 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==",
3448 | "dependencies": {
3449 | "glob": "^7.1.3"
3450 | },
3451 | "bin": {
3452 | "rimraf": "bin.js"
3453 | },
3454 | "funding": {
3455 | "url": "https://github.com/sponsors/isaacs"
3456 | }
3457 | },
3458 | "node_modules/run-applescript": {
3459 | "version": "5.0.0",
3460 | "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz",
3461 | "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==",
3462 | "dependencies": {
3463 | "execa": "^5.0.0"
3464 | },
3465 | "engines": {
3466 | "node": ">=12"
3467 | },
3468 | "funding": {
3469 | "url": "https://github.com/sponsors/sindresorhus"
3470 | }
3471 | },
3472 | "node_modules/run-applescript/node_modules/execa": {
3473 | "version": "5.1.1",
3474 | "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz",
3475 | "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==",
3476 | "dependencies": {
3477 | "cross-spawn": "^7.0.3",
3478 | "get-stream": "^6.0.0",
3479 | "human-signals": "^2.1.0",
3480 | "is-stream": "^2.0.0",
3481 | "merge-stream": "^2.0.0",
3482 | "npm-run-path": "^4.0.1",
3483 | "onetime": "^5.1.2",
3484 | "signal-exit": "^3.0.3",
3485 | "strip-final-newline": "^2.0.0"
3486 | },
3487 | "engines": {
3488 | "node": ">=10"
3489 | },
3490 | "funding": {
3491 | "url": "https://github.com/sindresorhus/execa?sponsor=1"
3492 | }
3493 | },
3494 | "node_modules/run-applescript/node_modules/human-signals": {
3495 | "version": "2.1.0",
3496 | "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz",
3497 | "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==",
3498 | "engines": {
3499 | "node": ">=10.17.0"
3500 | }
3501 | },
3502 | "node_modules/run-applescript/node_modules/is-stream": {
3503 | "version": "2.0.1",
3504 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz",
3505 | "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==",
3506 | "engines": {
3507 | "node": ">=8"
3508 | },
3509 | "funding": {
3510 | "url": "https://github.com/sponsors/sindresorhus"
3511 | }
3512 | },
3513 | "node_modules/run-applescript/node_modules/mimic-fn": {
3514 | "version": "2.1.0",
3515 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz",
3516 | "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==",
3517 | "engines": {
3518 | "node": ">=6"
3519 | }
3520 | },
3521 | "node_modules/run-applescript/node_modules/npm-run-path": {
3522 | "version": "4.0.1",
3523 | "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz",
3524 | "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==",
3525 | "dependencies": {
3526 | "path-key": "^3.0.0"
3527 | },
3528 | "engines": {
3529 | "node": ">=8"
3530 | }
3531 | },
3532 | "node_modules/run-applescript/node_modules/onetime": {
3533 | "version": "5.1.2",
3534 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz",
3535 | "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==",
3536 | "dependencies": {
3537 | "mimic-fn": "^2.1.0"
3538 | },
3539 | "engines": {
3540 | "node": ">=6"
3541 | },
3542 | "funding": {
3543 | "url": "https://github.com/sponsors/sindresorhus"
3544 | }
3545 | },
3546 | "node_modules/run-applescript/node_modules/strip-final-newline": {
3547 | "version": "2.0.0",
3548 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz",
3549 | "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==",
3550 | "engines": {
3551 | "node": ">=6"
3552 | }
3553 | },
3554 | "node_modules/run-parallel": {
3555 | "version": "1.2.0",
3556 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz",
3557 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==",
3558 | "funding": [
3559 | {
3560 | "type": "github",
3561 | "url": "https://github.com/sponsors/feross"
3562 | },
3563 | {
3564 | "type": "patreon",
3565 | "url": "https://www.patreon.com/feross"
3566 | },
3567 | {
3568 | "type": "consulting",
3569 | "url": "https://feross.org/support"
3570 | }
3571 | ],
3572 | "dependencies": {
3573 | "queue-microtask": "^1.2.2"
3574 | }
3575 | },
3576 | "node_modules/safe-array-concat": {
3577 | "version": "1.0.0",
3578 | "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.0.tgz",
3579 | "integrity": "sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==",
3580 | "dependencies": {
3581 | "call-bind": "^1.0.2",
3582 | "get-intrinsic": "^1.2.0",
3583 | "has-symbols": "^1.0.3",
3584 | "isarray": "^2.0.5"
3585 | },
3586 | "engines": {
3587 | "node": ">=0.4"
3588 | },
3589 | "funding": {
3590 | "url": "https://github.com/sponsors/ljharb"
3591 | }
3592 | },
3593 | "node_modules/safe-regex-test": {
3594 | "version": "1.0.0",
3595 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz",
3596 | "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==",
3597 | "dependencies": {
3598 | "call-bind": "^1.0.2",
3599 | "get-intrinsic": "^1.1.3",
3600 | "is-regex": "^1.1.4"
3601 | },
3602 | "funding": {
3603 | "url": "https://github.com/sponsors/ljharb"
3604 | }
3605 | },
3606 | "node_modules/scheduler": {
3607 | "version": "0.23.0",
3608 | "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.0.tgz",
3609 | "integrity": "sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==",
3610 | "dependencies": {
3611 | "loose-envify": "^1.1.0"
3612 | }
3613 | },
3614 | "node_modules/semver": {
3615 | "version": "7.5.4",
3616 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz",
3617 | "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==",
3618 | "dependencies": {
3619 | "lru-cache": "^6.0.0"
3620 | },
3621 | "bin": {
3622 | "semver": "bin/semver.js"
3623 | },
3624 | "engines": {
3625 | "node": ">=10"
3626 | }
3627 | },
3628 | "node_modules/shebang-command": {
3629 | "version": "2.0.0",
3630 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz",
3631 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==",
3632 | "dependencies": {
3633 | "shebang-regex": "^3.0.0"
3634 | },
3635 | "engines": {
3636 | "node": ">=8"
3637 | }
3638 | },
3639 | "node_modules/shebang-regex": {
3640 | "version": "3.0.0",
3641 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz",
3642 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==",
3643 | "engines": {
3644 | "node": ">=8"
3645 | }
3646 | },
3647 | "node_modules/side-channel": {
3648 | "version": "1.0.4",
3649 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
3650 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
3651 | "dependencies": {
3652 | "call-bind": "^1.0.0",
3653 | "get-intrinsic": "^1.0.2",
3654 | "object-inspect": "^1.9.0"
3655 | },
3656 | "funding": {
3657 | "url": "https://github.com/sponsors/ljharb"
3658 | }
3659 | },
3660 | "node_modules/signal-exit": {
3661 | "version": "3.0.7",
3662 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz",
3663 | "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="
3664 | },
3665 | "node_modules/slash": {
3666 | "version": "3.0.0",
3667 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz",
3668 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==",
3669 | "engines": {
3670 | "node": ">=8"
3671 | }
3672 | },
3673 | "node_modules/source-map-js": {
3674 | "version": "1.0.2",
3675 | "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz",
3676 | "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==",
3677 | "engines": {
3678 | "node": ">=0.10.0"
3679 | }
3680 | },
3681 | "node_modules/streamsearch": {
3682 | "version": "1.1.0",
3683 | "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
3684 | "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
3685 | "engines": {
3686 | "node": ">=10.0.0"
3687 | }
3688 | },
3689 | "node_modules/string.prototype.matchall": {
3690 | "version": "4.0.8",
3691 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz",
3692 | "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==",
3693 | "dependencies": {
3694 | "call-bind": "^1.0.2",
3695 | "define-properties": "^1.1.4",
3696 | "es-abstract": "^1.20.4",
3697 | "get-intrinsic": "^1.1.3",
3698 | "has-symbols": "^1.0.3",
3699 | "internal-slot": "^1.0.3",
3700 | "regexp.prototype.flags": "^1.4.3",
3701 | "side-channel": "^1.0.4"
3702 | },
3703 | "funding": {
3704 | "url": "https://github.com/sponsors/ljharb"
3705 | }
3706 | },
3707 | "node_modules/string.prototype.trim": {
3708 | "version": "1.2.7",
3709 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz",
3710 | "integrity": "sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==",
3711 | "dependencies": {
3712 | "call-bind": "^1.0.2",
3713 | "define-properties": "^1.1.4",
3714 | "es-abstract": "^1.20.4"
3715 | },
3716 | "engines": {
3717 | "node": ">= 0.4"
3718 | },
3719 | "funding": {
3720 | "url": "https://github.com/sponsors/ljharb"
3721 | }
3722 | },
3723 | "node_modules/string.prototype.trimend": {
3724 | "version": "1.0.6",
3725 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz",
3726 | "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==",
3727 | "dependencies": {
3728 | "call-bind": "^1.0.2",
3729 | "define-properties": "^1.1.4",
3730 | "es-abstract": "^1.20.4"
3731 | },
3732 | "funding": {
3733 | "url": "https://github.com/sponsors/ljharb"
3734 | }
3735 | },
3736 | "node_modules/string.prototype.trimstart": {
3737 | "version": "1.0.6",
3738 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz",
3739 | "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==",
3740 | "dependencies": {
3741 | "call-bind": "^1.0.2",
3742 | "define-properties": "^1.1.4",
3743 | "es-abstract": "^1.20.4"
3744 | },
3745 | "funding": {
3746 | "url": "https://github.com/sponsors/ljharb"
3747 | }
3748 | },
3749 | "node_modules/strip-ansi": {
3750 | "version": "6.0.1",
3751 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
3752 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
3753 | "dependencies": {
3754 | "ansi-regex": "^5.0.1"
3755 | },
3756 | "engines": {
3757 | "node": ">=8"
3758 | }
3759 | },
3760 | "node_modules/strip-bom": {
3761 | "version": "3.0.0",
3762 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz",
3763 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==",
3764 | "engines": {
3765 | "node": ">=4"
3766 | }
3767 | },
3768 | "node_modules/strip-final-newline": {
3769 | "version": "3.0.0",
3770 | "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz",
3771 | "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==",
3772 | "engines": {
3773 | "node": ">=12"
3774 | },
3775 | "funding": {
3776 | "url": "https://github.com/sponsors/sindresorhus"
3777 | }
3778 | },
3779 | "node_modules/strip-json-comments": {
3780 | "version": "3.1.1",
3781 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz",
3782 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==",
3783 | "engines": {
3784 | "node": ">=8"
3785 | },
3786 | "funding": {
3787 | "url": "https://github.com/sponsors/sindresorhus"
3788 | }
3789 | },
3790 | "node_modules/styled-jsx": {
3791 | "version": "5.1.1",
3792 | "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.1.tgz",
3793 | "integrity": "sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==",
3794 | "dependencies": {
3795 | "client-only": "0.0.1"
3796 | },
3797 | "engines": {
3798 | "node": ">= 12.0.0"
3799 | },
3800 | "peerDependencies": {
3801 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0"
3802 | },
3803 | "peerDependenciesMeta": {
3804 | "@babel/core": {
3805 | "optional": true
3806 | },
3807 | "babel-plugin-macros": {
3808 | "optional": true
3809 | }
3810 | }
3811 | },
3812 | "node_modules/sucrase": {
3813 | "version": "3.34.0",
3814 | "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.34.0.tgz",
3815 | "integrity": "sha512-70/LQEZ07TEcxiU2dz51FKaE6hCTWC6vr7FOk3Gr0U60C3shtAN+H+BFr9XlYe5xqf3RA8nrc+VIwzCfnxuXJw==",
3816 | "dependencies": {
3817 | "@jridgewell/gen-mapping": "^0.3.2",
3818 | "commander": "^4.0.0",
3819 | "glob": "7.1.6",
3820 | "lines-and-columns": "^1.1.6",
3821 | "mz": "^2.7.0",
3822 | "pirates": "^4.0.1",
3823 | "ts-interface-checker": "^0.1.9"
3824 | },
3825 | "bin": {
3826 | "sucrase": "bin/sucrase",
3827 | "sucrase-node": "bin/sucrase-node"
3828 | },
3829 | "engines": {
3830 | "node": ">=8"
3831 | }
3832 | },
3833 | "node_modules/sucrase/node_modules/glob": {
3834 | "version": "7.1.6",
3835 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
3836 | "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
3837 | "dependencies": {
3838 | "fs.realpath": "^1.0.0",
3839 | "inflight": "^1.0.4",
3840 | "inherits": "2",
3841 | "minimatch": "^3.0.4",
3842 | "once": "^1.3.0",
3843 | "path-is-absolute": "^1.0.0"
3844 | },
3845 | "engines": {
3846 | "node": "*"
3847 | },
3848 | "funding": {
3849 | "url": "https://github.com/sponsors/isaacs"
3850 | }
3851 | },
3852 | "node_modules/supports-color": {
3853 | "version": "7.2.0",
3854 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
3855 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
3856 | "dependencies": {
3857 | "has-flag": "^4.0.0"
3858 | },
3859 | "engines": {
3860 | "node": ">=8"
3861 | }
3862 | },
3863 | "node_modules/supports-preserve-symlinks-flag": {
3864 | "version": "1.0.0",
3865 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz",
3866 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==",
3867 | "engines": {
3868 | "node": ">= 0.4"
3869 | },
3870 | "funding": {
3871 | "url": "https://github.com/sponsors/ljharb"
3872 | }
3873 | },
3874 | "node_modules/synckit": {
3875 | "version": "0.8.5",
3876 | "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.8.5.tgz",
3877 | "integrity": "sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==",
3878 | "dependencies": {
3879 | "@pkgr/utils": "^2.3.1",
3880 | "tslib": "^2.5.0"
3881 | },
3882 | "engines": {
3883 | "node": "^14.18.0 || >=16.0.0"
3884 | },
3885 | "funding": {
3886 | "url": "https://opencollective.com/unts"
3887 | }
3888 | },
3889 | "node_modules/tailwindcss": {
3890 | "version": "3.3.3",
3891 | "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.3.3.tgz",
3892 | "integrity": "sha512-A0KgSkef7eE4Mf+nKJ83i75TMyq8HqY3qmFIJSWy8bNt0v1lG7jUcpGpoTFxAwYcWOphcTBLPPJg+bDfhDf52w==",
3893 | "dependencies": {
3894 | "@alloc/quick-lru": "^5.2.0",
3895 | "arg": "^5.0.2",
3896 | "chokidar": "^3.5.3",
3897 | "didyoumean": "^1.2.2",
3898 | "dlv": "^1.1.3",
3899 | "fast-glob": "^3.2.12",
3900 | "glob-parent": "^6.0.2",
3901 | "is-glob": "^4.0.3",
3902 | "jiti": "^1.18.2",
3903 | "lilconfig": "^2.1.0",
3904 | "micromatch": "^4.0.5",
3905 | "normalize-path": "^3.0.0",
3906 | "object-hash": "^3.0.0",
3907 | "picocolors": "^1.0.0",
3908 | "postcss": "^8.4.23",
3909 | "postcss-import": "^15.1.0",
3910 | "postcss-js": "^4.0.1",
3911 | "postcss-load-config": "^4.0.1",
3912 | "postcss-nested": "^6.0.1",
3913 | "postcss-selector-parser": "^6.0.11",
3914 | "resolve": "^1.22.2",
3915 | "sucrase": "^3.32.0"
3916 | },
3917 | "bin": {
3918 | "tailwind": "lib/cli.js",
3919 | "tailwindcss": "lib/cli.js"
3920 | },
3921 | "engines": {
3922 | "node": ">=14.0.0"
3923 | }
3924 | },
3925 | "node_modules/tapable": {
3926 | "version": "2.2.1",
3927 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz",
3928 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==",
3929 | "engines": {
3930 | "node": ">=6"
3931 | }
3932 | },
3933 | "node_modules/text-table": {
3934 | "version": "0.2.0",
3935 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz",
3936 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw=="
3937 | },
3938 | "node_modules/thenify": {
3939 | "version": "3.3.1",
3940 | "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz",
3941 | "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==",
3942 | "dependencies": {
3943 | "any-promise": "^1.0.0"
3944 | }
3945 | },
3946 | "node_modules/thenify-all": {
3947 | "version": "1.6.0",
3948 | "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz",
3949 | "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==",
3950 | "dependencies": {
3951 | "thenify": ">= 3.1.0 < 4"
3952 | },
3953 | "engines": {
3954 | "node": ">=0.8"
3955 | }
3956 | },
3957 | "node_modules/titleize": {
3958 | "version": "3.0.0",
3959 | "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz",
3960 | "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==",
3961 | "engines": {
3962 | "node": ">=12"
3963 | },
3964 | "funding": {
3965 | "url": "https://github.com/sponsors/sindresorhus"
3966 | }
3967 | },
3968 | "node_modules/to-regex-range": {
3969 | "version": "5.0.1",
3970 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
3971 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
3972 | "dependencies": {
3973 | "is-number": "^7.0.0"
3974 | },
3975 | "engines": {
3976 | "node": ">=8.0"
3977 | }
3978 | },
3979 | "node_modules/ts-interface-checker": {
3980 | "version": "0.1.13",
3981 | "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz",
3982 | "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA=="
3983 | },
3984 | "node_modules/tsconfig-paths": {
3985 | "version": "3.14.2",
3986 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz",
3987 | "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==",
3988 | "dependencies": {
3989 | "@types/json5": "^0.0.29",
3990 | "json5": "^1.0.2",
3991 | "minimist": "^1.2.6",
3992 | "strip-bom": "^3.0.0"
3993 | }
3994 | },
3995 | "node_modules/tslib": {
3996 | "version": "2.6.1",
3997 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.1.tgz",
3998 | "integrity": "sha512-t0hLfiEKfMUoqhG+U1oid7Pva4bbDPHYfJNiB7BiIjRkj1pyC++4N3huJfqY6aRH6VTB0rvtzQwjM4K6qpfOig=="
3999 | },
4000 | "node_modules/tsutils": {
4001 | "version": "3.21.0",
4002 | "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz",
4003 | "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==",
4004 | "dependencies": {
4005 | "tslib": "^1.8.1"
4006 | },
4007 | "engines": {
4008 | "node": ">= 6"
4009 | },
4010 | "peerDependencies": {
4011 | "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"
4012 | }
4013 | },
4014 | "node_modules/tsutils/node_modules/tslib": {
4015 | "version": "1.14.1",
4016 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz",
4017 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="
4018 | },
4019 | "node_modules/type-check": {
4020 | "version": "0.4.0",
4021 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
4022 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==",
4023 | "dependencies": {
4024 | "prelude-ls": "^1.2.1"
4025 | },
4026 | "engines": {
4027 | "node": ">= 0.8.0"
4028 | }
4029 | },
4030 | "node_modules/type-fest": {
4031 | "version": "0.20.2",
4032 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz",
4033 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==",
4034 | "engines": {
4035 | "node": ">=10"
4036 | },
4037 | "funding": {
4038 | "url": "https://github.com/sponsors/sindresorhus"
4039 | }
4040 | },
4041 | "node_modules/typed-array-buffer": {
4042 | "version": "1.0.0",
4043 | "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz",
4044 | "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==",
4045 | "dependencies": {
4046 | "call-bind": "^1.0.2",
4047 | "get-intrinsic": "^1.2.1",
4048 | "is-typed-array": "^1.1.10"
4049 | },
4050 | "engines": {
4051 | "node": ">= 0.4"
4052 | }
4053 | },
4054 | "node_modules/typed-array-byte-length": {
4055 | "version": "1.0.0",
4056 | "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz",
4057 | "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==",
4058 | "dependencies": {
4059 | "call-bind": "^1.0.2",
4060 | "for-each": "^0.3.3",
4061 | "has-proto": "^1.0.1",
4062 | "is-typed-array": "^1.1.10"
4063 | },
4064 | "engines": {
4065 | "node": ">= 0.4"
4066 | },
4067 | "funding": {
4068 | "url": "https://github.com/sponsors/ljharb"
4069 | }
4070 | },
4071 | "node_modules/typed-array-byte-offset": {
4072 | "version": "1.0.0",
4073 | "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz",
4074 | "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==",
4075 | "dependencies": {
4076 | "available-typed-arrays": "^1.0.5",
4077 | "call-bind": "^1.0.2",
4078 | "for-each": "^0.3.3",
4079 | "has-proto": "^1.0.1",
4080 | "is-typed-array": "^1.1.10"
4081 | },
4082 | "engines": {
4083 | "node": ">= 0.4"
4084 | },
4085 | "funding": {
4086 | "url": "https://github.com/sponsors/ljharb"
4087 | }
4088 | },
4089 | "node_modules/typed-array-length": {
4090 | "version": "1.0.4",
4091 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz",
4092 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==",
4093 | "dependencies": {
4094 | "call-bind": "^1.0.2",
4095 | "for-each": "^0.3.3",
4096 | "is-typed-array": "^1.1.9"
4097 | },
4098 | "funding": {
4099 | "url": "https://github.com/sponsors/ljharb"
4100 | }
4101 | },
4102 | "node_modules/typescript": {
4103 | "version": "5.1.6",
4104 | "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.1.6.tgz",
4105 | "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==",
4106 | "bin": {
4107 | "tsc": "bin/tsc",
4108 | "tsserver": "bin/tsserver"
4109 | },
4110 | "engines": {
4111 | "node": ">=14.17"
4112 | }
4113 | },
4114 | "node_modules/unbox-primitive": {
4115 | "version": "1.0.2",
4116 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz",
4117 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==",
4118 | "dependencies": {
4119 | "call-bind": "^1.0.2",
4120 | "has-bigints": "^1.0.2",
4121 | "has-symbols": "^1.0.3",
4122 | "which-boxed-primitive": "^1.0.2"
4123 | },
4124 | "funding": {
4125 | "url": "https://github.com/sponsors/ljharb"
4126 | }
4127 | },
4128 | "node_modules/untildify": {
4129 | "version": "4.0.0",
4130 | "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz",
4131 | "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==",
4132 | "engines": {
4133 | "node": ">=8"
4134 | }
4135 | },
4136 | "node_modules/update-browserslist-db": {
4137 | "version": "1.0.11",
4138 | "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.11.tgz",
4139 | "integrity": "sha512-dCwEFf0/oT85M1fHBg4F0jtLwJrutGoHSQXCh7u4o2t1drG+c0a9Flnqww6XUKSfQMPpJBRjU8d4RXB09qtvaA==",
4140 | "funding": [
4141 | {
4142 | "type": "opencollective",
4143 | "url": "https://opencollective.com/browserslist"
4144 | },
4145 | {
4146 | "type": "tidelift",
4147 | "url": "https://tidelift.com/funding/github/npm/browserslist"
4148 | },
4149 | {
4150 | "type": "github",
4151 | "url": "https://github.com/sponsors/ai"
4152 | }
4153 | ],
4154 | "dependencies": {
4155 | "escalade": "^3.1.1",
4156 | "picocolors": "^1.0.0"
4157 | },
4158 | "bin": {
4159 | "update-browserslist-db": "cli.js"
4160 | },
4161 | "peerDependencies": {
4162 | "browserslist": ">= 4.21.0"
4163 | }
4164 | },
4165 | "node_modules/uri-js": {
4166 | "version": "4.4.1",
4167 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz",
4168 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==",
4169 | "dependencies": {
4170 | "punycode": "^2.1.0"
4171 | }
4172 | },
4173 | "node_modules/util-deprecate": {
4174 | "version": "1.0.2",
4175 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",
4176 | "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw=="
4177 | },
4178 | "node_modules/watchpack": {
4179 | "version": "2.4.0",
4180 | "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz",
4181 | "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==",
4182 | "dependencies": {
4183 | "glob-to-regexp": "^0.4.1",
4184 | "graceful-fs": "^4.1.2"
4185 | },
4186 | "engines": {
4187 | "node": ">=10.13.0"
4188 | }
4189 | },
4190 | "node_modules/which": {
4191 | "version": "2.0.2",
4192 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",
4193 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==",
4194 | "dependencies": {
4195 | "isexe": "^2.0.0"
4196 | },
4197 | "bin": {
4198 | "node-which": "bin/node-which"
4199 | },
4200 | "engines": {
4201 | "node": ">= 8"
4202 | }
4203 | },
4204 | "node_modules/which-boxed-primitive": {
4205 | "version": "1.0.2",
4206 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz",
4207 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==",
4208 | "dependencies": {
4209 | "is-bigint": "^1.0.1",
4210 | "is-boolean-object": "^1.1.0",
4211 | "is-number-object": "^1.0.4",
4212 | "is-string": "^1.0.5",
4213 | "is-symbol": "^1.0.3"
4214 | },
4215 | "funding": {
4216 | "url": "https://github.com/sponsors/ljharb"
4217 | }
4218 | },
4219 | "node_modules/which-typed-array": {
4220 | "version": "1.1.11",
4221 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz",
4222 | "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==",
4223 | "dependencies": {
4224 | "available-typed-arrays": "^1.0.5",
4225 | "call-bind": "^1.0.2",
4226 | "for-each": "^0.3.3",
4227 | "gopd": "^1.0.1",
4228 | "has-tostringtag": "^1.0.0"
4229 | },
4230 | "engines": {
4231 | "node": ">= 0.4"
4232 | },
4233 | "funding": {
4234 | "url": "https://github.com/sponsors/ljharb"
4235 | }
4236 | },
4237 | "node_modules/wrappy": {
4238 | "version": "1.0.2",
4239 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
4240 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ=="
4241 | },
4242 | "node_modules/yallist": {
4243 | "version": "4.0.0",
4244 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz",
4245 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="
4246 | },
4247 | "node_modules/yaml": {
4248 | "version": "2.3.1",
4249 | "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.1.tgz",
4250 | "integrity": "sha512-2eHWfjaoXgTBC2jNM1LRef62VQa0umtvRiDSk6HSzW7RvS5YtkabJrwYLLEKWBc8a5U2PTSCs+dJjUTJdlHsWQ==",
4251 | "engines": {
4252 | "node": ">= 14"
4253 | }
4254 | },
4255 | "node_modules/yocto-queue": {
4256 | "version": "0.1.0",
4257 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz",
4258 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==",
4259 | "engines": {
4260 | "node": ">=10"
4261 | },
4262 | "funding": {
4263 | "url": "https://github.com/sponsors/sindresorhus"
4264 | }
4265 | },
4266 | "node_modules/zod": {
4267 | "version": "3.21.4",
4268 | "resolved": "https://registry.npmjs.org/zod/-/zod-3.21.4.tgz",
4269 | "integrity": "sha512-m46AKbrzKVzOzs/DZgVnG5H55N1sv1M8qZU3A8RIKbs3mrACDNeIOeilDymVb2HdmP8uwshOCF4uJ8uM9rCqJw==",
4270 | "funding": {
4271 | "url": "https://github.com/sponsors/colinhacks"
4272 | }
4273 | }
4274 | }
4275 | }
4276 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "nextjs-boilerplate",
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 | "@hookform/resolvers": "^3.1.1",
13 | "@types/node": "20.4.5",
14 | "@types/react": "18.2.17",
15 | "@types/react-dom": "18.2.7",
16 | "autoprefixer": "10.4.14",
17 | "eslint": "8.45.0",
18 | "eslint-config-next": "13.4.12",
19 | "next": "13.4.12",
20 | "postcss": "8.4.27",
21 | "react": "18.2.0",
22 | "react-dom": "18.2.0",
23 | "react-hook-form": "^7.45.2",
24 | "tailwindcss": "3.3.3",
25 | "typescript": "5.1.6",
26 | "zod": "^3.21.4"
27 | }
28 | }
29 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "target": "es5",
4 | "lib": ["dom", "dom.iterable", "esnext"],
5 | "allowJs": true,
6 | "skipLibCheck": true,
7 | "strict": true,
8 | "forceConsistentCasingInFileNames": true,
9 | "noEmit": true,
10 | "esModuleInterop": true,
11 | "module": "esnext",
12 | "moduleResolution": "bundler",
13 | "resolveJsonModule": true,
14 | "isolatedModules": true,
15 | "jsx": "preserve",
16 | "incremental": true,
17 | "plugins": [
18 | {
19 | "name": "next"
20 | }
21 | ],
22 | "paths": {
23 | "@/*": ["./*"]
24 | }
25 | },
26 | "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
27 | "exclude": ["node_modules"]
28 | }
29 |
--------------------------------------------------------------------------------