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