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