├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── app ├── games │ └── page.tsx ├── l │ ├── NewLinkForm.tsx │ ├── actions.ts │ └── page.tsx ├── layout.tsx └── page.tsx ├── components ├── CardGrid │ ├── Card.tsx │ └── CardGrid.tsx ├── GradientBorderCard.tsx ├── Index │ ├── Achievements.tsx │ ├── LinkToSection.tsx │ └── ProjectsList.tsx ├── SectionTitle.tsx ├── SpotlightCard.tsx └── styles.ts ├── middleware.ts ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── resume.pdf └── robots.txt ├── styles ├── globals.css └── index.css ├── tailwind.config.js └── tsconfig.json /.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 | 21 | # debug 22 | npm-debug.log* 23 | yarn-debug.log* 24 | yarn-error.log* 25 | 26 | # local env files 27 | .env.local 28 | .env.development.local 29 | .env.test.local 30 | .env.production.local 31 | 32 | .vscode 33 | .idea 34 | 35 | .env 36 | .vercel 37 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .svelte-kit/** 2 | static/** 3 | build/** 4 | node_modules/** 5 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "useTabs": true, 3 | "singleQuote": true, 4 | "trailingComma": "none", 5 | "printWidth": 100 6 | } 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # thecodingwizard.me 2 | 3 | Source code for https://thecodingwizard.me/, my personal website. 4 | 5 | ### Tech Stack 6 | 7 | https://thecodingwizard.me/ is built with: 8 | 9 | - Next.js 10 | - Tailwind CSS 11 | - Deployed with Vercel 12 | 13 | ### Contact Me 14 | 15 | You can contact me via email at nathan.r.wang@gmail.com. 16 | 17 | ### License 18 | 19 | Please contact me if you're planning on using large sections of this site for your personal projects. -------------------------------------------------------------------------------- /app/games/page.tsx: -------------------------------------------------------------------------------- 1 | import Link from 'next/link'; 2 | import { SectionTitle } from 'components/SectionTitle'; 3 | import { CardGrid } from 'components/CardGrid/CardGrid'; 4 | import { Card } from 'components/CardGrid/Card'; 5 | import { containerClasses, linkClasses, sectionBodyClasses } from 'components/styles'; 6 | import type { Metadata } from 'next'; 7 | 8 | export const metadata: Metadata = { 9 | title: 'Games | Nathan Wang', 10 | robots: 'noinex' 11 | }; 12 | 13 | export default function Games() { 14 | return ( 15 |
16 |
17 |
18 | 19 | ← Back to Main Site 20 | 21 |
22 | Party Games 23 | 24 |
25 |

26 | These are some of my favorite games to play with friends. If you're looking for more, 27 | check out{' '} 28 | 34 | these 35 | {' '} 36 | 42 | two 43 | {' '} 44 | articles. 45 |

46 |
47 |
48 | 49 | 50 | 51 | USACO Camp 2023. Fast-paced lightweight talking game, best with 8 / 6 / 10 people. 52 | 53 | 54 | Favorite social deduction game. Best with 7, 9, or 10. 55 | 56 | 57 | More social deduction! 58 | 59 | 60 | Social deduction board game — longer, slightly more complex. 61 | 62 | 63 | Fun, lightweight card game 64 | 65 | 66 | Word guessing game, similar to Castlefall 67 | 68 | 69 | 2-5 players. USACO Camp 2019. Lots of strategy / conventions 70 | 71 | 72 | Very lightweight card game related to optical illusions. Can't find an online version 73 | unfortunately 74 | 75 | 76 | A game about drawing / figuring out who the imposter is. Got taken down. Links to 77 | Github. 78 | 79 | 80 | Party game: Guess who the imposter is! 81 | 82 | 83 | Guessing words. Party game 84 | 85 | 90 | We're Not Really Strangers, Big Talk, 36 Questions, etc. Encrypted link due to 91 | copyright concerns. 92 | 93 | 94 | 3-10 players 95 | 96 | 97 | Lightweight simple card game 98 | 99 | 100 | 101 | Poker! If you just need chip counters, use pokerchips.io 102 | 103 | 107 | Werewolf, but all in one night 108 | 109 | 113 | 1-4 players, roll & write. Can't find online version 114 | 115 | 116 | Can't find online version. Make lots of words with letters 117 | 118 | 119 | Move robots around, and think fast! Note: online game is very unpolished. 120 | 121 | 122 | Custom Unlimited Wordle game that supports link sharing 123 | 124 | 125 | 3 - 6 players, light bidding game 126 | 127 | 128 | Not actually a party game — just a simplistic one-player online video game! 129 | 130 | 131 | Simple party game 132 | 133 | 134 | 135 |
136 |
137 |

138 | Also looking to try Werewords, Bang! The Dice Game, Cross Talk, Floor Plan, or other 139 | miscellaneous roll and write games. Suggestions?{' '} 140 | 146 | Shoot me an email! 147 | 148 |

149 |
150 |
151 |
152 |
153 | ); 154 | } 155 | -------------------------------------------------------------------------------- /app/l/NewLinkForm.tsx: -------------------------------------------------------------------------------- 1 | 'use client'; 2 | import { FormEvent, useState, useTransition } from 'react'; 3 | import { createLink } from './actions'; 4 | import CheckCircleIcon from '@heroicons/react/solid/CheckCircleIcon'; 5 | import { XCircleIcon } from '@heroicons/react/solid'; 6 | 7 | export default function NewLinkForm() { 8 | const [pending, setPending] = useState(false); 9 | const [data, setData] = useState(null); 10 | const [error, setError] = useState(null); 11 | 12 | // todo: in the future, maybe look for useActionState or something instead of this sketchy code 13 | function handleSubmit(event: FormEvent) { 14 | event.preventDefault(); 15 | createLinkWrapper(event.currentTarget); 16 | } 17 | 18 | const createLinkWrapper = async (form: HTMLFormElement, { force } = { force: false }) => { 19 | if (pending) return; 20 | 21 | const formData = new FormData(form); 22 | formData.set('force', force ? 'yes' : 'no'); 23 | 24 | setPending(true); 25 | setData(null); 26 | setError(null); 27 | createLink(formData) 28 | .then((data) => { 29 | setData(data); 30 | }) 31 | .catch((err) => { 32 | setError(err); 33 | }) 34 | .finally(() => setPending(false)); 35 | }; 36 | 37 | function writeToClipboard(text) { 38 | navigator.clipboard 39 | .writeText(text) 40 | .then(() => { 41 | console.log('Text copied to clipboard'); 42 | }) 43 | .catch((error) => { 44 | console.error('Failed to copy text:', error); 45 | }); 46 | } 47 | 48 | return ( 49 |
50 |
51 | 54 | 61 |
62 | 80 | 81 | 88 | 89 | {data?.success && ( 90 |
91 |
92 |
93 |
95 |
96 |

Link Created

97 |
98 |

https://tcw.sh/{data.short_url}

99 |
100 |
101 |
102 | 109 |
110 |
111 |
112 |
113 |
114 | )} 115 | 116 | {(error || data?.success === false) && ( 117 |
118 |
119 |
120 |
122 |
123 |

124 | {error ? 'Unknown Error' : 'Error'} 125 |

126 |
127 |

{error?.message || data?.message}

128 |
129 | {data?.short_url_already_exists && ( 130 |
131 |
132 | 141 |
142 |
143 | )} 144 |
145 |
146 |
147 | )} 148 |
149 | ); 150 | } 151 | -------------------------------------------------------------------------------- /app/l/actions.ts: -------------------------------------------------------------------------------- 1 | 'use server'; 2 | import { kv } from '@vercel/kv'; 3 | 4 | export async function createLink(formData: FormData) { 5 | 'use server'; 6 | 7 | const long_url = formData.get('long_url'); 8 | const short_url = formData.get('short_url'); 9 | const force = formData.get('force'); 10 | 11 | if (force !== 'yes') { 12 | const current_value = await kv.hgetall(`link:${short_url}`); 13 | if (current_value) { 14 | return { 15 | success: false, 16 | message: 17 | 'The short URL you\'re trying to create already exists, and currently points to "' + 18 | current_value.target + 19 | '".', 20 | short_url_already_exists: true 21 | }; 22 | } 23 | } 24 | 25 | await kv.hset(`link:${short_url}`, { 26 | target: long_url, 27 | creationTime: new Date() 28 | }); 29 | 30 | return { 31 | success: true, 32 | short_url 33 | }; 34 | } 35 | -------------------------------------------------------------------------------- /app/l/page.tsx: -------------------------------------------------------------------------------- 1 | export const runtime = 'edge'; 2 | 3 | import { Metadata } from 'next'; 4 | import NewLinkForm from './NewLinkForm'; 5 | 6 | export const metadata: Metadata = { 7 | title: 'Link Shortener | Nathan Wang', 8 | robots: 'noindex' 9 | }; 10 | 11 | export default function LinkShortenerPage() { 12 | return ( 13 |
14 |
15 |

Link Shortener

16 | 17 | 18 |
19 |
20 | ); 21 | } 22 | -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- 1 | import '../styles/globals.css'; 2 | 3 | export const metadata = { 4 | title: 'Nathan Wang (thecodingwizard)' 5 | }; 6 | 7 | export default function RootLayout({ children }: { children: React.ReactNode }) { 8 | return ( 9 | 10 | 11 | 12 | 13 | 17 | 18 | 19 | {children} 20 | 21 | 22 | 23 | ); 24 | } 25 | -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- 1 | import { SectionTitle } from 'components/SectionTitle'; 2 | import { LinkToSection } from 'components/Index/LinkToSection'; 3 | import { ProjectsList } from 'components/Index/ProjectsList'; 4 | import { Achievements } from 'components/Index/Achievements'; 5 | import { 6 | containerClasses, 7 | fancyLinkClasses, 8 | linkClasses, 9 | sectionBodyClasses 10 | } from 'components/styles'; 11 | 12 | export default function Home() { 13 | return ( 14 |
15 |
16 |
17 |
18 | 139 | 140 | 141 | Nathan Wang 142 | 143 |
144 |
145 | 146 | I code, play board games, think about politics, and do some other stuff. 147 | 148 | 149 | I study computer science at MIT. 150 | 151 | 152 | I've worked at Hudson River Trading, Modal Labs, and Codeium. 153 | 154 | 155 | I run the USACO Guide and the Competitive Programming Initiative. 156 | 157 | 158 | I'm a 4x USACO Finalist and a 5x AIME Qualifier. 159 | 160 |
161 |
162 |
163 | 164 | Email 165 | {' '} 166 | ·{' '} 167 | 172 | Github 173 | {' '} 174 | ·{' '} 175 | 180 | Linkedin 181 | 182 |
183 |
184 |
185 | 186 |
187 | 188 | About Me 189 | 190 |
191 |

192 | Ever since I embarked on my programming journey as a young child, I've been entranced 193 | by the power and flexibility of code. 194 |

195 |

196 | Today, I'm an avid programmer currently interested in machine learning and systems. 197 | Programming is my superpower: With it, what I can create is limited only by my 198 | imagination! 199 |

200 |

201 | Outside of programming, I play a lot of board games, especially social deduction games 202 | (my personal favorite is Secret Hitler). I also enjoy discussing politics and 203 | government, watching movies, reading books, traveling, and (occasionally) learning 204 | about tax deductions! 205 |

206 |

207 | I strive to bring energy, technical knowledge, and a strong desire to learn with me 208 | wherever I go. 209 |

210 |
211 |
212 | 213 |
214 | 215 | School 216 | 217 |
218 |

I'm currently a student at MIT studying Computer Science.

219 |
220 |
221 |
222 |

Technical Grad Classes:

223 |
    224 |
  • 6.521 Advanced Algorithms
  • 225 |
  • 6.584 Distributed Systems
  • 226 |
  • 6.390 Computer Vision
  • 227 |
  • 6.790 Machine Learning
  • 228 |
229 |
230 |

231 | Technical Undergrad Classes: 232 |

233 |
    234 |
  • 18.600 Probability and Random Variables
  • 235 |
  • 18.650 Fundamentals of Statistics
  • 236 |
  • 6.106 Software Performance Engineering
  • 237 |
  • 6.110 Computer Language Engineering (Static Compilers)
  • 238 |
  • 6.181 Operating Systems Engineering
  • 239 |
  • 6.1811 Natural Language Processing
  • 240 |
  • 6.190 Introduction to Low-level Programming in C and Assembly
  • 241 |
  • 6.191 Computation Structures
  • 242 |
243 |
244 |
245 |
246 |

247 | In Spring 2023, I was an LA for{' '} 248 | 249 | 6.S063 Design for the Web 250 | 251 | . Outside of classes, I am part of the{' '} 252 | 253 | HackMIT 254 | {' '} 255 | team. I also enjoy participating in{' '} 256 | 261 | New York Systems Reading Group 262 | 263 | . 264 |

265 |
266 |
267 |
268 |

269 | Before coming to MIT, I was a student at Monta Vista High School, where I participated 270 | in a variety of clubs, including{' '} 271 | 272 | Model UN 273 | 274 | , FBLA, AI Club, and Competitive Programming Club. 275 |

276 |
277 |
278 | 279 |
280 | 281 | Work Experience 282 | 283 |
284 |

285 | To view my full work experience, please{' '} 286 | 287 | visit my Linkedin page 288 | 289 | . 290 |

291 | 292 |
293 | 294 |

295 | Modal Labs — Fall 2024 296 |

297 |

298 | I am currently a Member of Technical Staff at{' '} 299 | 300 | Modal 301 | 302 | , a serverless cloud computing platform. I learned Rust, fixed gVisor issues, worked 303 | with Kubernetes, and investigated networking issues, reducing the latency of our 304 | serverless web endpoints by up to 3x. 305 |

306 | 307 |
308 | 309 |

310 | Hudson River Trading — Summer 2024 311 |

312 |

313 | 314 | HRT 315 | {' '} 316 | is a quantitative finance company. As a C++ Core Developer Intern, I completed 8 317 | projects in 11 weeks, building multi-terabyte log viewers, optimizing memory 318 | profilers, refactoring code, and much more. 319 |

320 | 321 |
322 | 323 |

324 | Codeium — Summer 2023 325 |

326 |

327 | 328 | Codeium 329 | {' '} 330 | is a company that builds AI-powered developer tools such as autocomplete. I led the 331 | initiative to quantize our large language model, achieving a ~2.3x speed increase for 332 | our company's product in just 11 weeks. 333 |

334 |
335 |
336 | 337 |
338 | 339 | Projects 340 | 341 |
342 |

I'm always working on something new. Below are a few of my favorite projects!

343 |
344 |
345 | 346 |
347 | 348 |
349 | 350 | Achievements 351 | 352 | 353 |
354 | 355 |
356 | 357 | Contact Me 358 | 359 |
360 |

I really enjoy meeting new people! Please feel free to reach out.

361 |
362 |
363 | 364 | Email 365 | {' '} 366 | ·{' '} 367 | 368 | Github 369 | {' '} 370 | ·{' '} 371 | 376 | Linkedin 377 | 378 |
379 |
380 | 381 |
382 | 383 |
384 |
385 | Copyright {new Date().getFullYear()} Nathan Wang. 386 |
387 | This site is built with{' '} 388 | 389 | Next.js 390 | {' '} 391 | and{' '} 392 | 393 | Tailwind CSS 394 | 395 | . View the source code on{' '} 396 | 401 | Github 402 | 403 | . 404 |
405 |
406 |
407 |
408 | ); 409 | } 410 | -------------------------------------------------------------------------------- /components/CardGrid/Card.tsx: -------------------------------------------------------------------------------- 1 | 'use client'; 2 | 3 | import Link from 'next/link'; 4 | import AES from 'crypto-js/aes.js'; 5 | import Utf8 from 'crypto-js/enc-utf8.js'; 6 | import SpotlightCard from 'components/SpotlightCard'; 7 | import GradientBorderCard from 'components/GradientBorderCard'; 8 | 9 | const cardContainerClasses = 'shadow-md shadow-2xl flex flex-col'; 10 | const cardClasses = 'flex flex-col p-4 sm:p-6 bg-slate-900 flex-1 border border-white/10'; 11 | 12 | export const Card = ({ 13 | title, 14 | link, 15 | tags, 16 | encrypted = false, 17 | children 18 | }: { 19 | title: string; 20 | link?: string; 21 | tags?: string[]; 22 | children?: React.ReactNode; 23 | encrypted?: boolean; 24 | }) => { 25 | const content = ( 26 | <> 27 |

28 | {title} 29 |

30 | {children && ( 31 |

32 | {children} 33 |

34 | )} 35 | {tags && ( 36 |
37 | {tags.join(` · `)} 38 |
39 | )} 40 | 41 | ); 42 | if (link && encrypted) { 43 | const handleClick = () => { 44 | const password = prompt('Enter link password:'); 45 | const decrypted = AES.decrypt(link, password).toString(Utf8); 46 | if (decrypted) { 47 | window.location.href = decrypted; 48 | } else { 49 | alert('Incorrect password'); 50 | } 51 | }; 52 | return ( 53 | 56 | ); 57 | } else if (link && !encrypted) { 58 | if (link[0] === '/') { 59 | // internal link 60 | return ( 61 | 62 | {content} 63 | 64 | ); 65 | } 66 | return ( 67 | 68 | {content}{' '} 69 | 70 | ); 71 | } else { 72 | return {content}; 73 | } 74 | }; 75 | -------------------------------------------------------------------------------- /components/CardGrid/CardGrid.tsx: -------------------------------------------------------------------------------- 1 | export const CardGrid = ({ children }) => ( 2 |
3 | {children} 4 |
5 | ) -------------------------------------------------------------------------------- /components/GradientBorderCard.tsx: -------------------------------------------------------------------------------- 1 | import { CSSProperties } from 'react'; 2 | 3 | // Thanks Build UI Recipes! 4 | export default function GradientBorderCard({ children, className = 'p-8' }) { 5 | return ( 6 |
25 | {children} 26 |
27 | ); 28 | } 29 | -------------------------------------------------------------------------------- /components/Index/Achievements.tsx: -------------------------------------------------------------------------------- 1 | import { CardGrid } from 'components/CardGrid/CardGrid'; 2 | import { Card } from 'components/CardGrid/Card'; 3 | import { linkClasses } from 'components/styles'; 4 | 5 | export const Achievements = () => ( 6 | 7 | 8 | In{' '} 9 | 14 | 2019 15 | 16 | ,{' '} 17 | 22 | 2020 23 | 24 | ,{' '} 25 | 30 | 2021 31 | 32 | , and{' '} 33 | 38 | 2022 39 | 40 | , I was selected as part of 26 students to participate in the national USA Computing Olympiad 41 | training camp. 42 | 43 | 44 | In 2017, 2018, 2019, 2020, and 2021, I qualified to take the American Invitational Mathematics 45 | Examination (AIME), which is offered to the top 2.5% of students. 46 | 47 | 48 | ); 49 | -------------------------------------------------------------------------------- /components/Index/LinkToSection.tsx: -------------------------------------------------------------------------------- 1 | export const LinkToSection = ({ title, href, children }) => ( 2 | 6 | 7 | {title} 8 | 9 |
10 |

{children}

11 | 12 | 13 |
14 | ); 15 | -------------------------------------------------------------------------------- /components/Index/ProjectsList.tsx: -------------------------------------------------------------------------------- 1 | import { Card } from 'components/CardGrid/Card'; 2 | import { CardGrid } from 'components/CardGrid/CardGrid'; 3 | 4 | export const ProjectsList = () => ( 5 | 6 | 11 | The USACO Guide is a free collection of curated, high-quality competitive programming 12 | resources aimed to bring contestants from Bronze to Platinum and beyond. 13 | 14 | 19 | I'm the founder of the Competitive Programming Initiative, a student-run nonprofit 20 | organization dedicated to promoting competitive programming amongst students. 21 | 22 | 27 | This Github repository contains solutions to some of the 900+ competitive programming problems 28 | I've solved! 29 | 30 | 35 | A realtime collaborative IDE with code execution and input/output, designed for competitive 36 | programming and USACO. 37 | 38 | 43 | A serverless code execution system built with AWS Lambda and Rust that supports C++, Java, and 44 | Python. 45 | 46 | 51 | This site! Built with React, Next.js, and Tailwind CSS. 52 | 53 | 54 | AP Physics C Mechanics & E&M practice questions, scraped from CollegeBoard. 55 | 56 | 57 | A collection of my favorite party games. 58 | 59 | 60 | ); 61 | -------------------------------------------------------------------------------- /components/SectionTitle.tsx: -------------------------------------------------------------------------------- 1 | import { sectionTitleBigClasses, sectionTitleClasses } from './styles'; 2 | 3 | export const SectionTitle = ({ 4 | accentText, 5 | children, 6 | big = false 7 | }: { 8 | accentText?: string; 9 | children: React.ReactNode; 10 | big?: boolean; 11 | }) => ( 12 | <> 13 | {accentText && {accentText}} 14 |
15 |

16 | {children} 17 | {big && .} 18 |

19 |
20 | 21 | ); 22 | -------------------------------------------------------------------------------- /components/SpotlightCard.tsx: -------------------------------------------------------------------------------- 1 | import classNames from 'classnames'; 2 | import { motion, useMotionTemplate, useMotionValue } from 'framer-motion'; 3 | import { MouseEvent } from 'react'; 4 | 5 | // Thanks Build UI Recipes! 6 | export default function SpotlightCard({ 7 | children, 8 | className = 'rounded-xl border border-white/10 bg-slate-900 shadow-2xl' 9 | }) { 10 | let mouseX = useMotionValue(0); 11 | let mouseY = useMotionValue(0); 12 | 13 | function handleMouseMove({ currentTarget, clientX, clientY }: MouseEvent) { 14 | let { left, top } = currentTarget.getBoundingClientRect(); 15 | 16 | mouseX.set(clientX - left); 17 | mouseY.set(clientY - top); 18 | } 19 | 20 | return ( 21 |
26 | 38 | {children} 39 |
40 | ); 41 | } 42 | -------------------------------------------------------------------------------- /components/styles.ts: -------------------------------------------------------------------------------- 1 | export const containerClasses = 2 | 'py-12 lg:py-16 xl:py-24 2xl:py-32 px-6 md:px-12 lg:px-24 max-w-screen-2xl w-full mx-auto'; 3 | export const containerClassesNoYPadding = 'px-6 md:px-12 lg:px-24 max-w-screen-2xl w-full mx-auto'; 4 | export const sectionTitleBigClasses = 5 | 'text-4xl sm:text-5xl md:text-6xl xl:text-8xl text-white font-semibold lg:-ml-1 xl:-ml-1'; 6 | export const sectionTitleClasses = 7 | 'text-4xl sm:text-5xl md:text-6xl lg:text-7xl text-white font-bold'; 8 | export const sectionBodyClasses = 9 | 'text-slate-400 sm:text-lg lg:text-xl leading-relaxed max-w-prose space-y-4 sm:space-y-6 lg:space-y-8'; 10 | export const linkClasses = 11 | 'text-slate-400 hover:text-accent underline underline-offset-2 decoration-2 decoration-slate-400/50 hover:decoration-transparent transition'; 12 | export const fancyLinkClasses = 13 | 'text-slate-200 hover:text-white underline underline-offset-4 decoration-1 decoration-fuchsia-500 hover:decoration-2'; 14 | -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- 1 | import { NextResponse } from 'next/server'; 2 | import type { NextRequest } from 'next/server'; 3 | import { kv } from '@vercel/kv'; 4 | 5 | export const config = { 6 | matcher: '/:path*' 7 | }; 8 | 9 | export async function middleware(request: NextRequest) { 10 | const pathname = request.nextUrl.pathname; 11 | const isShortURL = request.nextUrl.hostname === 'tcw.sh'; 12 | 13 | if ((!isShortURL && pathname === '/l') || (isShortURL && pathname === '/')) { 14 | const basicAuth = request.headers.get('authorization'); 15 | const url = request.nextUrl; 16 | 17 | if (basicAuth) { 18 | const authValue = basicAuth.split(' ')[1]; 19 | const [user, pwd] = Buffer.from(authValue, 'base64').toString().split(':'); 20 | 21 | if (user === 'root' && pwd === process.env.LINK_SHORTENER_PW) { 22 | return NextResponse.next(); 23 | } 24 | } 25 | url.pathname = '/'; 26 | 27 | return new NextResponse('401 Unauthorized', { 28 | headers: { 29 | 'WWW-authenticate': 'Basic realm="Secure Area"' 30 | }, 31 | status: 401 32 | }); 33 | } else if ((isShortURL && pathname.match(/\/[a-zA-Z0-9-_]+\/?$/)) || pathname.startsWith('/l/')) { 34 | const short_url = isShortURL ? pathname.substring(1) : pathname.substring(3); 35 | const long_url = await kv.hget(`link:${short_url}`, 'target'); 36 | if (long_url) { 37 | let url = null; 38 | try { 39 | url = new URL(long_url as string).toString(); 40 | } catch (e) { 41 | return new NextResponse('Invalid Long URL: ' + long_url); 42 | } 43 | return new NextResponse('', { 44 | headers: { 45 | 'Cache-Control': 'no-cache, no-store, max-age=0, must-revalidate', 46 | Pragma: 'no-cache', 47 | Expires: 'Mon, 01 Jan 1990 00:00:00 GMT', 48 | Location: url 49 | }, 50 | status: 301 51 | }); 52 | } else { 53 | return new NextResponse('404 Not Found', { 54 | status: 404 55 | }); 56 | } 57 | } 58 | } 59 | -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | /// 3 | 4 | // NOTE: This file should not be edited 5 | // see https://nextjs.org/docs/basic-features/typescript for more information. 6 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | async redirects() { 3 | return [ 4 | { 5 | source: '/usaco-classes', 6 | destination: 'https://classes.thecodingwizard.me/', 7 | permanent: false, 8 | } 9 | ] 10 | }, 11 | async rewrites() { 12 | return { 13 | // We need this rewrite in beforeFiles, otherwise 14 | // tcw.sh will still serve the normal homepage 15 | beforeFiles: [ 16 | { 17 | source: '/', 18 | has: [ 19 | { 20 | type: 'host', 21 | value: 'tcw.sh', 22 | }, 23 | ], 24 | destination: '/l/', 25 | }, 26 | ] 27 | } 28 | }, 29 | } -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "personal-website", 3 | "version": "0.0.1", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "personal-website", 9 | "version": "0.0.1", 10 | "dependencies": { 11 | "@headlessui/react": "^1.4.1", 12 | "@heroicons/react": "^1.0.5", 13 | "@tailwindcss/forms": "^0.5.3", 14 | "@vercel/kv": "^0.2.1", 15 | "classnames": "^2.3.1", 16 | "crypto-js": "^4.2.0", 17 | "eslint-config-next": "^14.1.0", 18 | "framer-motion": "^5.0.1", 19 | "next": "^14.1.0", 20 | "react": "^18.2.0", 21 | "react-dom": "^18.2.0", 22 | "react-intersection-observer": "^8.32.2" 23 | }, 24 | "devDependencies": { 25 | "@tailwindcss/aspect-ratio": "^0.4.2", 26 | "@tailwindcss/line-clamp": "^0.4.2", 27 | "@tailwindcss/typography": "^0.5.7", 28 | "@types/node": "^16.11.6", 29 | "@types/react": "^17.0.33", 30 | "autoprefixer": "^10.4.12", 31 | "postcss": "^8.4.16", 32 | "tailwindcss": "^3.3.2", 33 | "typescript": "^5.0.4" 34 | } 35 | }, 36 | "node_modules/@aashutoshrathi/word-wrap": { 37 | "version": "1.2.6", 38 | "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", 39 | "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", 40 | "peer": true, 41 | "engines": { 42 | "node": ">=0.10.0" 43 | } 44 | }, 45 | "node_modules/@alloc/quick-lru": { 46 | "version": "5.2.0", 47 | "license": "MIT", 48 | "engines": { 49 | "node": ">=10" 50 | }, 51 | "funding": { 52 | "url": "https://github.com/sponsors/sindresorhus" 53 | } 54 | }, 55 | "node_modules/@babel/runtime": { 56 | "version": "7.23.9", 57 | "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.9.tgz", 58 | "integrity": "sha512-0CX6F+BI2s9dkUqr08KFrAIZgNFj75rdBU/DjCyYLIaV/quFjkk6T+EJ2LkZHyZTbEV4L5p97mNkUsHl2wLFAw==", 59 | "dependencies": { 60 | "regenerator-runtime": "^0.14.0" 61 | }, 62 | "engines": { 63 | "node": ">=6.9.0" 64 | } 65 | }, 66 | "node_modules/@emotion/is-prop-valid": { 67 | "version": "0.8.8", 68 | "license": "MIT", 69 | "optional": true, 70 | "dependencies": { 71 | "@emotion/memoize": "0.7.4" 72 | } 73 | }, 74 | "node_modules/@emotion/memoize": { 75 | "version": "0.7.4", 76 | "license": "MIT", 77 | "optional": true 78 | }, 79 | "node_modules/@eslint-community/eslint-utils": { 80 | "version": "4.4.0", 81 | "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", 82 | "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", 83 | "peer": true, 84 | "dependencies": { 85 | "eslint-visitor-keys": "^3.3.0" 86 | }, 87 | "engines": { 88 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 89 | }, 90 | "peerDependencies": { 91 | "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" 92 | } 93 | }, 94 | "node_modules/@eslint-community/regexpp": { 95 | "version": "4.10.0", 96 | "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", 97 | "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", 98 | "peer": true, 99 | "engines": { 100 | "node": "^12.0.0 || ^14.0.0 || >=16.0.0" 101 | } 102 | }, 103 | "node_modules/@eslint/eslintrc": { 104 | "version": "2.1.4", 105 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", 106 | "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", 107 | "peer": true, 108 | "dependencies": { 109 | "ajv": "^6.12.4", 110 | "debug": "^4.3.2", 111 | "espree": "^9.6.0", 112 | "globals": "^13.19.0", 113 | "ignore": "^5.2.0", 114 | "import-fresh": "^3.2.1", 115 | "js-yaml": "^4.1.0", 116 | "minimatch": "^3.1.2", 117 | "strip-json-comments": "^3.1.1" 118 | }, 119 | "engines": { 120 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 121 | }, 122 | "funding": { 123 | "url": "https://opencollective.com/eslint" 124 | } 125 | }, 126 | "node_modules/@eslint/js": { 127 | "version": "8.56.0", 128 | "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.56.0.tgz", 129 | "integrity": "sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==", 130 | "peer": true, 131 | "engines": { 132 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 133 | } 134 | }, 135 | "node_modules/@headlessui/react": { 136 | "version": "1.4.1", 137 | "license": "MIT", 138 | "engines": { 139 | "node": ">=10" 140 | }, 141 | "peerDependencies": { 142 | "react": "^16 || ^17 || ^18", 143 | "react-dom": "^16 || ^17 || ^18" 144 | } 145 | }, 146 | "node_modules/@heroicons/react": { 147 | "version": "1.0.5", 148 | "license": "MIT", 149 | "peerDependencies": { 150 | "react": ">= 16" 151 | } 152 | }, 153 | "node_modules/@humanwhocodes/config-array": { 154 | "version": "0.11.14", 155 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", 156 | "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", 157 | "peer": true, 158 | "dependencies": { 159 | "@humanwhocodes/object-schema": "^2.0.2", 160 | "debug": "^4.3.1", 161 | "minimatch": "^3.0.5" 162 | }, 163 | "engines": { 164 | "node": ">=10.10.0" 165 | } 166 | }, 167 | "node_modules/@humanwhocodes/module-importer": { 168 | "version": "1.0.1", 169 | "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", 170 | "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", 171 | "peer": true, 172 | "engines": { 173 | "node": ">=12.22" 174 | }, 175 | "funding": { 176 | "type": "github", 177 | "url": "https://github.com/sponsors/nzakas" 178 | } 179 | }, 180 | "node_modules/@humanwhocodes/object-schema": { 181 | "version": "2.0.2", 182 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz", 183 | "integrity": "sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==", 184 | "peer": true 185 | }, 186 | "node_modules/@isaacs/cliui": { 187 | "version": "8.0.2", 188 | "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", 189 | "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", 190 | "dependencies": { 191 | "string-width": "^5.1.2", 192 | "string-width-cjs": "npm:string-width@^4.2.0", 193 | "strip-ansi": "^7.0.1", 194 | "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", 195 | "wrap-ansi": "^8.1.0", 196 | "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" 197 | }, 198 | "engines": { 199 | "node": ">=12" 200 | } 201 | }, 202 | "node_modules/@isaacs/cliui/node_modules/ansi-regex": { 203 | "version": "6.0.1", 204 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 205 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 206 | "engines": { 207 | "node": ">=12" 208 | }, 209 | "funding": { 210 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 211 | } 212 | }, 213 | "node_modules/@isaacs/cliui/node_modules/strip-ansi": { 214 | "version": "7.1.0", 215 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 216 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 217 | "dependencies": { 218 | "ansi-regex": "^6.0.1" 219 | }, 220 | "engines": { 221 | "node": ">=12" 222 | }, 223 | "funding": { 224 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 225 | } 226 | }, 227 | "node_modules/@jridgewell/gen-mapping": { 228 | "version": "0.3.3", 229 | "license": "MIT", 230 | "dependencies": { 231 | "@jridgewell/set-array": "^1.0.1", 232 | "@jridgewell/sourcemap-codec": "^1.4.10", 233 | "@jridgewell/trace-mapping": "^0.3.9" 234 | }, 235 | "engines": { 236 | "node": ">=6.0.0" 237 | } 238 | }, 239 | "node_modules/@jridgewell/resolve-uri": { 240 | "version": "3.1.0", 241 | "license": "MIT", 242 | "engines": { 243 | "node": ">=6.0.0" 244 | } 245 | }, 246 | "node_modules/@jridgewell/set-array": { 247 | "version": "1.1.2", 248 | "license": "MIT", 249 | "engines": { 250 | "node": ">=6.0.0" 251 | } 252 | }, 253 | "node_modules/@jridgewell/sourcemap-codec": { 254 | "version": "1.4.15", 255 | "license": "MIT" 256 | }, 257 | "node_modules/@jridgewell/trace-mapping": { 258 | "version": "0.3.18", 259 | "license": "MIT", 260 | "dependencies": { 261 | "@jridgewell/resolve-uri": "3.1.0", 262 | "@jridgewell/sourcemap-codec": "1.4.14" 263 | } 264 | }, 265 | "node_modules/@jridgewell/trace-mapping/node_modules/@jridgewell/sourcemap-codec": { 266 | "version": "1.4.14", 267 | "license": "MIT" 268 | }, 269 | "node_modules/@next/env": { 270 | "version": "14.1.0", 271 | "resolved": "https://registry.npmjs.org/@next/env/-/env-14.1.0.tgz", 272 | "integrity": "sha512-Py8zIo+02ht82brwwhTg36iogzFqGLPXlRGKQw5s+qP/kMNc4MAyDeEwBKDijk6zTIbegEgu8Qy7C1LboslQAw==" 273 | }, 274 | "node_modules/@next/eslint-plugin-next": { 275 | "version": "14.1.0", 276 | "resolved": "https://registry.npmjs.org/@next/eslint-plugin-next/-/eslint-plugin-next-14.1.0.tgz", 277 | "integrity": "sha512-x4FavbNEeXx/baD/zC/SdrvkjSby8nBn8KcCREqk6UuwvwoAPZmaV8TFCAuo/cpovBRTIY67mHhe86MQQm/68Q==", 278 | "dependencies": { 279 | "glob": "10.3.10" 280 | } 281 | }, 282 | "node_modules/@next/eslint-plugin-next/node_modules/brace-expansion": { 283 | "version": "2.0.1", 284 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 285 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 286 | "dependencies": { 287 | "balanced-match": "^1.0.0" 288 | } 289 | }, 290 | "node_modules/@next/eslint-plugin-next/node_modules/glob": { 291 | "version": "10.3.10", 292 | "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", 293 | "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", 294 | "dependencies": { 295 | "foreground-child": "^3.1.0", 296 | "jackspeak": "^2.3.5", 297 | "minimatch": "^9.0.1", 298 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", 299 | "path-scurry": "^1.10.1" 300 | }, 301 | "bin": { 302 | "glob": "dist/esm/bin.mjs" 303 | }, 304 | "engines": { 305 | "node": ">=16 || 14 >=14.17" 306 | }, 307 | "funding": { 308 | "url": "https://github.com/sponsors/isaacs" 309 | } 310 | }, 311 | "node_modules/@next/eslint-plugin-next/node_modules/minimatch": { 312 | "version": "9.0.3", 313 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", 314 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", 315 | "dependencies": { 316 | "brace-expansion": "^2.0.1" 317 | }, 318 | "engines": { 319 | "node": ">=16 || 14 >=14.17" 320 | }, 321 | "funding": { 322 | "url": "https://github.com/sponsors/isaacs" 323 | } 324 | }, 325 | "node_modules/@next/swc-darwin-arm64": { 326 | "version": "14.1.0", 327 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-14.1.0.tgz", 328 | "integrity": "sha512-nUDn7TOGcIeyQni6lZHfzNoo9S0euXnu0jhsbMOmMJUBfgsnESdjN97kM7cBqQxZa8L/bM9om/S5/1dzCrW6wQ==", 329 | "cpu": [ 330 | "arm64" 331 | ], 332 | "optional": true, 333 | "os": [ 334 | "darwin" 335 | ], 336 | "engines": { 337 | "node": ">= 10" 338 | } 339 | }, 340 | "node_modules/@next/swc-darwin-x64": { 341 | "version": "14.1.0", 342 | "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-14.1.0.tgz", 343 | "integrity": "sha512-1jgudN5haWxiAl3O1ljUS2GfupPmcftu2RYJqZiMJmmbBT5M1XDffjUtRUzP4W3cBHsrvkfOFdQ71hAreNQP6g==", 344 | "cpu": [ 345 | "x64" 346 | ], 347 | "optional": true, 348 | "os": [ 349 | "darwin" 350 | ], 351 | "engines": { 352 | "node": ">= 10" 353 | } 354 | }, 355 | "node_modules/@next/swc-linux-arm64-gnu": { 356 | "version": "14.1.0", 357 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-14.1.0.tgz", 358 | "integrity": "sha512-RHo7Tcj+jllXUbK7xk2NyIDod3YcCPDZxj1WLIYxd709BQ7WuRYl3OWUNG+WUfqeQBds6kvZYlc42NJJTNi4tQ==", 359 | "cpu": [ 360 | "arm64" 361 | ], 362 | "optional": true, 363 | "os": [ 364 | "linux" 365 | ], 366 | "engines": { 367 | "node": ">= 10" 368 | } 369 | }, 370 | "node_modules/@next/swc-linux-arm64-musl": { 371 | "version": "14.1.0", 372 | "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-14.1.0.tgz", 373 | "integrity": "sha512-v6kP8sHYxjO8RwHmWMJSq7VZP2nYCkRVQ0qolh2l6xroe9QjbgV8siTbduED4u0hlk0+tjS6/Tuy4n5XCp+l6g==", 374 | "cpu": [ 375 | "arm64" 376 | ], 377 | "optional": true, 378 | "os": [ 379 | "linux" 380 | ], 381 | "engines": { 382 | "node": ">= 10" 383 | } 384 | }, 385 | "node_modules/@next/swc-linux-x64-gnu": { 386 | "version": "14.1.0", 387 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-14.1.0.tgz", 388 | "integrity": "sha512-zJ2pnoFYB1F4vmEVlb/eSe+VH679zT1VdXlZKX+pE66grOgjmKJHKacf82g/sWE4MQ4Rk2FMBCRnX+l6/TVYzQ==", 389 | "cpu": [ 390 | "x64" 391 | ], 392 | "optional": true, 393 | "os": [ 394 | "linux" 395 | ], 396 | "engines": { 397 | "node": ">= 10" 398 | } 399 | }, 400 | "node_modules/@next/swc-linux-x64-musl": { 401 | "version": "14.1.0", 402 | "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-14.1.0.tgz", 403 | "integrity": "sha512-rbaIYFt2X9YZBSbH/CwGAjbBG2/MrACCVu2X0+kSykHzHnYH5FjHxwXLkcoJ10cX0aWCEynpu+rP76x0914atg==", 404 | "cpu": [ 405 | "x64" 406 | ], 407 | "optional": true, 408 | "os": [ 409 | "linux" 410 | ], 411 | "engines": { 412 | "node": ">= 10" 413 | } 414 | }, 415 | "node_modules/@next/swc-win32-arm64-msvc": { 416 | "version": "14.1.0", 417 | "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-14.1.0.tgz", 418 | "integrity": "sha512-o1N5TsYc8f/HpGt39OUQpQ9AKIGApd3QLueu7hXk//2xq5Z9OxmV6sQfNp8C7qYmiOlHYODOGqNNa0e9jvchGQ==", 419 | "cpu": [ 420 | "arm64" 421 | ], 422 | "optional": true, 423 | "os": [ 424 | "win32" 425 | ], 426 | "engines": { 427 | "node": ">= 10" 428 | } 429 | }, 430 | "node_modules/@next/swc-win32-ia32-msvc": { 431 | "version": "14.1.0", 432 | "resolved": "https://registry.npmjs.org/@next/swc-win32-ia32-msvc/-/swc-win32-ia32-msvc-14.1.0.tgz", 433 | "integrity": "sha512-XXIuB1DBRCFwNO6EEzCTMHT5pauwaSj4SWs7CYnME57eaReAKBXCnkUE80p/pAZcewm7hs+vGvNqDPacEXHVkw==", 434 | "cpu": [ 435 | "ia32" 436 | ], 437 | "optional": true, 438 | "os": [ 439 | "win32" 440 | ], 441 | "engines": { 442 | "node": ">= 10" 443 | } 444 | }, 445 | "node_modules/@next/swc-win32-x64-msvc": { 446 | "version": "14.1.0", 447 | "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-14.1.0.tgz", 448 | "integrity": "sha512-9WEbVRRAqJ3YFVqEZIxUqkiO8l1nool1LmNxygr5HWF8AcSYsEpneUDhmjUVJEzO2A04+oPtZdombzzPPkTtgg==", 449 | "cpu": [ 450 | "x64" 451 | ], 452 | "optional": true, 453 | "os": [ 454 | "win32" 455 | ], 456 | "engines": { 457 | "node": ">= 10" 458 | } 459 | }, 460 | "node_modules/@nodelib/fs.scandir": { 461 | "version": "2.1.5", 462 | "license": "MIT", 463 | "dependencies": { 464 | "@nodelib/fs.stat": "2.0.5", 465 | "run-parallel": "^1.1.9" 466 | }, 467 | "engines": { 468 | "node": ">= 8" 469 | } 470 | }, 471 | "node_modules/@nodelib/fs.stat": { 472 | "version": "2.0.5", 473 | "license": "MIT", 474 | "engines": { 475 | "node": ">= 8" 476 | } 477 | }, 478 | "node_modules/@nodelib/fs.walk": { 479 | "version": "1.2.8", 480 | "license": "MIT", 481 | "dependencies": { 482 | "@nodelib/fs.scandir": "2.1.5", 483 | "fastq": "^1.6.0" 484 | }, 485 | "engines": { 486 | "node": ">= 8" 487 | } 488 | }, 489 | "node_modules/@pkgjs/parseargs": { 490 | "version": "0.11.0", 491 | "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", 492 | "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", 493 | "optional": true, 494 | "engines": { 495 | "node": ">=14" 496 | } 497 | }, 498 | "node_modules/@rushstack/eslint-patch": { 499 | "version": "1.7.2", 500 | "resolved": "https://registry.npmjs.org/@rushstack/eslint-patch/-/eslint-patch-1.7.2.tgz", 501 | "integrity": "sha512-RbhOOTCNoCrbfkRyoXODZp75MlpiHMgbE5MEBZAnnnLyQNgrigEj4p0lzsMDyc1zVsJDLrivB58tgg3emX0eEA==" 502 | }, 503 | "node_modules/@swc/helpers": { 504 | "version": "0.5.2", 505 | "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.2.tgz", 506 | "integrity": "sha512-E4KcWTpoLHqwPHLxidpOqQbcrZVgi0rsmmZXUle1jXmJfuIf/UWpczUJ7MZZ5tlxytgJXyp0w4PGkkeLiuIdZw==", 507 | "dependencies": { 508 | "tslib": "^2.4.0" 509 | } 510 | }, 511 | "node_modules/@tailwindcss/aspect-ratio": { 512 | "version": "0.4.2", 513 | "dev": true, 514 | "license": "MIT", 515 | "peerDependencies": { 516 | "tailwindcss": ">=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1" 517 | } 518 | }, 519 | "node_modules/@tailwindcss/forms": { 520 | "version": "0.5.3", 521 | "license": "MIT", 522 | "dependencies": { 523 | "mini-svg-data-uri": "^1.2.3" 524 | }, 525 | "peerDependencies": { 526 | "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1" 527 | } 528 | }, 529 | "node_modules/@tailwindcss/line-clamp": { 530 | "version": "0.4.2", 531 | "dev": true, 532 | "license": "MIT", 533 | "peerDependencies": { 534 | "tailwindcss": ">=2.0.0 || >=3.0.0 || >=3.0.0-alpha.1" 535 | } 536 | }, 537 | "node_modules/@tailwindcss/typography": { 538 | "version": "0.5.7", 539 | "dev": true, 540 | "license": "MIT", 541 | "dependencies": { 542 | "lodash.castarray": "^4.4.0", 543 | "lodash.isplainobject": "^4.0.6", 544 | "lodash.merge": "^4.6.2", 545 | "postcss-selector-parser": "6.0.10" 546 | }, 547 | "peerDependencies": { 548 | "tailwindcss": ">=3.0.0 || insiders" 549 | } 550 | }, 551 | "node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser": { 552 | "version": "6.0.10", 553 | "dev": true, 554 | "license": "MIT", 555 | "dependencies": { 556 | "cssesc": "^3.0.0", 557 | "util-deprecate": "^1.0.2" 558 | }, 559 | "engines": { 560 | "node": ">=4" 561 | } 562 | }, 563 | "node_modules/@types/json5": { 564 | "version": "0.0.29", 565 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 566 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==" 567 | }, 568 | "node_modules/@types/node": { 569 | "version": "16.11.6", 570 | "dev": true, 571 | "license": "MIT" 572 | }, 573 | "node_modules/@types/prop-types": { 574 | "version": "15.7.4", 575 | "dev": true, 576 | "license": "MIT" 577 | }, 578 | "node_modules/@types/react": { 579 | "version": "17.0.33", 580 | "dev": true, 581 | "license": "MIT", 582 | "dependencies": { 583 | "@types/prop-types": "*", 584 | "@types/scheduler": "*", 585 | "csstype": "^3.0.2" 586 | } 587 | }, 588 | "node_modules/@types/scheduler": { 589 | "version": "0.16.2", 590 | "dev": true, 591 | "license": "MIT" 592 | }, 593 | "node_modules/@typescript-eslint/parser": { 594 | "version": "6.21.0", 595 | "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.21.0.tgz", 596 | "integrity": "sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ==", 597 | "dependencies": { 598 | "@typescript-eslint/scope-manager": "6.21.0", 599 | "@typescript-eslint/types": "6.21.0", 600 | "@typescript-eslint/typescript-estree": "6.21.0", 601 | "@typescript-eslint/visitor-keys": "6.21.0", 602 | "debug": "^4.3.4" 603 | }, 604 | "engines": { 605 | "node": "^16.0.0 || >=18.0.0" 606 | }, 607 | "funding": { 608 | "type": "opencollective", 609 | "url": "https://opencollective.com/typescript-eslint" 610 | }, 611 | "peerDependencies": { 612 | "eslint": "^7.0.0 || ^8.0.0" 613 | }, 614 | "peerDependenciesMeta": { 615 | "typescript": { 616 | "optional": true 617 | } 618 | } 619 | }, 620 | "node_modules/@typescript-eslint/scope-manager": { 621 | "version": "6.21.0", 622 | "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz", 623 | "integrity": "sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg==", 624 | "dependencies": { 625 | "@typescript-eslint/types": "6.21.0", 626 | "@typescript-eslint/visitor-keys": "6.21.0" 627 | }, 628 | "engines": { 629 | "node": "^16.0.0 || >=18.0.0" 630 | }, 631 | "funding": { 632 | "type": "opencollective", 633 | "url": "https://opencollective.com/typescript-eslint" 634 | } 635 | }, 636 | "node_modules/@typescript-eslint/types": { 637 | "version": "6.21.0", 638 | "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.21.0.tgz", 639 | "integrity": "sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg==", 640 | "engines": { 641 | "node": "^16.0.0 || >=18.0.0" 642 | }, 643 | "funding": { 644 | "type": "opencollective", 645 | "url": "https://opencollective.com/typescript-eslint" 646 | } 647 | }, 648 | "node_modules/@typescript-eslint/typescript-estree": { 649 | "version": "6.21.0", 650 | "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz", 651 | "integrity": "sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ==", 652 | "dependencies": { 653 | "@typescript-eslint/types": "6.21.0", 654 | "@typescript-eslint/visitor-keys": "6.21.0", 655 | "debug": "^4.3.4", 656 | "globby": "^11.1.0", 657 | "is-glob": "^4.0.3", 658 | "minimatch": "9.0.3", 659 | "semver": "^7.5.4", 660 | "ts-api-utils": "^1.0.1" 661 | }, 662 | "engines": { 663 | "node": "^16.0.0 || >=18.0.0" 664 | }, 665 | "funding": { 666 | "type": "opencollective", 667 | "url": "https://opencollective.com/typescript-eslint" 668 | }, 669 | "peerDependenciesMeta": { 670 | "typescript": { 671 | "optional": true 672 | } 673 | } 674 | }, 675 | "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { 676 | "version": "2.0.1", 677 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", 678 | "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", 679 | "dependencies": { 680 | "balanced-match": "^1.0.0" 681 | } 682 | }, 683 | "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { 684 | "version": "9.0.3", 685 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", 686 | "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", 687 | "dependencies": { 688 | "brace-expansion": "^2.0.1" 689 | }, 690 | "engines": { 691 | "node": ">=16 || 14 >=14.17" 692 | }, 693 | "funding": { 694 | "url": "https://github.com/sponsors/isaacs" 695 | } 696 | }, 697 | "node_modules/@typescript-eslint/visitor-keys": { 698 | "version": "6.21.0", 699 | "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz", 700 | "integrity": "sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A==", 701 | "dependencies": { 702 | "@typescript-eslint/types": "6.21.0", 703 | "eslint-visitor-keys": "^3.4.1" 704 | }, 705 | "engines": { 706 | "node": "^16.0.0 || >=18.0.0" 707 | }, 708 | "funding": { 709 | "type": "opencollective", 710 | "url": "https://opencollective.com/typescript-eslint" 711 | } 712 | }, 713 | "node_modules/@ungap/structured-clone": { 714 | "version": "1.2.0", 715 | "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", 716 | "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", 717 | "peer": true 718 | }, 719 | "node_modules/@upstash/redis": { 720 | "version": "v1.20.6", 721 | "license": "MIT", 722 | "dependencies": { 723 | "isomorphic-fetch": "^3.0.0" 724 | } 725 | }, 726 | "node_modules/@vercel/kv": { 727 | "version": "0.2.1", 728 | "license": "Apache-2.0", 729 | "dependencies": { 730 | "@upstash/redis": "1.20.6" 731 | }, 732 | "engines": { 733 | "node": ">=14.6" 734 | } 735 | }, 736 | "node_modules/acorn": { 737 | "version": "8.11.3", 738 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", 739 | "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", 740 | "peer": true, 741 | "bin": { 742 | "acorn": "bin/acorn" 743 | }, 744 | "engines": { 745 | "node": ">=0.4.0" 746 | } 747 | }, 748 | "node_modules/acorn-jsx": { 749 | "version": "5.3.2", 750 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 751 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 752 | "peer": true, 753 | "peerDependencies": { 754 | "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" 755 | } 756 | }, 757 | "node_modules/ajv": { 758 | "version": "6.12.6", 759 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 760 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 761 | "peer": true, 762 | "dependencies": { 763 | "fast-deep-equal": "^3.1.1", 764 | "fast-json-stable-stringify": "^2.0.0", 765 | "json-schema-traverse": "^0.4.1", 766 | "uri-js": "^4.2.2" 767 | }, 768 | "funding": { 769 | "type": "github", 770 | "url": "https://github.com/sponsors/epoberezkin" 771 | } 772 | }, 773 | "node_modules/ansi-regex": { 774 | "version": "5.0.1", 775 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 776 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 777 | "engines": { 778 | "node": ">=8" 779 | } 780 | }, 781 | "node_modules/ansi-styles": { 782 | "version": "4.3.0", 783 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 784 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 785 | "dependencies": { 786 | "color-convert": "^2.0.1" 787 | }, 788 | "engines": { 789 | "node": ">=8" 790 | }, 791 | "funding": { 792 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 793 | } 794 | }, 795 | "node_modules/any-promise": { 796 | "version": "1.3.0", 797 | "license": "MIT" 798 | }, 799 | "node_modules/anymatch": { 800 | "version": "3.1.2", 801 | "license": "ISC", 802 | "dependencies": { 803 | "normalize-path": "^3.0.0", 804 | "picomatch": "^2.0.4" 805 | }, 806 | "engines": { 807 | "node": ">= 8" 808 | } 809 | }, 810 | "node_modules/arg": { 811 | "version": "5.0.2", 812 | "license": "MIT" 813 | }, 814 | "node_modules/argparse": { 815 | "version": "2.0.1", 816 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 817 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 818 | "peer": true 819 | }, 820 | "node_modules/aria-query": { 821 | "version": "5.3.0", 822 | "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.3.0.tgz", 823 | "integrity": "sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==", 824 | "dependencies": { 825 | "dequal": "^2.0.3" 826 | } 827 | }, 828 | "node_modules/array-buffer-byte-length": { 829 | "version": "1.0.1", 830 | "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", 831 | "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", 832 | "dependencies": { 833 | "call-bind": "^1.0.5", 834 | "is-array-buffer": "^3.0.4" 835 | }, 836 | "engines": { 837 | "node": ">= 0.4" 838 | }, 839 | "funding": { 840 | "url": "https://github.com/sponsors/ljharb" 841 | } 842 | }, 843 | "node_modules/array-includes": { 844 | "version": "3.1.7", 845 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", 846 | "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", 847 | "dependencies": { 848 | "call-bind": "^1.0.2", 849 | "define-properties": "^1.2.0", 850 | "es-abstract": "^1.22.1", 851 | "get-intrinsic": "^1.2.1", 852 | "is-string": "^1.0.7" 853 | }, 854 | "engines": { 855 | "node": ">= 0.4" 856 | }, 857 | "funding": { 858 | "url": "https://github.com/sponsors/ljharb" 859 | } 860 | }, 861 | "node_modules/array-union": { 862 | "version": "2.1.0", 863 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 864 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 865 | "engines": { 866 | "node": ">=8" 867 | } 868 | }, 869 | "node_modules/array.prototype.filter": { 870 | "version": "1.0.3", 871 | "resolved": "https://registry.npmjs.org/array.prototype.filter/-/array.prototype.filter-1.0.3.tgz", 872 | "integrity": "sha512-VizNcj/RGJiUyQBgzwxzE5oHdeuXY5hSbbmKMlphj1cy1Vl7Pn2asCGbSrru6hSQjmCzqTBPVWAF/whmEOVHbw==", 873 | "dependencies": { 874 | "call-bind": "^1.0.2", 875 | "define-properties": "^1.2.0", 876 | "es-abstract": "^1.22.1", 877 | "es-array-method-boxes-properly": "^1.0.0", 878 | "is-string": "^1.0.7" 879 | }, 880 | "engines": { 881 | "node": ">= 0.4" 882 | }, 883 | "funding": { 884 | "url": "https://github.com/sponsors/ljharb" 885 | } 886 | }, 887 | "node_modules/array.prototype.findlastindex": { 888 | "version": "1.2.4", 889 | "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.4.tgz", 890 | "integrity": "sha512-hzvSHUshSpCflDR1QMUBLHGHP1VIEBegT4pix9H/Z92Xw3ySoy6c2qh7lJWTJnRJ8JCZ9bJNCgTyYaJGcJu6xQ==", 891 | "dependencies": { 892 | "call-bind": "^1.0.5", 893 | "define-properties": "^1.2.1", 894 | "es-abstract": "^1.22.3", 895 | "es-errors": "^1.3.0", 896 | "es-shim-unscopables": "^1.0.2" 897 | }, 898 | "engines": { 899 | "node": ">= 0.4" 900 | }, 901 | "funding": { 902 | "url": "https://github.com/sponsors/ljharb" 903 | } 904 | }, 905 | "node_modules/array.prototype.flat": { 906 | "version": "1.3.2", 907 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", 908 | "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", 909 | "dependencies": { 910 | "call-bind": "^1.0.2", 911 | "define-properties": "^1.2.0", 912 | "es-abstract": "^1.22.1", 913 | "es-shim-unscopables": "^1.0.0" 914 | }, 915 | "engines": { 916 | "node": ">= 0.4" 917 | }, 918 | "funding": { 919 | "url": "https://github.com/sponsors/ljharb" 920 | } 921 | }, 922 | "node_modules/array.prototype.flatmap": { 923 | "version": "1.3.2", 924 | "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", 925 | "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", 926 | "dependencies": { 927 | "call-bind": "^1.0.2", 928 | "define-properties": "^1.2.0", 929 | "es-abstract": "^1.22.1", 930 | "es-shim-unscopables": "^1.0.0" 931 | }, 932 | "engines": { 933 | "node": ">= 0.4" 934 | }, 935 | "funding": { 936 | "url": "https://github.com/sponsors/ljharb" 937 | } 938 | }, 939 | "node_modules/array.prototype.tosorted": { 940 | "version": "1.1.3", 941 | "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.3.tgz", 942 | "integrity": "sha512-/DdH4TiTmOKzyQbp/eadcCVexiCb36xJg7HshYOYJnNZFDj33GEv0P7GxsynpShhq4OLYJzbGcBDkLsDt7MnNg==", 943 | "dependencies": { 944 | "call-bind": "^1.0.5", 945 | "define-properties": "^1.2.1", 946 | "es-abstract": "^1.22.3", 947 | "es-errors": "^1.1.0", 948 | "es-shim-unscopables": "^1.0.2" 949 | } 950 | }, 951 | "node_modules/arraybuffer.prototype.slice": { 952 | "version": "1.0.3", 953 | "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", 954 | "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", 955 | "dependencies": { 956 | "array-buffer-byte-length": "^1.0.1", 957 | "call-bind": "^1.0.5", 958 | "define-properties": "^1.2.1", 959 | "es-abstract": "^1.22.3", 960 | "es-errors": "^1.2.1", 961 | "get-intrinsic": "^1.2.3", 962 | "is-array-buffer": "^3.0.4", 963 | "is-shared-array-buffer": "^1.0.2" 964 | }, 965 | "engines": { 966 | "node": ">= 0.4" 967 | }, 968 | "funding": { 969 | "url": "https://github.com/sponsors/ljharb" 970 | } 971 | }, 972 | "node_modules/ast-types-flow": { 973 | "version": "0.0.8", 974 | "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.8.tgz", 975 | "integrity": "sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==" 976 | }, 977 | "node_modules/asynciterator.prototype": { 978 | "version": "1.0.0", 979 | "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", 980 | "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", 981 | "dependencies": { 982 | "has-symbols": "^1.0.3" 983 | } 984 | }, 985 | "node_modules/autoprefixer": { 986 | "version": "10.4.12", 987 | "dev": true, 988 | "funding": [ 989 | { 990 | "type": "opencollective", 991 | "url": "https://opencollective.com/postcss/" 992 | }, 993 | { 994 | "type": "tidelift", 995 | "url": "https://tidelift.com/funding/github/npm/autoprefixer" 996 | } 997 | ], 998 | "license": "MIT", 999 | "dependencies": { 1000 | "browserslist": "^4.21.4", 1001 | "caniuse-lite": "^1.0.30001407", 1002 | "fraction.js": "^4.2.0", 1003 | "normalize-range": "^0.1.2", 1004 | "picocolors": "^1.0.0", 1005 | "postcss-value-parser": "^4.2.0" 1006 | }, 1007 | "bin": { 1008 | "autoprefixer": "bin/autoprefixer" 1009 | }, 1010 | "engines": { 1011 | "node": "^10 || ^12 || >=14" 1012 | }, 1013 | "peerDependencies": { 1014 | "postcss": "^8.1.0" 1015 | } 1016 | }, 1017 | "node_modules/available-typed-arrays": { 1018 | "version": "1.0.6", 1019 | "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.6.tgz", 1020 | "integrity": "sha512-j1QzY8iPNPG4o4xmO3ptzpRxTciqD3MgEHtifP/YnJpIo58Xu+ne4BejlbkuaLfXn/nz6HFiw29bLpj2PNMdGg==", 1021 | "engines": { 1022 | "node": ">= 0.4" 1023 | }, 1024 | "funding": { 1025 | "url": "https://github.com/sponsors/ljharb" 1026 | } 1027 | }, 1028 | "node_modules/axe-core": { 1029 | "version": "4.7.0", 1030 | "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.7.0.tgz", 1031 | "integrity": "sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==", 1032 | "engines": { 1033 | "node": ">=4" 1034 | } 1035 | }, 1036 | "node_modules/axobject-query": { 1037 | "version": "3.2.1", 1038 | "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-3.2.1.tgz", 1039 | "integrity": "sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==", 1040 | "dependencies": { 1041 | "dequal": "^2.0.3" 1042 | } 1043 | }, 1044 | "node_modules/balanced-match": { 1045 | "version": "1.0.2", 1046 | "license": "MIT" 1047 | }, 1048 | "node_modules/binary-extensions": { 1049 | "version": "2.2.0", 1050 | "license": "MIT", 1051 | "engines": { 1052 | "node": ">=8" 1053 | } 1054 | }, 1055 | "node_modules/brace-expansion": { 1056 | "version": "1.1.11", 1057 | "license": "MIT", 1058 | "dependencies": { 1059 | "balanced-match": "^1.0.0", 1060 | "concat-map": "0.0.1" 1061 | } 1062 | }, 1063 | "node_modules/braces": { 1064 | "version": "3.0.2", 1065 | "license": "MIT", 1066 | "dependencies": { 1067 | "fill-range": "^7.0.1" 1068 | }, 1069 | "engines": { 1070 | "node": ">=8" 1071 | } 1072 | }, 1073 | "node_modules/browserslist": { 1074 | "version": "4.21.4", 1075 | "dev": true, 1076 | "funding": [ 1077 | { 1078 | "type": "opencollective", 1079 | "url": "https://opencollective.com/browserslist" 1080 | }, 1081 | { 1082 | "type": "tidelift", 1083 | "url": "https://tidelift.com/funding/github/npm/browserslist" 1084 | } 1085 | ], 1086 | "license": "MIT", 1087 | "dependencies": { 1088 | "caniuse-lite": "^1.0.30001400", 1089 | "electron-to-chromium": "^1.4.251", 1090 | "node-releases": "^2.0.6", 1091 | "update-browserslist-db": "^1.0.9" 1092 | }, 1093 | "bin": { 1094 | "browserslist": "cli.js" 1095 | }, 1096 | "engines": { 1097 | "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" 1098 | } 1099 | }, 1100 | "node_modules/busboy": { 1101 | "version": "1.6.0", 1102 | "dependencies": { 1103 | "streamsearch": "^1.1.0" 1104 | }, 1105 | "engines": { 1106 | "node": ">=10.16.0" 1107 | } 1108 | }, 1109 | "node_modules/call-bind": { 1110 | "version": "1.0.6", 1111 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.6.tgz", 1112 | "integrity": "sha512-Mj50FLHtlsoVfRfnHaZvyrooHcrlceNZdL/QBvJJVd9Ta55qCQK0gs4ss2oZDeV9zFCs6ewzYgVE5yfVmfFpVg==", 1113 | "dependencies": { 1114 | "es-errors": "^1.3.0", 1115 | "function-bind": "^1.1.2", 1116 | "get-intrinsic": "^1.2.3", 1117 | "set-function-length": "^1.2.0" 1118 | }, 1119 | "engines": { 1120 | "node": ">= 0.4" 1121 | }, 1122 | "funding": { 1123 | "url": "https://github.com/sponsors/ljharb" 1124 | } 1125 | }, 1126 | "node_modules/callsites": { 1127 | "version": "3.1.0", 1128 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 1129 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 1130 | "peer": true, 1131 | "engines": { 1132 | "node": ">=6" 1133 | } 1134 | }, 1135 | "node_modules/camelcase-css": { 1136 | "version": "2.0.1", 1137 | "license": "MIT", 1138 | "engines": { 1139 | "node": ">= 6" 1140 | } 1141 | }, 1142 | "node_modules/caniuse-lite": { 1143 | "version": "1.0.30001585", 1144 | "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001585.tgz", 1145 | "integrity": "sha512-yr2BWR1yLXQ8fMpdS/4ZZXpseBgE7o4g41x3a6AJOqZuOi+iE/WdJYAuZ6Y95i4Ohd2Y+9MzIWRR+uGABH4s3Q==", 1146 | "funding": [ 1147 | { 1148 | "type": "opencollective", 1149 | "url": "https://opencollective.com/browserslist" 1150 | }, 1151 | { 1152 | "type": "tidelift", 1153 | "url": "https://tidelift.com/funding/github/npm/caniuse-lite" 1154 | }, 1155 | { 1156 | "type": "github", 1157 | "url": "https://github.com/sponsors/ai" 1158 | } 1159 | ] 1160 | }, 1161 | "node_modules/chalk": { 1162 | "version": "4.1.2", 1163 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 1164 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 1165 | "peer": true, 1166 | "dependencies": { 1167 | "ansi-styles": "^4.1.0", 1168 | "supports-color": "^7.1.0" 1169 | }, 1170 | "engines": { 1171 | "node": ">=10" 1172 | }, 1173 | "funding": { 1174 | "url": "https://github.com/chalk/chalk?sponsor=1" 1175 | } 1176 | }, 1177 | "node_modules/chokidar": { 1178 | "version": "3.5.3", 1179 | "funding": [ 1180 | { 1181 | "type": "individual", 1182 | "url": "https://paulmillr.com/funding/" 1183 | } 1184 | ], 1185 | "license": "MIT", 1186 | "dependencies": { 1187 | "anymatch": "~3.1.2", 1188 | "braces": "~3.0.2", 1189 | "glob-parent": "~5.1.2", 1190 | "is-binary-path": "~2.1.0", 1191 | "is-glob": "~4.0.1", 1192 | "normalize-path": "~3.0.0", 1193 | "readdirp": "~3.6.0" 1194 | }, 1195 | "engines": { 1196 | "node": ">= 8.10.0" 1197 | }, 1198 | "optionalDependencies": { 1199 | "fsevents": "~2.3.2" 1200 | } 1201 | }, 1202 | "node_modules/classnames": { 1203 | "version": "2.3.1", 1204 | "license": "MIT" 1205 | }, 1206 | "node_modules/client-only": { 1207 | "version": "0.0.1", 1208 | "license": "MIT" 1209 | }, 1210 | "node_modules/color-convert": { 1211 | "version": "2.0.1", 1212 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 1213 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 1214 | "dependencies": { 1215 | "color-name": "~1.1.4" 1216 | }, 1217 | "engines": { 1218 | "node": ">=7.0.0" 1219 | } 1220 | }, 1221 | "node_modules/color-name": { 1222 | "version": "1.1.4", 1223 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 1224 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 1225 | }, 1226 | "node_modules/commander": { 1227 | "version": "4.1.1", 1228 | "license": "MIT", 1229 | "engines": { 1230 | "node": ">= 6" 1231 | } 1232 | }, 1233 | "node_modules/concat-map": { 1234 | "version": "0.0.1", 1235 | "license": "MIT" 1236 | }, 1237 | "node_modules/cross-spawn": { 1238 | "version": "7.0.3", 1239 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 1240 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 1241 | "dependencies": { 1242 | "path-key": "^3.1.0", 1243 | "shebang-command": "^2.0.0", 1244 | "which": "^2.0.1" 1245 | }, 1246 | "engines": { 1247 | "node": ">= 8" 1248 | } 1249 | }, 1250 | "node_modules/crypto-js": { 1251 | "version": "4.2.0", 1252 | "resolved": "https://registry.npmjs.org/crypto-js/-/crypto-js-4.2.0.tgz", 1253 | "integrity": "sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==" 1254 | }, 1255 | "node_modules/cssesc": { 1256 | "version": "3.0.0", 1257 | "license": "MIT", 1258 | "bin": { 1259 | "cssesc": "bin/cssesc" 1260 | }, 1261 | "engines": { 1262 | "node": ">=4" 1263 | } 1264 | }, 1265 | "node_modules/csstype": { 1266 | "version": "3.0.9", 1267 | "dev": true, 1268 | "license": "MIT" 1269 | }, 1270 | "node_modules/damerau-levenshtein": { 1271 | "version": "1.0.8", 1272 | "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", 1273 | "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==" 1274 | }, 1275 | "node_modules/debug": { 1276 | "version": "4.3.4", 1277 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 1278 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 1279 | "dependencies": { 1280 | "ms": "2.1.2" 1281 | }, 1282 | "engines": { 1283 | "node": ">=6.0" 1284 | }, 1285 | "peerDependenciesMeta": { 1286 | "supports-color": { 1287 | "optional": true 1288 | } 1289 | } 1290 | }, 1291 | "node_modules/deep-is": { 1292 | "version": "0.1.4", 1293 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 1294 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 1295 | "peer": true 1296 | }, 1297 | "node_modules/define-data-property": { 1298 | "version": "1.1.2", 1299 | "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.2.tgz", 1300 | "integrity": "sha512-SRtsSqsDbgpJBbW3pABMCOt6rQyeM8s8RiyeSN8jYG8sYmt/kGJejbydttUsnDs1tadr19tvhT4ShwMyoqAm4g==", 1301 | "dependencies": { 1302 | "es-errors": "^1.3.0", 1303 | "get-intrinsic": "^1.2.2", 1304 | "gopd": "^1.0.1", 1305 | "has-property-descriptors": "^1.0.1" 1306 | }, 1307 | "engines": { 1308 | "node": ">= 0.4" 1309 | } 1310 | }, 1311 | "node_modules/define-properties": { 1312 | "version": "1.2.1", 1313 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", 1314 | "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", 1315 | "dependencies": { 1316 | "define-data-property": "^1.0.1", 1317 | "has-property-descriptors": "^1.0.0", 1318 | "object-keys": "^1.1.1" 1319 | }, 1320 | "engines": { 1321 | "node": ">= 0.4" 1322 | }, 1323 | "funding": { 1324 | "url": "https://github.com/sponsors/ljharb" 1325 | } 1326 | }, 1327 | "node_modules/dequal": { 1328 | "version": "2.0.3", 1329 | "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", 1330 | "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", 1331 | "engines": { 1332 | "node": ">=6" 1333 | } 1334 | }, 1335 | "node_modules/didyoumean": { 1336 | "version": "1.2.2", 1337 | "license": "Apache-2.0" 1338 | }, 1339 | "node_modules/dir-glob": { 1340 | "version": "3.0.1", 1341 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 1342 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 1343 | "dependencies": { 1344 | "path-type": "^4.0.0" 1345 | }, 1346 | "engines": { 1347 | "node": ">=8" 1348 | } 1349 | }, 1350 | "node_modules/dlv": { 1351 | "version": "1.1.3", 1352 | "license": "MIT" 1353 | }, 1354 | "node_modules/doctrine": { 1355 | "version": "3.0.0", 1356 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 1357 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 1358 | "peer": true, 1359 | "dependencies": { 1360 | "esutils": "^2.0.2" 1361 | }, 1362 | "engines": { 1363 | "node": ">=6.0.0" 1364 | } 1365 | }, 1366 | "node_modules/eastasianwidth": { 1367 | "version": "0.2.0", 1368 | "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", 1369 | "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==" 1370 | }, 1371 | "node_modules/electron-to-chromium": { 1372 | "version": "1.4.261", 1373 | "dev": true, 1374 | "license": "ISC" 1375 | }, 1376 | "node_modules/emoji-regex": { 1377 | "version": "9.2.2", 1378 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", 1379 | "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==" 1380 | }, 1381 | "node_modules/enhanced-resolve": { 1382 | "version": "5.15.0", 1383 | "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", 1384 | "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", 1385 | "dependencies": { 1386 | "graceful-fs": "^4.2.4", 1387 | "tapable": "^2.2.0" 1388 | }, 1389 | "engines": { 1390 | "node": ">=10.13.0" 1391 | } 1392 | }, 1393 | "node_modules/es-abstract": { 1394 | "version": "1.22.3", 1395 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", 1396 | "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", 1397 | "dependencies": { 1398 | "array-buffer-byte-length": "^1.0.0", 1399 | "arraybuffer.prototype.slice": "^1.0.2", 1400 | "available-typed-arrays": "^1.0.5", 1401 | "call-bind": "^1.0.5", 1402 | "es-set-tostringtag": "^2.0.1", 1403 | "es-to-primitive": "^1.2.1", 1404 | "function.prototype.name": "^1.1.6", 1405 | "get-intrinsic": "^1.2.2", 1406 | "get-symbol-description": "^1.0.0", 1407 | "globalthis": "^1.0.3", 1408 | "gopd": "^1.0.1", 1409 | "has-property-descriptors": "^1.0.0", 1410 | "has-proto": "^1.0.1", 1411 | "has-symbols": "^1.0.3", 1412 | "hasown": "^2.0.0", 1413 | "internal-slot": "^1.0.5", 1414 | "is-array-buffer": "^3.0.2", 1415 | "is-callable": "^1.2.7", 1416 | "is-negative-zero": "^2.0.2", 1417 | "is-regex": "^1.1.4", 1418 | "is-shared-array-buffer": "^1.0.2", 1419 | "is-string": "^1.0.7", 1420 | "is-typed-array": "^1.1.12", 1421 | "is-weakref": "^1.0.2", 1422 | "object-inspect": "^1.13.1", 1423 | "object-keys": "^1.1.1", 1424 | "object.assign": "^4.1.4", 1425 | "regexp.prototype.flags": "^1.5.1", 1426 | "safe-array-concat": "^1.0.1", 1427 | "safe-regex-test": "^1.0.0", 1428 | "string.prototype.trim": "^1.2.8", 1429 | "string.prototype.trimend": "^1.0.7", 1430 | "string.prototype.trimstart": "^1.0.7", 1431 | "typed-array-buffer": "^1.0.0", 1432 | "typed-array-byte-length": "^1.0.0", 1433 | "typed-array-byte-offset": "^1.0.0", 1434 | "typed-array-length": "^1.0.4", 1435 | "unbox-primitive": "^1.0.2", 1436 | "which-typed-array": "^1.1.13" 1437 | }, 1438 | "engines": { 1439 | "node": ">= 0.4" 1440 | }, 1441 | "funding": { 1442 | "url": "https://github.com/sponsors/ljharb" 1443 | } 1444 | }, 1445 | "node_modules/es-array-method-boxes-properly": { 1446 | "version": "1.0.0", 1447 | "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", 1448 | "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" 1449 | }, 1450 | "node_modules/es-errors": { 1451 | "version": "1.3.0", 1452 | "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", 1453 | "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", 1454 | "engines": { 1455 | "node": ">= 0.4" 1456 | } 1457 | }, 1458 | "node_modules/es-iterator-helpers": { 1459 | "version": "1.0.16", 1460 | "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.16.tgz", 1461 | "integrity": "sha512-CREG2A9Vq7bpDRnldhFcMKuKArvkZtsH6Y0DHOHVg49qhf+LD8uEdUM3OkOAICv0EziGtDEnQtqY2/mfBILpFw==", 1462 | "dependencies": { 1463 | "asynciterator.prototype": "^1.0.0", 1464 | "call-bind": "^1.0.6", 1465 | "define-properties": "^1.2.1", 1466 | "es-abstract": "^1.22.3", 1467 | "es-errors": "^1.3.0", 1468 | "es-set-tostringtag": "^2.0.2", 1469 | "function-bind": "^1.1.2", 1470 | "get-intrinsic": "^1.2.4", 1471 | "globalthis": "^1.0.3", 1472 | "has-property-descriptors": "^1.0.1", 1473 | "has-proto": "^1.0.1", 1474 | "has-symbols": "^1.0.3", 1475 | "internal-slot": "^1.0.7", 1476 | "iterator.prototype": "^1.1.2", 1477 | "safe-array-concat": "^1.1.0" 1478 | }, 1479 | "engines": { 1480 | "node": ">= 0.4" 1481 | } 1482 | }, 1483 | "node_modules/es-set-tostringtag": { 1484 | "version": "2.0.2", 1485 | "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", 1486 | "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", 1487 | "dependencies": { 1488 | "get-intrinsic": "^1.2.2", 1489 | "has-tostringtag": "^1.0.0", 1490 | "hasown": "^2.0.0" 1491 | }, 1492 | "engines": { 1493 | "node": ">= 0.4" 1494 | } 1495 | }, 1496 | "node_modules/es-shim-unscopables": { 1497 | "version": "1.0.2", 1498 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz", 1499 | "integrity": "sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==", 1500 | "dependencies": { 1501 | "hasown": "^2.0.0" 1502 | } 1503 | }, 1504 | "node_modules/es-to-primitive": { 1505 | "version": "1.2.1", 1506 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 1507 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 1508 | "dependencies": { 1509 | "is-callable": "^1.1.4", 1510 | "is-date-object": "^1.0.1", 1511 | "is-symbol": "^1.0.2" 1512 | }, 1513 | "engines": { 1514 | "node": ">= 0.4" 1515 | }, 1516 | "funding": { 1517 | "url": "https://github.com/sponsors/ljharb" 1518 | } 1519 | }, 1520 | "node_modules/escalade": { 1521 | "version": "3.1.1", 1522 | "dev": true, 1523 | "license": "MIT", 1524 | "engines": { 1525 | "node": ">=6" 1526 | } 1527 | }, 1528 | "node_modules/escape-string-regexp": { 1529 | "version": "4.0.0", 1530 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 1531 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 1532 | "peer": true, 1533 | "engines": { 1534 | "node": ">=10" 1535 | }, 1536 | "funding": { 1537 | "url": "https://github.com/sponsors/sindresorhus" 1538 | } 1539 | }, 1540 | "node_modules/eslint": { 1541 | "version": "8.56.0", 1542 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.56.0.tgz", 1543 | "integrity": "sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==", 1544 | "peer": true, 1545 | "dependencies": { 1546 | "@eslint-community/eslint-utils": "^4.2.0", 1547 | "@eslint-community/regexpp": "^4.6.1", 1548 | "@eslint/eslintrc": "^2.1.4", 1549 | "@eslint/js": "8.56.0", 1550 | "@humanwhocodes/config-array": "^0.11.13", 1551 | "@humanwhocodes/module-importer": "^1.0.1", 1552 | "@nodelib/fs.walk": "^1.2.8", 1553 | "@ungap/structured-clone": "^1.2.0", 1554 | "ajv": "^6.12.4", 1555 | "chalk": "^4.0.0", 1556 | "cross-spawn": "^7.0.2", 1557 | "debug": "^4.3.2", 1558 | "doctrine": "^3.0.0", 1559 | "escape-string-regexp": "^4.0.0", 1560 | "eslint-scope": "^7.2.2", 1561 | "eslint-visitor-keys": "^3.4.3", 1562 | "espree": "^9.6.1", 1563 | "esquery": "^1.4.2", 1564 | "esutils": "^2.0.2", 1565 | "fast-deep-equal": "^3.1.3", 1566 | "file-entry-cache": "^6.0.1", 1567 | "find-up": "^5.0.0", 1568 | "glob-parent": "^6.0.2", 1569 | "globals": "^13.19.0", 1570 | "graphemer": "^1.4.0", 1571 | "ignore": "^5.2.0", 1572 | "imurmurhash": "^0.1.4", 1573 | "is-glob": "^4.0.0", 1574 | "is-path-inside": "^3.0.3", 1575 | "js-yaml": "^4.1.0", 1576 | "json-stable-stringify-without-jsonify": "^1.0.1", 1577 | "levn": "^0.4.1", 1578 | "lodash.merge": "^4.6.2", 1579 | "minimatch": "^3.1.2", 1580 | "natural-compare": "^1.4.0", 1581 | "optionator": "^0.9.3", 1582 | "strip-ansi": "^6.0.1", 1583 | "text-table": "^0.2.0" 1584 | }, 1585 | "bin": { 1586 | "eslint": "bin/eslint.js" 1587 | }, 1588 | "engines": { 1589 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1590 | }, 1591 | "funding": { 1592 | "url": "https://opencollective.com/eslint" 1593 | } 1594 | }, 1595 | "node_modules/eslint-config-next": { 1596 | "version": "14.1.0", 1597 | "resolved": "https://registry.npmjs.org/eslint-config-next/-/eslint-config-next-14.1.0.tgz", 1598 | "integrity": "sha512-SBX2ed7DoRFXC6CQSLc/SbLY9Ut6HxNB2wPTcoIWjUMd7aF7O/SIE7111L8FdZ9TXsNV4pulUDnfthpyPtbFUg==", 1599 | "dependencies": { 1600 | "@next/eslint-plugin-next": "14.1.0", 1601 | "@rushstack/eslint-patch": "^1.3.3", 1602 | "@typescript-eslint/parser": "^5.4.2 || ^6.0.0", 1603 | "eslint-import-resolver-node": "^0.3.6", 1604 | "eslint-import-resolver-typescript": "^3.5.2", 1605 | "eslint-plugin-import": "^2.28.1", 1606 | "eslint-plugin-jsx-a11y": "^6.7.1", 1607 | "eslint-plugin-react": "^7.33.2", 1608 | "eslint-plugin-react-hooks": "^4.5.0 || 5.0.0-canary-7118f5dd7-20230705" 1609 | }, 1610 | "peerDependencies": { 1611 | "eslint": "^7.23.0 || ^8.0.0", 1612 | "typescript": ">=3.3.1" 1613 | }, 1614 | "peerDependenciesMeta": { 1615 | "typescript": { 1616 | "optional": true 1617 | } 1618 | } 1619 | }, 1620 | "node_modules/eslint-import-resolver-node": { 1621 | "version": "0.3.9", 1622 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", 1623 | "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", 1624 | "dependencies": { 1625 | "debug": "^3.2.7", 1626 | "is-core-module": "^2.13.0", 1627 | "resolve": "^1.22.4" 1628 | } 1629 | }, 1630 | "node_modules/eslint-import-resolver-node/node_modules/debug": { 1631 | "version": "3.2.7", 1632 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1633 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1634 | "dependencies": { 1635 | "ms": "^2.1.1" 1636 | } 1637 | }, 1638 | "node_modules/eslint-import-resolver-node/node_modules/resolve": { 1639 | "version": "1.22.8", 1640 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", 1641 | "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", 1642 | "dependencies": { 1643 | "is-core-module": "^2.13.0", 1644 | "path-parse": "^1.0.7", 1645 | "supports-preserve-symlinks-flag": "^1.0.0" 1646 | }, 1647 | "bin": { 1648 | "resolve": "bin/resolve" 1649 | }, 1650 | "funding": { 1651 | "url": "https://github.com/sponsors/ljharb" 1652 | } 1653 | }, 1654 | "node_modules/eslint-import-resolver-typescript": { 1655 | "version": "3.6.1", 1656 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-typescript/-/eslint-import-resolver-typescript-3.6.1.tgz", 1657 | "integrity": "sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==", 1658 | "dependencies": { 1659 | "debug": "^4.3.4", 1660 | "enhanced-resolve": "^5.12.0", 1661 | "eslint-module-utils": "^2.7.4", 1662 | "fast-glob": "^3.3.1", 1663 | "get-tsconfig": "^4.5.0", 1664 | "is-core-module": "^2.11.0", 1665 | "is-glob": "^4.0.3" 1666 | }, 1667 | "engines": { 1668 | "node": "^14.18.0 || >=16.0.0" 1669 | }, 1670 | "funding": { 1671 | "url": "https://opencollective.com/unts/projects/eslint-import-resolver-ts" 1672 | }, 1673 | "peerDependencies": { 1674 | "eslint": "*", 1675 | "eslint-plugin-import": "*" 1676 | } 1677 | }, 1678 | "node_modules/eslint-module-utils": { 1679 | "version": "2.8.0", 1680 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", 1681 | "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", 1682 | "dependencies": { 1683 | "debug": "^3.2.7" 1684 | }, 1685 | "engines": { 1686 | "node": ">=4" 1687 | }, 1688 | "peerDependenciesMeta": { 1689 | "eslint": { 1690 | "optional": true 1691 | } 1692 | } 1693 | }, 1694 | "node_modules/eslint-module-utils/node_modules/debug": { 1695 | "version": "3.2.7", 1696 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1697 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1698 | "dependencies": { 1699 | "ms": "^2.1.1" 1700 | } 1701 | }, 1702 | "node_modules/eslint-plugin-import": { 1703 | "version": "2.29.1", 1704 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz", 1705 | "integrity": "sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==", 1706 | "dependencies": { 1707 | "array-includes": "^3.1.7", 1708 | "array.prototype.findlastindex": "^1.2.3", 1709 | "array.prototype.flat": "^1.3.2", 1710 | "array.prototype.flatmap": "^1.3.2", 1711 | "debug": "^3.2.7", 1712 | "doctrine": "^2.1.0", 1713 | "eslint-import-resolver-node": "^0.3.9", 1714 | "eslint-module-utils": "^2.8.0", 1715 | "hasown": "^2.0.0", 1716 | "is-core-module": "^2.13.1", 1717 | "is-glob": "^4.0.3", 1718 | "minimatch": "^3.1.2", 1719 | "object.fromentries": "^2.0.7", 1720 | "object.groupby": "^1.0.1", 1721 | "object.values": "^1.1.7", 1722 | "semver": "^6.3.1", 1723 | "tsconfig-paths": "^3.15.0" 1724 | }, 1725 | "engines": { 1726 | "node": ">=4" 1727 | }, 1728 | "peerDependencies": { 1729 | "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" 1730 | } 1731 | }, 1732 | "node_modules/eslint-plugin-import/node_modules/debug": { 1733 | "version": "3.2.7", 1734 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 1735 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 1736 | "dependencies": { 1737 | "ms": "^2.1.1" 1738 | } 1739 | }, 1740 | "node_modules/eslint-plugin-import/node_modules/doctrine": { 1741 | "version": "2.1.0", 1742 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1743 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1744 | "dependencies": { 1745 | "esutils": "^2.0.2" 1746 | }, 1747 | "engines": { 1748 | "node": ">=0.10.0" 1749 | } 1750 | }, 1751 | "node_modules/eslint-plugin-import/node_modules/semver": { 1752 | "version": "6.3.1", 1753 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 1754 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 1755 | "bin": { 1756 | "semver": "bin/semver.js" 1757 | } 1758 | }, 1759 | "node_modules/eslint-plugin-jsx-a11y": { 1760 | "version": "6.8.0", 1761 | "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.8.0.tgz", 1762 | "integrity": "sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==", 1763 | "dependencies": { 1764 | "@babel/runtime": "^7.23.2", 1765 | "aria-query": "^5.3.0", 1766 | "array-includes": "^3.1.7", 1767 | "array.prototype.flatmap": "^1.3.2", 1768 | "ast-types-flow": "^0.0.8", 1769 | "axe-core": "=4.7.0", 1770 | "axobject-query": "^3.2.1", 1771 | "damerau-levenshtein": "^1.0.8", 1772 | "emoji-regex": "^9.2.2", 1773 | "es-iterator-helpers": "^1.0.15", 1774 | "hasown": "^2.0.0", 1775 | "jsx-ast-utils": "^3.3.5", 1776 | "language-tags": "^1.0.9", 1777 | "minimatch": "^3.1.2", 1778 | "object.entries": "^1.1.7", 1779 | "object.fromentries": "^2.0.7" 1780 | }, 1781 | "engines": { 1782 | "node": ">=4.0" 1783 | }, 1784 | "peerDependencies": { 1785 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1786 | } 1787 | }, 1788 | "node_modules/eslint-plugin-react": { 1789 | "version": "7.33.2", 1790 | "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", 1791 | "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", 1792 | "dependencies": { 1793 | "array-includes": "^3.1.6", 1794 | "array.prototype.flatmap": "^1.3.1", 1795 | "array.prototype.tosorted": "^1.1.1", 1796 | "doctrine": "^2.1.0", 1797 | "es-iterator-helpers": "^1.0.12", 1798 | "estraverse": "^5.3.0", 1799 | "jsx-ast-utils": "^2.4.1 || ^3.0.0", 1800 | "minimatch": "^3.1.2", 1801 | "object.entries": "^1.1.6", 1802 | "object.fromentries": "^2.0.6", 1803 | "object.hasown": "^1.1.2", 1804 | "object.values": "^1.1.6", 1805 | "prop-types": "^15.8.1", 1806 | "resolve": "^2.0.0-next.4", 1807 | "semver": "^6.3.1", 1808 | "string.prototype.matchall": "^4.0.8" 1809 | }, 1810 | "engines": { 1811 | "node": ">=4" 1812 | }, 1813 | "peerDependencies": { 1814 | "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" 1815 | } 1816 | }, 1817 | "node_modules/eslint-plugin-react-hooks": { 1818 | "version": "4.6.0", 1819 | "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", 1820 | "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", 1821 | "engines": { 1822 | "node": ">=10" 1823 | }, 1824 | "peerDependencies": { 1825 | "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" 1826 | } 1827 | }, 1828 | "node_modules/eslint-plugin-react/node_modules/doctrine": { 1829 | "version": "2.1.0", 1830 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 1831 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 1832 | "dependencies": { 1833 | "esutils": "^2.0.2" 1834 | }, 1835 | "engines": { 1836 | "node": ">=0.10.0" 1837 | } 1838 | }, 1839 | "node_modules/eslint-plugin-react/node_modules/resolve": { 1840 | "version": "2.0.0-next.5", 1841 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.5.tgz", 1842 | "integrity": "sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==", 1843 | "dependencies": { 1844 | "is-core-module": "^2.13.0", 1845 | "path-parse": "^1.0.7", 1846 | "supports-preserve-symlinks-flag": "^1.0.0" 1847 | }, 1848 | "bin": { 1849 | "resolve": "bin/resolve" 1850 | }, 1851 | "funding": { 1852 | "url": "https://github.com/sponsors/ljharb" 1853 | } 1854 | }, 1855 | "node_modules/eslint-plugin-react/node_modules/semver": { 1856 | "version": "6.3.1", 1857 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", 1858 | "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", 1859 | "bin": { 1860 | "semver": "bin/semver.js" 1861 | } 1862 | }, 1863 | "node_modules/eslint-scope": { 1864 | "version": "7.2.2", 1865 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", 1866 | "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", 1867 | "peer": true, 1868 | "dependencies": { 1869 | "esrecurse": "^4.3.0", 1870 | "estraverse": "^5.2.0" 1871 | }, 1872 | "engines": { 1873 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1874 | }, 1875 | "funding": { 1876 | "url": "https://opencollective.com/eslint" 1877 | } 1878 | }, 1879 | "node_modules/eslint-visitor-keys": { 1880 | "version": "3.4.3", 1881 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", 1882 | "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", 1883 | "engines": { 1884 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1885 | }, 1886 | "funding": { 1887 | "url": "https://opencollective.com/eslint" 1888 | } 1889 | }, 1890 | "node_modules/eslint/node_modules/glob-parent": { 1891 | "version": "6.0.2", 1892 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 1893 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 1894 | "peer": true, 1895 | "dependencies": { 1896 | "is-glob": "^4.0.3" 1897 | }, 1898 | "engines": { 1899 | "node": ">=10.13.0" 1900 | } 1901 | }, 1902 | "node_modules/espree": { 1903 | "version": "9.6.1", 1904 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", 1905 | "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", 1906 | "peer": true, 1907 | "dependencies": { 1908 | "acorn": "^8.9.0", 1909 | "acorn-jsx": "^5.3.2", 1910 | "eslint-visitor-keys": "^3.4.1" 1911 | }, 1912 | "engines": { 1913 | "node": "^12.22.0 || ^14.17.0 || >=16.0.0" 1914 | }, 1915 | "funding": { 1916 | "url": "https://opencollective.com/eslint" 1917 | } 1918 | }, 1919 | "node_modules/esquery": { 1920 | "version": "1.5.0", 1921 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", 1922 | "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", 1923 | "peer": true, 1924 | "dependencies": { 1925 | "estraverse": "^5.1.0" 1926 | }, 1927 | "engines": { 1928 | "node": ">=0.10" 1929 | } 1930 | }, 1931 | "node_modules/esrecurse": { 1932 | "version": "4.3.0", 1933 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 1934 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 1935 | "peer": true, 1936 | "dependencies": { 1937 | "estraverse": "^5.2.0" 1938 | }, 1939 | "engines": { 1940 | "node": ">=4.0" 1941 | } 1942 | }, 1943 | "node_modules/estraverse": { 1944 | "version": "5.3.0", 1945 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 1946 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 1947 | "engines": { 1948 | "node": ">=4.0" 1949 | } 1950 | }, 1951 | "node_modules/esutils": { 1952 | "version": "2.0.3", 1953 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 1954 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 1955 | "engines": { 1956 | "node": ">=0.10.0" 1957 | } 1958 | }, 1959 | "node_modules/fast-deep-equal": { 1960 | "version": "3.1.3", 1961 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 1962 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 1963 | "peer": true 1964 | }, 1965 | "node_modules/fast-glob": { 1966 | "version": "3.3.2", 1967 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", 1968 | "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", 1969 | "dependencies": { 1970 | "@nodelib/fs.stat": "^2.0.2", 1971 | "@nodelib/fs.walk": "^1.2.3", 1972 | "glob-parent": "^5.1.2", 1973 | "merge2": "^1.3.0", 1974 | "micromatch": "^4.0.4" 1975 | }, 1976 | "engines": { 1977 | "node": ">=8.6.0" 1978 | } 1979 | }, 1980 | "node_modules/fast-json-stable-stringify": { 1981 | "version": "2.1.0", 1982 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 1983 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 1984 | "peer": true 1985 | }, 1986 | "node_modules/fast-levenshtein": { 1987 | "version": "2.0.6", 1988 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 1989 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 1990 | "peer": true 1991 | }, 1992 | "node_modules/fastq": { 1993 | "version": "1.13.0", 1994 | "license": "ISC", 1995 | "dependencies": { 1996 | "reusify": "^1.0.4" 1997 | } 1998 | }, 1999 | "node_modules/file-entry-cache": { 2000 | "version": "6.0.1", 2001 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 2002 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 2003 | "peer": true, 2004 | "dependencies": { 2005 | "flat-cache": "^3.0.4" 2006 | }, 2007 | "engines": { 2008 | "node": "^10.12.0 || >=12.0.0" 2009 | } 2010 | }, 2011 | "node_modules/fill-range": { 2012 | "version": "7.0.1", 2013 | "license": "MIT", 2014 | "dependencies": { 2015 | "to-regex-range": "^5.0.1" 2016 | }, 2017 | "engines": { 2018 | "node": ">=8" 2019 | } 2020 | }, 2021 | "node_modules/find-up": { 2022 | "version": "5.0.0", 2023 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 2024 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 2025 | "peer": true, 2026 | "dependencies": { 2027 | "locate-path": "^6.0.0", 2028 | "path-exists": "^4.0.0" 2029 | }, 2030 | "engines": { 2031 | "node": ">=10" 2032 | }, 2033 | "funding": { 2034 | "url": "https://github.com/sponsors/sindresorhus" 2035 | } 2036 | }, 2037 | "node_modules/flat-cache": { 2038 | "version": "3.2.0", 2039 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", 2040 | "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", 2041 | "peer": true, 2042 | "dependencies": { 2043 | "flatted": "^3.2.9", 2044 | "keyv": "^4.5.3", 2045 | "rimraf": "^3.0.2" 2046 | }, 2047 | "engines": { 2048 | "node": "^10.12.0 || >=12.0.0" 2049 | } 2050 | }, 2051 | "node_modules/flatted": { 2052 | "version": "3.2.9", 2053 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", 2054 | "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", 2055 | "peer": true 2056 | }, 2057 | "node_modules/for-each": { 2058 | "version": "0.3.3", 2059 | "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", 2060 | "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", 2061 | "dependencies": { 2062 | "is-callable": "^1.1.3" 2063 | } 2064 | }, 2065 | "node_modules/foreground-child": { 2066 | "version": "3.1.1", 2067 | "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", 2068 | "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", 2069 | "dependencies": { 2070 | "cross-spawn": "^7.0.0", 2071 | "signal-exit": "^4.0.1" 2072 | }, 2073 | "engines": { 2074 | "node": ">=14" 2075 | }, 2076 | "funding": { 2077 | "url": "https://github.com/sponsors/isaacs" 2078 | } 2079 | }, 2080 | "node_modules/fraction.js": { 2081 | "version": "4.2.0", 2082 | "dev": true, 2083 | "license": "MIT", 2084 | "engines": { 2085 | "node": "*" 2086 | }, 2087 | "funding": { 2088 | "type": "patreon", 2089 | "url": "https://www.patreon.com/infusion" 2090 | } 2091 | }, 2092 | "node_modules/framer-motion": { 2093 | "version": "5.0.1", 2094 | "license": "MIT", 2095 | "dependencies": { 2096 | "framesync": "6.0.1", 2097 | "hey-listen": "^1.0.8", 2098 | "popmotion": "10.0.2", 2099 | "style-value-types": "5.0.0", 2100 | "tslib": "^2.1.0" 2101 | }, 2102 | "optionalDependencies": { 2103 | "@emotion/is-prop-valid": "^0.8.2" 2104 | }, 2105 | "peerDependencies": { 2106 | "react": ">=16.8 || ^17.0.0", 2107 | "react-dom": ">=16.8 || ^17.0.0" 2108 | } 2109 | }, 2110 | "node_modules/framesync": { 2111 | "version": "6.0.1", 2112 | "license": "MIT", 2113 | "dependencies": { 2114 | "tslib": "^2.1.0" 2115 | } 2116 | }, 2117 | "node_modules/fs.realpath": { 2118 | "version": "1.0.0", 2119 | "license": "ISC" 2120 | }, 2121 | "node_modules/fsevents": { 2122 | "version": "2.3.2", 2123 | "license": "MIT", 2124 | "optional": true, 2125 | "os": [ 2126 | "darwin" 2127 | ], 2128 | "engines": { 2129 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0" 2130 | } 2131 | }, 2132 | "node_modules/function-bind": { 2133 | "version": "1.1.2", 2134 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", 2135 | "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", 2136 | "funding": { 2137 | "url": "https://github.com/sponsors/ljharb" 2138 | } 2139 | }, 2140 | "node_modules/function.prototype.name": { 2141 | "version": "1.1.6", 2142 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", 2143 | "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", 2144 | "dependencies": { 2145 | "call-bind": "^1.0.2", 2146 | "define-properties": "^1.2.0", 2147 | "es-abstract": "^1.22.1", 2148 | "functions-have-names": "^1.2.3" 2149 | }, 2150 | "engines": { 2151 | "node": ">= 0.4" 2152 | }, 2153 | "funding": { 2154 | "url": "https://github.com/sponsors/ljharb" 2155 | } 2156 | }, 2157 | "node_modules/functions-have-names": { 2158 | "version": "1.2.3", 2159 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 2160 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 2161 | "funding": { 2162 | "url": "https://github.com/sponsors/ljharb" 2163 | } 2164 | }, 2165 | "node_modules/get-intrinsic": { 2166 | "version": "1.2.4", 2167 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", 2168 | "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", 2169 | "dependencies": { 2170 | "es-errors": "^1.3.0", 2171 | "function-bind": "^1.1.2", 2172 | "has-proto": "^1.0.1", 2173 | "has-symbols": "^1.0.3", 2174 | "hasown": "^2.0.0" 2175 | }, 2176 | "engines": { 2177 | "node": ">= 0.4" 2178 | }, 2179 | "funding": { 2180 | "url": "https://github.com/sponsors/ljharb" 2181 | } 2182 | }, 2183 | "node_modules/get-symbol-description": { 2184 | "version": "1.0.2", 2185 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", 2186 | "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", 2187 | "dependencies": { 2188 | "call-bind": "^1.0.5", 2189 | "es-errors": "^1.3.0", 2190 | "get-intrinsic": "^1.2.4" 2191 | }, 2192 | "engines": { 2193 | "node": ">= 0.4" 2194 | }, 2195 | "funding": { 2196 | "url": "https://github.com/sponsors/ljharb" 2197 | } 2198 | }, 2199 | "node_modules/get-tsconfig": { 2200 | "version": "4.7.2", 2201 | "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz", 2202 | "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", 2203 | "dependencies": { 2204 | "resolve-pkg-maps": "^1.0.0" 2205 | }, 2206 | "funding": { 2207 | "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" 2208 | } 2209 | }, 2210 | "node_modules/glob": { 2211 | "version": "7.1.6", 2212 | "license": "ISC", 2213 | "dependencies": { 2214 | "fs.realpath": "^1.0.0", 2215 | "inflight": "^1.0.4", 2216 | "inherits": "2", 2217 | "minimatch": "^3.0.4", 2218 | "once": "^1.3.0", 2219 | "path-is-absolute": "^1.0.0" 2220 | }, 2221 | "engines": { 2222 | "node": "*" 2223 | }, 2224 | "funding": { 2225 | "url": "https://github.com/sponsors/isaacs" 2226 | } 2227 | }, 2228 | "node_modules/glob-parent": { 2229 | "version": "5.1.2", 2230 | "license": "ISC", 2231 | "dependencies": { 2232 | "is-glob": "^4.0.1" 2233 | }, 2234 | "engines": { 2235 | "node": ">= 6" 2236 | } 2237 | }, 2238 | "node_modules/globals": { 2239 | "version": "13.24.0", 2240 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", 2241 | "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", 2242 | "peer": true, 2243 | "dependencies": { 2244 | "type-fest": "^0.20.2" 2245 | }, 2246 | "engines": { 2247 | "node": ">=8" 2248 | }, 2249 | "funding": { 2250 | "url": "https://github.com/sponsors/sindresorhus" 2251 | } 2252 | }, 2253 | "node_modules/globalthis": { 2254 | "version": "1.0.3", 2255 | "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", 2256 | "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", 2257 | "dependencies": { 2258 | "define-properties": "^1.1.3" 2259 | }, 2260 | "engines": { 2261 | "node": ">= 0.4" 2262 | }, 2263 | "funding": { 2264 | "url": "https://github.com/sponsors/ljharb" 2265 | } 2266 | }, 2267 | "node_modules/globby": { 2268 | "version": "11.1.0", 2269 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 2270 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 2271 | "dependencies": { 2272 | "array-union": "^2.1.0", 2273 | "dir-glob": "^3.0.1", 2274 | "fast-glob": "^3.2.9", 2275 | "ignore": "^5.2.0", 2276 | "merge2": "^1.4.1", 2277 | "slash": "^3.0.0" 2278 | }, 2279 | "engines": { 2280 | "node": ">=10" 2281 | }, 2282 | "funding": { 2283 | "url": "https://github.com/sponsors/sindresorhus" 2284 | } 2285 | }, 2286 | "node_modules/gopd": { 2287 | "version": "1.0.1", 2288 | "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", 2289 | "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", 2290 | "dependencies": { 2291 | "get-intrinsic": "^1.1.3" 2292 | }, 2293 | "funding": { 2294 | "url": "https://github.com/sponsors/ljharb" 2295 | } 2296 | }, 2297 | "node_modules/graceful-fs": { 2298 | "version": "4.2.11", 2299 | "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", 2300 | "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" 2301 | }, 2302 | "node_modules/graphemer": { 2303 | "version": "1.4.0", 2304 | "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", 2305 | "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", 2306 | "peer": true 2307 | }, 2308 | "node_modules/has-bigints": { 2309 | "version": "1.0.2", 2310 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 2311 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 2312 | "funding": { 2313 | "url": "https://github.com/sponsors/ljharb" 2314 | } 2315 | }, 2316 | "node_modules/has-flag": { 2317 | "version": "4.0.0", 2318 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 2319 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 2320 | "peer": true, 2321 | "engines": { 2322 | "node": ">=8" 2323 | } 2324 | }, 2325 | "node_modules/has-property-descriptors": { 2326 | "version": "1.0.1", 2327 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", 2328 | "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", 2329 | "dependencies": { 2330 | "get-intrinsic": "^1.2.2" 2331 | }, 2332 | "funding": { 2333 | "url": "https://github.com/sponsors/ljharb" 2334 | } 2335 | }, 2336 | "node_modules/has-proto": { 2337 | "version": "1.0.1", 2338 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", 2339 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", 2340 | "engines": { 2341 | "node": ">= 0.4" 2342 | }, 2343 | "funding": { 2344 | "url": "https://github.com/sponsors/ljharb" 2345 | } 2346 | }, 2347 | "node_modules/has-symbols": { 2348 | "version": "1.0.3", 2349 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 2350 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 2351 | "engines": { 2352 | "node": ">= 0.4" 2353 | }, 2354 | "funding": { 2355 | "url": "https://github.com/sponsors/ljharb" 2356 | } 2357 | }, 2358 | "node_modules/has-tostringtag": { 2359 | "version": "1.0.2", 2360 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", 2361 | "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", 2362 | "dependencies": { 2363 | "has-symbols": "^1.0.3" 2364 | }, 2365 | "engines": { 2366 | "node": ">= 0.4" 2367 | }, 2368 | "funding": { 2369 | "url": "https://github.com/sponsors/ljharb" 2370 | } 2371 | }, 2372 | "node_modules/hasown": { 2373 | "version": "2.0.0", 2374 | "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", 2375 | "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", 2376 | "dependencies": { 2377 | "function-bind": "^1.1.2" 2378 | }, 2379 | "engines": { 2380 | "node": ">= 0.4" 2381 | } 2382 | }, 2383 | "node_modules/hey-listen": { 2384 | "version": "1.0.8", 2385 | "license": "MIT" 2386 | }, 2387 | "node_modules/ignore": { 2388 | "version": "5.3.1", 2389 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", 2390 | "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", 2391 | "engines": { 2392 | "node": ">= 4" 2393 | } 2394 | }, 2395 | "node_modules/import-fresh": { 2396 | "version": "3.3.0", 2397 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 2398 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 2399 | "peer": true, 2400 | "dependencies": { 2401 | "parent-module": "^1.0.0", 2402 | "resolve-from": "^4.0.0" 2403 | }, 2404 | "engines": { 2405 | "node": ">=6" 2406 | }, 2407 | "funding": { 2408 | "url": "https://github.com/sponsors/sindresorhus" 2409 | } 2410 | }, 2411 | "node_modules/imurmurhash": { 2412 | "version": "0.1.4", 2413 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 2414 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 2415 | "peer": true, 2416 | "engines": { 2417 | "node": ">=0.8.19" 2418 | } 2419 | }, 2420 | "node_modules/inflight": { 2421 | "version": "1.0.6", 2422 | "license": "ISC", 2423 | "dependencies": { 2424 | "once": "^1.3.0", 2425 | "wrappy": "1" 2426 | } 2427 | }, 2428 | "node_modules/inherits": { 2429 | "version": "2.0.4", 2430 | "license": "ISC" 2431 | }, 2432 | "node_modules/internal-slot": { 2433 | "version": "1.0.7", 2434 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", 2435 | "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", 2436 | "dependencies": { 2437 | "es-errors": "^1.3.0", 2438 | "hasown": "^2.0.0", 2439 | "side-channel": "^1.0.4" 2440 | }, 2441 | "engines": { 2442 | "node": ">= 0.4" 2443 | } 2444 | }, 2445 | "node_modules/is-array-buffer": { 2446 | "version": "3.0.4", 2447 | "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", 2448 | "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", 2449 | "dependencies": { 2450 | "call-bind": "^1.0.2", 2451 | "get-intrinsic": "^1.2.1" 2452 | }, 2453 | "engines": { 2454 | "node": ">= 0.4" 2455 | }, 2456 | "funding": { 2457 | "url": "https://github.com/sponsors/ljharb" 2458 | } 2459 | }, 2460 | "node_modules/is-async-function": { 2461 | "version": "2.0.0", 2462 | "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", 2463 | "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", 2464 | "dependencies": { 2465 | "has-tostringtag": "^1.0.0" 2466 | }, 2467 | "engines": { 2468 | "node": ">= 0.4" 2469 | }, 2470 | "funding": { 2471 | "url": "https://github.com/sponsors/ljharb" 2472 | } 2473 | }, 2474 | "node_modules/is-bigint": { 2475 | "version": "1.0.4", 2476 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 2477 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 2478 | "dependencies": { 2479 | "has-bigints": "^1.0.1" 2480 | }, 2481 | "funding": { 2482 | "url": "https://github.com/sponsors/ljharb" 2483 | } 2484 | }, 2485 | "node_modules/is-binary-path": { 2486 | "version": "2.1.0", 2487 | "license": "MIT", 2488 | "dependencies": { 2489 | "binary-extensions": "^2.0.0" 2490 | }, 2491 | "engines": { 2492 | "node": ">=8" 2493 | } 2494 | }, 2495 | "node_modules/is-boolean-object": { 2496 | "version": "1.1.2", 2497 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 2498 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 2499 | "dependencies": { 2500 | "call-bind": "^1.0.2", 2501 | "has-tostringtag": "^1.0.0" 2502 | }, 2503 | "engines": { 2504 | "node": ">= 0.4" 2505 | }, 2506 | "funding": { 2507 | "url": "https://github.com/sponsors/ljharb" 2508 | } 2509 | }, 2510 | "node_modules/is-callable": { 2511 | "version": "1.2.7", 2512 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", 2513 | "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", 2514 | "engines": { 2515 | "node": ">= 0.4" 2516 | }, 2517 | "funding": { 2518 | "url": "https://github.com/sponsors/ljharb" 2519 | } 2520 | }, 2521 | "node_modules/is-core-module": { 2522 | "version": "2.13.1", 2523 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", 2524 | "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", 2525 | "dependencies": { 2526 | "hasown": "^2.0.0" 2527 | }, 2528 | "funding": { 2529 | "url": "https://github.com/sponsors/ljharb" 2530 | } 2531 | }, 2532 | "node_modules/is-date-object": { 2533 | "version": "1.0.5", 2534 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 2535 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 2536 | "dependencies": { 2537 | "has-tostringtag": "^1.0.0" 2538 | }, 2539 | "engines": { 2540 | "node": ">= 0.4" 2541 | }, 2542 | "funding": { 2543 | "url": "https://github.com/sponsors/ljharb" 2544 | } 2545 | }, 2546 | "node_modules/is-extglob": { 2547 | "version": "2.1.1", 2548 | "license": "MIT", 2549 | "engines": { 2550 | "node": ">=0.10.0" 2551 | } 2552 | }, 2553 | "node_modules/is-finalizationregistry": { 2554 | "version": "1.0.2", 2555 | "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", 2556 | "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", 2557 | "dependencies": { 2558 | "call-bind": "^1.0.2" 2559 | }, 2560 | "funding": { 2561 | "url": "https://github.com/sponsors/ljharb" 2562 | } 2563 | }, 2564 | "node_modules/is-fullwidth-code-point": { 2565 | "version": "3.0.0", 2566 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", 2567 | "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", 2568 | "engines": { 2569 | "node": ">=8" 2570 | } 2571 | }, 2572 | "node_modules/is-generator-function": { 2573 | "version": "1.0.10", 2574 | "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", 2575 | "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", 2576 | "dependencies": { 2577 | "has-tostringtag": "^1.0.0" 2578 | }, 2579 | "engines": { 2580 | "node": ">= 0.4" 2581 | }, 2582 | "funding": { 2583 | "url": "https://github.com/sponsors/ljharb" 2584 | } 2585 | }, 2586 | "node_modules/is-glob": { 2587 | "version": "4.0.3", 2588 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 2589 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 2590 | "dependencies": { 2591 | "is-extglob": "^2.1.1" 2592 | }, 2593 | "engines": { 2594 | "node": ">=0.10.0" 2595 | } 2596 | }, 2597 | "node_modules/is-map": { 2598 | "version": "2.0.2", 2599 | "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", 2600 | "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", 2601 | "funding": { 2602 | "url": "https://github.com/sponsors/ljharb" 2603 | } 2604 | }, 2605 | "node_modules/is-negative-zero": { 2606 | "version": "2.0.2", 2607 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 2608 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 2609 | "engines": { 2610 | "node": ">= 0.4" 2611 | }, 2612 | "funding": { 2613 | "url": "https://github.com/sponsors/ljharb" 2614 | } 2615 | }, 2616 | "node_modules/is-number": { 2617 | "version": "7.0.0", 2618 | "license": "MIT", 2619 | "engines": { 2620 | "node": ">=0.12.0" 2621 | } 2622 | }, 2623 | "node_modules/is-number-object": { 2624 | "version": "1.0.7", 2625 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 2626 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 2627 | "dependencies": { 2628 | "has-tostringtag": "^1.0.0" 2629 | }, 2630 | "engines": { 2631 | "node": ">= 0.4" 2632 | }, 2633 | "funding": { 2634 | "url": "https://github.com/sponsors/ljharb" 2635 | } 2636 | }, 2637 | "node_modules/is-path-inside": { 2638 | "version": "3.0.3", 2639 | "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", 2640 | "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", 2641 | "peer": true, 2642 | "engines": { 2643 | "node": ">=8" 2644 | } 2645 | }, 2646 | "node_modules/is-regex": { 2647 | "version": "1.1.4", 2648 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 2649 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 2650 | "dependencies": { 2651 | "call-bind": "^1.0.2", 2652 | "has-tostringtag": "^1.0.0" 2653 | }, 2654 | "engines": { 2655 | "node": ">= 0.4" 2656 | }, 2657 | "funding": { 2658 | "url": "https://github.com/sponsors/ljharb" 2659 | } 2660 | }, 2661 | "node_modules/is-set": { 2662 | "version": "2.0.2", 2663 | "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", 2664 | "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", 2665 | "funding": { 2666 | "url": "https://github.com/sponsors/ljharb" 2667 | } 2668 | }, 2669 | "node_modules/is-shared-array-buffer": { 2670 | "version": "1.0.2", 2671 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 2672 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 2673 | "dependencies": { 2674 | "call-bind": "^1.0.2" 2675 | }, 2676 | "funding": { 2677 | "url": "https://github.com/sponsors/ljharb" 2678 | } 2679 | }, 2680 | "node_modules/is-string": { 2681 | "version": "1.0.7", 2682 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 2683 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 2684 | "dependencies": { 2685 | "has-tostringtag": "^1.0.0" 2686 | }, 2687 | "engines": { 2688 | "node": ">= 0.4" 2689 | }, 2690 | "funding": { 2691 | "url": "https://github.com/sponsors/ljharb" 2692 | } 2693 | }, 2694 | "node_modules/is-symbol": { 2695 | "version": "1.0.4", 2696 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 2697 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 2698 | "dependencies": { 2699 | "has-symbols": "^1.0.2" 2700 | }, 2701 | "engines": { 2702 | "node": ">= 0.4" 2703 | }, 2704 | "funding": { 2705 | "url": "https://github.com/sponsors/ljharb" 2706 | } 2707 | }, 2708 | "node_modules/is-typed-array": { 2709 | "version": "1.1.13", 2710 | "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", 2711 | "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", 2712 | "dependencies": { 2713 | "which-typed-array": "^1.1.14" 2714 | }, 2715 | "engines": { 2716 | "node": ">= 0.4" 2717 | }, 2718 | "funding": { 2719 | "url": "https://github.com/sponsors/ljharb" 2720 | } 2721 | }, 2722 | "node_modules/is-weakmap": { 2723 | "version": "2.0.1", 2724 | "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", 2725 | "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", 2726 | "funding": { 2727 | "url": "https://github.com/sponsors/ljharb" 2728 | } 2729 | }, 2730 | "node_modules/is-weakref": { 2731 | "version": "1.0.2", 2732 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 2733 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 2734 | "dependencies": { 2735 | "call-bind": "^1.0.2" 2736 | }, 2737 | "funding": { 2738 | "url": "https://github.com/sponsors/ljharb" 2739 | } 2740 | }, 2741 | "node_modules/is-weakset": { 2742 | "version": "2.0.2", 2743 | "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", 2744 | "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", 2745 | "dependencies": { 2746 | "call-bind": "^1.0.2", 2747 | "get-intrinsic": "^1.1.1" 2748 | }, 2749 | "funding": { 2750 | "url": "https://github.com/sponsors/ljharb" 2751 | } 2752 | }, 2753 | "node_modules/isarray": { 2754 | "version": "2.0.5", 2755 | "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", 2756 | "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" 2757 | }, 2758 | "node_modules/isexe": { 2759 | "version": "2.0.0", 2760 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 2761 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" 2762 | }, 2763 | "node_modules/isomorphic-fetch": { 2764 | "version": "3.0.0", 2765 | "license": "MIT", 2766 | "dependencies": { 2767 | "node-fetch": "^2.6.1", 2768 | "whatwg-fetch": "^3.4.1" 2769 | } 2770 | }, 2771 | "node_modules/iterator.prototype": { 2772 | "version": "1.1.2", 2773 | "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", 2774 | "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", 2775 | "dependencies": { 2776 | "define-properties": "^1.2.1", 2777 | "get-intrinsic": "^1.2.1", 2778 | "has-symbols": "^1.0.3", 2779 | "reflect.getprototypeof": "^1.0.4", 2780 | "set-function-name": "^2.0.1" 2781 | } 2782 | }, 2783 | "node_modules/jackspeak": { 2784 | "version": "2.3.6", 2785 | "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", 2786 | "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", 2787 | "dependencies": { 2788 | "@isaacs/cliui": "^8.0.2" 2789 | }, 2790 | "engines": { 2791 | "node": ">=14" 2792 | }, 2793 | "funding": { 2794 | "url": "https://github.com/sponsors/isaacs" 2795 | }, 2796 | "optionalDependencies": { 2797 | "@pkgjs/parseargs": "^0.11.0" 2798 | } 2799 | }, 2800 | "node_modules/jiti": { 2801 | "version": "1.18.2", 2802 | "license": "MIT", 2803 | "bin": { 2804 | "jiti": "bin/jiti.js" 2805 | } 2806 | }, 2807 | "node_modules/js-tokens": { 2808 | "version": "4.0.0", 2809 | "license": "MIT" 2810 | }, 2811 | "node_modules/js-yaml": { 2812 | "version": "4.1.0", 2813 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 2814 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 2815 | "peer": true, 2816 | "dependencies": { 2817 | "argparse": "^2.0.1" 2818 | }, 2819 | "bin": { 2820 | "js-yaml": "bin/js-yaml.js" 2821 | } 2822 | }, 2823 | "node_modules/json-buffer": { 2824 | "version": "3.0.1", 2825 | "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", 2826 | "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", 2827 | "peer": true 2828 | }, 2829 | "node_modules/json-schema-traverse": { 2830 | "version": "0.4.1", 2831 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 2832 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 2833 | "peer": true 2834 | }, 2835 | "node_modules/json-stable-stringify-without-jsonify": { 2836 | "version": "1.0.1", 2837 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 2838 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 2839 | "peer": true 2840 | }, 2841 | "node_modules/json5": { 2842 | "version": "1.0.2", 2843 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", 2844 | "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", 2845 | "dependencies": { 2846 | "minimist": "^1.2.0" 2847 | }, 2848 | "bin": { 2849 | "json5": "lib/cli.js" 2850 | } 2851 | }, 2852 | "node_modules/jsx-ast-utils": { 2853 | "version": "3.3.5", 2854 | "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", 2855 | "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", 2856 | "dependencies": { 2857 | "array-includes": "^3.1.6", 2858 | "array.prototype.flat": "^1.3.1", 2859 | "object.assign": "^4.1.4", 2860 | "object.values": "^1.1.6" 2861 | }, 2862 | "engines": { 2863 | "node": ">=4.0" 2864 | } 2865 | }, 2866 | "node_modules/keyv": { 2867 | "version": "4.5.4", 2868 | "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", 2869 | "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", 2870 | "peer": true, 2871 | "dependencies": { 2872 | "json-buffer": "3.0.1" 2873 | } 2874 | }, 2875 | "node_modules/language-subtag-registry": { 2876 | "version": "0.3.22", 2877 | "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.22.tgz", 2878 | "integrity": "sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==" 2879 | }, 2880 | "node_modules/language-tags": { 2881 | "version": "1.0.9", 2882 | "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.9.tgz", 2883 | "integrity": "sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==", 2884 | "dependencies": { 2885 | "language-subtag-registry": "^0.3.20" 2886 | }, 2887 | "engines": { 2888 | "node": ">=0.10" 2889 | } 2890 | }, 2891 | "node_modules/levn": { 2892 | "version": "0.4.1", 2893 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 2894 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 2895 | "peer": true, 2896 | "dependencies": { 2897 | "prelude-ls": "^1.2.1", 2898 | "type-check": "~0.4.0" 2899 | }, 2900 | "engines": { 2901 | "node": ">= 0.8.0" 2902 | } 2903 | }, 2904 | "node_modules/lilconfig": { 2905 | "version": "2.1.0", 2906 | "license": "MIT", 2907 | "engines": { 2908 | "node": ">=10" 2909 | } 2910 | }, 2911 | "node_modules/lines-and-columns": { 2912 | "version": "1.2.4", 2913 | "license": "MIT" 2914 | }, 2915 | "node_modules/locate-path": { 2916 | "version": "6.0.0", 2917 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 2918 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 2919 | "peer": true, 2920 | "dependencies": { 2921 | "p-locate": "^5.0.0" 2922 | }, 2923 | "engines": { 2924 | "node": ">=10" 2925 | }, 2926 | "funding": { 2927 | "url": "https://github.com/sponsors/sindresorhus" 2928 | } 2929 | }, 2930 | "node_modules/lodash.castarray": { 2931 | "version": "4.4.0", 2932 | "dev": true, 2933 | "license": "MIT" 2934 | }, 2935 | "node_modules/lodash.isplainobject": { 2936 | "version": "4.0.6", 2937 | "dev": true, 2938 | "license": "MIT" 2939 | }, 2940 | "node_modules/lodash.merge": { 2941 | "version": "4.6.2", 2942 | "license": "MIT" 2943 | }, 2944 | "node_modules/loose-envify": { 2945 | "version": "1.4.0", 2946 | "license": "MIT", 2947 | "dependencies": { 2948 | "js-tokens": "^3.0.0 || ^4.0.0" 2949 | }, 2950 | "bin": { 2951 | "loose-envify": "cli.js" 2952 | } 2953 | }, 2954 | "node_modules/lru-cache": { 2955 | "version": "6.0.0", 2956 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 2957 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 2958 | "dependencies": { 2959 | "yallist": "^4.0.0" 2960 | }, 2961 | "engines": { 2962 | "node": ">=10" 2963 | } 2964 | }, 2965 | "node_modules/merge2": { 2966 | "version": "1.4.1", 2967 | "license": "MIT", 2968 | "engines": { 2969 | "node": ">= 8" 2970 | } 2971 | }, 2972 | "node_modules/micromatch": { 2973 | "version": "4.0.5", 2974 | "license": "MIT", 2975 | "dependencies": { 2976 | "braces": "^3.0.2", 2977 | "picomatch": "^2.3.1" 2978 | }, 2979 | "engines": { 2980 | "node": ">=8.6" 2981 | } 2982 | }, 2983 | "node_modules/micromatch/node_modules/picomatch": { 2984 | "version": "2.3.1", 2985 | "license": "MIT", 2986 | "engines": { 2987 | "node": ">=8.6" 2988 | }, 2989 | "funding": { 2990 | "url": "https://github.com/sponsors/jonschlinkert" 2991 | } 2992 | }, 2993 | "node_modules/mini-svg-data-uri": { 2994 | "version": "1.4.3", 2995 | "license": "MIT", 2996 | "bin": { 2997 | "mini-svg-data-uri": "cli.js" 2998 | } 2999 | }, 3000 | "node_modules/minimatch": { 3001 | "version": "3.1.2", 3002 | "license": "ISC", 3003 | "dependencies": { 3004 | "brace-expansion": "^1.1.7" 3005 | }, 3006 | "engines": { 3007 | "node": "*" 3008 | } 3009 | }, 3010 | "node_modules/minimist": { 3011 | "version": "1.2.8", 3012 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", 3013 | "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", 3014 | "funding": { 3015 | "url": "https://github.com/sponsors/ljharb" 3016 | } 3017 | }, 3018 | "node_modules/minipass": { 3019 | "version": "7.0.4", 3020 | "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", 3021 | "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", 3022 | "engines": { 3023 | "node": ">=16 || 14 >=14.17" 3024 | } 3025 | }, 3026 | "node_modules/ms": { 3027 | "version": "2.1.2", 3028 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 3029 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 3030 | }, 3031 | "node_modules/mz": { 3032 | "version": "2.7.0", 3033 | "license": "MIT", 3034 | "dependencies": { 3035 | "any-promise": "^1.0.0", 3036 | "object-assign": "^4.0.1", 3037 | "thenify-all": "^1.0.0" 3038 | } 3039 | }, 3040 | "node_modules/nanoid": { 3041 | "version": "3.3.7", 3042 | "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", 3043 | "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", 3044 | "funding": [ 3045 | { 3046 | "type": "github", 3047 | "url": "https://github.com/sponsors/ai" 3048 | } 3049 | ], 3050 | "bin": { 3051 | "nanoid": "bin/nanoid.cjs" 3052 | }, 3053 | "engines": { 3054 | "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" 3055 | } 3056 | }, 3057 | "node_modules/natural-compare": { 3058 | "version": "1.4.0", 3059 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 3060 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 3061 | "peer": true 3062 | }, 3063 | "node_modules/next": { 3064 | "version": "14.1.0", 3065 | "resolved": "https://registry.npmjs.org/next/-/next-14.1.0.tgz", 3066 | "integrity": "sha512-wlzrsbfeSU48YQBjZhDzOwhWhGsy+uQycR8bHAOt1LY1bn3zZEcDyHQOEoN3aWzQ8LHCAJ1nqrWCc9XF2+O45Q==", 3067 | "dependencies": { 3068 | "@next/env": "14.1.0", 3069 | "@swc/helpers": "0.5.2", 3070 | "busboy": "1.6.0", 3071 | "caniuse-lite": "^1.0.30001579", 3072 | "graceful-fs": "^4.2.11", 3073 | "postcss": "8.4.31", 3074 | "styled-jsx": "5.1.1" 3075 | }, 3076 | "bin": { 3077 | "next": "dist/bin/next" 3078 | }, 3079 | "engines": { 3080 | "node": ">=18.17.0" 3081 | }, 3082 | "optionalDependencies": { 3083 | "@next/swc-darwin-arm64": "14.1.0", 3084 | "@next/swc-darwin-x64": "14.1.0", 3085 | "@next/swc-linux-arm64-gnu": "14.1.0", 3086 | "@next/swc-linux-arm64-musl": "14.1.0", 3087 | "@next/swc-linux-x64-gnu": "14.1.0", 3088 | "@next/swc-linux-x64-musl": "14.1.0", 3089 | "@next/swc-win32-arm64-msvc": "14.1.0", 3090 | "@next/swc-win32-ia32-msvc": "14.1.0", 3091 | "@next/swc-win32-x64-msvc": "14.1.0" 3092 | }, 3093 | "peerDependencies": { 3094 | "@opentelemetry/api": "^1.1.0", 3095 | "react": "^18.2.0", 3096 | "react-dom": "^18.2.0", 3097 | "sass": "^1.3.0" 3098 | }, 3099 | "peerDependenciesMeta": { 3100 | "@opentelemetry/api": { 3101 | "optional": true 3102 | }, 3103 | "sass": { 3104 | "optional": true 3105 | } 3106 | } 3107 | }, 3108 | "node_modules/node-fetch": { 3109 | "version": "2.6.11", 3110 | "license": "MIT", 3111 | "dependencies": { 3112 | "whatwg-url": "^5.0.0" 3113 | }, 3114 | "engines": { 3115 | "node": "4.x || >=6.0.0" 3116 | }, 3117 | "peerDependencies": { 3118 | "encoding": "^0.1.0" 3119 | }, 3120 | "peerDependenciesMeta": { 3121 | "encoding": { 3122 | "optional": true 3123 | } 3124 | } 3125 | }, 3126 | "node_modules/node-releases": { 3127 | "version": "2.0.6", 3128 | "dev": true, 3129 | "license": "MIT" 3130 | }, 3131 | "node_modules/normalize-path": { 3132 | "version": "3.0.0", 3133 | "license": "MIT", 3134 | "engines": { 3135 | "node": ">=0.10.0" 3136 | } 3137 | }, 3138 | "node_modules/normalize-range": { 3139 | "version": "0.1.2", 3140 | "dev": true, 3141 | "license": "MIT", 3142 | "engines": { 3143 | "node": ">=0.10.0" 3144 | } 3145 | }, 3146 | "node_modules/object-assign": { 3147 | "version": "4.1.1", 3148 | "license": "MIT", 3149 | "engines": { 3150 | "node": ">=0.10.0" 3151 | } 3152 | }, 3153 | "node_modules/object-hash": { 3154 | "version": "3.0.0", 3155 | "license": "MIT", 3156 | "engines": { 3157 | "node": ">= 6" 3158 | } 3159 | }, 3160 | "node_modules/object-inspect": { 3161 | "version": "1.13.1", 3162 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", 3163 | "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", 3164 | "funding": { 3165 | "url": "https://github.com/sponsors/ljharb" 3166 | } 3167 | }, 3168 | "node_modules/object-keys": { 3169 | "version": "1.1.1", 3170 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 3171 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 3172 | "engines": { 3173 | "node": ">= 0.4" 3174 | } 3175 | }, 3176 | "node_modules/object.assign": { 3177 | "version": "4.1.5", 3178 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", 3179 | "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", 3180 | "dependencies": { 3181 | "call-bind": "^1.0.5", 3182 | "define-properties": "^1.2.1", 3183 | "has-symbols": "^1.0.3", 3184 | "object-keys": "^1.1.1" 3185 | }, 3186 | "engines": { 3187 | "node": ">= 0.4" 3188 | }, 3189 | "funding": { 3190 | "url": "https://github.com/sponsors/ljharb" 3191 | } 3192 | }, 3193 | "node_modules/object.entries": { 3194 | "version": "1.1.7", 3195 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", 3196 | "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", 3197 | "dependencies": { 3198 | "call-bind": "^1.0.2", 3199 | "define-properties": "^1.2.0", 3200 | "es-abstract": "^1.22.1" 3201 | }, 3202 | "engines": { 3203 | "node": ">= 0.4" 3204 | } 3205 | }, 3206 | "node_modules/object.fromentries": { 3207 | "version": "2.0.7", 3208 | "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", 3209 | "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", 3210 | "dependencies": { 3211 | "call-bind": "^1.0.2", 3212 | "define-properties": "^1.2.0", 3213 | "es-abstract": "^1.22.1" 3214 | }, 3215 | "engines": { 3216 | "node": ">= 0.4" 3217 | }, 3218 | "funding": { 3219 | "url": "https://github.com/sponsors/ljharb" 3220 | } 3221 | }, 3222 | "node_modules/object.groupby": { 3223 | "version": "1.0.2", 3224 | "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.2.tgz", 3225 | "integrity": "sha512-bzBq58S+x+uo0VjurFT0UktpKHOZmv4/xePiOA1nbB9pMqpGK7rUPNgf+1YC+7mE+0HzhTMqNUuCqvKhj6FnBw==", 3226 | "dependencies": { 3227 | "array.prototype.filter": "^1.0.3", 3228 | "call-bind": "^1.0.5", 3229 | "define-properties": "^1.2.1", 3230 | "es-abstract": "^1.22.3", 3231 | "es-errors": "^1.0.0" 3232 | } 3233 | }, 3234 | "node_modules/object.hasown": { 3235 | "version": "1.1.3", 3236 | "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", 3237 | "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", 3238 | "dependencies": { 3239 | "define-properties": "^1.2.0", 3240 | "es-abstract": "^1.22.1" 3241 | }, 3242 | "funding": { 3243 | "url": "https://github.com/sponsors/ljharb" 3244 | } 3245 | }, 3246 | "node_modules/object.values": { 3247 | "version": "1.1.7", 3248 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", 3249 | "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", 3250 | "dependencies": { 3251 | "call-bind": "^1.0.2", 3252 | "define-properties": "^1.2.0", 3253 | "es-abstract": "^1.22.1" 3254 | }, 3255 | "engines": { 3256 | "node": ">= 0.4" 3257 | }, 3258 | "funding": { 3259 | "url": "https://github.com/sponsors/ljharb" 3260 | } 3261 | }, 3262 | "node_modules/once": { 3263 | "version": "1.4.0", 3264 | "license": "ISC", 3265 | "dependencies": { 3266 | "wrappy": "1" 3267 | } 3268 | }, 3269 | "node_modules/optionator": { 3270 | "version": "0.9.3", 3271 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", 3272 | "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", 3273 | "peer": true, 3274 | "dependencies": { 3275 | "@aashutoshrathi/word-wrap": "^1.2.3", 3276 | "deep-is": "^0.1.3", 3277 | "fast-levenshtein": "^2.0.6", 3278 | "levn": "^0.4.1", 3279 | "prelude-ls": "^1.2.1", 3280 | "type-check": "^0.4.0" 3281 | }, 3282 | "engines": { 3283 | "node": ">= 0.8.0" 3284 | } 3285 | }, 3286 | "node_modules/p-limit": { 3287 | "version": "3.1.0", 3288 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 3289 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 3290 | "peer": true, 3291 | "dependencies": { 3292 | "yocto-queue": "^0.1.0" 3293 | }, 3294 | "engines": { 3295 | "node": ">=10" 3296 | }, 3297 | "funding": { 3298 | "url": "https://github.com/sponsors/sindresorhus" 3299 | } 3300 | }, 3301 | "node_modules/p-locate": { 3302 | "version": "5.0.0", 3303 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 3304 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 3305 | "peer": true, 3306 | "dependencies": { 3307 | "p-limit": "^3.0.2" 3308 | }, 3309 | "engines": { 3310 | "node": ">=10" 3311 | }, 3312 | "funding": { 3313 | "url": "https://github.com/sponsors/sindresorhus" 3314 | } 3315 | }, 3316 | "node_modules/parent-module": { 3317 | "version": "1.0.1", 3318 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 3319 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 3320 | "peer": true, 3321 | "dependencies": { 3322 | "callsites": "^3.0.0" 3323 | }, 3324 | "engines": { 3325 | "node": ">=6" 3326 | } 3327 | }, 3328 | "node_modules/path-exists": { 3329 | "version": "4.0.0", 3330 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 3331 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 3332 | "peer": true, 3333 | "engines": { 3334 | "node": ">=8" 3335 | } 3336 | }, 3337 | "node_modules/path-is-absolute": { 3338 | "version": "1.0.1", 3339 | "license": "MIT", 3340 | "engines": { 3341 | "node": ">=0.10.0" 3342 | } 3343 | }, 3344 | "node_modules/path-key": { 3345 | "version": "3.1.1", 3346 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 3347 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 3348 | "engines": { 3349 | "node": ">=8" 3350 | } 3351 | }, 3352 | "node_modules/path-parse": { 3353 | "version": "1.0.7", 3354 | "license": "MIT" 3355 | }, 3356 | "node_modules/path-scurry": { 3357 | "version": "1.10.1", 3358 | "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", 3359 | "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", 3360 | "dependencies": { 3361 | "lru-cache": "^9.1.1 || ^10.0.0", 3362 | "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" 3363 | }, 3364 | "engines": { 3365 | "node": ">=16 || 14 >=14.17" 3366 | }, 3367 | "funding": { 3368 | "url": "https://github.com/sponsors/isaacs" 3369 | } 3370 | }, 3371 | "node_modules/path-scurry/node_modules/lru-cache": { 3372 | "version": "10.2.0", 3373 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", 3374 | "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", 3375 | "engines": { 3376 | "node": "14 || >=16.14" 3377 | } 3378 | }, 3379 | "node_modules/path-type": { 3380 | "version": "4.0.0", 3381 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 3382 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 3383 | "engines": { 3384 | "node": ">=8" 3385 | } 3386 | }, 3387 | "node_modules/picocolors": { 3388 | "version": "1.0.0", 3389 | "license": "ISC" 3390 | }, 3391 | "node_modules/picomatch": { 3392 | "version": "2.2.3", 3393 | "license": "MIT", 3394 | "engines": { 3395 | "node": ">=8.6" 3396 | }, 3397 | "funding": { 3398 | "url": "https://github.com/sponsors/jonschlinkert" 3399 | } 3400 | }, 3401 | "node_modules/pify": { 3402 | "version": "2.3.0", 3403 | "license": "MIT", 3404 | "engines": { 3405 | "node": ">=0.10.0" 3406 | } 3407 | }, 3408 | "node_modules/pirates": { 3409 | "version": "4.0.5", 3410 | "license": "MIT", 3411 | "engines": { 3412 | "node": ">= 6" 3413 | } 3414 | }, 3415 | "node_modules/popmotion": { 3416 | "version": "10.0.2", 3417 | "license": "MIT", 3418 | "dependencies": { 3419 | "framesync": "^6.0.1", 3420 | "hey-listen": "^1.0.8", 3421 | "style-value-types": "5.0.0", 3422 | "tslib": "^2.1.0" 3423 | } 3424 | }, 3425 | "node_modules/postcss": { 3426 | "version": "8.4.31", 3427 | "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz", 3428 | "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==", 3429 | "funding": [ 3430 | { 3431 | "type": "opencollective", 3432 | "url": "https://opencollective.com/postcss/" 3433 | }, 3434 | { 3435 | "type": "tidelift", 3436 | "url": "https://tidelift.com/funding/github/npm/postcss" 3437 | }, 3438 | { 3439 | "type": "github", 3440 | "url": "https://github.com/sponsors/ai" 3441 | } 3442 | ], 3443 | "dependencies": { 3444 | "nanoid": "^3.3.6", 3445 | "picocolors": "^1.0.0", 3446 | "source-map-js": "^1.0.2" 3447 | }, 3448 | "engines": { 3449 | "node": "^10 || ^12 || >=14" 3450 | } 3451 | }, 3452 | "node_modules/postcss-selector-parser": { 3453 | "version": "6.0.12", 3454 | "license": "MIT", 3455 | "dependencies": { 3456 | "cssesc": "^3.0.0", 3457 | "util-deprecate": "^1.0.2" 3458 | }, 3459 | "engines": { 3460 | "node": ">=4" 3461 | } 3462 | }, 3463 | "node_modules/postcss-value-parser": { 3464 | "version": "4.2.0", 3465 | "license": "MIT" 3466 | }, 3467 | "node_modules/prelude-ls": { 3468 | "version": "1.2.1", 3469 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 3470 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 3471 | "peer": true, 3472 | "engines": { 3473 | "node": ">= 0.8.0" 3474 | } 3475 | }, 3476 | "node_modules/prop-types": { 3477 | "version": "15.8.1", 3478 | "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", 3479 | "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", 3480 | "dependencies": { 3481 | "loose-envify": "^1.4.0", 3482 | "object-assign": "^4.1.1", 3483 | "react-is": "^16.13.1" 3484 | } 3485 | }, 3486 | "node_modules/punycode": { 3487 | "version": "2.3.1", 3488 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", 3489 | "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", 3490 | "peer": true, 3491 | "engines": { 3492 | "node": ">=6" 3493 | } 3494 | }, 3495 | "node_modules/queue-microtask": { 3496 | "version": "1.2.3", 3497 | "funding": [ 3498 | { 3499 | "type": "github", 3500 | "url": "https://github.com/sponsors/feross" 3501 | }, 3502 | { 3503 | "type": "patreon", 3504 | "url": "https://www.patreon.com/feross" 3505 | }, 3506 | { 3507 | "type": "consulting", 3508 | "url": "https://feross.org/support" 3509 | } 3510 | ], 3511 | "license": "MIT" 3512 | }, 3513 | "node_modules/react": { 3514 | "version": "18.2.0", 3515 | "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", 3516 | "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", 3517 | "dependencies": { 3518 | "loose-envify": "^1.1.0" 3519 | }, 3520 | "engines": { 3521 | "node": ">=0.10.0" 3522 | } 3523 | }, 3524 | "node_modules/react-dom": { 3525 | "version": "18.2.0", 3526 | "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", 3527 | "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", 3528 | "dependencies": { 3529 | "loose-envify": "^1.1.0", 3530 | "scheduler": "^0.23.0" 3531 | }, 3532 | "peerDependencies": { 3533 | "react": "^18.2.0" 3534 | } 3535 | }, 3536 | "node_modules/react-intersection-observer": { 3537 | "version": "8.32.2", 3538 | "license": "MIT", 3539 | "peerDependencies": { 3540 | "react": "^15.0.0 || ^16.0.0 || ^17.0.0|| ^18.0.0" 3541 | } 3542 | }, 3543 | "node_modules/react-is": { 3544 | "version": "16.13.1", 3545 | "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", 3546 | "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" 3547 | }, 3548 | "node_modules/read-cache": { 3549 | "version": "1.0.0", 3550 | "license": "MIT", 3551 | "dependencies": { 3552 | "pify": "^2.3.0" 3553 | } 3554 | }, 3555 | "node_modules/readdirp": { 3556 | "version": "3.6.0", 3557 | "license": "MIT", 3558 | "dependencies": { 3559 | "picomatch": "^2.2.1" 3560 | }, 3561 | "engines": { 3562 | "node": ">=8.10.0" 3563 | } 3564 | }, 3565 | "node_modules/reflect.getprototypeof": { 3566 | "version": "1.0.5", 3567 | "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.5.tgz", 3568 | "integrity": "sha512-62wgfC8dJWrmxv44CA36pLDnP6KKl3Vhxb7PL+8+qrrFMMoJij4vgiMP8zV4O8+CBMXY1mHxI5fITGHXFHVmQQ==", 3569 | "dependencies": { 3570 | "call-bind": "^1.0.5", 3571 | "define-properties": "^1.2.1", 3572 | "es-abstract": "^1.22.3", 3573 | "es-errors": "^1.0.0", 3574 | "get-intrinsic": "^1.2.3", 3575 | "globalthis": "^1.0.3", 3576 | "which-builtin-type": "^1.1.3" 3577 | }, 3578 | "engines": { 3579 | "node": ">= 0.4" 3580 | }, 3581 | "funding": { 3582 | "url": "https://github.com/sponsors/ljharb" 3583 | } 3584 | }, 3585 | "node_modules/regenerator-runtime": { 3586 | "version": "0.14.1", 3587 | "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", 3588 | "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" 3589 | }, 3590 | "node_modules/regexp.prototype.flags": { 3591 | "version": "1.5.1", 3592 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", 3593 | "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", 3594 | "dependencies": { 3595 | "call-bind": "^1.0.2", 3596 | "define-properties": "^1.2.0", 3597 | "set-function-name": "^2.0.0" 3598 | }, 3599 | "engines": { 3600 | "node": ">= 0.4" 3601 | }, 3602 | "funding": { 3603 | "url": "https://github.com/sponsors/ljharb" 3604 | } 3605 | }, 3606 | "node_modules/resolve": { 3607 | "version": "1.22.2", 3608 | "license": "MIT", 3609 | "dependencies": { 3610 | "is-core-module": "^2.11.0", 3611 | "path-parse": "^1.0.7", 3612 | "supports-preserve-symlinks-flag": "^1.0.0" 3613 | }, 3614 | "bin": { 3615 | "resolve": "bin/resolve" 3616 | }, 3617 | "funding": { 3618 | "url": "https://github.com/sponsors/ljharb" 3619 | } 3620 | }, 3621 | "node_modules/resolve-from": { 3622 | "version": "4.0.0", 3623 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 3624 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 3625 | "peer": true, 3626 | "engines": { 3627 | "node": ">=4" 3628 | } 3629 | }, 3630 | "node_modules/resolve-pkg-maps": { 3631 | "version": "1.0.0", 3632 | "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", 3633 | "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", 3634 | "funding": { 3635 | "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" 3636 | } 3637 | }, 3638 | "node_modules/reusify": { 3639 | "version": "1.0.4", 3640 | "license": "MIT", 3641 | "engines": { 3642 | "iojs": ">=1.0.0", 3643 | "node": ">=0.10.0" 3644 | } 3645 | }, 3646 | "node_modules/rimraf": { 3647 | "version": "3.0.2", 3648 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 3649 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 3650 | "peer": true, 3651 | "dependencies": { 3652 | "glob": "^7.1.3" 3653 | }, 3654 | "bin": { 3655 | "rimraf": "bin.js" 3656 | }, 3657 | "funding": { 3658 | "url": "https://github.com/sponsors/isaacs" 3659 | } 3660 | }, 3661 | "node_modules/run-parallel": { 3662 | "version": "1.2.0", 3663 | "funding": [ 3664 | { 3665 | "type": "github", 3666 | "url": "https://github.com/sponsors/feross" 3667 | }, 3668 | { 3669 | "type": "patreon", 3670 | "url": "https://www.patreon.com/feross" 3671 | }, 3672 | { 3673 | "type": "consulting", 3674 | "url": "https://feross.org/support" 3675 | } 3676 | ], 3677 | "license": "MIT", 3678 | "dependencies": { 3679 | "queue-microtask": "^1.2.2" 3680 | } 3681 | }, 3682 | "node_modules/safe-array-concat": { 3683 | "version": "1.1.0", 3684 | "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.0.tgz", 3685 | "integrity": "sha512-ZdQ0Jeb9Ofti4hbt5lX3T2JcAamT9hfzYU1MNB+z/jaEbB6wfFfPIR/zEORmZqobkCCJhSjodobH6WHNmJ97dg==", 3686 | "dependencies": { 3687 | "call-bind": "^1.0.5", 3688 | "get-intrinsic": "^1.2.2", 3689 | "has-symbols": "^1.0.3", 3690 | "isarray": "^2.0.5" 3691 | }, 3692 | "engines": { 3693 | "node": ">=0.4" 3694 | }, 3695 | "funding": { 3696 | "url": "https://github.com/sponsors/ljharb" 3697 | } 3698 | }, 3699 | "node_modules/safe-regex-test": { 3700 | "version": "1.0.3", 3701 | "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.3.tgz", 3702 | "integrity": "sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==", 3703 | "dependencies": { 3704 | "call-bind": "^1.0.6", 3705 | "es-errors": "^1.3.0", 3706 | "is-regex": "^1.1.4" 3707 | }, 3708 | "engines": { 3709 | "node": ">= 0.4" 3710 | }, 3711 | "funding": { 3712 | "url": "https://github.com/sponsors/ljharb" 3713 | } 3714 | }, 3715 | "node_modules/scheduler": { 3716 | "version": "0.23.0", 3717 | "license": "MIT", 3718 | "dependencies": { 3719 | "loose-envify": "^1.1.0" 3720 | } 3721 | }, 3722 | "node_modules/semver": { 3723 | "version": "7.6.0", 3724 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.0.tgz", 3725 | "integrity": "sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg==", 3726 | "dependencies": { 3727 | "lru-cache": "^6.0.0" 3728 | }, 3729 | "bin": { 3730 | "semver": "bin/semver.js" 3731 | }, 3732 | "engines": { 3733 | "node": ">=10" 3734 | } 3735 | }, 3736 | "node_modules/set-function-length": { 3737 | "version": "1.2.1", 3738 | "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.1.tgz", 3739 | "integrity": "sha512-j4t6ccc+VsKwYHso+kElc5neZpjtq9EnRICFZtWyBsLojhmeF/ZBd/elqm22WJh/BziDe/SBiOeAt0m2mfLD0g==", 3740 | "dependencies": { 3741 | "define-data-property": "^1.1.2", 3742 | "es-errors": "^1.3.0", 3743 | "function-bind": "^1.1.2", 3744 | "get-intrinsic": "^1.2.3", 3745 | "gopd": "^1.0.1", 3746 | "has-property-descriptors": "^1.0.1" 3747 | }, 3748 | "engines": { 3749 | "node": ">= 0.4" 3750 | } 3751 | }, 3752 | "node_modules/set-function-name": { 3753 | "version": "2.0.1", 3754 | "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", 3755 | "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", 3756 | "dependencies": { 3757 | "define-data-property": "^1.0.1", 3758 | "functions-have-names": "^1.2.3", 3759 | "has-property-descriptors": "^1.0.0" 3760 | }, 3761 | "engines": { 3762 | "node": ">= 0.4" 3763 | } 3764 | }, 3765 | "node_modules/shebang-command": { 3766 | "version": "2.0.0", 3767 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 3768 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 3769 | "dependencies": { 3770 | "shebang-regex": "^3.0.0" 3771 | }, 3772 | "engines": { 3773 | "node": ">=8" 3774 | } 3775 | }, 3776 | "node_modules/shebang-regex": { 3777 | "version": "3.0.0", 3778 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 3779 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 3780 | "engines": { 3781 | "node": ">=8" 3782 | } 3783 | }, 3784 | "node_modules/side-channel": { 3785 | "version": "1.0.5", 3786 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.5.tgz", 3787 | "integrity": "sha512-QcgiIWV4WV7qWExbN5llt6frQB/lBven9pqliLXfGPB+K9ZYXxDozp0wLkHS24kWCm+6YXH/f0HhnObZnZOBnQ==", 3788 | "dependencies": { 3789 | "call-bind": "^1.0.6", 3790 | "es-errors": "^1.3.0", 3791 | "get-intrinsic": "^1.2.4", 3792 | "object-inspect": "^1.13.1" 3793 | }, 3794 | "engines": { 3795 | "node": ">= 0.4" 3796 | }, 3797 | "funding": { 3798 | "url": "https://github.com/sponsors/ljharb" 3799 | } 3800 | }, 3801 | "node_modules/signal-exit": { 3802 | "version": "4.1.0", 3803 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", 3804 | "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", 3805 | "engines": { 3806 | "node": ">=14" 3807 | }, 3808 | "funding": { 3809 | "url": "https://github.com/sponsors/isaacs" 3810 | } 3811 | }, 3812 | "node_modules/slash": { 3813 | "version": "3.0.0", 3814 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 3815 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 3816 | "engines": { 3817 | "node": ">=8" 3818 | } 3819 | }, 3820 | "node_modules/source-map-js": { 3821 | "version": "1.0.2", 3822 | "license": "BSD-3-Clause", 3823 | "engines": { 3824 | "node": ">=0.10.0" 3825 | } 3826 | }, 3827 | "node_modules/streamsearch": { 3828 | "version": "1.1.0", 3829 | "engines": { 3830 | "node": ">=10.0.0" 3831 | } 3832 | }, 3833 | "node_modules/string-width": { 3834 | "version": "5.1.2", 3835 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", 3836 | "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", 3837 | "dependencies": { 3838 | "eastasianwidth": "^0.2.0", 3839 | "emoji-regex": "^9.2.2", 3840 | "strip-ansi": "^7.0.1" 3841 | }, 3842 | "engines": { 3843 | "node": ">=12" 3844 | }, 3845 | "funding": { 3846 | "url": "https://github.com/sponsors/sindresorhus" 3847 | } 3848 | }, 3849 | "node_modules/string-width-cjs": { 3850 | "name": "string-width", 3851 | "version": "4.2.3", 3852 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 3853 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 3854 | "dependencies": { 3855 | "emoji-regex": "^8.0.0", 3856 | "is-fullwidth-code-point": "^3.0.0", 3857 | "strip-ansi": "^6.0.1" 3858 | }, 3859 | "engines": { 3860 | "node": ">=8" 3861 | } 3862 | }, 3863 | "node_modules/string-width-cjs/node_modules/emoji-regex": { 3864 | "version": "8.0.0", 3865 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 3866 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 3867 | }, 3868 | "node_modules/string-width/node_modules/ansi-regex": { 3869 | "version": "6.0.1", 3870 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 3871 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 3872 | "engines": { 3873 | "node": ">=12" 3874 | }, 3875 | "funding": { 3876 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 3877 | } 3878 | }, 3879 | "node_modules/string-width/node_modules/strip-ansi": { 3880 | "version": "7.1.0", 3881 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 3882 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 3883 | "dependencies": { 3884 | "ansi-regex": "^6.0.1" 3885 | }, 3886 | "engines": { 3887 | "node": ">=12" 3888 | }, 3889 | "funding": { 3890 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 3891 | } 3892 | }, 3893 | "node_modules/string.prototype.matchall": { 3894 | "version": "4.0.10", 3895 | "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", 3896 | "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", 3897 | "dependencies": { 3898 | "call-bind": "^1.0.2", 3899 | "define-properties": "^1.2.0", 3900 | "es-abstract": "^1.22.1", 3901 | "get-intrinsic": "^1.2.1", 3902 | "has-symbols": "^1.0.3", 3903 | "internal-slot": "^1.0.5", 3904 | "regexp.prototype.flags": "^1.5.0", 3905 | "set-function-name": "^2.0.0", 3906 | "side-channel": "^1.0.4" 3907 | }, 3908 | "funding": { 3909 | "url": "https://github.com/sponsors/ljharb" 3910 | } 3911 | }, 3912 | "node_modules/string.prototype.trim": { 3913 | "version": "1.2.8", 3914 | "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", 3915 | "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", 3916 | "dependencies": { 3917 | "call-bind": "^1.0.2", 3918 | "define-properties": "^1.2.0", 3919 | "es-abstract": "^1.22.1" 3920 | }, 3921 | "engines": { 3922 | "node": ">= 0.4" 3923 | }, 3924 | "funding": { 3925 | "url": "https://github.com/sponsors/ljharb" 3926 | } 3927 | }, 3928 | "node_modules/string.prototype.trimend": { 3929 | "version": "1.0.7", 3930 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", 3931 | "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", 3932 | "dependencies": { 3933 | "call-bind": "^1.0.2", 3934 | "define-properties": "^1.2.0", 3935 | "es-abstract": "^1.22.1" 3936 | }, 3937 | "funding": { 3938 | "url": "https://github.com/sponsors/ljharb" 3939 | } 3940 | }, 3941 | "node_modules/string.prototype.trimstart": { 3942 | "version": "1.0.7", 3943 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", 3944 | "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", 3945 | "dependencies": { 3946 | "call-bind": "^1.0.2", 3947 | "define-properties": "^1.2.0", 3948 | "es-abstract": "^1.22.1" 3949 | }, 3950 | "funding": { 3951 | "url": "https://github.com/sponsors/ljharb" 3952 | } 3953 | }, 3954 | "node_modules/strip-ansi": { 3955 | "version": "6.0.1", 3956 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3957 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3958 | "dependencies": { 3959 | "ansi-regex": "^5.0.1" 3960 | }, 3961 | "engines": { 3962 | "node": ">=8" 3963 | } 3964 | }, 3965 | "node_modules/strip-ansi-cjs": { 3966 | "name": "strip-ansi", 3967 | "version": "6.0.1", 3968 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 3969 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 3970 | "dependencies": { 3971 | "ansi-regex": "^5.0.1" 3972 | }, 3973 | "engines": { 3974 | "node": ">=8" 3975 | } 3976 | }, 3977 | "node_modules/strip-bom": { 3978 | "version": "3.0.0", 3979 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 3980 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 3981 | "engines": { 3982 | "node": ">=4" 3983 | } 3984 | }, 3985 | "node_modules/strip-json-comments": { 3986 | "version": "3.1.1", 3987 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 3988 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 3989 | "peer": true, 3990 | "engines": { 3991 | "node": ">=8" 3992 | }, 3993 | "funding": { 3994 | "url": "https://github.com/sponsors/sindresorhus" 3995 | } 3996 | }, 3997 | "node_modules/style-value-types": { 3998 | "version": "5.0.0", 3999 | "license": "MIT", 4000 | "dependencies": { 4001 | "hey-listen": "^1.0.8", 4002 | "tslib": "^2.1.0" 4003 | } 4004 | }, 4005 | "node_modules/styled-jsx": { 4006 | "version": "5.1.1", 4007 | "license": "MIT", 4008 | "dependencies": { 4009 | "client-only": "0.0.1" 4010 | }, 4011 | "engines": { 4012 | "node": ">= 12.0.0" 4013 | }, 4014 | "peerDependencies": { 4015 | "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0" 4016 | }, 4017 | "peerDependenciesMeta": { 4018 | "@babel/core": { 4019 | "optional": true 4020 | }, 4021 | "babel-plugin-macros": { 4022 | "optional": true 4023 | } 4024 | } 4025 | }, 4026 | "node_modules/sucrase": { 4027 | "version": "3.32.0", 4028 | "license": "MIT", 4029 | "dependencies": { 4030 | "@jridgewell/gen-mapping": "^0.3.2", 4031 | "commander": "^4.0.0", 4032 | "glob": "7.1.6", 4033 | "lines-and-columns": "^1.1.6", 4034 | "mz": "^2.7.0", 4035 | "pirates": "^4.0.1", 4036 | "ts-interface-checker": "^0.1.9" 4037 | }, 4038 | "bin": { 4039 | "sucrase": "bin/sucrase", 4040 | "sucrase-node": "bin/sucrase-node" 4041 | }, 4042 | "engines": { 4043 | "node": ">=8" 4044 | } 4045 | }, 4046 | "node_modules/supports-color": { 4047 | "version": "7.2.0", 4048 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 4049 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 4050 | "peer": true, 4051 | "dependencies": { 4052 | "has-flag": "^4.0.0" 4053 | }, 4054 | "engines": { 4055 | "node": ">=8" 4056 | } 4057 | }, 4058 | "node_modules/supports-preserve-symlinks-flag": { 4059 | "version": "1.0.0", 4060 | "license": "MIT", 4061 | "engines": { 4062 | "node": ">= 0.4" 4063 | }, 4064 | "funding": { 4065 | "url": "https://github.com/sponsors/ljharb" 4066 | } 4067 | }, 4068 | "node_modules/tailwindcss": { 4069 | "version": "3.3.2", 4070 | "license": "MIT", 4071 | "dependencies": { 4072 | "@alloc/quick-lru": "^5.2.0", 4073 | "arg": "^5.0.2", 4074 | "chokidar": "^3.5.3", 4075 | "didyoumean": "^1.2.2", 4076 | "dlv": "^1.1.3", 4077 | "fast-glob": "^3.2.12", 4078 | "glob-parent": "^6.0.2", 4079 | "is-glob": "^4.0.3", 4080 | "jiti": "^1.18.2", 4081 | "lilconfig": "^2.1.0", 4082 | "micromatch": "^4.0.5", 4083 | "normalize-path": "^3.0.0", 4084 | "object-hash": "^3.0.0", 4085 | "picocolors": "^1.0.0", 4086 | "postcss": "^8.4.23", 4087 | "postcss-import": "^15.1.0", 4088 | "postcss-js": "^4.0.1", 4089 | "postcss-load-config": "^4.0.1", 4090 | "postcss-nested": "^6.0.1", 4091 | "postcss-selector-parser": "^6.0.11", 4092 | "postcss-value-parser": "^4.2.0", 4093 | "resolve": "^1.22.2", 4094 | "sucrase": "^3.32.0" 4095 | }, 4096 | "bin": { 4097 | "tailwind": "lib/cli.js", 4098 | "tailwindcss": "lib/cli.js" 4099 | }, 4100 | "engines": { 4101 | "node": ">=14.0.0" 4102 | } 4103 | }, 4104 | "node_modules/tailwindcss/node_modules/glob-parent": { 4105 | "version": "6.0.2", 4106 | "license": "ISC", 4107 | "dependencies": { 4108 | "is-glob": "^4.0.3" 4109 | }, 4110 | "engines": { 4111 | "node": ">=10.13.0" 4112 | } 4113 | }, 4114 | "node_modules/tailwindcss/node_modules/postcss-import": { 4115 | "version": "15.1.0", 4116 | "license": "MIT", 4117 | "dependencies": { 4118 | "postcss-value-parser": "^4.0.0", 4119 | "read-cache": "^1.0.0", 4120 | "resolve": "^1.1.7" 4121 | }, 4122 | "engines": { 4123 | "node": ">=14.0.0" 4124 | }, 4125 | "peerDependencies": { 4126 | "postcss": "^8.0.0" 4127 | } 4128 | }, 4129 | "node_modules/tailwindcss/node_modules/postcss-import/node_modules/resolve": { 4130 | "version": "1.22.1", 4131 | "license": "MIT", 4132 | "dependencies": { 4133 | "is-core-module": "^2.9.0", 4134 | "path-parse": "^1.0.7", 4135 | "supports-preserve-symlinks-flag": "^1.0.0" 4136 | }, 4137 | "bin": { 4138 | "resolve": "bin/resolve" 4139 | }, 4140 | "funding": { 4141 | "url": "https://github.com/sponsors/ljharb" 4142 | } 4143 | }, 4144 | "node_modules/tailwindcss/node_modules/postcss-js": { 4145 | "version": "4.0.1", 4146 | "license": "MIT", 4147 | "dependencies": { 4148 | "camelcase-css": "^2.0.1" 4149 | }, 4150 | "engines": { 4151 | "node": "^12 || ^14 || >= 16" 4152 | }, 4153 | "funding": { 4154 | "type": "opencollective", 4155 | "url": "https://opencollective.com/postcss/" 4156 | }, 4157 | "peerDependencies": { 4158 | "postcss": "^8.4.21" 4159 | } 4160 | }, 4161 | "node_modules/tailwindcss/node_modules/postcss-load-config": { 4162 | "version": "4.0.1", 4163 | "license": "MIT", 4164 | "dependencies": { 4165 | "lilconfig": "^2.0.5", 4166 | "yaml": "^2.1.1" 4167 | }, 4168 | "engines": { 4169 | "node": ">= 14" 4170 | }, 4171 | "funding": { 4172 | "type": "opencollective", 4173 | "url": "https://opencollective.com/postcss/" 4174 | }, 4175 | "peerDependencies": { 4176 | "postcss": ">=8.0.9", 4177 | "ts-node": ">=9.0.0" 4178 | }, 4179 | "peerDependenciesMeta": { 4180 | "postcss": { 4181 | "optional": true 4182 | }, 4183 | "ts-node": { 4184 | "optional": true 4185 | } 4186 | } 4187 | }, 4188 | "node_modules/tailwindcss/node_modules/postcss-load-config/node_modules/lilconfig": { 4189 | "version": "2.0.6", 4190 | "license": "MIT", 4191 | "engines": { 4192 | "node": ">=10" 4193 | } 4194 | }, 4195 | "node_modules/tailwindcss/node_modules/postcss-nested": { 4196 | "version": "6.0.1", 4197 | "license": "MIT", 4198 | "dependencies": { 4199 | "postcss-selector-parser": "^6.0.11" 4200 | }, 4201 | "engines": { 4202 | "node": ">=12.0" 4203 | }, 4204 | "funding": { 4205 | "type": "opencollective", 4206 | "url": "https://opencollective.com/postcss/" 4207 | }, 4208 | "peerDependencies": { 4209 | "postcss": "^8.2.14" 4210 | } 4211 | }, 4212 | "node_modules/tapable": { 4213 | "version": "2.2.1", 4214 | "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", 4215 | "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", 4216 | "engines": { 4217 | "node": ">=6" 4218 | } 4219 | }, 4220 | "node_modules/text-table": { 4221 | "version": "0.2.0", 4222 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 4223 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 4224 | "peer": true 4225 | }, 4226 | "node_modules/thenify": { 4227 | "version": "3.3.1", 4228 | "license": "MIT", 4229 | "dependencies": { 4230 | "any-promise": "^1.0.0" 4231 | } 4232 | }, 4233 | "node_modules/thenify-all": { 4234 | "version": "1.6.0", 4235 | "license": "MIT", 4236 | "dependencies": { 4237 | "thenify": ">= 3.1.0 < 4" 4238 | }, 4239 | "engines": { 4240 | "node": ">=0.8" 4241 | } 4242 | }, 4243 | "node_modules/to-regex-range": { 4244 | "version": "5.0.1", 4245 | "license": "MIT", 4246 | "dependencies": { 4247 | "is-number": "^7.0.0" 4248 | }, 4249 | "engines": { 4250 | "node": ">=8.0" 4251 | } 4252 | }, 4253 | "node_modules/tr46": { 4254 | "version": "0.0.3", 4255 | "license": "MIT" 4256 | }, 4257 | "node_modules/ts-api-utils": { 4258 | "version": "1.2.1", 4259 | "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.2.1.tgz", 4260 | "integrity": "sha512-RIYA36cJn2WiH9Hy77hdF9r7oEwxAtB/TS9/S4Qd90Ap4z5FSiin5zEiTL44OII1Y3IIlEvxwxFUVgrHSZ/UpA==", 4261 | "engines": { 4262 | "node": ">=16" 4263 | }, 4264 | "peerDependencies": { 4265 | "typescript": ">=4.2.0" 4266 | } 4267 | }, 4268 | "node_modules/ts-interface-checker": { 4269 | "version": "0.1.13", 4270 | "license": "Apache-2.0" 4271 | }, 4272 | "node_modules/tsconfig-paths": { 4273 | "version": "3.15.0", 4274 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", 4275 | "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", 4276 | "dependencies": { 4277 | "@types/json5": "^0.0.29", 4278 | "json5": "^1.0.2", 4279 | "minimist": "^1.2.6", 4280 | "strip-bom": "^3.0.0" 4281 | } 4282 | }, 4283 | "node_modules/tslib": { 4284 | "version": "2.6.2", 4285 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", 4286 | "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" 4287 | }, 4288 | "node_modules/type-check": { 4289 | "version": "0.4.0", 4290 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 4291 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 4292 | "peer": true, 4293 | "dependencies": { 4294 | "prelude-ls": "^1.2.1" 4295 | }, 4296 | "engines": { 4297 | "node": ">= 0.8.0" 4298 | } 4299 | }, 4300 | "node_modules/type-fest": { 4301 | "version": "0.20.2", 4302 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 4303 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 4304 | "peer": true, 4305 | "engines": { 4306 | "node": ">=10" 4307 | }, 4308 | "funding": { 4309 | "url": "https://github.com/sponsors/sindresorhus" 4310 | } 4311 | }, 4312 | "node_modules/typed-array-buffer": { 4313 | "version": "1.0.1", 4314 | "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.1.tgz", 4315 | "integrity": "sha512-RSqu1UEuSlrBhHTWC8O9FnPjOduNs4M7rJ4pRKoEjtx1zUNOPN2sSXHLDX+Y2WPbHIxbvg4JFo2DNAEfPIKWoQ==", 4316 | "dependencies": { 4317 | "call-bind": "^1.0.6", 4318 | "es-errors": "^1.3.0", 4319 | "is-typed-array": "^1.1.13" 4320 | }, 4321 | "engines": { 4322 | "node": ">= 0.4" 4323 | } 4324 | }, 4325 | "node_modules/typed-array-byte-length": { 4326 | "version": "1.0.0", 4327 | "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", 4328 | "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", 4329 | "dependencies": { 4330 | "call-bind": "^1.0.2", 4331 | "for-each": "^0.3.3", 4332 | "has-proto": "^1.0.1", 4333 | "is-typed-array": "^1.1.10" 4334 | }, 4335 | "engines": { 4336 | "node": ">= 0.4" 4337 | }, 4338 | "funding": { 4339 | "url": "https://github.com/sponsors/ljharb" 4340 | } 4341 | }, 4342 | "node_modules/typed-array-byte-offset": { 4343 | "version": "1.0.0", 4344 | "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", 4345 | "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", 4346 | "dependencies": { 4347 | "available-typed-arrays": "^1.0.5", 4348 | "call-bind": "^1.0.2", 4349 | "for-each": "^0.3.3", 4350 | "has-proto": "^1.0.1", 4351 | "is-typed-array": "^1.1.10" 4352 | }, 4353 | "engines": { 4354 | "node": ">= 0.4" 4355 | }, 4356 | "funding": { 4357 | "url": "https://github.com/sponsors/ljharb" 4358 | } 4359 | }, 4360 | "node_modules/typed-array-length": { 4361 | "version": "1.0.4", 4362 | "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", 4363 | "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", 4364 | "dependencies": { 4365 | "call-bind": "^1.0.2", 4366 | "for-each": "^0.3.3", 4367 | "is-typed-array": "^1.1.9" 4368 | }, 4369 | "funding": { 4370 | "url": "https://github.com/sponsors/ljharb" 4371 | } 4372 | }, 4373 | "node_modules/typescript": { 4374 | "version": "5.0.4", 4375 | "license": "Apache-2.0", 4376 | "bin": { 4377 | "tsc": "bin/tsc", 4378 | "tsserver": "bin/tsserver" 4379 | }, 4380 | "engines": { 4381 | "node": ">=12.20" 4382 | } 4383 | }, 4384 | "node_modules/unbox-primitive": { 4385 | "version": "1.0.2", 4386 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 4387 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 4388 | "dependencies": { 4389 | "call-bind": "^1.0.2", 4390 | "has-bigints": "^1.0.2", 4391 | "has-symbols": "^1.0.3", 4392 | "which-boxed-primitive": "^1.0.2" 4393 | }, 4394 | "funding": { 4395 | "url": "https://github.com/sponsors/ljharb" 4396 | } 4397 | }, 4398 | "node_modules/update-browserslist-db": { 4399 | "version": "1.0.9", 4400 | "dev": true, 4401 | "funding": [ 4402 | { 4403 | "type": "opencollective", 4404 | "url": "https://opencollective.com/browserslist" 4405 | }, 4406 | { 4407 | "type": "tidelift", 4408 | "url": "https://tidelift.com/funding/github/npm/browserslist" 4409 | } 4410 | ], 4411 | "license": "MIT", 4412 | "dependencies": { 4413 | "escalade": "^3.1.1", 4414 | "picocolors": "^1.0.0" 4415 | }, 4416 | "bin": { 4417 | "browserslist-lint": "cli.js" 4418 | }, 4419 | "peerDependencies": { 4420 | "browserslist": ">= 4.21.0" 4421 | } 4422 | }, 4423 | "node_modules/uri-js": { 4424 | "version": "4.4.1", 4425 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 4426 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 4427 | "peer": true, 4428 | "dependencies": { 4429 | "punycode": "^2.1.0" 4430 | } 4431 | }, 4432 | "node_modules/util-deprecate": { 4433 | "version": "1.0.2", 4434 | "license": "MIT" 4435 | }, 4436 | "node_modules/webidl-conversions": { 4437 | "version": "3.0.1", 4438 | "license": "BSD-2-Clause" 4439 | }, 4440 | "node_modules/whatwg-fetch": { 4441 | "version": "3.6.2", 4442 | "license": "MIT" 4443 | }, 4444 | "node_modules/whatwg-url": { 4445 | "version": "5.0.0", 4446 | "license": "MIT", 4447 | "dependencies": { 4448 | "tr46": "~0.0.3", 4449 | "webidl-conversions": "^3.0.0" 4450 | } 4451 | }, 4452 | "node_modules/which": { 4453 | "version": "2.0.2", 4454 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 4455 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 4456 | "dependencies": { 4457 | "isexe": "^2.0.0" 4458 | }, 4459 | "bin": { 4460 | "node-which": "bin/node-which" 4461 | }, 4462 | "engines": { 4463 | "node": ">= 8" 4464 | } 4465 | }, 4466 | "node_modules/which-boxed-primitive": { 4467 | "version": "1.0.2", 4468 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 4469 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 4470 | "dependencies": { 4471 | "is-bigint": "^1.0.1", 4472 | "is-boolean-object": "^1.1.0", 4473 | "is-number-object": "^1.0.4", 4474 | "is-string": "^1.0.5", 4475 | "is-symbol": "^1.0.3" 4476 | }, 4477 | "funding": { 4478 | "url": "https://github.com/sponsors/ljharb" 4479 | } 4480 | }, 4481 | "node_modules/which-builtin-type": { 4482 | "version": "1.1.3", 4483 | "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", 4484 | "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", 4485 | "dependencies": { 4486 | "function.prototype.name": "^1.1.5", 4487 | "has-tostringtag": "^1.0.0", 4488 | "is-async-function": "^2.0.0", 4489 | "is-date-object": "^1.0.5", 4490 | "is-finalizationregistry": "^1.0.2", 4491 | "is-generator-function": "^1.0.10", 4492 | "is-regex": "^1.1.4", 4493 | "is-weakref": "^1.0.2", 4494 | "isarray": "^2.0.5", 4495 | "which-boxed-primitive": "^1.0.2", 4496 | "which-collection": "^1.0.1", 4497 | "which-typed-array": "^1.1.9" 4498 | }, 4499 | "engines": { 4500 | "node": ">= 0.4" 4501 | }, 4502 | "funding": { 4503 | "url": "https://github.com/sponsors/ljharb" 4504 | } 4505 | }, 4506 | "node_modules/which-collection": { 4507 | "version": "1.0.1", 4508 | "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", 4509 | "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", 4510 | "dependencies": { 4511 | "is-map": "^2.0.1", 4512 | "is-set": "^2.0.1", 4513 | "is-weakmap": "^2.0.1", 4514 | "is-weakset": "^2.0.1" 4515 | }, 4516 | "funding": { 4517 | "url": "https://github.com/sponsors/ljharb" 4518 | } 4519 | }, 4520 | "node_modules/which-typed-array": { 4521 | "version": "1.1.14", 4522 | "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.14.tgz", 4523 | "integrity": "sha512-VnXFiIW8yNn9kIHN88xvZ4yOWchftKDsRJ8fEPacX/wl1lOvBrhsJ/OeJCXq7B0AaijRuqgzSKalJoPk+D8MPg==", 4524 | "dependencies": { 4525 | "available-typed-arrays": "^1.0.6", 4526 | "call-bind": "^1.0.5", 4527 | "for-each": "^0.3.3", 4528 | "gopd": "^1.0.1", 4529 | "has-tostringtag": "^1.0.1" 4530 | }, 4531 | "engines": { 4532 | "node": ">= 0.4" 4533 | }, 4534 | "funding": { 4535 | "url": "https://github.com/sponsors/ljharb" 4536 | } 4537 | }, 4538 | "node_modules/wrap-ansi": { 4539 | "version": "8.1.0", 4540 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", 4541 | "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", 4542 | "dependencies": { 4543 | "ansi-styles": "^6.1.0", 4544 | "string-width": "^5.0.1", 4545 | "strip-ansi": "^7.0.1" 4546 | }, 4547 | "engines": { 4548 | "node": ">=12" 4549 | }, 4550 | "funding": { 4551 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4552 | } 4553 | }, 4554 | "node_modules/wrap-ansi-cjs": { 4555 | "name": "wrap-ansi", 4556 | "version": "7.0.0", 4557 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", 4558 | "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", 4559 | "dependencies": { 4560 | "ansi-styles": "^4.0.0", 4561 | "string-width": "^4.1.0", 4562 | "strip-ansi": "^6.0.0" 4563 | }, 4564 | "engines": { 4565 | "node": ">=10" 4566 | }, 4567 | "funding": { 4568 | "url": "https://github.com/chalk/wrap-ansi?sponsor=1" 4569 | } 4570 | }, 4571 | "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { 4572 | "version": "8.0.0", 4573 | "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", 4574 | "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" 4575 | }, 4576 | "node_modules/wrap-ansi-cjs/node_modules/string-width": { 4577 | "version": "4.2.3", 4578 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", 4579 | "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", 4580 | "dependencies": { 4581 | "emoji-regex": "^8.0.0", 4582 | "is-fullwidth-code-point": "^3.0.0", 4583 | "strip-ansi": "^6.0.1" 4584 | }, 4585 | "engines": { 4586 | "node": ">=8" 4587 | } 4588 | }, 4589 | "node_modules/wrap-ansi/node_modules/ansi-regex": { 4590 | "version": "6.0.1", 4591 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", 4592 | "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", 4593 | "engines": { 4594 | "node": ">=12" 4595 | }, 4596 | "funding": { 4597 | "url": "https://github.com/chalk/ansi-regex?sponsor=1" 4598 | } 4599 | }, 4600 | "node_modules/wrap-ansi/node_modules/ansi-styles": { 4601 | "version": "6.2.1", 4602 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", 4603 | "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", 4604 | "engines": { 4605 | "node": ">=12" 4606 | }, 4607 | "funding": { 4608 | "url": "https://github.com/chalk/ansi-styles?sponsor=1" 4609 | } 4610 | }, 4611 | "node_modules/wrap-ansi/node_modules/strip-ansi": { 4612 | "version": "7.1.0", 4613 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", 4614 | "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", 4615 | "dependencies": { 4616 | "ansi-regex": "^6.0.1" 4617 | }, 4618 | "engines": { 4619 | "node": ">=12" 4620 | }, 4621 | "funding": { 4622 | "url": "https://github.com/chalk/strip-ansi?sponsor=1" 4623 | } 4624 | }, 4625 | "node_modules/wrappy": { 4626 | "version": "1.0.2", 4627 | "license": "ISC" 4628 | }, 4629 | "node_modules/yallist": { 4630 | "version": "4.0.0", 4631 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 4632 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 4633 | }, 4634 | "node_modules/yaml": { 4635 | "version": "2.2.2", 4636 | "license": "ISC", 4637 | "engines": { 4638 | "node": ">= 14" 4639 | } 4640 | }, 4641 | "node_modules/yocto-queue": { 4642 | "version": "0.1.0", 4643 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 4644 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 4645 | "peer": true, 4646 | "engines": { 4647 | "node": ">=10" 4648 | }, 4649 | "funding": { 4650 | "url": "https://github.com/sponsors/sindresorhus" 4651 | } 4652 | } 4653 | } 4654 | } 4655 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "personal-website", 3 | "version": "0.0.1", 4 | "scripts": { 5 | "dev": "next dev", 6 | "build": "next build", 7 | "start": "next start" 8 | }, 9 | "devDependencies": { 10 | "@tailwindcss/aspect-ratio": "^0.4.2", 11 | "@tailwindcss/line-clamp": "^0.4.2", 12 | "@tailwindcss/typography": "^0.5.7", 13 | "@types/node": "^16.11.6", 14 | "@types/react": "^17.0.33", 15 | "autoprefixer": "^10.4.12", 16 | "postcss": "^8.4.16", 17 | "tailwindcss": "^3.3.2", 18 | "typescript": "^5.0.4" 19 | }, 20 | "dependencies": { 21 | "@headlessui/react": "^1.4.1", 22 | "@heroicons/react": "^1.0.5", 23 | "@tailwindcss/forms": "^0.5.3", 24 | "@vercel/kv": "^0.2.1", 25 | "classnames": "^2.3.1", 26 | "crypto-js": "^4.2.0", 27 | "eslint-config-next": "^14.1.0", 28 | "framer-motion": "^5.0.1", 29 | "next": "^14.1.0", 30 | "react": "^18.2.0", 31 | "react-dom": "^18.2.0", 32 | "react-intersection-observer": "^8.32.2" 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingwizard/personal-website/962a9e0182e3647cd92d63cf3ef665a2033aaf39/public/favicon.ico -------------------------------------------------------------------------------- /public/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecodingwizard/personal-website/962a9e0182e3647cd92d63cf3ef665a2033aaf39/public/resume.pdf -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /resume.pdf 3 | Disallow: /games 4 | Disallow: /l 5 | 6 | User-agent: * 7 | Allow: / -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- 1 | @tailwind base; 2 | @tailwind components; 3 | @tailwind utilities; 4 | 5 | html { 6 | scroll-behavior: smooth; 7 | } 8 | 9 | body { 10 | background-color: theme('colors.slate.950') 11 | } 12 | 13 | /* Used for achievements card hover border animation */ 14 | /* Never mind, doesn't look good & no longer needed */ 15 | /* @property --angle { 16 | syntax: ''; 17 | initial-value: 135deg; 18 | inherits: false; 19 | } */ -------------------------------------------------------------------------------- /styles/index.css: -------------------------------------------------------------------------------- 1 | @layer components { 2 | .container { 3 | @apply py-12 lg:py-16 xl:py-24 2xl:py-32 px-6 md:px-12 lg:px-24 max-w-screen-2xl w-full mx-auto; 4 | } 5 | 6 | .text-body, .text-body-container { 7 | @apply text-slate-400 sm:text-lg lg:text-xl leading-relaxed; 8 | } 9 | 10 | .text-body-container { 11 | @apply max-w-prose space-y-4 sm:space-y-6 lg:space-y-8; 12 | } 13 | } -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- 1 | const defaultTheme = require('tailwindcss/defaultTheme') 2 | const colors = require('tailwindcss/colors') 3 | 4 | module.exports = { 5 | content: ['app/**/*.{js,ts,tsx}','components/**/*.{js,ts,tsx}',], 6 | theme: { 7 | extend: { 8 | fontFamily: { 9 | mono: ['JetBrains Mono', ...defaultTheme.fontFamily.mono], 10 | sans: ['Inter var', ...defaultTheme.fontFamily.sans], 11 | }, 12 | colors: { 13 | homepageIcon: "#225da5", 14 | accent: colors.fuchsia["400"] 15 | }, 16 | zIndex: { 17 | '-10': '-10', 18 | } 19 | }, 20 | }, 21 | plugins: [ 22 | require('@tailwindcss/forms'), 23 | ], 24 | } 25 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "lib": [ 5 | "dom", 6 | "dom.iterable", 7 | "esnext" 8 | ], 9 | "allowJs": true, 10 | "skipLibCheck": true, 11 | "strict": false, 12 | "forceConsistentCasingInFileNames": true, 13 | "noEmit": true, 14 | "esModuleInterop": true, 15 | "module": "esnext", 16 | "moduleResolution": "node", 17 | "resolveJsonModule": true, 18 | "isolatedModules": true, 19 | "jsx": "preserve", 20 | "incremental": true, 21 | "baseUrl": ".", 22 | "plugins": [ 23 | { 24 | "name": "next" 25 | } 26 | ] 27 | }, 28 | "include": [ 29 | "next-env.d.ts", 30 | "**/*.ts", 31 | "**/*.tsx", 32 | ".next/types/**/*.ts" 33 | ], 34 | "exclude": [ 35 | "node_modules" 36 | ] 37 | } 38 | --------------------------------------------------------------------------------