├── .eslintrc.json ├── .gitignore ├── README.md ├── app ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx └── providers │ └── index.tsx ├── components └── theme-switch.tsx ├── data ├── content.ts └── general.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── next.svg ├── screenshot.jpg └── vercel.svg ├── tailwind.config.js └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.js 7 | 8 | # testing 9 | /coverage 10 | 11 | # next.js 12 | /.next/ 13 | /out/ 14 | 15 | # production 16 | /build 17 | 18 | # misc 19 | .DS_Store 20 | *.pem 21 | 22 | # debug 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | 27 | # local env files 28 | .env*.local 29 | 30 | # vercel 31 | .vercel 32 | 33 | # typescript 34 | *.tsbuildinfo 35 | next-env.d.ts 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Next.js Resume Template 2 | 3 | This is a free, open-source resume template inspired by [read.cv](https://read.cv/). It's built with [Next.js 13](https://nextjs.org/), [Tailwind CSS](https://tailwindcss.com/), and [TypeScript](https://www.typescriptlang.org/). It also includes a dark mode and is optimized for SEO. 4 | 5 |

6 | 7 |

8 | 9 | ## Features 10 | 11 | - Next.js 13 12 | - Tailwind CSS 13 | - TypeScript 14 | - Dark mode 15 | - SEO optimized 16 | 17 | ## Getting Started 18 | 19 | First, clone the repository and install the dependencies: 20 | 21 | ```bash 22 | git clone https://github.com/ibelick/nextjs-resume.git 23 | cd nextjs-resume 24 | 25 | npm install 26 | # or 27 | yarn install 28 | # or 29 | pnpm install 30 | ``` 31 | 32 | Then, run the development server: 33 | 34 | ```bash 35 | npm run dev 36 | # or 37 | yarn dev 38 | # or 39 | pnpm dev 40 | ``` 41 | 42 | Open [http://localhost:3000](http://localhost:3000) with your browser to see the result. 43 | 44 | You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file. 45 | 46 | This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font. 47 | 48 | ## Learn More 49 | 50 | To learn more about Next.js, take a look at the following resources: 51 | 52 | - [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API. 53 | - [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial. 54 | 55 | You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome! 56 | 57 | ## Deploy on Vercel 58 | 59 | The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js. 60 | 61 | Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details. 62 | -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibelick/nextjs-resume/509aabc2099ae3e52be5da76531864a3808b6851/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import "./globals.css"; 2 | import { Inter } from "next/font/google"; 3 | import { ServerThemeProvider } from "next-themes"; 4 | import Providers from "./providers"; 5 | import { generalData } from "@/data/general"; 6 | import type { Metadata } from "next"; 7 | 8 | const inter = Inter({ subsets: ["latin"] }); 9 | 10 | export const metadata: Metadata = { 11 | title: `${generalData.name} - ${generalData.jobTitle}`, 12 | description: generalData.about, 13 | openGraph: { 14 | type: "website", 15 | locale: "en_US", 16 | url: "", 17 | siteName: `${generalData.name} - ${generalData.jobTitle}`, 18 | title: `${generalData.name} - ${generalData.jobTitle}`, 19 | description: generalData.about, 20 | images: [ 21 | { 22 | url: "", 23 | width: 1200, 24 | height: 630, 25 | alt: `${generalData.name} - ${generalData.jobTitle}`, 26 | }, 27 | ], 28 | }, 29 | }; 30 | 31 | export default function RootLayout({ 32 | children, 33 | }: { 34 | children: React.ReactNode; 35 | }) { 36 | return ( 37 | 38 | 39 | 40 | {children} 41 | 42 | 43 | 44 | ); 45 | } 46 | -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | import Image from "next/image"; 2 | import ThemeSwitch from "@/components/theme-switch"; 3 | import { generalData } from "@/data/general"; 4 | import { contentData } from "@/data/content"; 5 | import type { Content } from "@/data/content"; 6 | 7 | type ContentProps = Content; 8 | 9 | const Content: React.FC = ({ title, items }) => { 10 | return ( 11 |
12 |

{title}

13 |
14 | {items.map((item, index) => { 15 | return ( 16 |
17 |
18 | {item.date} 19 |
20 |
21 |

{item.title}

22 |

23 | {item.subTitle} 24 |

25 | {item.description ? ( 26 |

27 | {item.description} 28 |

29 | ) : null} 30 |
31 |
32 | ); 33 | })} 34 |
35 |
36 | ); 37 | }; 38 | 39 | export default function Home() { 40 | return ( 41 | <> 42 |
43 |
44 | Author 51 |
52 |

53 | {generalData.name} 54 |

55 |

56 | {generalData.jobTitle} 57 |

58 | {generalData.website ? ( 59 | 60 | 66 | {generalData.website 67 | .replace(/(^\w+:|^)\/\//, "") 68 | .replace("www.", "")} 69 | 70 | 71 | ) : null} 72 |
73 |
74 |
75 |

About

76 |
77 |

{generalData.about}

78 |
79 |
80 | {contentData.map((content, index) => { 81 | return ; 82 | })} 83 |
84 |

Contact

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