agentvibes 2.0.18 → 2.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (301) hide show
  1. package/.bmad-core/agent-teams/team-all.yaml +15 -0
  2. package/.bmad-core/agent-teams/team-fullstack.yaml +19 -0
  3. package/.bmad-core/agent-teams/team-ide-minimal.yaml +11 -0
  4. package/.bmad-core/agent-teams/team-no-ui.yaml +14 -0
  5. package/.bmad-core/agents/analyst.md +84 -0
  6. package/.bmad-core/agents/architect.md +85 -0
  7. package/.bmad-core/agents/bmad-master.md +110 -0
  8. package/.bmad-core/agents/bmad-orchestrator.md +147 -0
  9. package/.bmad-core/agents/dev.md +81 -0
  10. package/.bmad-core/agents/pm.md +84 -0
  11. package/.bmad-core/agents/po.md +79 -0
  12. package/.bmad-core/agents/qa.md +87 -0
  13. package/.bmad-core/agents/sm.md +65 -0
  14. package/.bmad-core/agents/ux-expert.md +69 -0
  15. package/.bmad-core/checklists/architect-checklist.md +440 -0
  16. package/.bmad-core/checklists/change-checklist.md +184 -0
  17. package/.bmad-core/checklists/pm-checklist.md +372 -0
  18. package/.bmad-core/checklists/po-master-checklist.md +434 -0
  19. package/.bmad-core/checklists/story-dod-checklist.md +96 -0
  20. package/.bmad-core/checklists/story-draft-checklist.md +155 -0
  21. package/.bmad-core/core-config.yaml +22 -0
  22. package/.bmad-core/data/bmad-kb.md +809 -0
  23. package/.bmad-core/data/brainstorming-techniques.md +38 -0
  24. package/.bmad-core/data/elicitation-methods.md +156 -0
  25. package/.bmad-core/data/technical-preferences.md +5 -0
  26. package/.bmad-core/data/test-levels-framework.md +148 -0
  27. package/.bmad-core/data/test-priorities-matrix.md +174 -0
  28. package/.bmad-core/enhanced-ide-development-workflow.md +248 -0
  29. package/.bmad-core/install-manifest.yaml +230 -0
  30. package/.bmad-core/tasks/advanced-elicitation.md +119 -0
  31. package/.bmad-core/tasks/apply-qa-fixes.md +150 -0
  32. package/.bmad-core/tasks/brownfield-create-epic.md +162 -0
  33. package/.bmad-core/tasks/brownfield-create-story.md +149 -0
  34. package/.bmad-core/tasks/correct-course.md +72 -0
  35. package/.bmad-core/tasks/create-brownfield-story.md +314 -0
  36. package/.bmad-core/tasks/create-deep-research-prompt.md +280 -0
  37. package/.bmad-core/tasks/create-doc.md +103 -0
  38. package/.bmad-core/tasks/create-next-story.md +114 -0
  39. package/.bmad-core/tasks/document-project.md +345 -0
  40. package/.bmad-core/tasks/execute-checklist.md +88 -0
  41. package/.bmad-core/tasks/facilitate-brainstorming-session.md +138 -0
  42. package/.bmad-core/tasks/generate-ai-frontend-prompt.md +53 -0
  43. package/.bmad-core/tasks/index-docs.md +175 -0
  44. package/.bmad-core/tasks/kb-mode-interaction.md +77 -0
  45. package/.bmad-core/tasks/nfr-assess.md +345 -0
  46. package/.bmad-core/tasks/qa-gate.md +163 -0
  47. package/.bmad-core/tasks/review-story.md +316 -0
  48. package/.bmad-core/tasks/risk-profile.md +355 -0
  49. package/.bmad-core/tasks/shard-doc.md +187 -0
  50. package/.bmad-core/tasks/test-design.md +176 -0
  51. package/.bmad-core/tasks/trace-requirements.md +266 -0
  52. package/.bmad-core/tasks/validate-next-story.md +136 -0
  53. package/.bmad-core/templates/architecture-tmpl.yaml +651 -0
  54. package/.bmad-core/templates/brainstorming-output-tmpl.yaml +156 -0
  55. package/.bmad-core/templates/brownfield-architecture-tmpl.yaml +477 -0
  56. package/.bmad-core/templates/brownfield-prd-tmpl.yaml +281 -0
  57. package/.bmad-core/templates/competitor-analysis-tmpl.yaml +307 -0
  58. package/.bmad-core/templates/front-end-architecture-tmpl.yaml +219 -0
  59. package/.bmad-core/templates/front-end-spec-tmpl.yaml +350 -0
  60. package/.bmad-core/templates/fullstack-architecture-tmpl.yaml +824 -0
  61. package/.bmad-core/templates/market-research-tmpl.yaml +253 -0
  62. package/.bmad-core/templates/prd-tmpl.yaml +203 -0
  63. package/.bmad-core/templates/project-brief-tmpl.yaml +222 -0
  64. package/.bmad-core/templates/qa-gate-tmpl.yaml +103 -0
  65. package/.bmad-core/templates/story-tmpl.yaml +138 -0
  66. package/.bmad-core/user-guide.md +577 -0
  67. package/.bmad-core/utils/bmad-doc-template.md +327 -0
  68. package/.bmad-core/utils/workflow-management.md +71 -0
  69. package/.bmad-core/workflows/brownfield-fullstack.yaml +298 -0
  70. package/.bmad-core/workflows/brownfield-service.yaml +188 -0
  71. package/.bmad-core/workflows/brownfield-ui.yaml +198 -0
  72. package/.bmad-core/workflows/greenfield-fullstack.yaml +241 -0
  73. package/.bmad-core/workflows/greenfield-service.yaml +207 -0
  74. package/.bmad-core/workflows/greenfield-ui.yaml +236 -0
  75. package/.bmad-core/working-in-the-brownfield.md +606 -0
  76. package/.claude/commands/BMad/agents/analyst.md +88 -0
  77. package/.claude/commands/BMad/agents/architect.md +89 -0
  78. package/.claude/commands/BMad/agents/bmad-master.md +114 -0
  79. package/.claude/commands/BMad/agents/bmad-orchestrator.md +151 -0
  80. package/.claude/commands/BMad/agents/dev.md +85 -0
  81. package/.claude/commands/BMad/agents/pm.md +88 -0
  82. package/.claude/commands/BMad/agents/po.md +83 -0
  83. package/.claude/commands/BMad/agents/qa.md +91 -0
  84. package/.claude/commands/BMad/agents/sm.md +69 -0
  85. package/.claude/commands/BMad/agents/ux-expert.md +73 -0
  86. package/.claude/commands/BMad/tasks/advanced-elicitation.md +123 -0
  87. package/.claude/commands/BMad/tasks/apply-qa-fixes.md +154 -0
  88. package/.claude/commands/BMad/tasks/brownfield-create-epic.md +166 -0
  89. package/.claude/commands/BMad/tasks/brownfield-create-story.md +153 -0
  90. package/.claude/commands/BMad/tasks/correct-course.md +76 -0
  91. package/.claude/commands/BMad/tasks/create-brownfield-story.md +318 -0
  92. package/.claude/commands/BMad/tasks/create-deep-research-prompt.md +284 -0
  93. package/.claude/commands/BMad/tasks/create-doc.md +107 -0
  94. package/.claude/commands/BMad/tasks/create-next-story.md +118 -0
  95. package/.claude/commands/BMad/tasks/document-project.md +349 -0
  96. package/.claude/commands/BMad/tasks/execute-checklist.md +92 -0
  97. package/.claude/commands/BMad/tasks/facilitate-brainstorming-session.md +142 -0
  98. package/.claude/commands/BMad/tasks/generate-ai-frontend-prompt.md +57 -0
  99. package/.claude/commands/BMad/tasks/index-docs.md +179 -0
  100. package/.claude/commands/BMad/tasks/kb-mode-interaction.md +81 -0
  101. package/.claude/commands/BMad/tasks/nfr-assess.md +349 -0
  102. package/.claude/commands/BMad/tasks/qa-gate.md +167 -0
  103. package/.claude/commands/BMad/tasks/review-story.md +320 -0
  104. package/.claude/commands/BMad/tasks/risk-profile.md +359 -0
  105. package/.claude/commands/BMad/tasks/shard-doc.md +191 -0
  106. package/.claude/commands/BMad/tasks/test-design.md +180 -0
  107. package/.claude/commands/BMad/tasks/trace-requirements.md +270 -0
  108. package/.claude/commands/BMad/tasks/validate-next-story.md +140 -0
  109. package/README.md +2 -2
  110. package/agentvibes.org/.claude/audio/tts-padded-1760744118.mp3 +0 -0
  111. package/agentvibes.org/.claude/audio/tts-padded-1760748535.mp3 +0 -0
  112. package/agentvibes.org/.claude/audio/tts-padded-1760748676.mp3 +0 -0
  113. package/agentvibes.org/.claude/audio/tts-padded-1760750748.mp3 +0 -0
  114. package/agentvibes.org/.claude/audio/tts-padded-1760750947.mp3 +0 -0
  115. package/agentvibes.org/.claude/audio/tts-padded-1760752718.mp3 +0 -0
  116. package/agentvibes.org/.claude/audio/tts-padded-1760752907.mp3 +0 -0
  117. package/agentvibes.org/.claude/audio/tts-padded-1760753017.mp3 +0 -0
  118. package/agentvibes.org/.claude/audio/tts-padded-1760753045.mp3 +0 -0
  119. package/agentvibes.org/.claude/audio/tts-padded-1760753241.mp3 +0 -0
  120. package/agentvibes.org/.claude/audio/tts-padded-1760753315.mp3 +0 -0
  121. package/agentvibes.org/.claude/audio/tts-padded-1760753382.mp3 +0 -0
  122. package/agentvibes.org/.claude/audio/tts-padded-1760753408.mp3 +0 -0
  123. package/agentvibes.org/.claude/audio/tts-padded-1760753426.mp3 +0 -0
  124. package/agentvibes.org/.claude/audio/tts-padded-1760753446.mp3 +0 -0
  125. package/agentvibes.org/.claude/audio/tts-padded-1760753541.mp3 +0 -0
  126. package/agentvibes.org/.claude/audio/tts-padded-1760753553.mp3 +0 -0
  127. package/agentvibes.org/.claude/audio/tts-padded-1760753577.mp3 +0 -0
  128. package/agentvibes.org/.claude/commands/agent-vibes/add.md +21 -0
  129. package/agentvibes.org/.claude/commands/agent-vibes/agent-vibes.md +68 -0
  130. package/agentvibes.org/.claude/commands/agent-vibes/bmad.md +196 -0
  131. package/agentvibes.org/.claude/commands/agent-vibes/commands.json +77 -0
  132. package/agentvibes.org/.claude/commands/agent-vibes/get.md +9 -0
  133. package/agentvibes.org/.claude/commands/agent-vibes/language.md +23 -0
  134. package/agentvibes.org/.claude/commands/agent-vibes/learn.md +67 -0
  135. package/agentvibes.org/.claude/commands/agent-vibes/list.md +13 -0
  136. package/agentvibes.org/.claude/commands/agent-vibes/personality.md +79 -0
  137. package/agentvibes.org/.claude/commands/agent-vibes/preview.md +17 -0
  138. package/agentvibes.org/.claude/commands/agent-vibes/provider.md +54 -0
  139. package/agentvibes.org/.claude/commands/agent-vibes/replay-target.md +14 -0
  140. package/agentvibes.org/.claude/commands/agent-vibes/replay.md +19 -0
  141. package/agentvibes.org/.claude/commands/agent-vibes/sample.md +12 -0
  142. package/agentvibes.org/.claude/commands/agent-vibes/sentiment.md +52 -0
  143. package/agentvibes.org/.claude/commands/agent-vibes/set-language.md +47 -0
  144. package/agentvibes.org/.claude/commands/agent-vibes/set-pretext.md +65 -0
  145. package/agentvibes.org/.claude/commands/agent-vibes/set-speed.md +41 -0
  146. package/agentvibes.org/.claude/commands/agent-vibes/switch.md +53 -0
  147. package/agentvibes.org/.claude/commands/agent-vibes/target-voice.md +26 -0
  148. package/agentvibes.org/.claude/commands/agent-vibes/target.md +30 -0
  149. package/agentvibes.org/.claude/commands/agent-vibes/update.md +20 -0
  150. package/agentvibes.org/.claude/commands/agent-vibes/version.md +10 -0
  151. package/agentvibes.org/.claude/commands/agent-vibes/whoami.md +7 -0
  152. package/agentvibes.org/.claude/hooks/bmad-tts-injector.sh +386 -0
  153. package/agentvibes.org/.claude/hooks/bmad-voice-manager.sh +375 -0
  154. package/agentvibes.org/.claude/hooks/check-output-style.sh +60 -0
  155. package/agentvibes.org/.claude/hooks/github-star-reminder.sh +94 -0
  156. package/agentvibes.org/.claude/hooks/language-manager.sh +360 -0
  157. package/agentvibes.org/.claude/hooks/learn-manager.sh +443 -0
  158. package/agentvibes.org/.claude/hooks/personality-manager.sh +324 -0
  159. package/agentvibes.org/.claude/hooks/piper-download-voices.sh +133 -0
  160. package/agentvibes.org/.claude/hooks/piper-installer.sh +144 -0
  161. package/agentvibes.org/.claude/hooks/piper-voice-manager.sh +227 -0
  162. package/agentvibes.org/.claude/hooks/play-tts-elevenlabs.sh +376 -0
  163. package/agentvibes.org/.claude/hooks/play-tts-piper.sh +281 -0
  164. package/agentvibes.org/.claude/hooks/play-tts.sh +69 -0
  165. package/agentvibes.org/.claude/hooks/provider-commands.sh +505 -0
  166. package/agentvibes.org/.claude/hooks/provider-manager.sh +248 -0
  167. package/agentvibes.org/.claude/hooks/replay-target-audio.sh +64 -0
  168. package/agentvibes.org/.claude/hooks/sentiment-manager.sh +163 -0
  169. package/agentvibes.org/.claude/hooks/speed-manager.sh +259 -0
  170. package/agentvibes.org/.claude/hooks/voice-manager.sh +477 -0
  171. package/agentvibes.org/.claude/hooks/voices-config.sh +33 -0
  172. package/agentvibes.org/.claude/journal/2025-10-07.html +373 -0
  173. package/agentvibes.org/.claude/journal/index.html +91 -0
  174. package/agentvibes.org/.claude/output-styles/agent-vibes.md +203 -0
  175. package/agentvibes.org/.claude/personalities/angry.md +17 -0
  176. package/agentvibes.org/.claude/personalities/annoying.md +17 -0
  177. package/agentvibes.org/.claude/personalities/crass.md +17 -0
  178. package/agentvibes.org/.claude/personalities/dramatic.md +17 -0
  179. package/agentvibes.org/.claude/personalities/dry-humor.md +53 -0
  180. package/agentvibes.org/.claude/personalities/flirty.md +23 -0
  181. package/agentvibes.org/.claude/personalities/funny.md +17 -0
  182. package/agentvibes.org/.claude/personalities/grandpa.md +35 -0
  183. package/agentvibes.org/.claude/personalities/millennial.md +17 -0
  184. package/agentvibes.org/.claude/personalities/moody.md +17 -0
  185. package/agentvibes.org/.claude/personalities/normal.md +19 -0
  186. package/agentvibes.org/.claude/personalities/pirate.md +17 -0
  187. package/agentvibes.org/.claude/personalities/poetic.md +17 -0
  188. package/agentvibes.org/.claude/personalities/professional.md +17 -0
  189. package/agentvibes.org/.claude/personalities/robot.md +17 -0
  190. package/agentvibes.org/.claude/personalities/sarcastic.md +41 -0
  191. package/agentvibes.org/.claude/personalities/sassy.md +17 -0
  192. package/agentvibes.org/.claude/personalities/surfer-dude.md +17 -0
  193. package/agentvibes.org/.claude/personalities/zen.md +17 -0
  194. package/agentvibes.org/.claude/piper-voices-dir.txt +1 -0
  195. package/agentvibes.org/.claude/plugins/bmad-voices.md +42 -0
  196. package/agentvibes.org/.claude/tts-provider.txt +1 -0
  197. package/agentvibes.org/.mcp-minimal.json +60 -0
  198. package/agentvibes.org/CHANGELOG.md +56 -0
  199. package/agentvibes.org/README.md +93 -0
  200. package/agentvibes.org/app/(auth)/layout.tsx +15 -0
  201. package/agentvibes.org/app/(auth)/reset-password/page.tsx +45 -0
  202. package/agentvibes.org/app/(auth)/signin/page.tsx +82 -0
  203. package/agentvibes.org/app/(auth)/signup/page.tsx +104 -0
  204. package/agentvibes.org/app/(default)/blog/[slug]/page.tsx +128 -0
  205. package/agentvibes.org/app/(default)/blog/page.tsx +95 -0
  206. package/agentvibes.org/app/(default)/layout.tsx +31 -0
  207. package/agentvibes.org/app/(default)/page.tsx +20 -0
  208. package/agentvibes.org/app/api/hello/route.ts +3 -0
  209. package/agentvibes.org/app/css/additional-styles/theme.css +82 -0
  210. package/agentvibes.org/app/css/additional-styles/utility-patterns.css +55 -0
  211. package/agentvibes.org/app/css/style.css +100 -0
  212. package/agentvibes.org/app/layout.tsx +63 -0
  213. package/agentvibes.org/components/code-block.tsx +27 -0
  214. package/agentvibes.org/components/cta.tsx +58 -0
  215. package/agentvibes.org/components/features.tsx +256 -0
  216. package/agentvibes.org/components/hero-home.tsx +133 -0
  217. package/agentvibes.org/components/mdx-components.tsx +128 -0
  218. package/agentvibes.org/components/modal-video.tsx +137 -0
  219. package/agentvibes.org/components/page-illustration.tsx +55 -0
  220. package/agentvibes.org/components/spotlight.tsx +77 -0
  221. package/agentvibes.org/components/testimonials.tsx +282 -0
  222. package/agentvibes.org/components/ui/footer.tsx +82 -0
  223. package/agentvibes.org/components/ui/header.tsx +68 -0
  224. package/agentvibes.org/components/ui/logo.tsx +10 -0
  225. package/agentvibes.org/components/workflows.tsx +176 -0
  226. package/agentvibes.org/content/blog/discovering-new-piper-voices.mdx +253 -0
  227. package/agentvibes.org/content/blog/getting-started-agentvibes.mdx +228 -0
  228. package/agentvibes.org/content/blog/introducing-agentvibes-v2.mdx +250 -0
  229. package/agentvibes.org/content/blog/language-learning-with-agentvibes.mdx +142 -0
  230. package/agentvibes.org/content/blog/voice-personalities-guide.mdx +119 -0
  231. package/agentvibes.org/lib/blog.ts +73 -0
  232. package/agentvibes.org/next.config.js +6 -0
  233. package/agentvibes.org/package-lock.json +4285 -0
  234. package/agentvibes.org/package.json +40 -0
  235. package/agentvibes.org/pnpm-lock.yaml +1141 -0
  236. package/agentvibes.org/postcss.config.js +5 -0
  237. package/agentvibes.org/public/audio/02-sarcastic.mp3 +0 -0
  238. package/agentvibes.org/public/audio/03-angry.mp3 +0 -0
  239. package/agentvibes.org/public/audio/04-grandpa.mp3 +0 -0
  240. package/agentvibes.org/public/audio/05-sarcastic-example2.mp3 +0 -0
  241. package/agentvibes.org/public/audio/french-rachel.mp3 +0 -0
  242. package/agentvibes.org/public/audio/piper-voices/speaker_0_Cori_Samuel.wav +0 -0
  243. package/agentvibes.org/public/audio/piper-voices/speaker_10_Steve_C.wav +0 -0
  244. package/agentvibes.org/public/audio/piper-voices/speaker_11_Owlivia.wav +0 -0
  245. package/agentvibes.org/public/audio/piper-voices/speaker_12_Paul_Hampton.wav +0 -0
  246. package/agentvibes.org/public/audio/piper-voices/speaker_13_Jennifer_Dorr.wav +0 -0
  247. package/agentvibes.org/public/audio/piper-voices/speaker_14_Emily_Cripps.wav +0 -0
  248. package/agentvibes.org/public/audio/piper-voices/speaker_15_Martin_Clifton.wav +0 -0
  249. package/agentvibes.org/public/audio/piper-voices/speaker_1_Kara_Shallenberg.wav +0 -0
  250. package/agentvibes.org/public/audio/piper-voices/speaker_2_Kristin_Hughes.wav +0 -0
  251. package/agentvibes.org/public/audio/piper-voices/speaker_3_Maria_Kasper.wav +0 -0
  252. package/agentvibes.org/public/audio/piper-voices/speaker_4_Mike_Pelton.wav +0 -0
  253. package/agentvibes.org/public/audio/piper-voices/speaker_5_Mark_Nelson.wav +0 -0
  254. package/agentvibes.org/public/audio/piper-voices/speaker_6_Michael_Scherer.wav +0 -0
  255. package/agentvibes.org/public/audio/piper-voices/speaker_7_James_K_White.wav +0 -0
  256. package/agentvibes.org/public/audio/piper-voices/speaker_8_Rose_Ibex.wav +0 -0
  257. package/agentvibes.org/public/audio/piper-voices/speaker_9_progressingamerica.wav +0 -0
  258. package/agentvibes.org/public/audio/spanish-antoni.mp3 +0 -0
  259. package/agentvibes.org/public/favicon.ico +0 -0
  260. package/agentvibes.org/public/fonts/nacelle-italic.woff2 +0 -0
  261. package/agentvibes.org/public/fonts/nacelle-regular.woff2 +0 -0
  262. package/agentvibes.org/public/fonts/nacelle-semibold.woff2 +0 -0
  263. package/agentvibes.org/public/fonts/nacelle-semibolditalic.woff2 +0 -0
  264. package/agentvibes.org/public/images/blurred-shape-gray.svg +1 -0
  265. package/agentvibes.org/public/images/blurred-shape.svg +1 -0
  266. package/agentvibes.org/public/images/client-logo-01.svg +1 -0
  267. package/agentvibes.org/public/images/client-logo-02.svg +1 -0
  268. package/agentvibes.org/public/images/client-logo-03.svg +1 -0
  269. package/agentvibes.org/public/images/client-logo-04.svg +1 -0
  270. package/agentvibes.org/public/images/client-logo-05.svg +1 -0
  271. package/agentvibes.org/public/images/client-logo-06.svg +1 -0
  272. package/agentvibes.org/public/images/client-logo-07.svg +1 -0
  273. package/agentvibes.org/public/images/client-logo-08.svg +1 -0
  274. package/agentvibes.org/public/images/client-logo-09.svg +1 -0
  275. package/agentvibes.org/public/images/features.png +0 -0
  276. package/agentvibes.org/public/images/footer-illustration.svg +1 -0
  277. package/agentvibes.org/public/images/hero-image-01.jpg +0 -0
  278. package/agentvibes.org/public/images/logo.svg +1 -0
  279. package/agentvibes.org/public/images/page-illustration.svg +1 -0
  280. package/agentvibes.org/public/images/secondary-illustration.svg +1 -0
  281. package/agentvibes.org/public/images/testimonial-01.jpg +0 -0
  282. package/agentvibes.org/public/images/testimonial-02.jpg +0 -0
  283. package/agentvibes.org/public/images/testimonial-03.jpg +0 -0
  284. package/agentvibes.org/public/images/testimonial-04.jpg +0 -0
  285. package/agentvibes.org/public/images/testimonial-05.jpg +0 -0
  286. package/agentvibes.org/public/images/testimonial-06.jpg +0 -0
  287. package/agentvibes.org/public/images/testimonial-07.jpg +0 -0
  288. package/agentvibes.org/public/images/testimonial-08.jpg +0 -0
  289. package/agentvibes.org/public/images/testimonial-09.jpg +0 -0
  290. package/agentvibes.org/public/images/workflow-01.png +0 -0
  291. package/agentvibes.org/public/images/workflow-02.png +0 -0
  292. package/agentvibes.org/public/images/workflow-03.png +0 -0
  293. package/agentvibes.org/public/videos/video.mp4 +0 -0
  294. package/agentvibes.org/tsconfig.json +28 -0
  295. package/agentvibes.org/utils/useMasonry.tsx +67 -0
  296. package/agentvibes.org/utils/useMousePosition.tsx +27 -0
  297. package/linkedin/vibe-coding-and-pulseaudio.md +121 -0
  298. package/package.json +1 -1
  299. package/scripts/audio-tunnel.config +17 -0
  300. package/.claude/piper-voices/en_US-lessac-medium.onnx +0 -0
  301. package/.claude/piper-voices/en_US-lessac-medium.onnx.json +0 -493
@@ -0,0 +1,4285 @@
1
+ {
2
+ "name": "open-pro-next",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "open-pro-next",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@headlessui/react": "^2.2.0",
12
+ "@mdx-js/loader": "^3.1.1",
13
+ "@mdx-js/react": "^3.1.1",
14
+ "@next/mdx": "^15.5.6",
15
+ "@types/mdx": "^2.0.13",
16
+ "@types/node": "^22.13.0",
17
+ "@types/react": "19.0.8",
18
+ "@types/react-dom": "19.0.3",
19
+ "@types/react-syntax-highlighter": "^15.5.13",
20
+ "aos": "3.0.0-beta.6",
21
+ "gray-matter": "^4.0.3",
22
+ "next": "15.1.6",
23
+ "next-mdx-remote": "^5.0.0",
24
+ "react": "19.0.0",
25
+ "react-dom": "19.0.0",
26
+ "react-github-btn": "^1.4.0",
27
+ "react-syntax-highlighter": "^15.6.6",
28
+ "reading-time": "^1.5.0",
29
+ "typescript": "^5.7.3"
30
+ },
31
+ "devDependencies": {
32
+ "@tailwindcss/forms": "^0.5.10",
33
+ "@tailwindcss/postcss": "^4.0.3",
34
+ "@types/aos": "^3.0.7",
35
+ "postcss": "^8.5.1",
36
+ "tailwindcss": "^4.0.3"
37
+ }
38
+ },
39
+ "node_modules/@alloc/quick-lru": {
40
+ "version": "5.2.0",
41
+ "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
42
+ "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
43
+ "dev": true,
44
+ "license": "MIT",
45
+ "engines": {
46
+ "node": ">=10"
47
+ },
48
+ "funding": {
49
+ "url": "https://github.com/sponsors/sindresorhus"
50
+ }
51
+ },
52
+ "node_modules/@babel/code-frame": {
53
+ "version": "7.27.1",
54
+ "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz",
55
+ "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==",
56
+ "license": "MIT",
57
+ "dependencies": {
58
+ "@babel/helper-validator-identifier": "^7.27.1",
59
+ "js-tokens": "^4.0.0",
60
+ "picocolors": "^1.1.1"
61
+ },
62
+ "engines": {
63
+ "node": ">=6.9.0"
64
+ }
65
+ },
66
+ "node_modules/@babel/helper-validator-identifier": {
67
+ "version": "7.27.1",
68
+ "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz",
69
+ "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==",
70
+ "license": "MIT",
71
+ "engines": {
72
+ "node": ">=6.9.0"
73
+ }
74
+ },
75
+ "node_modules/@babel/runtime": {
76
+ "version": "7.28.4",
77
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz",
78
+ "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==",
79
+ "license": "MIT",
80
+ "engines": {
81
+ "node": ">=6.9.0"
82
+ }
83
+ },
84
+ "node_modules/@emnapi/runtime": {
85
+ "version": "1.5.0",
86
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.5.0.tgz",
87
+ "integrity": "sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==",
88
+ "license": "MIT",
89
+ "optional": true,
90
+ "dependencies": {
91
+ "tslib": "^2.4.0"
92
+ }
93
+ },
94
+ "node_modules/@floating-ui/core": {
95
+ "version": "1.7.3",
96
+ "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.3.tgz",
97
+ "integrity": "sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==",
98
+ "license": "MIT",
99
+ "dependencies": {
100
+ "@floating-ui/utils": "^0.2.10"
101
+ }
102
+ },
103
+ "node_modules/@floating-ui/dom": {
104
+ "version": "1.7.4",
105
+ "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.7.4.tgz",
106
+ "integrity": "sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==",
107
+ "license": "MIT",
108
+ "dependencies": {
109
+ "@floating-ui/core": "^1.7.3",
110
+ "@floating-ui/utils": "^0.2.10"
111
+ }
112
+ },
113
+ "node_modules/@floating-ui/react": {
114
+ "version": "0.26.28",
115
+ "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.28.tgz",
116
+ "integrity": "sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==",
117
+ "license": "MIT",
118
+ "dependencies": {
119
+ "@floating-ui/react-dom": "^2.1.2",
120
+ "@floating-ui/utils": "^0.2.8",
121
+ "tabbable": "^6.0.0"
122
+ },
123
+ "peerDependencies": {
124
+ "react": ">=16.8.0",
125
+ "react-dom": ">=16.8.0"
126
+ }
127
+ },
128
+ "node_modules/@floating-ui/react-dom": {
129
+ "version": "2.1.6",
130
+ "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.6.tgz",
131
+ "integrity": "sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==",
132
+ "license": "MIT",
133
+ "dependencies": {
134
+ "@floating-ui/dom": "^1.7.4"
135
+ },
136
+ "peerDependencies": {
137
+ "react": ">=16.8.0",
138
+ "react-dom": ">=16.8.0"
139
+ }
140
+ },
141
+ "node_modules/@floating-ui/utils": {
142
+ "version": "0.2.10",
143
+ "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.10.tgz",
144
+ "integrity": "sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==",
145
+ "license": "MIT"
146
+ },
147
+ "node_modules/@headlessui/react": {
148
+ "version": "2.2.9",
149
+ "resolved": "https://registry.npmjs.org/@headlessui/react/-/react-2.2.9.tgz",
150
+ "integrity": "sha512-Mb+Un58gwBn0/yWZfyrCh0TJyurtT+dETj7YHleylHk5od3dv2XqETPGWMyQ5/7sYN7oWdyM1u9MvC0OC8UmzQ==",
151
+ "license": "MIT",
152
+ "dependencies": {
153
+ "@floating-ui/react": "^0.26.16",
154
+ "@react-aria/focus": "^3.20.2",
155
+ "@react-aria/interactions": "^3.25.0",
156
+ "@tanstack/react-virtual": "^3.13.9",
157
+ "use-sync-external-store": "^1.5.0"
158
+ },
159
+ "engines": {
160
+ "node": ">=10"
161
+ },
162
+ "peerDependencies": {
163
+ "react": "^18 || ^19 || ^19.0.0-rc",
164
+ "react-dom": "^18 || ^19 || ^19.0.0-rc"
165
+ }
166
+ },
167
+ "node_modules/@img/sharp-darwin-arm64": {
168
+ "version": "0.33.5",
169
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz",
170
+ "integrity": "sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==",
171
+ "cpu": [
172
+ "arm64"
173
+ ],
174
+ "license": "Apache-2.0",
175
+ "optional": true,
176
+ "os": [
177
+ "darwin"
178
+ ],
179
+ "engines": {
180
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
181
+ },
182
+ "funding": {
183
+ "url": "https://opencollective.com/libvips"
184
+ },
185
+ "optionalDependencies": {
186
+ "@img/sharp-libvips-darwin-arm64": "1.0.4"
187
+ }
188
+ },
189
+ "node_modules/@img/sharp-darwin-x64": {
190
+ "version": "0.33.5",
191
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz",
192
+ "integrity": "sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==",
193
+ "cpu": [
194
+ "x64"
195
+ ],
196
+ "license": "Apache-2.0",
197
+ "optional": true,
198
+ "os": [
199
+ "darwin"
200
+ ],
201
+ "engines": {
202
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
203
+ },
204
+ "funding": {
205
+ "url": "https://opencollective.com/libvips"
206
+ },
207
+ "optionalDependencies": {
208
+ "@img/sharp-libvips-darwin-x64": "1.0.4"
209
+ }
210
+ },
211
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
212
+ "version": "1.0.4",
213
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz",
214
+ "integrity": "sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==",
215
+ "cpu": [
216
+ "arm64"
217
+ ],
218
+ "license": "LGPL-3.0-or-later",
219
+ "optional": true,
220
+ "os": [
221
+ "darwin"
222
+ ],
223
+ "funding": {
224
+ "url": "https://opencollective.com/libvips"
225
+ }
226
+ },
227
+ "node_modules/@img/sharp-libvips-darwin-x64": {
228
+ "version": "1.0.4",
229
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz",
230
+ "integrity": "sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==",
231
+ "cpu": [
232
+ "x64"
233
+ ],
234
+ "license": "LGPL-3.0-or-later",
235
+ "optional": true,
236
+ "os": [
237
+ "darwin"
238
+ ],
239
+ "funding": {
240
+ "url": "https://opencollective.com/libvips"
241
+ }
242
+ },
243
+ "node_modules/@img/sharp-libvips-linux-arm": {
244
+ "version": "1.0.5",
245
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz",
246
+ "integrity": "sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==",
247
+ "cpu": [
248
+ "arm"
249
+ ],
250
+ "license": "LGPL-3.0-or-later",
251
+ "optional": true,
252
+ "os": [
253
+ "linux"
254
+ ],
255
+ "funding": {
256
+ "url": "https://opencollective.com/libvips"
257
+ }
258
+ },
259
+ "node_modules/@img/sharp-libvips-linux-arm64": {
260
+ "version": "1.0.4",
261
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz",
262
+ "integrity": "sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==",
263
+ "cpu": [
264
+ "arm64"
265
+ ],
266
+ "license": "LGPL-3.0-or-later",
267
+ "optional": true,
268
+ "os": [
269
+ "linux"
270
+ ],
271
+ "funding": {
272
+ "url": "https://opencollective.com/libvips"
273
+ }
274
+ },
275
+ "node_modules/@img/sharp-libvips-linux-s390x": {
276
+ "version": "1.0.4",
277
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz",
278
+ "integrity": "sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==",
279
+ "cpu": [
280
+ "s390x"
281
+ ],
282
+ "license": "LGPL-3.0-or-later",
283
+ "optional": true,
284
+ "os": [
285
+ "linux"
286
+ ],
287
+ "funding": {
288
+ "url": "https://opencollective.com/libvips"
289
+ }
290
+ },
291
+ "node_modules/@img/sharp-libvips-linux-x64": {
292
+ "version": "1.0.4",
293
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz",
294
+ "integrity": "sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==",
295
+ "cpu": [
296
+ "x64"
297
+ ],
298
+ "license": "LGPL-3.0-or-later",
299
+ "optional": true,
300
+ "os": [
301
+ "linux"
302
+ ],
303
+ "funding": {
304
+ "url": "https://opencollective.com/libvips"
305
+ }
306
+ },
307
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
308
+ "version": "1.0.4",
309
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz",
310
+ "integrity": "sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==",
311
+ "cpu": [
312
+ "arm64"
313
+ ],
314
+ "license": "LGPL-3.0-or-later",
315
+ "optional": true,
316
+ "os": [
317
+ "linux"
318
+ ],
319
+ "funding": {
320
+ "url": "https://opencollective.com/libvips"
321
+ }
322
+ },
323
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
324
+ "version": "1.0.4",
325
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz",
326
+ "integrity": "sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==",
327
+ "cpu": [
328
+ "x64"
329
+ ],
330
+ "license": "LGPL-3.0-or-later",
331
+ "optional": true,
332
+ "os": [
333
+ "linux"
334
+ ],
335
+ "funding": {
336
+ "url": "https://opencollective.com/libvips"
337
+ }
338
+ },
339
+ "node_modules/@img/sharp-linux-arm": {
340
+ "version": "0.33.5",
341
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz",
342
+ "integrity": "sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==",
343
+ "cpu": [
344
+ "arm"
345
+ ],
346
+ "license": "Apache-2.0",
347
+ "optional": true,
348
+ "os": [
349
+ "linux"
350
+ ],
351
+ "engines": {
352
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
353
+ },
354
+ "funding": {
355
+ "url": "https://opencollective.com/libvips"
356
+ },
357
+ "optionalDependencies": {
358
+ "@img/sharp-libvips-linux-arm": "1.0.5"
359
+ }
360
+ },
361
+ "node_modules/@img/sharp-linux-arm64": {
362
+ "version": "0.33.5",
363
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz",
364
+ "integrity": "sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==",
365
+ "cpu": [
366
+ "arm64"
367
+ ],
368
+ "license": "Apache-2.0",
369
+ "optional": true,
370
+ "os": [
371
+ "linux"
372
+ ],
373
+ "engines": {
374
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
375
+ },
376
+ "funding": {
377
+ "url": "https://opencollective.com/libvips"
378
+ },
379
+ "optionalDependencies": {
380
+ "@img/sharp-libvips-linux-arm64": "1.0.4"
381
+ }
382
+ },
383
+ "node_modules/@img/sharp-linux-s390x": {
384
+ "version": "0.33.5",
385
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz",
386
+ "integrity": "sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==",
387
+ "cpu": [
388
+ "s390x"
389
+ ],
390
+ "license": "Apache-2.0",
391
+ "optional": true,
392
+ "os": [
393
+ "linux"
394
+ ],
395
+ "engines": {
396
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
397
+ },
398
+ "funding": {
399
+ "url": "https://opencollective.com/libvips"
400
+ },
401
+ "optionalDependencies": {
402
+ "@img/sharp-libvips-linux-s390x": "1.0.4"
403
+ }
404
+ },
405
+ "node_modules/@img/sharp-linux-x64": {
406
+ "version": "0.33.5",
407
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz",
408
+ "integrity": "sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==",
409
+ "cpu": [
410
+ "x64"
411
+ ],
412
+ "license": "Apache-2.0",
413
+ "optional": true,
414
+ "os": [
415
+ "linux"
416
+ ],
417
+ "engines": {
418
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
419
+ },
420
+ "funding": {
421
+ "url": "https://opencollective.com/libvips"
422
+ },
423
+ "optionalDependencies": {
424
+ "@img/sharp-libvips-linux-x64": "1.0.4"
425
+ }
426
+ },
427
+ "node_modules/@img/sharp-linuxmusl-arm64": {
428
+ "version": "0.33.5",
429
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz",
430
+ "integrity": "sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==",
431
+ "cpu": [
432
+ "arm64"
433
+ ],
434
+ "license": "Apache-2.0",
435
+ "optional": true,
436
+ "os": [
437
+ "linux"
438
+ ],
439
+ "engines": {
440
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
441
+ },
442
+ "funding": {
443
+ "url": "https://opencollective.com/libvips"
444
+ },
445
+ "optionalDependencies": {
446
+ "@img/sharp-libvips-linuxmusl-arm64": "1.0.4"
447
+ }
448
+ },
449
+ "node_modules/@img/sharp-linuxmusl-x64": {
450
+ "version": "0.33.5",
451
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz",
452
+ "integrity": "sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==",
453
+ "cpu": [
454
+ "x64"
455
+ ],
456
+ "license": "Apache-2.0",
457
+ "optional": true,
458
+ "os": [
459
+ "linux"
460
+ ],
461
+ "engines": {
462
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
463
+ },
464
+ "funding": {
465
+ "url": "https://opencollective.com/libvips"
466
+ },
467
+ "optionalDependencies": {
468
+ "@img/sharp-libvips-linuxmusl-x64": "1.0.4"
469
+ }
470
+ },
471
+ "node_modules/@img/sharp-wasm32": {
472
+ "version": "0.33.5",
473
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz",
474
+ "integrity": "sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==",
475
+ "cpu": [
476
+ "wasm32"
477
+ ],
478
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
479
+ "optional": true,
480
+ "dependencies": {
481
+ "@emnapi/runtime": "^1.2.0"
482
+ },
483
+ "engines": {
484
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
485
+ },
486
+ "funding": {
487
+ "url": "https://opencollective.com/libvips"
488
+ }
489
+ },
490
+ "node_modules/@img/sharp-win32-ia32": {
491
+ "version": "0.33.5",
492
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz",
493
+ "integrity": "sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==",
494
+ "cpu": [
495
+ "ia32"
496
+ ],
497
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
498
+ "optional": true,
499
+ "os": [
500
+ "win32"
501
+ ],
502
+ "engines": {
503
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
504
+ },
505
+ "funding": {
506
+ "url": "https://opencollective.com/libvips"
507
+ }
508
+ },
509
+ "node_modules/@img/sharp-win32-x64": {
510
+ "version": "0.33.5",
511
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz",
512
+ "integrity": "sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==",
513
+ "cpu": [
514
+ "x64"
515
+ ],
516
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
517
+ "optional": true,
518
+ "os": [
519
+ "win32"
520
+ ],
521
+ "engines": {
522
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
523
+ },
524
+ "funding": {
525
+ "url": "https://opencollective.com/libvips"
526
+ }
527
+ },
528
+ "node_modules/@isaacs/fs-minipass": {
529
+ "version": "4.0.1",
530
+ "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz",
531
+ "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==",
532
+ "dev": true,
533
+ "license": "ISC",
534
+ "dependencies": {
535
+ "minipass": "^7.0.4"
536
+ },
537
+ "engines": {
538
+ "node": ">=18.0.0"
539
+ }
540
+ },
541
+ "node_modules/@jridgewell/gen-mapping": {
542
+ "version": "0.3.13",
543
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
544
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
545
+ "dev": true,
546
+ "license": "MIT",
547
+ "dependencies": {
548
+ "@jridgewell/sourcemap-codec": "^1.5.0",
549
+ "@jridgewell/trace-mapping": "^0.3.24"
550
+ }
551
+ },
552
+ "node_modules/@jridgewell/remapping": {
553
+ "version": "2.3.5",
554
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
555
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
556
+ "dev": true,
557
+ "license": "MIT",
558
+ "dependencies": {
559
+ "@jridgewell/gen-mapping": "^0.3.5",
560
+ "@jridgewell/trace-mapping": "^0.3.24"
561
+ }
562
+ },
563
+ "node_modules/@jridgewell/resolve-uri": {
564
+ "version": "3.1.2",
565
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
566
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
567
+ "dev": true,
568
+ "license": "MIT",
569
+ "engines": {
570
+ "node": ">=6.0.0"
571
+ }
572
+ },
573
+ "node_modules/@jridgewell/sourcemap-codec": {
574
+ "version": "1.5.5",
575
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
576
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
577
+ "dev": true,
578
+ "license": "MIT"
579
+ },
580
+ "node_modules/@jridgewell/trace-mapping": {
581
+ "version": "0.3.31",
582
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
583
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
584
+ "dev": true,
585
+ "license": "MIT",
586
+ "dependencies": {
587
+ "@jridgewell/resolve-uri": "^3.1.0",
588
+ "@jridgewell/sourcemap-codec": "^1.4.14"
589
+ }
590
+ },
591
+ "node_modules/@mdx-js/loader": {
592
+ "version": "3.1.1",
593
+ "resolved": "https://registry.npmjs.org/@mdx-js/loader/-/loader-3.1.1.tgz",
594
+ "integrity": "sha512-0TTacJyZ9mDmY+VefuthVshaNIyCGZHJG2fMnGaDttCt8HmjUF7SizlHJpaCDoGnN635nK1wpzfpx/Xx5S4WnQ==",
595
+ "license": "MIT",
596
+ "dependencies": {
597
+ "@mdx-js/mdx": "^3.0.0",
598
+ "source-map": "^0.7.0"
599
+ },
600
+ "funding": {
601
+ "type": "opencollective",
602
+ "url": "https://opencollective.com/unified"
603
+ },
604
+ "peerDependencies": {
605
+ "webpack": ">=5"
606
+ },
607
+ "peerDependenciesMeta": {
608
+ "webpack": {
609
+ "optional": true
610
+ }
611
+ }
612
+ },
613
+ "node_modules/@mdx-js/mdx": {
614
+ "version": "3.1.1",
615
+ "resolved": "https://registry.npmjs.org/@mdx-js/mdx/-/mdx-3.1.1.tgz",
616
+ "integrity": "sha512-f6ZO2ifpwAQIpzGWaBQT2TXxPv6z3RBzQKpVftEWN78Vl/YweF1uwussDx8ECAXVtr3Rs89fKyG9YlzUs9DyGQ==",
617
+ "license": "MIT",
618
+ "dependencies": {
619
+ "@types/estree": "^1.0.0",
620
+ "@types/estree-jsx": "^1.0.0",
621
+ "@types/hast": "^3.0.0",
622
+ "@types/mdx": "^2.0.0",
623
+ "acorn": "^8.0.0",
624
+ "collapse-white-space": "^2.0.0",
625
+ "devlop": "^1.0.0",
626
+ "estree-util-is-identifier-name": "^3.0.0",
627
+ "estree-util-scope": "^1.0.0",
628
+ "estree-walker": "^3.0.0",
629
+ "hast-util-to-jsx-runtime": "^2.0.0",
630
+ "markdown-extensions": "^2.0.0",
631
+ "recma-build-jsx": "^1.0.0",
632
+ "recma-jsx": "^1.0.0",
633
+ "recma-stringify": "^1.0.0",
634
+ "rehype-recma": "^1.0.0",
635
+ "remark-mdx": "^3.0.0",
636
+ "remark-parse": "^11.0.0",
637
+ "remark-rehype": "^11.0.0",
638
+ "source-map": "^0.7.0",
639
+ "unified": "^11.0.0",
640
+ "unist-util-position-from-estree": "^2.0.0",
641
+ "unist-util-stringify-position": "^4.0.0",
642
+ "unist-util-visit": "^5.0.0",
643
+ "vfile": "^6.0.0"
644
+ },
645
+ "funding": {
646
+ "type": "opencollective",
647
+ "url": "https://opencollective.com/unified"
648
+ }
649
+ },
650
+ "node_modules/@mdx-js/react": {
651
+ "version": "3.1.1",
652
+ "resolved": "https://registry.npmjs.org/@mdx-js/react/-/react-3.1.1.tgz",
653
+ "integrity": "sha512-f++rKLQgUVYDAtECQ6fn/is15GkEH9+nZPM3MS0RcxVqoTfawHvDlSCH7JbMhAM6uJ32v3eXLvLmLvjGu7PTQw==",
654
+ "license": "MIT",
655
+ "dependencies": {
656
+ "@types/mdx": "^2.0.0"
657
+ },
658
+ "funding": {
659
+ "type": "opencollective",
660
+ "url": "https://opencollective.com/unified"
661
+ },
662
+ "peerDependencies": {
663
+ "@types/react": ">=16",
664
+ "react": ">=16"
665
+ }
666
+ },
667
+ "node_modules/@next/env": {
668
+ "version": "15.1.6",
669
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-15.1.6.tgz",
670
+ "integrity": "sha512-d9AFQVPEYNr+aqokIiPLNK/MTyt3DWa/dpKveiAaVccUadFbhFEvY6FXYX2LJO2Hv7PHnLBu2oWwB4uBuHjr/w==",
671
+ "license": "MIT"
672
+ },
673
+ "node_modules/@next/mdx": {
674
+ "version": "15.5.6",
675
+ "resolved": "https://registry.npmjs.org/@next/mdx/-/mdx-15.5.6.tgz",
676
+ "integrity": "sha512-lyzXcnZWPjYxbkz/5tv1bRlCOjKYX1lFg3LIuoIf9ERTOUBDzkCvUnWjtRsmFRxKv1/6uwpLVQvrJDd54gVDBw==",
677
+ "license": "MIT",
678
+ "dependencies": {
679
+ "source-map": "^0.7.0"
680
+ },
681
+ "peerDependencies": {
682
+ "@mdx-js/loader": ">=0.15.0",
683
+ "@mdx-js/react": ">=0.15.0"
684
+ },
685
+ "peerDependenciesMeta": {
686
+ "@mdx-js/loader": {
687
+ "optional": true
688
+ },
689
+ "@mdx-js/react": {
690
+ "optional": true
691
+ }
692
+ }
693
+ },
694
+ "node_modules/@next/swc-darwin-arm64": {
695
+ "version": "15.1.6",
696
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.1.6.tgz",
697
+ "integrity": "sha512-u7lg4Mpl9qWpKgy6NzEkz/w0/keEHtOybmIl0ykgItBxEM5mYotS5PmqTpo+Rhg8FiOiWgwr8USxmKQkqLBCrw==",
698
+ "cpu": [
699
+ "arm64"
700
+ ],
701
+ "license": "MIT",
702
+ "optional": true,
703
+ "os": [
704
+ "darwin"
705
+ ],
706
+ "engines": {
707
+ "node": ">= 10"
708
+ }
709
+ },
710
+ "node_modules/@next/swc-darwin-x64": {
711
+ "version": "15.1.6",
712
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.1.6.tgz",
713
+ "integrity": "sha512-x1jGpbHbZoZ69nRuogGL2MYPLqohlhnT9OCU6E6QFewwup+z+M6r8oU47BTeJcWsF2sdBahp5cKiAcDbwwK/lg==",
714
+ "cpu": [
715
+ "x64"
716
+ ],
717
+ "license": "MIT",
718
+ "optional": true,
719
+ "os": [
720
+ "darwin"
721
+ ],
722
+ "engines": {
723
+ "node": ">= 10"
724
+ }
725
+ },
726
+ "node_modules/@next/swc-linux-arm64-gnu": {
727
+ "version": "15.1.6",
728
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.1.6.tgz",
729
+ "integrity": "sha512-jar9sFw0XewXsBzPf9runGzoivajeWJUc/JkfbLTC4it9EhU8v7tCRLH7l5Y1ReTMN6zKJO0kKAGqDk8YSO2bg==",
730
+ "cpu": [
731
+ "arm64"
732
+ ],
733
+ "license": "MIT",
734
+ "optional": true,
735
+ "os": [
736
+ "linux"
737
+ ],
738
+ "engines": {
739
+ "node": ">= 10"
740
+ }
741
+ },
742
+ "node_modules/@next/swc-linux-arm64-musl": {
743
+ "version": "15.1.6",
744
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.1.6.tgz",
745
+ "integrity": "sha512-+n3u//bfsrIaZch4cgOJ3tXCTbSxz0s6brJtU3SzLOvkJlPQMJ+eHVRi6qM2kKKKLuMY+tcau8XD9CJ1OjeSQQ==",
746
+ "cpu": [
747
+ "arm64"
748
+ ],
749
+ "license": "MIT",
750
+ "optional": true,
751
+ "os": [
752
+ "linux"
753
+ ],
754
+ "engines": {
755
+ "node": ">= 10"
756
+ }
757
+ },
758
+ "node_modules/@next/swc-linux-x64-gnu": {
759
+ "version": "15.1.6",
760
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.1.6.tgz",
761
+ "integrity": "sha512-SpuDEXixM3PycniL4iVCLyUyvcl6Lt0mtv3am08sucskpG0tYkW1KlRhTgj4LI5ehyxriVVcfdoxuuP8csi3kQ==",
762
+ "cpu": [
763
+ "x64"
764
+ ],
765
+ "license": "MIT",
766
+ "optional": true,
767
+ "os": [
768
+ "linux"
769
+ ],
770
+ "engines": {
771
+ "node": ">= 10"
772
+ }
773
+ },
774
+ "node_modules/@next/swc-linux-x64-musl": {
775
+ "version": "15.1.6",
776
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.1.6.tgz",
777
+ "integrity": "sha512-L4druWmdFSZIIRhF+G60API5sFB7suTbDRhYWSjiw0RbE+15igQvE2g2+S973pMGvwN3guw7cJUjA/TmbPWTHQ==",
778
+ "cpu": [
779
+ "x64"
780
+ ],
781
+ "license": "MIT",
782
+ "optional": true,
783
+ "os": [
784
+ "linux"
785
+ ],
786
+ "engines": {
787
+ "node": ">= 10"
788
+ }
789
+ },
790
+ "node_modules/@next/swc-win32-arm64-msvc": {
791
+ "version": "15.1.6",
792
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.1.6.tgz",
793
+ "integrity": "sha512-s8w6EeqNmi6gdvM19tqKKWbCyOBvXFbndkGHl+c9YrzsLARRdCHsD9S1fMj8gsXm9v8vhC8s3N8rjuC/XrtkEg==",
794
+ "cpu": [
795
+ "arm64"
796
+ ],
797
+ "license": "MIT",
798
+ "optional": true,
799
+ "os": [
800
+ "win32"
801
+ ],
802
+ "engines": {
803
+ "node": ">= 10"
804
+ }
805
+ },
806
+ "node_modules/@next/swc-win32-x64-msvc": {
807
+ "version": "15.1.6",
808
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.1.6.tgz",
809
+ "integrity": "sha512-6xomMuu54FAFxttYr5PJbEfu96godcxBTRk1OhAvJq0/EnmFU/Ybiax30Snis4vdWZ9LGpf7Roy5fSs7v/5ROQ==",
810
+ "cpu": [
811
+ "x64"
812
+ ],
813
+ "license": "MIT",
814
+ "optional": true,
815
+ "os": [
816
+ "win32"
817
+ ],
818
+ "engines": {
819
+ "node": ">= 10"
820
+ }
821
+ },
822
+ "node_modules/@react-aria/focus": {
823
+ "version": "3.21.2",
824
+ "resolved": "https://registry.npmjs.org/@react-aria/focus/-/focus-3.21.2.tgz",
825
+ "integrity": "sha512-JWaCR7wJVggj+ldmM/cb/DXFg47CXR55lznJhZBh4XVqJjMKwaOOqpT5vNN7kpC1wUpXicGNuDnJDN1S/+6dhQ==",
826
+ "license": "Apache-2.0",
827
+ "dependencies": {
828
+ "@react-aria/interactions": "^3.25.6",
829
+ "@react-aria/utils": "^3.31.0",
830
+ "@react-types/shared": "^3.32.1",
831
+ "@swc/helpers": "^0.5.0",
832
+ "clsx": "^2.0.0"
833
+ },
834
+ "peerDependencies": {
835
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
836
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
837
+ }
838
+ },
839
+ "node_modules/@react-aria/interactions": {
840
+ "version": "3.25.6",
841
+ "resolved": "https://registry.npmjs.org/@react-aria/interactions/-/interactions-3.25.6.tgz",
842
+ "integrity": "sha512-5UgwZmohpixwNMVkMvn9K1ceJe6TzlRlAfuYoQDUuOkk62/JVJNDLAPKIf5YMRc7d2B0rmfgaZLMtbREb0Zvkw==",
843
+ "license": "Apache-2.0",
844
+ "dependencies": {
845
+ "@react-aria/ssr": "^3.9.10",
846
+ "@react-aria/utils": "^3.31.0",
847
+ "@react-stately/flags": "^3.1.2",
848
+ "@react-types/shared": "^3.32.1",
849
+ "@swc/helpers": "^0.5.0"
850
+ },
851
+ "peerDependencies": {
852
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
853
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
854
+ }
855
+ },
856
+ "node_modules/@react-aria/ssr": {
857
+ "version": "3.9.10",
858
+ "resolved": "https://registry.npmjs.org/@react-aria/ssr/-/ssr-3.9.10.tgz",
859
+ "integrity": "sha512-hvTm77Pf+pMBhuBm760Li0BVIO38jv1IBws1xFm1NoL26PU+fe+FMW5+VZWyANR6nYL65joaJKZqOdTQMkO9IQ==",
860
+ "license": "Apache-2.0",
861
+ "dependencies": {
862
+ "@swc/helpers": "^0.5.0"
863
+ },
864
+ "engines": {
865
+ "node": ">= 12"
866
+ },
867
+ "peerDependencies": {
868
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
869
+ }
870
+ },
871
+ "node_modules/@react-aria/utils": {
872
+ "version": "3.31.0",
873
+ "resolved": "https://registry.npmjs.org/@react-aria/utils/-/utils-3.31.0.tgz",
874
+ "integrity": "sha512-ABOzCsZrWzf78ysswmguJbx3McQUja7yeGj6/vZo4JVsZNlxAN+E9rs381ExBRI0KzVo6iBTeX5De8eMZPJXig==",
875
+ "license": "Apache-2.0",
876
+ "dependencies": {
877
+ "@react-aria/ssr": "^3.9.10",
878
+ "@react-stately/flags": "^3.1.2",
879
+ "@react-stately/utils": "^3.10.8",
880
+ "@react-types/shared": "^3.32.1",
881
+ "@swc/helpers": "^0.5.0",
882
+ "clsx": "^2.0.0"
883
+ },
884
+ "peerDependencies": {
885
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1",
886
+ "react-dom": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
887
+ }
888
+ },
889
+ "node_modules/@react-stately/flags": {
890
+ "version": "3.1.2",
891
+ "resolved": "https://registry.npmjs.org/@react-stately/flags/-/flags-3.1.2.tgz",
892
+ "integrity": "sha512-2HjFcZx1MyQXoPqcBGALwWWmgFVUk2TuKVIQxCbRq7fPyWXIl6VHcakCLurdtYC2Iks7zizvz0Idv48MQ38DWg==",
893
+ "license": "Apache-2.0",
894
+ "dependencies": {
895
+ "@swc/helpers": "^0.5.0"
896
+ }
897
+ },
898
+ "node_modules/@react-stately/utils": {
899
+ "version": "3.10.8",
900
+ "resolved": "https://registry.npmjs.org/@react-stately/utils/-/utils-3.10.8.tgz",
901
+ "integrity": "sha512-SN3/h7SzRsusVQjQ4v10LaVsDc81jyyR0DD5HnsQitm/I5WDpaSr2nRHtyloPFU48jlql1XX/S04T2DLQM7Y3g==",
902
+ "license": "Apache-2.0",
903
+ "dependencies": {
904
+ "@swc/helpers": "^0.5.0"
905
+ },
906
+ "peerDependencies": {
907
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
908
+ }
909
+ },
910
+ "node_modules/@react-types/shared": {
911
+ "version": "3.32.1",
912
+ "resolved": "https://registry.npmjs.org/@react-types/shared/-/shared-3.32.1.tgz",
913
+ "integrity": "sha512-famxyD5emrGGpFuUlgOP6fVW2h/ZaF405G5KDi3zPHzyjAWys/8W6NAVJtNbkCkhedmvL0xOhvt8feGXyXaw5w==",
914
+ "license": "Apache-2.0",
915
+ "peerDependencies": {
916
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
917
+ }
918
+ },
919
+ "node_modules/@swc/counter": {
920
+ "version": "0.1.3",
921
+ "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz",
922
+ "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==",
923
+ "license": "Apache-2.0"
924
+ },
925
+ "node_modules/@swc/helpers": {
926
+ "version": "0.5.17",
927
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz",
928
+ "integrity": "sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==",
929
+ "license": "Apache-2.0",
930
+ "dependencies": {
931
+ "tslib": "^2.8.0"
932
+ }
933
+ },
934
+ "node_modules/@tailwindcss/forms": {
935
+ "version": "0.5.10",
936
+ "resolved": "https://registry.npmjs.org/@tailwindcss/forms/-/forms-0.5.10.tgz",
937
+ "integrity": "sha512-utI1ONF6uf/pPNO68kmN1b8rEwNXv3czukalo8VtJH8ksIkZXr3Q3VYudZLkCsDd4Wku120uF02hYK25XGPorw==",
938
+ "dev": true,
939
+ "license": "MIT",
940
+ "dependencies": {
941
+ "mini-svg-data-uri": "^1.2.3"
942
+ },
943
+ "peerDependencies": {
944
+ "tailwindcss": ">=3.0.0 || >= 3.0.0-alpha.1 || >= 4.0.0-alpha.20 || >= 4.0.0-beta.1"
945
+ }
946
+ },
947
+ "node_modules/@tailwindcss/node": {
948
+ "version": "4.1.14",
949
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.1.14.tgz",
950
+ "integrity": "sha512-hpz+8vFk3Ic2xssIA3e01R6jkmsAhvkQdXlEbRTk6S10xDAtiQiM3FyvZVGsucefq764euO/b8WUW9ysLdThHw==",
951
+ "dev": true,
952
+ "license": "MIT",
953
+ "dependencies": {
954
+ "@jridgewell/remapping": "^2.3.4",
955
+ "enhanced-resolve": "^5.18.3",
956
+ "jiti": "^2.6.0",
957
+ "lightningcss": "1.30.1",
958
+ "magic-string": "^0.30.19",
959
+ "source-map-js": "^1.2.1",
960
+ "tailwindcss": "4.1.14"
961
+ }
962
+ },
963
+ "node_modules/@tailwindcss/oxide": {
964
+ "version": "4.1.14",
965
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.1.14.tgz",
966
+ "integrity": "sha512-23yx+VUbBwCg2x5XWdB8+1lkPajzLmALEfMb51zZUBYaYVPDQvBSD/WYDqiVyBIo2BZFa3yw1Rpy3G2Jp+K0dw==",
967
+ "dev": true,
968
+ "hasInstallScript": true,
969
+ "license": "MIT",
970
+ "dependencies": {
971
+ "detect-libc": "^2.0.4",
972
+ "tar": "^7.5.1"
973
+ },
974
+ "engines": {
975
+ "node": ">= 10"
976
+ },
977
+ "optionalDependencies": {
978
+ "@tailwindcss/oxide-android-arm64": "4.1.14",
979
+ "@tailwindcss/oxide-darwin-arm64": "4.1.14",
980
+ "@tailwindcss/oxide-darwin-x64": "4.1.14",
981
+ "@tailwindcss/oxide-freebsd-x64": "4.1.14",
982
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.1.14",
983
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.1.14",
984
+ "@tailwindcss/oxide-linux-arm64-musl": "4.1.14",
985
+ "@tailwindcss/oxide-linux-x64-gnu": "4.1.14",
986
+ "@tailwindcss/oxide-linux-x64-musl": "4.1.14",
987
+ "@tailwindcss/oxide-wasm32-wasi": "4.1.14",
988
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.1.14",
989
+ "@tailwindcss/oxide-win32-x64-msvc": "4.1.14"
990
+ }
991
+ },
992
+ "node_modules/@tailwindcss/oxide-android-arm64": {
993
+ "version": "4.1.14",
994
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.1.14.tgz",
995
+ "integrity": "sha512-a94ifZrGwMvbdeAxWoSuGcIl6/DOP5cdxagid7xJv6bwFp3oebp7y2ImYsnZBMTwjn5Ev5xESvS3FFYUGgPODQ==",
996
+ "cpu": [
997
+ "arm64"
998
+ ],
999
+ "dev": true,
1000
+ "license": "MIT",
1001
+ "optional": true,
1002
+ "os": [
1003
+ "android"
1004
+ ],
1005
+ "engines": {
1006
+ "node": ">= 10"
1007
+ }
1008
+ },
1009
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
1010
+ "version": "4.1.14",
1011
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.1.14.tgz",
1012
+ "integrity": "sha512-HkFP/CqfSh09xCnrPJA7jud7hij5ahKyWomrC3oiO2U9i0UjP17o9pJbxUN0IJ471GTQQmzwhp0DEcpbp4MZTA==",
1013
+ "cpu": [
1014
+ "arm64"
1015
+ ],
1016
+ "dev": true,
1017
+ "license": "MIT",
1018
+ "optional": true,
1019
+ "os": [
1020
+ "darwin"
1021
+ ],
1022
+ "engines": {
1023
+ "node": ">= 10"
1024
+ }
1025
+ },
1026
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
1027
+ "version": "4.1.14",
1028
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.1.14.tgz",
1029
+ "integrity": "sha512-eVNaWmCgdLf5iv6Qd3s7JI5SEFBFRtfm6W0mphJYXgvnDEAZ5sZzqmI06bK6xo0IErDHdTA5/t7d4eTfWbWOFw==",
1030
+ "cpu": [
1031
+ "x64"
1032
+ ],
1033
+ "dev": true,
1034
+ "license": "MIT",
1035
+ "optional": true,
1036
+ "os": [
1037
+ "darwin"
1038
+ ],
1039
+ "engines": {
1040
+ "node": ">= 10"
1041
+ }
1042
+ },
1043
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
1044
+ "version": "4.1.14",
1045
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.1.14.tgz",
1046
+ "integrity": "sha512-QWLoRXNikEuqtNb0dhQN6wsSVVjX6dmUFzuuiL09ZeXju25dsei2uIPl71y2Ic6QbNBsB4scwBoFnlBfabHkEw==",
1047
+ "cpu": [
1048
+ "x64"
1049
+ ],
1050
+ "dev": true,
1051
+ "license": "MIT",
1052
+ "optional": true,
1053
+ "os": [
1054
+ "freebsd"
1055
+ ],
1056
+ "engines": {
1057
+ "node": ">= 10"
1058
+ }
1059
+ },
1060
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
1061
+ "version": "4.1.14",
1062
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.1.14.tgz",
1063
+ "integrity": "sha512-VB4gjQni9+F0VCASU+L8zSIyjrLLsy03sjcR3bM0V2g4SNamo0FakZFKyUQ96ZVwGK4CaJsc9zd/obQy74o0Fw==",
1064
+ "cpu": [
1065
+ "arm"
1066
+ ],
1067
+ "dev": true,
1068
+ "license": "MIT",
1069
+ "optional": true,
1070
+ "os": [
1071
+ "linux"
1072
+ ],
1073
+ "engines": {
1074
+ "node": ">= 10"
1075
+ }
1076
+ },
1077
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
1078
+ "version": "4.1.14",
1079
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.1.14.tgz",
1080
+ "integrity": "sha512-qaEy0dIZ6d9vyLnmeg24yzA8XuEAD9WjpM5nIM1sUgQ/Zv7cVkharPDQcmm/t/TvXoKo/0knI3me3AGfdx6w1w==",
1081
+ "cpu": [
1082
+ "arm64"
1083
+ ],
1084
+ "dev": true,
1085
+ "license": "MIT",
1086
+ "optional": true,
1087
+ "os": [
1088
+ "linux"
1089
+ ],
1090
+ "engines": {
1091
+ "node": ">= 10"
1092
+ }
1093
+ },
1094
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
1095
+ "version": "4.1.14",
1096
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.1.14.tgz",
1097
+ "integrity": "sha512-ISZjT44s59O8xKsPEIesiIydMG/sCXoMBCqsphDm/WcbnuWLxxb+GcvSIIA5NjUw6F8Tex7s5/LM2yDy8RqYBQ==",
1098
+ "cpu": [
1099
+ "arm64"
1100
+ ],
1101
+ "dev": true,
1102
+ "license": "MIT",
1103
+ "optional": true,
1104
+ "os": [
1105
+ "linux"
1106
+ ],
1107
+ "engines": {
1108
+ "node": ">= 10"
1109
+ }
1110
+ },
1111
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
1112
+ "version": "4.1.14",
1113
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.1.14.tgz",
1114
+ "integrity": "sha512-02c6JhLPJj10L2caH4U0zF8Hji4dOeahmuMl23stk0MU1wfd1OraE7rOloidSF8W5JTHkFdVo/O7uRUJJnUAJg==",
1115
+ "cpu": [
1116
+ "x64"
1117
+ ],
1118
+ "dev": true,
1119
+ "license": "MIT",
1120
+ "optional": true,
1121
+ "os": [
1122
+ "linux"
1123
+ ],
1124
+ "engines": {
1125
+ "node": ">= 10"
1126
+ }
1127
+ },
1128
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1129
+ "version": "4.1.14",
1130
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.1.14.tgz",
1131
+ "integrity": "sha512-TNGeLiN1XS66kQhxHG/7wMeQDOoL0S33x9BgmydbrWAb9Qw0KYdd8o1ifx4HOGDWhVmJ+Ul+JQ7lyknQFilO3Q==",
1132
+ "cpu": [
1133
+ "x64"
1134
+ ],
1135
+ "dev": true,
1136
+ "license": "MIT",
1137
+ "optional": true,
1138
+ "os": [
1139
+ "linux"
1140
+ ],
1141
+ "engines": {
1142
+ "node": ">= 10"
1143
+ }
1144
+ },
1145
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1146
+ "version": "4.1.14",
1147
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.1.14.tgz",
1148
+ "integrity": "sha512-uZYAsaW/jS/IYkd6EWPJKW/NlPNSkWkBlaeVBi/WsFQNP05/bzkebUL8FH1pdsqx4f2fH/bWFcUABOM9nfiJkQ==",
1149
+ "bundleDependencies": [
1150
+ "@napi-rs/wasm-runtime",
1151
+ "@emnapi/core",
1152
+ "@emnapi/runtime",
1153
+ "@tybys/wasm-util",
1154
+ "@emnapi/wasi-threads",
1155
+ "tslib"
1156
+ ],
1157
+ "cpu": [
1158
+ "wasm32"
1159
+ ],
1160
+ "dev": true,
1161
+ "license": "MIT",
1162
+ "optional": true,
1163
+ "dependencies": {
1164
+ "@emnapi/core": "^1.5.0",
1165
+ "@emnapi/runtime": "^1.5.0",
1166
+ "@emnapi/wasi-threads": "^1.1.0",
1167
+ "@napi-rs/wasm-runtime": "^1.0.5",
1168
+ "@tybys/wasm-util": "^0.10.1",
1169
+ "tslib": "^2.4.0"
1170
+ },
1171
+ "engines": {
1172
+ "node": ">=14.0.0"
1173
+ }
1174
+ },
1175
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1176
+ "version": "4.1.14",
1177
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.1.14.tgz",
1178
+ "integrity": "sha512-Az0RnnkcvRqsuoLH2Z4n3JfAef0wElgzHD5Aky/e+0tBUxUhIeIqFBTMNQvmMRSP15fWwmvjBxZ3Q8RhsDnxAA==",
1179
+ "cpu": [
1180
+ "arm64"
1181
+ ],
1182
+ "dev": true,
1183
+ "license": "MIT",
1184
+ "optional": true,
1185
+ "os": [
1186
+ "win32"
1187
+ ],
1188
+ "engines": {
1189
+ "node": ">= 10"
1190
+ }
1191
+ },
1192
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1193
+ "version": "4.1.14",
1194
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.1.14.tgz",
1195
+ "integrity": "sha512-ttblVGHgf68kEE4om1n/n44I0yGPkCPbLsqzjvybhpwa6mKKtgFfAzy6btc3HRmuW7nHe0OOrSeNP9sQmmH9XA==",
1196
+ "cpu": [
1197
+ "x64"
1198
+ ],
1199
+ "dev": true,
1200
+ "license": "MIT",
1201
+ "optional": true,
1202
+ "os": [
1203
+ "win32"
1204
+ ],
1205
+ "engines": {
1206
+ "node": ">= 10"
1207
+ }
1208
+ },
1209
+ "node_modules/@tailwindcss/postcss": {
1210
+ "version": "4.1.14",
1211
+ "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.1.14.tgz",
1212
+ "integrity": "sha512-BdMjIxy7HUNThK87C7BC8I1rE8BVUsfNQSI5siQ4JK3iIa3w0XyVvVL9SXLWO//CtYTcp1v7zci0fYwJOjB+Zg==",
1213
+ "dev": true,
1214
+ "license": "MIT",
1215
+ "dependencies": {
1216
+ "@alloc/quick-lru": "^5.2.0",
1217
+ "@tailwindcss/node": "4.1.14",
1218
+ "@tailwindcss/oxide": "4.1.14",
1219
+ "postcss": "^8.4.41",
1220
+ "tailwindcss": "4.1.14"
1221
+ }
1222
+ },
1223
+ "node_modules/@tanstack/react-virtual": {
1224
+ "version": "3.13.12",
1225
+ "resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.13.12.tgz",
1226
+ "integrity": "sha512-Gd13QdxPSukP8ZrkbgS2RwoZseTTbQPLnQEn7HY/rqtM+8Zt95f7xKC7N0EsKs7aoz0WzZ+fditZux+F8EzYxA==",
1227
+ "license": "MIT",
1228
+ "dependencies": {
1229
+ "@tanstack/virtual-core": "3.13.12"
1230
+ },
1231
+ "funding": {
1232
+ "type": "github",
1233
+ "url": "https://github.com/sponsors/tannerlinsley"
1234
+ },
1235
+ "peerDependencies": {
1236
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
1237
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
1238
+ }
1239
+ },
1240
+ "node_modules/@tanstack/virtual-core": {
1241
+ "version": "3.13.12",
1242
+ "resolved": "https://registry.npmjs.org/@tanstack/virtual-core/-/virtual-core-3.13.12.tgz",
1243
+ "integrity": "sha512-1YBOJfRHV4sXUmWsFSf5rQor4Ss82G8dQWLRbnk3GA4jeP8hQt1hxXh0tmflpC0dz3VgEv/1+qwPyLeWkQuPFA==",
1244
+ "license": "MIT",
1245
+ "funding": {
1246
+ "type": "github",
1247
+ "url": "https://github.com/sponsors/tannerlinsley"
1248
+ }
1249
+ },
1250
+ "node_modules/@types/aos": {
1251
+ "version": "3.0.7",
1252
+ "resolved": "https://registry.npmjs.org/@types/aos/-/aos-3.0.7.tgz",
1253
+ "integrity": "sha512-sEhyFqvKauUJZDbvAB3Pggynrq6g+2PS4XB3tmUr+mDL1gfDJnwslUC4QQ7/l8UD+LWpr3RxZVR/rHoZrLqZVg==",
1254
+ "dev": true,
1255
+ "license": "MIT"
1256
+ },
1257
+ "node_modules/@types/debug": {
1258
+ "version": "4.1.12",
1259
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
1260
+ "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
1261
+ "license": "MIT",
1262
+ "dependencies": {
1263
+ "@types/ms": "*"
1264
+ }
1265
+ },
1266
+ "node_modules/@types/estree": {
1267
+ "version": "1.0.8",
1268
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1269
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1270
+ "license": "MIT"
1271
+ },
1272
+ "node_modules/@types/estree-jsx": {
1273
+ "version": "1.0.5",
1274
+ "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
1275
+ "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
1276
+ "license": "MIT",
1277
+ "dependencies": {
1278
+ "@types/estree": "*"
1279
+ }
1280
+ },
1281
+ "node_modules/@types/hast": {
1282
+ "version": "3.0.4",
1283
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
1284
+ "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
1285
+ "license": "MIT",
1286
+ "dependencies": {
1287
+ "@types/unist": "*"
1288
+ }
1289
+ },
1290
+ "node_modules/@types/mdast": {
1291
+ "version": "4.0.4",
1292
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
1293
+ "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
1294
+ "license": "MIT",
1295
+ "dependencies": {
1296
+ "@types/unist": "*"
1297
+ }
1298
+ },
1299
+ "node_modules/@types/mdx": {
1300
+ "version": "2.0.13",
1301
+ "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.13.tgz",
1302
+ "integrity": "sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==",
1303
+ "license": "MIT"
1304
+ },
1305
+ "node_modules/@types/ms": {
1306
+ "version": "2.1.0",
1307
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
1308
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
1309
+ "license": "MIT"
1310
+ },
1311
+ "node_modules/@types/node": {
1312
+ "version": "22.18.8",
1313
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.18.8.tgz",
1314
+ "integrity": "sha512-pAZSHMiagDR7cARo/cch1f3rXy0AEXwsVsVH09FcyeJVAzCnGgmYis7P3JidtTUjyadhTeSo8TgRPswstghDaw==",
1315
+ "license": "MIT",
1316
+ "dependencies": {
1317
+ "undici-types": "~6.21.0"
1318
+ }
1319
+ },
1320
+ "node_modules/@types/react": {
1321
+ "version": "19.0.8",
1322
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.0.8.tgz",
1323
+ "integrity": "sha512-9P/o1IGdfmQxrujGbIMDyYaaCykhLKc0NGCtYcECNUr9UAaDe4gwvV9bR6tvd5Br1SG0j+PBpbKr2UYY8CwqSw==",
1324
+ "license": "MIT",
1325
+ "dependencies": {
1326
+ "csstype": "^3.0.2"
1327
+ }
1328
+ },
1329
+ "node_modules/@types/react-dom": {
1330
+ "version": "19.0.3",
1331
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.0.3.tgz",
1332
+ "integrity": "sha512-0Knk+HJiMP/qOZgMyNFamlIjw9OFCsyC2ZbigmEEyXXixgre6IQpm/4V+r3qH4GC1JPvRJKInw+on2rV6YZLeA==",
1333
+ "license": "MIT",
1334
+ "peerDependencies": {
1335
+ "@types/react": "^19.0.0"
1336
+ }
1337
+ },
1338
+ "node_modules/@types/react-syntax-highlighter": {
1339
+ "version": "15.5.13",
1340
+ "resolved": "https://registry.npmjs.org/@types/react-syntax-highlighter/-/react-syntax-highlighter-15.5.13.tgz",
1341
+ "integrity": "sha512-uLGJ87j6Sz8UaBAooU0T6lWJ0dBmjZgN1PZTrj05TNql2/XpC6+4HhMT5syIdFUUt+FASfCeLLv4kBygNU+8qA==",
1342
+ "license": "MIT",
1343
+ "dependencies": {
1344
+ "@types/react": "*"
1345
+ }
1346
+ },
1347
+ "node_modules/@types/unist": {
1348
+ "version": "3.0.3",
1349
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
1350
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
1351
+ "license": "MIT"
1352
+ },
1353
+ "node_modules/@ungap/structured-clone": {
1354
+ "version": "1.3.0",
1355
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
1356
+ "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
1357
+ "license": "ISC"
1358
+ },
1359
+ "node_modules/acorn": {
1360
+ "version": "8.15.0",
1361
+ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz",
1362
+ "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==",
1363
+ "license": "MIT",
1364
+ "bin": {
1365
+ "acorn": "bin/acorn"
1366
+ },
1367
+ "engines": {
1368
+ "node": ">=0.4.0"
1369
+ }
1370
+ },
1371
+ "node_modules/acorn-jsx": {
1372
+ "version": "5.3.2",
1373
+ "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz",
1374
+ "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==",
1375
+ "license": "MIT",
1376
+ "peerDependencies": {
1377
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
1378
+ }
1379
+ },
1380
+ "node_modules/aos": {
1381
+ "version": "3.0.0-beta.6",
1382
+ "resolved": "https://registry.npmjs.org/aos/-/aos-3.0.0-beta.6.tgz",
1383
+ "integrity": "sha512-VLWrpq8bfAWcetynVHMMrqdC+89Qq/Ym6UBJbHB4crIwp3RR8uq1dNGgsFzoDl03S43rlVMK+na3r5+oUCZsYw==",
1384
+ "license": "MIT",
1385
+ "dependencies": {
1386
+ "classlist-polyfill": "^1.2.0",
1387
+ "lodash.debounce": "^4.0.8",
1388
+ "lodash.throttle": "^4.1.1"
1389
+ }
1390
+ },
1391
+ "node_modules/argparse": {
1392
+ "version": "1.0.10",
1393
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
1394
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
1395
+ "license": "MIT",
1396
+ "dependencies": {
1397
+ "sprintf-js": "~1.0.2"
1398
+ }
1399
+ },
1400
+ "node_modules/astring": {
1401
+ "version": "1.9.0",
1402
+ "resolved": "https://registry.npmjs.org/astring/-/astring-1.9.0.tgz",
1403
+ "integrity": "sha512-LElXdjswlqjWrPpJFg1Fx4wpkOCxj1TDHlSV4PlaRxHGWko024xICaa97ZkMfs6DRKlCguiAI+rbXv5GWwXIkg==",
1404
+ "license": "MIT",
1405
+ "bin": {
1406
+ "astring": "bin/astring"
1407
+ }
1408
+ },
1409
+ "node_modules/bail": {
1410
+ "version": "2.0.2",
1411
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
1412
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
1413
+ "license": "MIT",
1414
+ "funding": {
1415
+ "type": "github",
1416
+ "url": "https://github.com/sponsors/wooorm"
1417
+ }
1418
+ },
1419
+ "node_modules/busboy": {
1420
+ "version": "1.6.0",
1421
+ "resolved": "https://registry.npmjs.org/busboy/-/busboy-1.6.0.tgz",
1422
+ "integrity": "sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==",
1423
+ "dependencies": {
1424
+ "streamsearch": "^1.1.0"
1425
+ },
1426
+ "engines": {
1427
+ "node": ">=10.16.0"
1428
+ }
1429
+ },
1430
+ "node_modules/caniuse-lite": {
1431
+ "version": "1.0.30001748",
1432
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001748.tgz",
1433
+ "integrity": "sha512-5P5UgAr0+aBmNiplks08JLw+AW/XG/SurlgZLgB1dDLfAw7EfRGxIwzPHxdSCGY/BTKDqIVyJL87cCN6s0ZR0w==",
1434
+ "funding": [
1435
+ {
1436
+ "type": "opencollective",
1437
+ "url": "https://opencollective.com/browserslist"
1438
+ },
1439
+ {
1440
+ "type": "tidelift",
1441
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1442
+ },
1443
+ {
1444
+ "type": "github",
1445
+ "url": "https://github.com/sponsors/ai"
1446
+ }
1447
+ ],
1448
+ "license": "CC-BY-4.0"
1449
+ },
1450
+ "node_modules/ccount": {
1451
+ "version": "2.0.1",
1452
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
1453
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
1454
+ "license": "MIT",
1455
+ "funding": {
1456
+ "type": "github",
1457
+ "url": "https://github.com/sponsors/wooorm"
1458
+ }
1459
+ },
1460
+ "node_modules/character-entities": {
1461
+ "version": "2.0.2",
1462
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
1463
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
1464
+ "license": "MIT",
1465
+ "funding": {
1466
+ "type": "github",
1467
+ "url": "https://github.com/sponsors/wooorm"
1468
+ }
1469
+ },
1470
+ "node_modules/character-entities-html4": {
1471
+ "version": "2.1.0",
1472
+ "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
1473
+ "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
1474
+ "license": "MIT",
1475
+ "funding": {
1476
+ "type": "github",
1477
+ "url": "https://github.com/sponsors/wooorm"
1478
+ }
1479
+ },
1480
+ "node_modules/character-entities-legacy": {
1481
+ "version": "3.0.0",
1482
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
1483
+ "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
1484
+ "license": "MIT",
1485
+ "funding": {
1486
+ "type": "github",
1487
+ "url": "https://github.com/sponsors/wooorm"
1488
+ }
1489
+ },
1490
+ "node_modules/character-reference-invalid": {
1491
+ "version": "2.0.1",
1492
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
1493
+ "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
1494
+ "license": "MIT",
1495
+ "funding": {
1496
+ "type": "github",
1497
+ "url": "https://github.com/sponsors/wooorm"
1498
+ }
1499
+ },
1500
+ "node_modules/chownr": {
1501
+ "version": "3.0.0",
1502
+ "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz",
1503
+ "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==",
1504
+ "dev": true,
1505
+ "license": "BlueOak-1.0.0",
1506
+ "engines": {
1507
+ "node": ">=18"
1508
+ }
1509
+ },
1510
+ "node_modules/classlist-polyfill": {
1511
+ "version": "1.2.0",
1512
+ "resolved": "https://registry.npmjs.org/classlist-polyfill/-/classlist-polyfill-1.2.0.tgz",
1513
+ "integrity": "sha512-GzIjNdcEtH4ieA2S8NmrSxv7DfEV5fmixQeyTmqmRmRJPGpRBaSnA2a0VrCjyT8iW8JjEdMbKzDotAJf+ajgaQ==",
1514
+ "license": "Unlicense"
1515
+ },
1516
+ "node_modules/client-only": {
1517
+ "version": "0.0.1",
1518
+ "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
1519
+ "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
1520
+ "license": "MIT"
1521
+ },
1522
+ "node_modules/clsx": {
1523
+ "version": "2.1.1",
1524
+ "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz",
1525
+ "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==",
1526
+ "license": "MIT",
1527
+ "engines": {
1528
+ "node": ">=6"
1529
+ }
1530
+ },
1531
+ "node_modules/collapse-white-space": {
1532
+ "version": "2.1.0",
1533
+ "resolved": "https://registry.npmjs.org/collapse-white-space/-/collapse-white-space-2.1.0.tgz",
1534
+ "integrity": "sha512-loKTxY1zCOuG4j9f6EPnuyyYkf58RnhhWTvRoZEokgB+WbdXehfjFviyOVYkqzEWz1Q5kRiZdBYS5SwxbQYwzw==",
1535
+ "license": "MIT",
1536
+ "funding": {
1537
+ "type": "github",
1538
+ "url": "https://github.com/sponsors/wooorm"
1539
+ }
1540
+ },
1541
+ "node_modules/color": {
1542
+ "version": "4.2.3",
1543
+ "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz",
1544
+ "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==",
1545
+ "license": "MIT",
1546
+ "optional": true,
1547
+ "dependencies": {
1548
+ "color-convert": "^2.0.1",
1549
+ "color-string": "^1.9.0"
1550
+ },
1551
+ "engines": {
1552
+ "node": ">=12.5.0"
1553
+ }
1554
+ },
1555
+ "node_modules/color-convert": {
1556
+ "version": "2.0.1",
1557
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1558
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1559
+ "license": "MIT",
1560
+ "optional": true,
1561
+ "dependencies": {
1562
+ "color-name": "~1.1.4"
1563
+ },
1564
+ "engines": {
1565
+ "node": ">=7.0.0"
1566
+ }
1567
+ },
1568
+ "node_modules/color-name": {
1569
+ "version": "1.1.4",
1570
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1571
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1572
+ "license": "MIT",
1573
+ "optional": true
1574
+ },
1575
+ "node_modules/color-string": {
1576
+ "version": "1.9.1",
1577
+ "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz",
1578
+ "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==",
1579
+ "license": "MIT",
1580
+ "optional": true,
1581
+ "dependencies": {
1582
+ "color-name": "^1.0.0",
1583
+ "simple-swizzle": "^0.2.2"
1584
+ }
1585
+ },
1586
+ "node_modules/comma-separated-tokens": {
1587
+ "version": "2.0.3",
1588
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
1589
+ "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
1590
+ "license": "MIT",
1591
+ "funding": {
1592
+ "type": "github",
1593
+ "url": "https://github.com/sponsors/wooorm"
1594
+ }
1595
+ },
1596
+ "node_modules/csstype": {
1597
+ "version": "3.1.3",
1598
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz",
1599
+ "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==",
1600
+ "license": "MIT"
1601
+ },
1602
+ "node_modules/debug": {
1603
+ "version": "4.4.3",
1604
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
1605
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
1606
+ "license": "MIT",
1607
+ "dependencies": {
1608
+ "ms": "^2.1.3"
1609
+ },
1610
+ "engines": {
1611
+ "node": ">=6.0"
1612
+ },
1613
+ "peerDependenciesMeta": {
1614
+ "supports-color": {
1615
+ "optional": true
1616
+ }
1617
+ }
1618
+ },
1619
+ "node_modules/decode-named-character-reference": {
1620
+ "version": "1.2.0",
1621
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.2.0.tgz",
1622
+ "integrity": "sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==",
1623
+ "license": "MIT",
1624
+ "dependencies": {
1625
+ "character-entities": "^2.0.0"
1626
+ },
1627
+ "funding": {
1628
+ "type": "github",
1629
+ "url": "https://github.com/sponsors/wooorm"
1630
+ }
1631
+ },
1632
+ "node_modules/dequal": {
1633
+ "version": "2.0.3",
1634
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
1635
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
1636
+ "license": "MIT",
1637
+ "engines": {
1638
+ "node": ">=6"
1639
+ }
1640
+ },
1641
+ "node_modules/detect-libc": {
1642
+ "version": "2.1.2",
1643
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
1644
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
1645
+ "devOptional": true,
1646
+ "license": "Apache-2.0",
1647
+ "engines": {
1648
+ "node": ">=8"
1649
+ }
1650
+ },
1651
+ "node_modules/devlop": {
1652
+ "version": "1.1.0",
1653
+ "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
1654
+ "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
1655
+ "license": "MIT",
1656
+ "dependencies": {
1657
+ "dequal": "^2.0.0"
1658
+ },
1659
+ "funding": {
1660
+ "type": "github",
1661
+ "url": "https://github.com/sponsors/wooorm"
1662
+ }
1663
+ },
1664
+ "node_modules/enhanced-resolve": {
1665
+ "version": "5.18.3",
1666
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.3.tgz",
1667
+ "integrity": "sha512-d4lC8xfavMeBjzGr2vECC3fsGXziXZQyJxD868h2M/mBI3PwAuODxAkLkq5HYuvrPYcUtiLzsTo8U3PgX3Ocww==",
1668
+ "dev": true,
1669
+ "license": "MIT",
1670
+ "dependencies": {
1671
+ "graceful-fs": "^4.2.4",
1672
+ "tapable": "^2.2.0"
1673
+ },
1674
+ "engines": {
1675
+ "node": ">=10.13.0"
1676
+ }
1677
+ },
1678
+ "node_modules/esast-util-from-estree": {
1679
+ "version": "2.0.0",
1680
+ "resolved": "https://registry.npmjs.org/esast-util-from-estree/-/esast-util-from-estree-2.0.0.tgz",
1681
+ "integrity": "sha512-4CyanoAudUSBAn5K13H4JhsMH6L9ZP7XbLVe/dKybkxMO7eDyLsT8UHl9TRNrU2Gr9nz+FovfSIjuXWJ81uVwQ==",
1682
+ "license": "MIT",
1683
+ "dependencies": {
1684
+ "@types/estree-jsx": "^1.0.0",
1685
+ "devlop": "^1.0.0",
1686
+ "estree-util-visit": "^2.0.0",
1687
+ "unist-util-position-from-estree": "^2.0.0"
1688
+ },
1689
+ "funding": {
1690
+ "type": "opencollective",
1691
+ "url": "https://opencollective.com/unified"
1692
+ }
1693
+ },
1694
+ "node_modules/esast-util-from-js": {
1695
+ "version": "2.0.1",
1696
+ "resolved": "https://registry.npmjs.org/esast-util-from-js/-/esast-util-from-js-2.0.1.tgz",
1697
+ "integrity": "sha512-8Ja+rNJ0Lt56Pcf3TAmpBZjmx8ZcK5Ts4cAzIOjsjevg9oSXJnl6SUQ2EevU8tv3h6ZLWmoKL5H4fgWvdvfETw==",
1698
+ "license": "MIT",
1699
+ "dependencies": {
1700
+ "@types/estree-jsx": "^1.0.0",
1701
+ "acorn": "^8.0.0",
1702
+ "esast-util-from-estree": "^2.0.0",
1703
+ "vfile-message": "^4.0.0"
1704
+ },
1705
+ "funding": {
1706
+ "type": "opencollective",
1707
+ "url": "https://opencollective.com/unified"
1708
+ }
1709
+ },
1710
+ "node_modules/esprima": {
1711
+ "version": "4.0.1",
1712
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
1713
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
1714
+ "license": "BSD-2-Clause",
1715
+ "bin": {
1716
+ "esparse": "bin/esparse.js",
1717
+ "esvalidate": "bin/esvalidate.js"
1718
+ },
1719
+ "engines": {
1720
+ "node": ">=4"
1721
+ }
1722
+ },
1723
+ "node_modules/estree-util-attach-comments": {
1724
+ "version": "3.0.0",
1725
+ "resolved": "https://registry.npmjs.org/estree-util-attach-comments/-/estree-util-attach-comments-3.0.0.tgz",
1726
+ "integrity": "sha512-cKUwm/HUcTDsYh/9FgnuFqpfquUbwIqwKM26BVCGDPVgvaCl/nDCCjUfiLlx6lsEZ3Z4RFxNbOQ60pkaEwFxGw==",
1727
+ "license": "MIT",
1728
+ "dependencies": {
1729
+ "@types/estree": "^1.0.0"
1730
+ },
1731
+ "funding": {
1732
+ "type": "opencollective",
1733
+ "url": "https://opencollective.com/unified"
1734
+ }
1735
+ },
1736
+ "node_modules/estree-util-build-jsx": {
1737
+ "version": "3.0.1",
1738
+ "resolved": "https://registry.npmjs.org/estree-util-build-jsx/-/estree-util-build-jsx-3.0.1.tgz",
1739
+ "integrity": "sha512-8U5eiL6BTrPxp/CHbs2yMgP8ftMhR5ww1eIKoWRMlqvltHF8fZn5LRDvTKuxD3DUn+shRbLGqXemcP51oFCsGQ==",
1740
+ "license": "MIT",
1741
+ "dependencies": {
1742
+ "@types/estree-jsx": "^1.0.0",
1743
+ "devlop": "^1.0.0",
1744
+ "estree-util-is-identifier-name": "^3.0.0",
1745
+ "estree-walker": "^3.0.0"
1746
+ },
1747
+ "funding": {
1748
+ "type": "opencollective",
1749
+ "url": "https://opencollective.com/unified"
1750
+ }
1751
+ },
1752
+ "node_modules/estree-util-is-identifier-name": {
1753
+ "version": "3.0.0",
1754
+ "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
1755
+ "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
1756
+ "license": "MIT",
1757
+ "funding": {
1758
+ "type": "opencollective",
1759
+ "url": "https://opencollective.com/unified"
1760
+ }
1761
+ },
1762
+ "node_modules/estree-util-scope": {
1763
+ "version": "1.0.0",
1764
+ "resolved": "https://registry.npmjs.org/estree-util-scope/-/estree-util-scope-1.0.0.tgz",
1765
+ "integrity": "sha512-2CAASclonf+JFWBNJPndcOpA8EMJwa0Q8LUFJEKqXLW6+qBvbFZuF5gItbQOs/umBUkjviCSDCbBwU2cXbmrhQ==",
1766
+ "license": "MIT",
1767
+ "dependencies": {
1768
+ "@types/estree": "^1.0.0",
1769
+ "devlop": "^1.0.0"
1770
+ },
1771
+ "funding": {
1772
+ "type": "opencollective",
1773
+ "url": "https://opencollective.com/unified"
1774
+ }
1775
+ },
1776
+ "node_modules/estree-util-to-js": {
1777
+ "version": "2.0.0",
1778
+ "resolved": "https://registry.npmjs.org/estree-util-to-js/-/estree-util-to-js-2.0.0.tgz",
1779
+ "integrity": "sha512-WDF+xj5rRWmD5tj6bIqRi6CkLIXbbNQUcxQHzGysQzvHmdYG2G7p/Tf0J0gpxGgkeMZNTIjT/AoSvC9Xehcgdg==",
1780
+ "license": "MIT",
1781
+ "dependencies": {
1782
+ "@types/estree-jsx": "^1.0.0",
1783
+ "astring": "^1.8.0",
1784
+ "source-map": "^0.7.0"
1785
+ },
1786
+ "funding": {
1787
+ "type": "opencollective",
1788
+ "url": "https://opencollective.com/unified"
1789
+ }
1790
+ },
1791
+ "node_modules/estree-util-visit": {
1792
+ "version": "2.0.0",
1793
+ "resolved": "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-2.0.0.tgz",
1794
+ "integrity": "sha512-m5KgiH85xAhhW8Wta0vShLcUvOsh3LLPI2YVwcbio1l7E09NTLL1EyMZFM1OyWowoH0skScNbhOPl4kcBgzTww==",
1795
+ "license": "MIT",
1796
+ "dependencies": {
1797
+ "@types/estree-jsx": "^1.0.0",
1798
+ "@types/unist": "^3.0.0"
1799
+ },
1800
+ "funding": {
1801
+ "type": "opencollective",
1802
+ "url": "https://opencollective.com/unified"
1803
+ }
1804
+ },
1805
+ "node_modules/estree-walker": {
1806
+ "version": "3.0.3",
1807
+ "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz",
1808
+ "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==",
1809
+ "license": "MIT",
1810
+ "dependencies": {
1811
+ "@types/estree": "^1.0.0"
1812
+ }
1813
+ },
1814
+ "node_modules/extend": {
1815
+ "version": "3.0.2",
1816
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
1817
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
1818
+ "license": "MIT"
1819
+ },
1820
+ "node_modules/extend-shallow": {
1821
+ "version": "2.0.1",
1822
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
1823
+ "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
1824
+ "license": "MIT",
1825
+ "dependencies": {
1826
+ "is-extendable": "^0.1.0"
1827
+ },
1828
+ "engines": {
1829
+ "node": ">=0.10.0"
1830
+ }
1831
+ },
1832
+ "node_modules/fault": {
1833
+ "version": "1.0.4",
1834
+ "resolved": "https://registry.npmjs.org/fault/-/fault-1.0.4.tgz",
1835
+ "integrity": "sha512-CJ0HCB5tL5fYTEA7ToAq5+kTwd++Borf1/bifxd9iT70QcXr4MRrO3Llf8Ifs70q+SJcGHFtnIE/Nw6giCtECA==",
1836
+ "license": "MIT",
1837
+ "dependencies": {
1838
+ "format": "^0.2.0"
1839
+ },
1840
+ "funding": {
1841
+ "type": "github",
1842
+ "url": "https://github.com/sponsors/wooorm"
1843
+ }
1844
+ },
1845
+ "node_modules/format": {
1846
+ "version": "0.2.2",
1847
+ "resolved": "https://registry.npmjs.org/format/-/format-0.2.2.tgz",
1848
+ "integrity": "sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==",
1849
+ "engines": {
1850
+ "node": ">=0.4.x"
1851
+ }
1852
+ },
1853
+ "node_modules/github-buttons": {
1854
+ "version": "2.29.1",
1855
+ "resolved": "https://registry.npmjs.org/github-buttons/-/github-buttons-2.29.1.tgz",
1856
+ "integrity": "sha512-TV3YgAKda5hPz75n7QXmGCsSzgVya1vvmBieebg3EB5ScmashTZ0FldViG1aU2d4V5rcAGrtQ7k5uAaCo0A4PA==",
1857
+ "license": "BSD-2-Clause"
1858
+ },
1859
+ "node_modules/graceful-fs": {
1860
+ "version": "4.2.11",
1861
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
1862
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
1863
+ "dev": true,
1864
+ "license": "ISC"
1865
+ },
1866
+ "node_modules/gray-matter": {
1867
+ "version": "4.0.3",
1868
+ "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
1869
+ "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
1870
+ "license": "MIT",
1871
+ "dependencies": {
1872
+ "js-yaml": "^3.13.1",
1873
+ "kind-of": "^6.0.2",
1874
+ "section-matter": "^1.0.0",
1875
+ "strip-bom-string": "^1.0.0"
1876
+ },
1877
+ "engines": {
1878
+ "node": ">=6.0"
1879
+ }
1880
+ },
1881
+ "node_modules/hast-util-parse-selector": {
1882
+ "version": "2.2.5",
1883
+ "resolved": "https://registry.npmjs.org/hast-util-parse-selector/-/hast-util-parse-selector-2.2.5.tgz",
1884
+ "integrity": "sha512-7j6mrk/qqkSehsM92wQjdIgWM2/BW61u/53G6xmC8i1OmEdKLHbk419QKQUjz6LglWsfqoiHmyMRkP1BGjecNQ==",
1885
+ "license": "MIT",
1886
+ "funding": {
1887
+ "type": "opencollective",
1888
+ "url": "https://opencollective.com/unified"
1889
+ }
1890
+ },
1891
+ "node_modules/hast-util-to-estree": {
1892
+ "version": "3.1.3",
1893
+ "resolved": "https://registry.npmjs.org/hast-util-to-estree/-/hast-util-to-estree-3.1.3.tgz",
1894
+ "integrity": "sha512-48+B/rJWAp0jamNbAAf9M7Uf//UVqAoMmgXhBdxTDJLGKY+LRnZ99qcG+Qjl5HfMpYNzS5v4EAwVEF34LeAj7w==",
1895
+ "license": "MIT",
1896
+ "dependencies": {
1897
+ "@types/estree": "^1.0.0",
1898
+ "@types/estree-jsx": "^1.0.0",
1899
+ "@types/hast": "^3.0.0",
1900
+ "comma-separated-tokens": "^2.0.0",
1901
+ "devlop": "^1.0.0",
1902
+ "estree-util-attach-comments": "^3.0.0",
1903
+ "estree-util-is-identifier-name": "^3.0.0",
1904
+ "hast-util-whitespace": "^3.0.0",
1905
+ "mdast-util-mdx-expression": "^2.0.0",
1906
+ "mdast-util-mdx-jsx": "^3.0.0",
1907
+ "mdast-util-mdxjs-esm": "^2.0.0",
1908
+ "property-information": "^7.0.0",
1909
+ "space-separated-tokens": "^2.0.0",
1910
+ "style-to-js": "^1.0.0",
1911
+ "unist-util-position": "^5.0.0",
1912
+ "zwitch": "^2.0.0"
1913
+ },
1914
+ "funding": {
1915
+ "type": "opencollective",
1916
+ "url": "https://opencollective.com/unified"
1917
+ }
1918
+ },
1919
+ "node_modules/hast-util-to-jsx-runtime": {
1920
+ "version": "2.3.6",
1921
+ "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
1922
+ "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
1923
+ "license": "MIT",
1924
+ "dependencies": {
1925
+ "@types/estree": "^1.0.0",
1926
+ "@types/hast": "^3.0.0",
1927
+ "@types/unist": "^3.0.0",
1928
+ "comma-separated-tokens": "^2.0.0",
1929
+ "devlop": "^1.0.0",
1930
+ "estree-util-is-identifier-name": "^3.0.0",
1931
+ "hast-util-whitespace": "^3.0.0",
1932
+ "mdast-util-mdx-expression": "^2.0.0",
1933
+ "mdast-util-mdx-jsx": "^3.0.0",
1934
+ "mdast-util-mdxjs-esm": "^2.0.0",
1935
+ "property-information": "^7.0.0",
1936
+ "space-separated-tokens": "^2.0.0",
1937
+ "style-to-js": "^1.0.0",
1938
+ "unist-util-position": "^5.0.0",
1939
+ "vfile-message": "^4.0.0"
1940
+ },
1941
+ "funding": {
1942
+ "type": "opencollective",
1943
+ "url": "https://opencollective.com/unified"
1944
+ }
1945
+ },
1946
+ "node_modules/hast-util-whitespace": {
1947
+ "version": "3.0.0",
1948
+ "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
1949
+ "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
1950
+ "license": "MIT",
1951
+ "dependencies": {
1952
+ "@types/hast": "^3.0.0"
1953
+ },
1954
+ "funding": {
1955
+ "type": "opencollective",
1956
+ "url": "https://opencollective.com/unified"
1957
+ }
1958
+ },
1959
+ "node_modules/hastscript": {
1960
+ "version": "6.0.0",
1961
+ "resolved": "https://registry.npmjs.org/hastscript/-/hastscript-6.0.0.tgz",
1962
+ "integrity": "sha512-nDM6bvd7lIqDUiYEiu5Sl/+6ReP0BMk/2f4U/Rooccxkj0P5nm+acM5PrGJ/t5I8qPGiqZSE6hVAwZEdZIvP4w==",
1963
+ "license": "MIT",
1964
+ "dependencies": {
1965
+ "@types/hast": "^2.0.0",
1966
+ "comma-separated-tokens": "^1.0.0",
1967
+ "hast-util-parse-selector": "^2.0.0",
1968
+ "property-information": "^5.0.0",
1969
+ "space-separated-tokens": "^1.0.0"
1970
+ },
1971
+ "funding": {
1972
+ "type": "opencollective",
1973
+ "url": "https://opencollective.com/unified"
1974
+ }
1975
+ },
1976
+ "node_modules/hastscript/node_modules/@types/hast": {
1977
+ "version": "2.3.10",
1978
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-2.3.10.tgz",
1979
+ "integrity": "sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==",
1980
+ "license": "MIT",
1981
+ "dependencies": {
1982
+ "@types/unist": "^2"
1983
+ }
1984
+ },
1985
+ "node_modules/hastscript/node_modules/@types/unist": {
1986
+ "version": "2.0.11",
1987
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
1988
+ "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
1989
+ "license": "MIT"
1990
+ },
1991
+ "node_modules/hastscript/node_modules/comma-separated-tokens": {
1992
+ "version": "1.0.8",
1993
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-1.0.8.tgz",
1994
+ "integrity": "sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==",
1995
+ "license": "MIT",
1996
+ "funding": {
1997
+ "type": "github",
1998
+ "url": "https://github.com/sponsors/wooorm"
1999
+ }
2000
+ },
2001
+ "node_modules/hastscript/node_modules/property-information": {
2002
+ "version": "5.6.0",
2003
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-5.6.0.tgz",
2004
+ "integrity": "sha512-YUHSPk+A30YPv+0Qf8i9Mbfe/C0hdPXk1s1jPVToV8pk8BQtpw10ct89Eo7OWkutrwqvT0eicAxlOg3dOAu8JA==",
2005
+ "license": "MIT",
2006
+ "dependencies": {
2007
+ "xtend": "^4.0.0"
2008
+ },
2009
+ "funding": {
2010
+ "type": "github",
2011
+ "url": "https://github.com/sponsors/wooorm"
2012
+ }
2013
+ },
2014
+ "node_modules/hastscript/node_modules/space-separated-tokens": {
2015
+ "version": "1.1.5",
2016
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-1.1.5.tgz",
2017
+ "integrity": "sha512-q/JSVd1Lptzhf5bkYm4ob4iWPjx0KiRe3sRFBNrVqbJkFaBm5vbbowy1mymoPNLRa52+oadOhJ+K49wsSeSjTA==",
2018
+ "license": "MIT",
2019
+ "funding": {
2020
+ "type": "github",
2021
+ "url": "https://github.com/sponsors/wooorm"
2022
+ }
2023
+ },
2024
+ "node_modules/highlight.js": {
2025
+ "version": "10.7.3",
2026
+ "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz",
2027
+ "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==",
2028
+ "license": "BSD-3-Clause",
2029
+ "engines": {
2030
+ "node": "*"
2031
+ }
2032
+ },
2033
+ "node_modules/highlightjs-vue": {
2034
+ "version": "1.0.0",
2035
+ "resolved": "https://registry.npmjs.org/highlightjs-vue/-/highlightjs-vue-1.0.0.tgz",
2036
+ "integrity": "sha512-PDEfEF102G23vHmPhLyPboFCD+BkMGu+GuJe2d9/eH4FsCwvgBpnc9n0pGE+ffKdph38s6foEZiEjdgHdzp+IA==",
2037
+ "license": "CC0-1.0"
2038
+ },
2039
+ "node_modules/inline-style-parser": {
2040
+ "version": "0.2.4",
2041
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.4.tgz",
2042
+ "integrity": "sha512-0aO8FkhNZlj/ZIbNi7Lxxr12obT7cL1moPfE4tg1LkX7LlLfC6DeX4l2ZEud1ukP9jNQyNnfzQVqwbwmAATY4Q==",
2043
+ "license": "MIT"
2044
+ },
2045
+ "node_modules/is-alphabetical": {
2046
+ "version": "2.0.1",
2047
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
2048
+ "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
2049
+ "license": "MIT",
2050
+ "funding": {
2051
+ "type": "github",
2052
+ "url": "https://github.com/sponsors/wooorm"
2053
+ }
2054
+ },
2055
+ "node_modules/is-alphanumerical": {
2056
+ "version": "2.0.1",
2057
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
2058
+ "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
2059
+ "license": "MIT",
2060
+ "dependencies": {
2061
+ "is-alphabetical": "^2.0.0",
2062
+ "is-decimal": "^2.0.0"
2063
+ },
2064
+ "funding": {
2065
+ "type": "github",
2066
+ "url": "https://github.com/sponsors/wooorm"
2067
+ }
2068
+ },
2069
+ "node_modules/is-arrayish": {
2070
+ "version": "0.3.4",
2071
+ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.4.tgz",
2072
+ "integrity": "sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==",
2073
+ "license": "MIT",
2074
+ "optional": true
2075
+ },
2076
+ "node_modules/is-decimal": {
2077
+ "version": "2.0.1",
2078
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
2079
+ "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
2080
+ "license": "MIT",
2081
+ "funding": {
2082
+ "type": "github",
2083
+ "url": "https://github.com/sponsors/wooorm"
2084
+ }
2085
+ },
2086
+ "node_modules/is-extendable": {
2087
+ "version": "0.1.1",
2088
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
2089
+ "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
2090
+ "license": "MIT",
2091
+ "engines": {
2092
+ "node": ">=0.10.0"
2093
+ }
2094
+ },
2095
+ "node_modules/is-hexadecimal": {
2096
+ "version": "2.0.1",
2097
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
2098
+ "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
2099
+ "license": "MIT",
2100
+ "funding": {
2101
+ "type": "github",
2102
+ "url": "https://github.com/sponsors/wooorm"
2103
+ }
2104
+ },
2105
+ "node_modules/is-plain-obj": {
2106
+ "version": "4.1.0",
2107
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
2108
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
2109
+ "license": "MIT",
2110
+ "engines": {
2111
+ "node": ">=12"
2112
+ },
2113
+ "funding": {
2114
+ "url": "https://github.com/sponsors/sindresorhus"
2115
+ }
2116
+ },
2117
+ "node_modules/jiti": {
2118
+ "version": "2.6.1",
2119
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
2120
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
2121
+ "dev": true,
2122
+ "license": "MIT",
2123
+ "bin": {
2124
+ "jiti": "lib/jiti-cli.mjs"
2125
+ }
2126
+ },
2127
+ "node_modules/js-tokens": {
2128
+ "version": "4.0.0",
2129
+ "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
2130
+ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
2131
+ "license": "MIT"
2132
+ },
2133
+ "node_modules/js-yaml": {
2134
+ "version": "3.14.1",
2135
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz",
2136
+ "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==",
2137
+ "license": "MIT",
2138
+ "dependencies": {
2139
+ "argparse": "^1.0.7",
2140
+ "esprima": "^4.0.0"
2141
+ },
2142
+ "bin": {
2143
+ "js-yaml": "bin/js-yaml.js"
2144
+ }
2145
+ },
2146
+ "node_modules/kind-of": {
2147
+ "version": "6.0.3",
2148
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
2149
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
2150
+ "license": "MIT",
2151
+ "engines": {
2152
+ "node": ">=0.10.0"
2153
+ }
2154
+ },
2155
+ "node_modules/lightningcss": {
2156
+ "version": "1.30.1",
2157
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.30.1.tgz",
2158
+ "integrity": "sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==",
2159
+ "dev": true,
2160
+ "license": "MPL-2.0",
2161
+ "dependencies": {
2162
+ "detect-libc": "^2.0.3"
2163
+ },
2164
+ "engines": {
2165
+ "node": ">= 12.0.0"
2166
+ },
2167
+ "funding": {
2168
+ "type": "opencollective",
2169
+ "url": "https://opencollective.com/parcel"
2170
+ },
2171
+ "optionalDependencies": {
2172
+ "lightningcss-darwin-arm64": "1.30.1",
2173
+ "lightningcss-darwin-x64": "1.30.1",
2174
+ "lightningcss-freebsd-x64": "1.30.1",
2175
+ "lightningcss-linux-arm-gnueabihf": "1.30.1",
2176
+ "lightningcss-linux-arm64-gnu": "1.30.1",
2177
+ "lightningcss-linux-arm64-musl": "1.30.1",
2178
+ "lightningcss-linux-x64-gnu": "1.30.1",
2179
+ "lightningcss-linux-x64-musl": "1.30.1",
2180
+ "lightningcss-win32-arm64-msvc": "1.30.1",
2181
+ "lightningcss-win32-x64-msvc": "1.30.1"
2182
+ }
2183
+ },
2184
+ "node_modules/lightningcss-darwin-arm64": {
2185
+ "version": "1.30.1",
2186
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.30.1.tgz",
2187
+ "integrity": "sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==",
2188
+ "cpu": [
2189
+ "arm64"
2190
+ ],
2191
+ "dev": true,
2192
+ "license": "MPL-2.0",
2193
+ "optional": true,
2194
+ "os": [
2195
+ "darwin"
2196
+ ],
2197
+ "engines": {
2198
+ "node": ">= 12.0.0"
2199
+ },
2200
+ "funding": {
2201
+ "type": "opencollective",
2202
+ "url": "https://opencollective.com/parcel"
2203
+ }
2204
+ },
2205
+ "node_modules/lightningcss-darwin-x64": {
2206
+ "version": "1.30.1",
2207
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.30.1.tgz",
2208
+ "integrity": "sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==",
2209
+ "cpu": [
2210
+ "x64"
2211
+ ],
2212
+ "dev": true,
2213
+ "license": "MPL-2.0",
2214
+ "optional": true,
2215
+ "os": [
2216
+ "darwin"
2217
+ ],
2218
+ "engines": {
2219
+ "node": ">= 12.0.0"
2220
+ },
2221
+ "funding": {
2222
+ "type": "opencollective",
2223
+ "url": "https://opencollective.com/parcel"
2224
+ }
2225
+ },
2226
+ "node_modules/lightningcss-freebsd-x64": {
2227
+ "version": "1.30.1",
2228
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.30.1.tgz",
2229
+ "integrity": "sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==",
2230
+ "cpu": [
2231
+ "x64"
2232
+ ],
2233
+ "dev": true,
2234
+ "license": "MPL-2.0",
2235
+ "optional": true,
2236
+ "os": [
2237
+ "freebsd"
2238
+ ],
2239
+ "engines": {
2240
+ "node": ">= 12.0.0"
2241
+ },
2242
+ "funding": {
2243
+ "type": "opencollective",
2244
+ "url": "https://opencollective.com/parcel"
2245
+ }
2246
+ },
2247
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
2248
+ "version": "1.30.1",
2249
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.30.1.tgz",
2250
+ "integrity": "sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==",
2251
+ "cpu": [
2252
+ "arm"
2253
+ ],
2254
+ "dev": true,
2255
+ "license": "MPL-2.0",
2256
+ "optional": true,
2257
+ "os": [
2258
+ "linux"
2259
+ ],
2260
+ "engines": {
2261
+ "node": ">= 12.0.0"
2262
+ },
2263
+ "funding": {
2264
+ "type": "opencollective",
2265
+ "url": "https://opencollective.com/parcel"
2266
+ }
2267
+ },
2268
+ "node_modules/lightningcss-linux-arm64-gnu": {
2269
+ "version": "1.30.1",
2270
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.30.1.tgz",
2271
+ "integrity": "sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==",
2272
+ "cpu": [
2273
+ "arm64"
2274
+ ],
2275
+ "dev": true,
2276
+ "license": "MPL-2.0",
2277
+ "optional": true,
2278
+ "os": [
2279
+ "linux"
2280
+ ],
2281
+ "engines": {
2282
+ "node": ">= 12.0.0"
2283
+ },
2284
+ "funding": {
2285
+ "type": "opencollective",
2286
+ "url": "https://opencollective.com/parcel"
2287
+ }
2288
+ },
2289
+ "node_modules/lightningcss-linux-arm64-musl": {
2290
+ "version": "1.30.1",
2291
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.30.1.tgz",
2292
+ "integrity": "sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==",
2293
+ "cpu": [
2294
+ "arm64"
2295
+ ],
2296
+ "dev": true,
2297
+ "license": "MPL-2.0",
2298
+ "optional": true,
2299
+ "os": [
2300
+ "linux"
2301
+ ],
2302
+ "engines": {
2303
+ "node": ">= 12.0.0"
2304
+ },
2305
+ "funding": {
2306
+ "type": "opencollective",
2307
+ "url": "https://opencollective.com/parcel"
2308
+ }
2309
+ },
2310
+ "node_modules/lightningcss-linux-x64-gnu": {
2311
+ "version": "1.30.1",
2312
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.30.1.tgz",
2313
+ "integrity": "sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==",
2314
+ "cpu": [
2315
+ "x64"
2316
+ ],
2317
+ "dev": true,
2318
+ "license": "MPL-2.0",
2319
+ "optional": true,
2320
+ "os": [
2321
+ "linux"
2322
+ ],
2323
+ "engines": {
2324
+ "node": ">= 12.0.0"
2325
+ },
2326
+ "funding": {
2327
+ "type": "opencollective",
2328
+ "url": "https://opencollective.com/parcel"
2329
+ }
2330
+ },
2331
+ "node_modules/lightningcss-linux-x64-musl": {
2332
+ "version": "1.30.1",
2333
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.30.1.tgz",
2334
+ "integrity": "sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==",
2335
+ "cpu": [
2336
+ "x64"
2337
+ ],
2338
+ "dev": true,
2339
+ "license": "MPL-2.0",
2340
+ "optional": true,
2341
+ "os": [
2342
+ "linux"
2343
+ ],
2344
+ "engines": {
2345
+ "node": ">= 12.0.0"
2346
+ },
2347
+ "funding": {
2348
+ "type": "opencollective",
2349
+ "url": "https://opencollective.com/parcel"
2350
+ }
2351
+ },
2352
+ "node_modules/lightningcss-win32-arm64-msvc": {
2353
+ "version": "1.30.1",
2354
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.30.1.tgz",
2355
+ "integrity": "sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==",
2356
+ "cpu": [
2357
+ "arm64"
2358
+ ],
2359
+ "dev": true,
2360
+ "license": "MPL-2.0",
2361
+ "optional": true,
2362
+ "os": [
2363
+ "win32"
2364
+ ],
2365
+ "engines": {
2366
+ "node": ">= 12.0.0"
2367
+ },
2368
+ "funding": {
2369
+ "type": "opencollective",
2370
+ "url": "https://opencollective.com/parcel"
2371
+ }
2372
+ },
2373
+ "node_modules/lightningcss-win32-x64-msvc": {
2374
+ "version": "1.30.1",
2375
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.30.1.tgz",
2376
+ "integrity": "sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==",
2377
+ "cpu": [
2378
+ "x64"
2379
+ ],
2380
+ "dev": true,
2381
+ "license": "MPL-2.0",
2382
+ "optional": true,
2383
+ "os": [
2384
+ "win32"
2385
+ ],
2386
+ "engines": {
2387
+ "node": ">= 12.0.0"
2388
+ },
2389
+ "funding": {
2390
+ "type": "opencollective",
2391
+ "url": "https://opencollective.com/parcel"
2392
+ }
2393
+ },
2394
+ "node_modules/lodash.debounce": {
2395
+ "version": "4.0.8",
2396
+ "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
2397
+ "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==",
2398
+ "license": "MIT"
2399
+ },
2400
+ "node_modules/lodash.throttle": {
2401
+ "version": "4.1.1",
2402
+ "resolved": "https://registry.npmjs.org/lodash.throttle/-/lodash.throttle-4.1.1.tgz",
2403
+ "integrity": "sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ==",
2404
+ "license": "MIT"
2405
+ },
2406
+ "node_modules/longest-streak": {
2407
+ "version": "3.1.0",
2408
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
2409
+ "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
2410
+ "license": "MIT",
2411
+ "funding": {
2412
+ "type": "github",
2413
+ "url": "https://github.com/sponsors/wooorm"
2414
+ }
2415
+ },
2416
+ "node_modules/lowlight": {
2417
+ "version": "1.20.0",
2418
+ "resolved": "https://registry.npmjs.org/lowlight/-/lowlight-1.20.0.tgz",
2419
+ "integrity": "sha512-8Ktj+prEb1RoCPkEOrPMYUN/nCggB7qAWe3a7OpMjWQkh3l2RD5wKRQ+o8Q8YuI9RG/xs95waaI/E6ym/7NsTw==",
2420
+ "license": "MIT",
2421
+ "dependencies": {
2422
+ "fault": "^1.0.0",
2423
+ "highlight.js": "~10.7.0"
2424
+ },
2425
+ "funding": {
2426
+ "type": "github",
2427
+ "url": "https://github.com/sponsors/wooorm"
2428
+ }
2429
+ },
2430
+ "node_modules/magic-string": {
2431
+ "version": "0.30.19",
2432
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.19.tgz",
2433
+ "integrity": "sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==",
2434
+ "dev": true,
2435
+ "license": "MIT",
2436
+ "dependencies": {
2437
+ "@jridgewell/sourcemap-codec": "^1.5.5"
2438
+ }
2439
+ },
2440
+ "node_modules/markdown-extensions": {
2441
+ "version": "2.0.0",
2442
+ "resolved": "https://registry.npmjs.org/markdown-extensions/-/markdown-extensions-2.0.0.tgz",
2443
+ "integrity": "sha512-o5vL7aDWatOTX8LzaS1WMoaoxIiLRQJuIKKe2wAw6IeULDHaqbiqiggmx+pKvZDb1Sj+pE46Sn1T7lCqfFtg1Q==",
2444
+ "license": "MIT",
2445
+ "engines": {
2446
+ "node": ">=16"
2447
+ },
2448
+ "funding": {
2449
+ "url": "https://github.com/sponsors/sindresorhus"
2450
+ }
2451
+ },
2452
+ "node_modules/mdast-util-from-markdown": {
2453
+ "version": "2.0.2",
2454
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.2.tgz",
2455
+ "integrity": "sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==",
2456
+ "license": "MIT",
2457
+ "dependencies": {
2458
+ "@types/mdast": "^4.0.0",
2459
+ "@types/unist": "^3.0.0",
2460
+ "decode-named-character-reference": "^1.0.0",
2461
+ "devlop": "^1.0.0",
2462
+ "mdast-util-to-string": "^4.0.0",
2463
+ "micromark": "^4.0.0",
2464
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2465
+ "micromark-util-decode-string": "^2.0.0",
2466
+ "micromark-util-normalize-identifier": "^2.0.0",
2467
+ "micromark-util-symbol": "^2.0.0",
2468
+ "micromark-util-types": "^2.0.0",
2469
+ "unist-util-stringify-position": "^4.0.0"
2470
+ },
2471
+ "funding": {
2472
+ "type": "opencollective",
2473
+ "url": "https://opencollective.com/unified"
2474
+ }
2475
+ },
2476
+ "node_modules/mdast-util-mdx": {
2477
+ "version": "3.0.0",
2478
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-3.0.0.tgz",
2479
+ "integrity": "sha512-JfbYLAW7XnYTTbUsmpu0kdBUVe+yKVJZBItEjwyYJiDJuZ9w4eeaqks4HQO+R7objWgS2ymV60GYpI14Ug554w==",
2480
+ "license": "MIT",
2481
+ "dependencies": {
2482
+ "mdast-util-from-markdown": "^2.0.0",
2483
+ "mdast-util-mdx-expression": "^2.0.0",
2484
+ "mdast-util-mdx-jsx": "^3.0.0",
2485
+ "mdast-util-mdxjs-esm": "^2.0.0",
2486
+ "mdast-util-to-markdown": "^2.0.0"
2487
+ },
2488
+ "funding": {
2489
+ "type": "opencollective",
2490
+ "url": "https://opencollective.com/unified"
2491
+ }
2492
+ },
2493
+ "node_modules/mdast-util-mdx-expression": {
2494
+ "version": "2.0.1",
2495
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
2496
+ "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
2497
+ "license": "MIT",
2498
+ "dependencies": {
2499
+ "@types/estree-jsx": "^1.0.0",
2500
+ "@types/hast": "^3.0.0",
2501
+ "@types/mdast": "^4.0.0",
2502
+ "devlop": "^1.0.0",
2503
+ "mdast-util-from-markdown": "^2.0.0",
2504
+ "mdast-util-to-markdown": "^2.0.0"
2505
+ },
2506
+ "funding": {
2507
+ "type": "opencollective",
2508
+ "url": "https://opencollective.com/unified"
2509
+ }
2510
+ },
2511
+ "node_modules/mdast-util-mdx-jsx": {
2512
+ "version": "3.2.0",
2513
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
2514
+ "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
2515
+ "license": "MIT",
2516
+ "dependencies": {
2517
+ "@types/estree-jsx": "^1.0.0",
2518
+ "@types/hast": "^3.0.0",
2519
+ "@types/mdast": "^4.0.0",
2520
+ "@types/unist": "^3.0.0",
2521
+ "ccount": "^2.0.0",
2522
+ "devlop": "^1.1.0",
2523
+ "mdast-util-from-markdown": "^2.0.0",
2524
+ "mdast-util-to-markdown": "^2.0.0",
2525
+ "parse-entities": "^4.0.0",
2526
+ "stringify-entities": "^4.0.0",
2527
+ "unist-util-stringify-position": "^4.0.0",
2528
+ "vfile-message": "^4.0.0"
2529
+ },
2530
+ "funding": {
2531
+ "type": "opencollective",
2532
+ "url": "https://opencollective.com/unified"
2533
+ }
2534
+ },
2535
+ "node_modules/mdast-util-mdxjs-esm": {
2536
+ "version": "2.0.1",
2537
+ "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
2538
+ "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
2539
+ "license": "MIT",
2540
+ "dependencies": {
2541
+ "@types/estree-jsx": "^1.0.0",
2542
+ "@types/hast": "^3.0.0",
2543
+ "@types/mdast": "^4.0.0",
2544
+ "devlop": "^1.0.0",
2545
+ "mdast-util-from-markdown": "^2.0.0",
2546
+ "mdast-util-to-markdown": "^2.0.0"
2547
+ },
2548
+ "funding": {
2549
+ "type": "opencollective",
2550
+ "url": "https://opencollective.com/unified"
2551
+ }
2552
+ },
2553
+ "node_modules/mdast-util-phrasing": {
2554
+ "version": "4.1.0",
2555
+ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
2556
+ "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
2557
+ "license": "MIT",
2558
+ "dependencies": {
2559
+ "@types/mdast": "^4.0.0",
2560
+ "unist-util-is": "^6.0.0"
2561
+ },
2562
+ "funding": {
2563
+ "type": "opencollective",
2564
+ "url": "https://opencollective.com/unified"
2565
+ }
2566
+ },
2567
+ "node_modules/mdast-util-to-hast": {
2568
+ "version": "13.2.0",
2569
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.0.tgz",
2570
+ "integrity": "sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==",
2571
+ "license": "MIT",
2572
+ "dependencies": {
2573
+ "@types/hast": "^3.0.0",
2574
+ "@types/mdast": "^4.0.0",
2575
+ "@ungap/structured-clone": "^1.0.0",
2576
+ "devlop": "^1.0.0",
2577
+ "micromark-util-sanitize-uri": "^2.0.0",
2578
+ "trim-lines": "^3.0.0",
2579
+ "unist-util-position": "^5.0.0",
2580
+ "unist-util-visit": "^5.0.0",
2581
+ "vfile": "^6.0.0"
2582
+ },
2583
+ "funding": {
2584
+ "type": "opencollective",
2585
+ "url": "https://opencollective.com/unified"
2586
+ }
2587
+ },
2588
+ "node_modules/mdast-util-to-markdown": {
2589
+ "version": "2.1.2",
2590
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
2591
+ "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
2592
+ "license": "MIT",
2593
+ "dependencies": {
2594
+ "@types/mdast": "^4.0.0",
2595
+ "@types/unist": "^3.0.0",
2596
+ "longest-streak": "^3.0.0",
2597
+ "mdast-util-phrasing": "^4.0.0",
2598
+ "mdast-util-to-string": "^4.0.0",
2599
+ "micromark-util-classify-character": "^2.0.0",
2600
+ "micromark-util-decode-string": "^2.0.0",
2601
+ "unist-util-visit": "^5.0.0",
2602
+ "zwitch": "^2.0.0"
2603
+ },
2604
+ "funding": {
2605
+ "type": "opencollective",
2606
+ "url": "https://opencollective.com/unified"
2607
+ }
2608
+ },
2609
+ "node_modules/mdast-util-to-string": {
2610
+ "version": "4.0.0",
2611
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
2612
+ "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
2613
+ "license": "MIT",
2614
+ "dependencies": {
2615
+ "@types/mdast": "^4.0.0"
2616
+ },
2617
+ "funding": {
2618
+ "type": "opencollective",
2619
+ "url": "https://opencollective.com/unified"
2620
+ }
2621
+ },
2622
+ "node_modules/micromark": {
2623
+ "version": "4.0.2",
2624
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
2625
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
2626
+ "funding": [
2627
+ {
2628
+ "type": "GitHub Sponsors",
2629
+ "url": "https://github.com/sponsors/unifiedjs"
2630
+ },
2631
+ {
2632
+ "type": "OpenCollective",
2633
+ "url": "https://opencollective.com/unified"
2634
+ }
2635
+ ],
2636
+ "license": "MIT",
2637
+ "dependencies": {
2638
+ "@types/debug": "^4.0.0",
2639
+ "debug": "^4.0.0",
2640
+ "decode-named-character-reference": "^1.0.0",
2641
+ "devlop": "^1.0.0",
2642
+ "micromark-core-commonmark": "^2.0.0",
2643
+ "micromark-factory-space": "^2.0.0",
2644
+ "micromark-util-character": "^2.0.0",
2645
+ "micromark-util-chunked": "^2.0.0",
2646
+ "micromark-util-combine-extensions": "^2.0.0",
2647
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2648
+ "micromark-util-encode": "^2.0.0",
2649
+ "micromark-util-normalize-identifier": "^2.0.0",
2650
+ "micromark-util-resolve-all": "^2.0.0",
2651
+ "micromark-util-sanitize-uri": "^2.0.0",
2652
+ "micromark-util-subtokenize": "^2.0.0",
2653
+ "micromark-util-symbol": "^2.0.0",
2654
+ "micromark-util-types": "^2.0.0"
2655
+ }
2656
+ },
2657
+ "node_modules/micromark-core-commonmark": {
2658
+ "version": "2.0.3",
2659
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
2660
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
2661
+ "funding": [
2662
+ {
2663
+ "type": "GitHub Sponsors",
2664
+ "url": "https://github.com/sponsors/unifiedjs"
2665
+ },
2666
+ {
2667
+ "type": "OpenCollective",
2668
+ "url": "https://opencollective.com/unified"
2669
+ }
2670
+ ],
2671
+ "license": "MIT",
2672
+ "dependencies": {
2673
+ "decode-named-character-reference": "^1.0.0",
2674
+ "devlop": "^1.0.0",
2675
+ "micromark-factory-destination": "^2.0.0",
2676
+ "micromark-factory-label": "^2.0.0",
2677
+ "micromark-factory-space": "^2.0.0",
2678
+ "micromark-factory-title": "^2.0.0",
2679
+ "micromark-factory-whitespace": "^2.0.0",
2680
+ "micromark-util-character": "^2.0.0",
2681
+ "micromark-util-chunked": "^2.0.0",
2682
+ "micromark-util-classify-character": "^2.0.0",
2683
+ "micromark-util-html-tag-name": "^2.0.0",
2684
+ "micromark-util-normalize-identifier": "^2.0.0",
2685
+ "micromark-util-resolve-all": "^2.0.0",
2686
+ "micromark-util-subtokenize": "^2.0.0",
2687
+ "micromark-util-symbol": "^2.0.0",
2688
+ "micromark-util-types": "^2.0.0"
2689
+ }
2690
+ },
2691
+ "node_modules/micromark-extension-mdx-expression": {
2692
+ "version": "3.0.1",
2693
+ "resolved": "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-3.0.1.tgz",
2694
+ "integrity": "sha512-dD/ADLJ1AeMvSAKBwO22zG22N4ybhe7kFIZ3LsDI0GlsNr2A3KYxb0LdC1u5rj4Nw+CHKY0RVdnHX8vj8ejm4Q==",
2695
+ "funding": [
2696
+ {
2697
+ "type": "GitHub Sponsors",
2698
+ "url": "https://github.com/sponsors/unifiedjs"
2699
+ },
2700
+ {
2701
+ "type": "OpenCollective",
2702
+ "url": "https://opencollective.com/unified"
2703
+ }
2704
+ ],
2705
+ "license": "MIT",
2706
+ "dependencies": {
2707
+ "@types/estree": "^1.0.0",
2708
+ "devlop": "^1.0.0",
2709
+ "micromark-factory-mdx-expression": "^2.0.0",
2710
+ "micromark-factory-space": "^2.0.0",
2711
+ "micromark-util-character": "^2.0.0",
2712
+ "micromark-util-events-to-acorn": "^2.0.0",
2713
+ "micromark-util-symbol": "^2.0.0",
2714
+ "micromark-util-types": "^2.0.0"
2715
+ }
2716
+ },
2717
+ "node_modules/micromark-extension-mdx-jsx": {
2718
+ "version": "3.0.2",
2719
+ "resolved": "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-3.0.2.tgz",
2720
+ "integrity": "sha512-e5+q1DjMh62LZAJOnDraSSbDMvGJ8x3cbjygy2qFEi7HCeUT4BDKCvMozPozcD6WmOt6sVvYDNBKhFSz3kjOVQ==",
2721
+ "license": "MIT",
2722
+ "dependencies": {
2723
+ "@types/estree": "^1.0.0",
2724
+ "devlop": "^1.0.0",
2725
+ "estree-util-is-identifier-name": "^3.0.0",
2726
+ "micromark-factory-mdx-expression": "^2.0.0",
2727
+ "micromark-factory-space": "^2.0.0",
2728
+ "micromark-util-character": "^2.0.0",
2729
+ "micromark-util-events-to-acorn": "^2.0.0",
2730
+ "micromark-util-symbol": "^2.0.0",
2731
+ "micromark-util-types": "^2.0.0",
2732
+ "vfile-message": "^4.0.0"
2733
+ },
2734
+ "funding": {
2735
+ "type": "opencollective",
2736
+ "url": "https://opencollective.com/unified"
2737
+ }
2738
+ },
2739
+ "node_modules/micromark-extension-mdx-md": {
2740
+ "version": "2.0.0",
2741
+ "resolved": "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-2.0.0.tgz",
2742
+ "integrity": "sha512-EpAiszsB3blw4Rpba7xTOUptcFeBFi+6PY8VnJ2hhimH+vCQDirWgsMpz7w1XcZE7LVrSAUGb9VJpG9ghlYvYQ==",
2743
+ "license": "MIT",
2744
+ "dependencies": {
2745
+ "micromark-util-types": "^2.0.0"
2746
+ },
2747
+ "funding": {
2748
+ "type": "opencollective",
2749
+ "url": "https://opencollective.com/unified"
2750
+ }
2751
+ },
2752
+ "node_modules/micromark-extension-mdxjs": {
2753
+ "version": "3.0.0",
2754
+ "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-3.0.0.tgz",
2755
+ "integrity": "sha512-A873fJfhnJ2siZyUrJ31l34Uqwy4xIFmvPY1oj+Ean5PHcPBYzEsvqvWGaWcfEIr11O5Dlw3p2y0tZWpKHDejQ==",
2756
+ "license": "MIT",
2757
+ "dependencies": {
2758
+ "acorn": "^8.0.0",
2759
+ "acorn-jsx": "^5.0.0",
2760
+ "micromark-extension-mdx-expression": "^3.0.0",
2761
+ "micromark-extension-mdx-jsx": "^3.0.0",
2762
+ "micromark-extension-mdx-md": "^2.0.0",
2763
+ "micromark-extension-mdxjs-esm": "^3.0.0",
2764
+ "micromark-util-combine-extensions": "^2.0.0",
2765
+ "micromark-util-types": "^2.0.0"
2766
+ },
2767
+ "funding": {
2768
+ "type": "opencollective",
2769
+ "url": "https://opencollective.com/unified"
2770
+ }
2771
+ },
2772
+ "node_modules/micromark-extension-mdxjs-esm": {
2773
+ "version": "3.0.0",
2774
+ "resolved": "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-3.0.0.tgz",
2775
+ "integrity": "sha512-DJFl4ZqkErRpq/dAPyeWp15tGrcrrJho1hKK5uBS70BCtfrIFg81sqcTVu3Ta+KD1Tk5vAtBNElWxtAa+m8K9A==",
2776
+ "license": "MIT",
2777
+ "dependencies": {
2778
+ "@types/estree": "^1.0.0",
2779
+ "devlop": "^1.0.0",
2780
+ "micromark-core-commonmark": "^2.0.0",
2781
+ "micromark-util-character": "^2.0.0",
2782
+ "micromark-util-events-to-acorn": "^2.0.0",
2783
+ "micromark-util-symbol": "^2.0.0",
2784
+ "micromark-util-types": "^2.0.0",
2785
+ "unist-util-position-from-estree": "^2.0.0",
2786
+ "vfile-message": "^4.0.0"
2787
+ },
2788
+ "funding": {
2789
+ "type": "opencollective",
2790
+ "url": "https://opencollective.com/unified"
2791
+ }
2792
+ },
2793
+ "node_modules/micromark-factory-destination": {
2794
+ "version": "2.0.1",
2795
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
2796
+ "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
2797
+ "funding": [
2798
+ {
2799
+ "type": "GitHub Sponsors",
2800
+ "url": "https://github.com/sponsors/unifiedjs"
2801
+ },
2802
+ {
2803
+ "type": "OpenCollective",
2804
+ "url": "https://opencollective.com/unified"
2805
+ }
2806
+ ],
2807
+ "license": "MIT",
2808
+ "dependencies": {
2809
+ "micromark-util-character": "^2.0.0",
2810
+ "micromark-util-symbol": "^2.0.0",
2811
+ "micromark-util-types": "^2.0.0"
2812
+ }
2813
+ },
2814
+ "node_modules/micromark-factory-label": {
2815
+ "version": "2.0.1",
2816
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
2817
+ "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
2818
+ "funding": [
2819
+ {
2820
+ "type": "GitHub Sponsors",
2821
+ "url": "https://github.com/sponsors/unifiedjs"
2822
+ },
2823
+ {
2824
+ "type": "OpenCollective",
2825
+ "url": "https://opencollective.com/unified"
2826
+ }
2827
+ ],
2828
+ "license": "MIT",
2829
+ "dependencies": {
2830
+ "devlop": "^1.0.0",
2831
+ "micromark-util-character": "^2.0.0",
2832
+ "micromark-util-symbol": "^2.0.0",
2833
+ "micromark-util-types": "^2.0.0"
2834
+ }
2835
+ },
2836
+ "node_modules/micromark-factory-mdx-expression": {
2837
+ "version": "2.0.3",
2838
+ "resolved": "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-2.0.3.tgz",
2839
+ "integrity": "sha512-kQnEtA3vzucU2BkrIa8/VaSAsP+EJ3CKOvhMuJgOEGg9KDC6OAY6nSnNDVRiVNRqj7Y4SlSzcStaH/5jge8JdQ==",
2840
+ "funding": [
2841
+ {
2842
+ "type": "GitHub Sponsors",
2843
+ "url": "https://github.com/sponsors/unifiedjs"
2844
+ },
2845
+ {
2846
+ "type": "OpenCollective",
2847
+ "url": "https://opencollective.com/unified"
2848
+ }
2849
+ ],
2850
+ "license": "MIT",
2851
+ "dependencies": {
2852
+ "@types/estree": "^1.0.0",
2853
+ "devlop": "^1.0.0",
2854
+ "micromark-factory-space": "^2.0.0",
2855
+ "micromark-util-character": "^2.0.0",
2856
+ "micromark-util-events-to-acorn": "^2.0.0",
2857
+ "micromark-util-symbol": "^2.0.0",
2858
+ "micromark-util-types": "^2.0.0",
2859
+ "unist-util-position-from-estree": "^2.0.0",
2860
+ "vfile-message": "^4.0.0"
2861
+ }
2862
+ },
2863
+ "node_modules/micromark-factory-space": {
2864
+ "version": "2.0.1",
2865
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
2866
+ "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
2867
+ "funding": [
2868
+ {
2869
+ "type": "GitHub Sponsors",
2870
+ "url": "https://github.com/sponsors/unifiedjs"
2871
+ },
2872
+ {
2873
+ "type": "OpenCollective",
2874
+ "url": "https://opencollective.com/unified"
2875
+ }
2876
+ ],
2877
+ "license": "MIT",
2878
+ "dependencies": {
2879
+ "micromark-util-character": "^2.0.0",
2880
+ "micromark-util-types": "^2.0.0"
2881
+ }
2882
+ },
2883
+ "node_modules/micromark-factory-title": {
2884
+ "version": "2.0.1",
2885
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
2886
+ "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
2887
+ "funding": [
2888
+ {
2889
+ "type": "GitHub Sponsors",
2890
+ "url": "https://github.com/sponsors/unifiedjs"
2891
+ },
2892
+ {
2893
+ "type": "OpenCollective",
2894
+ "url": "https://opencollective.com/unified"
2895
+ }
2896
+ ],
2897
+ "license": "MIT",
2898
+ "dependencies": {
2899
+ "micromark-factory-space": "^2.0.0",
2900
+ "micromark-util-character": "^2.0.0",
2901
+ "micromark-util-symbol": "^2.0.0",
2902
+ "micromark-util-types": "^2.0.0"
2903
+ }
2904
+ },
2905
+ "node_modules/micromark-factory-whitespace": {
2906
+ "version": "2.0.1",
2907
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
2908
+ "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
2909
+ "funding": [
2910
+ {
2911
+ "type": "GitHub Sponsors",
2912
+ "url": "https://github.com/sponsors/unifiedjs"
2913
+ },
2914
+ {
2915
+ "type": "OpenCollective",
2916
+ "url": "https://opencollective.com/unified"
2917
+ }
2918
+ ],
2919
+ "license": "MIT",
2920
+ "dependencies": {
2921
+ "micromark-factory-space": "^2.0.0",
2922
+ "micromark-util-character": "^2.0.0",
2923
+ "micromark-util-symbol": "^2.0.0",
2924
+ "micromark-util-types": "^2.0.0"
2925
+ }
2926
+ },
2927
+ "node_modules/micromark-util-character": {
2928
+ "version": "2.1.1",
2929
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
2930
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
2931
+ "funding": [
2932
+ {
2933
+ "type": "GitHub Sponsors",
2934
+ "url": "https://github.com/sponsors/unifiedjs"
2935
+ },
2936
+ {
2937
+ "type": "OpenCollective",
2938
+ "url": "https://opencollective.com/unified"
2939
+ }
2940
+ ],
2941
+ "license": "MIT",
2942
+ "dependencies": {
2943
+ "micromark-util-symbol": "^2.0.0",
2944
+ "micromark-util-types": "^2.0.0"
2945
+ }
2946
+ },
2947
+ "node_modules/micromark-util-chunked": {
2948
+ "version": "2.0.1",
2949
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
2950
+ "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
2951
+ "funding": [
2952
+ {
2953
+ "type": "GitHub Sponsors",
2954
+ "url": "https://github.com/sponsors/unifiedjs"
2955
+ },
2956
+ {
2957
+ "type": "OpenCollective",
2958
+ "url": "https://opencollective.com/unified"
2959
+ }
2960
+ ],
2961
+ "license": "MIT",
2962
+ "dependencies": {
2963
+ "micromark-util-symbol": "^2.0.0"
2964
+ }
2965
+ },
2966
+ "node_modules/micromark-util-classify-character": {
2967
+ "version": "2.0.1",
2968
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
2969
+ "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
2970
+ "funding": [
2971
+ {
2972
+ "type": "GitHub Sponsors",
2973
+ "url": "https://github.com/sponsors/unifiedjs"
2974
+ },
2975
+ {
2976
+ "type": "OpenCollective",
2977
+ "url": "https://opencollective.com/unified"
2978
+ }
2979
+ ],
2980
+ "license": "MIT",
2981
+ "dependencies": {
2982
+ "micromark-util-character": "^2.0.0",
2983
+ "micromark-util-symbol": "^2.0.0",
2984
+ "micromark-util-types": "^2.0.0"
2985
+ }
2986
+ },
2987
+ "node_modules/micromark-util-combine-extensions": {
2988
+ "version": "2.0.1",
2989
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
2990
+ "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
2991
+ "funding": [
2992
+ {
2993
+ "type": "GitHub Sponsors",
2994
+ "url": "https://github.com/sponsors/unifiedjs"
2995
+ },
2996
+ {
2997
+ "type": "OpenCollective",
2998
+ "url": "https://opencollective.com/unified"
2999
+ }
3000
+ ],
3001
+ "license": "MIT",
3002
+ "dependencies": {
3003
+ "micromark-util-chunked": "^2.0.0",
3004
+ "micromark-util-types": "^2.0.0"
3005
+ }
3006
+ },
3007
+ "node_modules/micromark-util-decode-numeric-character-reference": {
3008
+ "version": "2.0.2",
3009
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
3010
+ "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
3011
+ "funding": [
3012
+ {
3013
+ "type": "GitHub Sponsors",
3014
+ "url": "https://github.com/sponsors/unifiedjs"
3015
+ },
3016
+ {
3017
+ "type": "OpenCollective",
3018
+ "url": "https://opencollective.com/unified"
3019
+ }
3020
+ ],
3021
+ "license": "MIT",
3022
+ "dependencies": {
3023
+ "micromark-util-symbol": "^2.0.0"
3024
+ }
3025
+ },
3026
+ "node_modules/micromark-util-decode-string": {
3027
+ "version": "2.0.1",
3028
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
3029
+ "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
3030
+ "funding": [
3031
+ {
3032
+ "type": "GitHub Sponsors",
3033
+ "url": "https://github.com/sponsors/unifiedjs"
3034
+ },
3035
+ {
3036
+ "type": "OpenCollective",
3037
+ "url": "https://opencollective.com/unified"
3038
+ }
3039
+ ],
3040
+ "license": "MIT",
3041
+ "dependencies": {
3042
+ "decode-named-character-reference": "^1.0.0",
3043
+ "micromark-util-character": "^2.0.0",
3044
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
3045
+ "micromark-util-symbol": "^2.0.0"
3046
+ }
3047
+ },
3048
+ "node_modules/micromark-util-encode": {
3049
+ "version": "2.0.1",
3050
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
3051
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
3052
+ "funding": [
3053
+ {
3054
+ "type": "GitHub Sponsors",
3055
+ "url": "https://github.com/sponsors/unifiedjs"
3056
+ },
3057
+ {
3058
+ "type": "OpenCollective",
3059
+ "url": "https://opencollective.com/unified"
3060
+ }
3061
+ ],
3062
+ "license": "MIT"
3063
+ },
3064
+ "node_modules/micromark-util-events-to-acorn": {
3065
+ "version": "2.0.3",
3066
+ "resolved": "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-2.0.3.tgz",
3067
+ "integrity": "sha512-jmsiEIiZ1n7X1Rr5k8wVExBQCg5jy4UXVADItHmNk1zkwEVhBuIUKRu3fqv+hs4nxLISi2DQGlqIOGiFxgbfHg==",
3068
+ "funding": [
3069
+ {
3070
+ "type": "GitHub Sponsors",
3071
+ "url": "https://github.com/sponsors/unifiedjs"
3072
+ },
3073
+ {
3074
+ "type": "OpenCollective",
3075
+ "url": "https://opencollective.com/unified"
3076
+ }
3077
+ ],
3078
+ "license": "MIT",
3079
+ "dependencies": {
3080
+ "@types/estree": "^1.0.0",
3081
+ "@types/unist": "^3.0.0",
3082
+ "devlop": "^1.0.0",
3083
+ "estree-util-visit": "^2.0.0",
3084
+ "micromark-util-symbol": "^2.0.0",
3085
+ "micromark-util-types": "^2.0.0",
3086
+ "vfile-message": "^4.0.0"
3087
+ }
3088
+ },
3089
+ "node_modules/micromark-util-html-tag-name": {
3090
+ "version": "2.0.1",
3091
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
3092
+ "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
3093
+ "funding": [
3094
+ {
3095
+ "type": "GitHub Sponsors",
3096
+ "url": "https://github.com/sponsors/unifiedjs"
3097
+ },
3098
+ {
3099
+ "type": "OpenCollective",
3100
+ "url": "https://opencollective.com/unified"
3101
+ }
3102
+ ],
3103
+ "license": "MIT"
3104
+ },
3105
+ "node_modules/micromark-util-normalize-identifier": {
3106
+ "version": "2.0.1",
3107
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
3108
+ "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
3109
+ "funding": [
3110
+ {
3111
+ "type": "GitHub Sponsors",
3112
+ "url": "https://github.com/sponsors/unifiedjs"
3113
+ },
3114
+ {
3115
+ "type": "OpenCollective",
3116
+ "url": "https://opencollective.com/unified"
3117
+ }
3118
+ ],
3119
+ "license": "MIT",
3120
+ "dependencies": {
3121
+ "micromark-util-symbol": "^2.0.0"
3122
+ }
3123
+ },
3124
+ "node_modules/micromark-util-resolve-all": {
3125
+ "version": "2.0.1",
3126
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
3127
+ "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
3128
+ "funding": [
3129
+ {
3130
+ "type": "GitHub Sponsors",
3131
+ "url": "https://github.com/sponsors/unifiedjs"
3132
+ },
3133
+ {
3134
+ "type": "OpenCollective",
3135
+ "url": "https://opencollective.com/unified"
3136
+ }
3137
+ ],
3138
+ "license": "MIT",
3139
+ "dependencies": {
3140
+ "micromark-util-types": "^2.0.0"
3141
+ }
3142
+ },
3143
+ "node_modules/micromark-util-sanitize-uri": {
3144
+ "version": "2.0.1",
3145
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
3146
+ "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
3147
+ "funding": [
3148
+ {
3149
+ "type": "GitHub Sponsors",
3150
+ "url": "https://github.com/sponsors/unifiedjs"
3151
+ },
3152
+ {
3153
+ "type": "OpenCollective",
3154
+ "url": "https://opencollective.com/unified"
3155
+ }
3156
+ ],
3157
+ "license": "MIT",
3158
+ "dependencies": {
3159
+ "micromark-util-character": "^2.0.0",
3160
+ "micromark-util-encode": "^2.0.0",
3161
+ "micromark-util-symbol": "^2.0.0"
3162
+ }
3163
+ },
3164
+ "node_modules/micromark-util-subtokenize": {
3165
+ "version": "2.1.0",
3166
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
3167
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
3168
+ "funding": [
3169
+ {
3170
+ "type": "GitHub Sponsors",
3171
+ "url": "https://github.com/sponsors/unifiedjs"
3172
+ },
3173
+ {
3174
+ "type": "OpenCollective",
3175
+ "url": "https://opencollective.com/unified"
3176
+ }
3177
+ ],
3178
+ "license": "MIT",
3179
+ "dependencies": {
3180
+ "devlop": "^1.0.0",
3181
+ "micromark-util-chunked": "^2.0.0",
3182
+ "micromark-util-symbol": "^2.0.0",
3183
+ "micromark-util-types": "^2.0.0"
3184
+ }
3185
+ },
3186
+ "node_modules/micromark-util-symbol": {
3187
+ "version": "2.0.1",
3188
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
3189
+ "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
3190
+ "funding": [
3191
+ {
3192
+ "type": "GitHub Sponsors",
3193
+ "url": "https://github.com/sponsors/unifiedjs"
3194
+ },
3195
+ {
3196
+ "type": "OpenCollective",
3197
+ "url": "https://opencollective.com/unified"
3198
+ }
3199
+ ],
3200
+ "license": "MIT"
3201
+ },
3202
+ "node_modules/micromark-util-types": {
3203
+ "version": "2.0.2",
3204
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
3205
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
3206
+ "funding": [
3207
+ {
3208
+ "type": "GitHub Sponsors",
3209
+ "url": "https://github.com/sponsors/unifiedjs"
3210
+ },
3211
+ {
3212
+ "type": "OpenCollective",
3213
+ "url": "https://opencollective.com/unified"
3214
+ }
3215
+ ],
3216
+ "license": "MIT"
3217
+ },
3218
+ "node_modules/mini-svg-data-uri": {
3219
+ "version": "1.4.4",
3220
+ "resolved": "https://registry.npmjs.org/mini-svg-data-uri/-/mini-svg-data-uri-1.4.4.tgz",
3221
+ "integrity": "sha512-r9deDe9p5FJUPZAk3A59wGH7Ii9YrjjWw0jmw/liSbHl2CHiyXj6FcDXDu2K3TjVAXqiJdaw3xxwlZZr9E6nHg==",
3222
+ "dev": true,
3223
+ "license": "MIT",
3224
+ "bin": {
3225
+ "mini-svg-data-uri": "cli.js"
3226
+ }
3227
+ },
3228
+ "node_modules/minipass": {
3229
+ "version": "7.1.2",
3230
+ "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz",
3231
+ "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==",
3232
+ "dev": true,
3233
+ "license": "ISC",
3234
+ "engines": {
3235
+ "node": ">=16 || 14 >=14.17"
3236
+ }
3237
+ },
3238
+ "node_modules/minizlib": {
3239
+ "version": "3.1.0",
3240
+ "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz",
3241
+ "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==",
3242
+ "dev": true,
3243
+ "license": "MIT",
3244
+ "dependencies": {
3245
+ "minipass": "^7.1.2"
3246
+ },
3247
+ "engines": {
3248
+ "node": ">= 18"
3249
+ }
3250
+ },
3251
+ "node_modules/ms": {
3252
+ "version": "2.1.3",
3253
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3254
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3255
+ "license": "MIT"
3256
+ },
3257
+ "node_modules/nanoid": {
3258
+ "version": "3.3.11",
3259
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
3260
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
3261
+ "funding": [
3262
+ {
3263
+ "type": "github",
3264
+ "url": "https://github.com/sponsors/ai"
3265
+ }
3266
+ ],
3267
+ "license": "MIT",
3268
+ "bin": {
3269
+ "nanoid": "bin/nanoid.cjs"
3270
+ },
3271
+ "engines": {
3272
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3273
+ }
3274
+ },
3275
+ "node_modules/next": {
3276
+ "version": "15.1.6",
3277
+ "resolved": "https://registry.npmjs.org/next/-/next-15.1.6.tgz",
3278
+ "integrity": "sha512-Hch4wzbaX0vKQtalpXvUiw5sYivBy4cm5rzUKrBnUB/y436LGrvOUqYvlSeNVCWFO/770gDlltR9gqZH62ct4Q==",
3279
+ "license": "MIT",
3280
+ "dependencies": {
3281
+ "@next/env": "15.1.6",
3282
+ "@swc/counter": "0.1.3",
3283
+ "@swc/helpers": "0.5.15",
3284
+ "busboy": "1.6.0",
3285
+ "caniuse-lite": "^1.0.30001579",
3286
+ "postcss": "8.4.31",
3287
+ "styled-jsx": "5.1.6"
3288
+ },
3289
+ "bin": {
3290
+ "next": "dist/bin/next"
3291
+ },
3292
+ "engines": {
3293
+ "node": "^18.18.0 || ^19.8.0 || >= 20.0.0"
3294
+ },
3295
+ "optionalDependencies": {
3296
+ "@next/swc-darwin-arm64": "15.1.6",
3297
+ "@next/swc-darwin-x64": "15.1.6",
3298
+ "@next/swc-linux-arm64-gnu": "15.1.6",
3299
+ "@next/swc-linux-arm64-musl": "15.1.6",
3300
+ "@next/swc-linux-x64-gnu": "15.1.6",
3301
+ "@next/swc-linux-x64-musl": "15.1.6",
3302
+ "@next/swc-win32-arm64-msvc": "15.1.6",
3303
+ "@next/swc-win32-x64-msvc": "15.1.6",
3304
+ "sharp": "^0.33.5"
3305
+ },
3306
+ "peerDependencies": {
3307
+ "@opentelemetry/api": "^1.1.0",
3308
+ "@playwright/test": "^1.41.2",
3309
+ "babel-plugin-react-compiler": "*",
3310
+ "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
3311
+ "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
3312
+ "sass": "^1.3.0"
3313
+ },
3314
+ "peerDependenciesMeta": {
3315
+ "@opentelemetry/api": {
3316
+ "optional": true
3317
+ },
3318
+ "@playwright/test": {
3319
+ "optional": true
3320
+ },
3321
+ "babel-plugin-react-compiler": {
3322
+ "optional": true
3323
+ },
3324
+ "sass": {
3325
+ "optional": true
3326
+ }
3327
+ }
3328
+ },
3329
+ "node_modules/next-mdx-remote": {
3330
+ "version": "5.0.0",
3331
+ "resolved": "https://registry.npmjs.org/next-mdx-remote/-/next-mdx-remote-5.0.0.tgz",
3332
+ "integrity": "sha512-RNNbqRpK9/dcIFZs/esQhuLA8jANqlH694yqoDBK8hkVdJUndzzGmnPHa2nyi90N4Z9VmzuSWNRpr5ItT3M7xQ==",
3333
+ "license": "MPL-2.0",
3334
+ "dependencies": {
3335
+ "@babel/code-frame": "^7.23.5",
3336
+ "@mdx-js/mdx": "^3.0.1",
3337
+ "@mdx-js/react": "^3.0.1",
3338
+ "unist-util-remove": "^3.1.0",
3339
+ "vfile": "^6.0.1",
3340
+ "vfile-matter": "^5.0.0"
3341
+ },
3342
+ "engines": {
3343
+ "node": ">=14",
3344
+ "npm": ">=7"
3345
+ },
3346
+ "peerDependencies": {
3347
+ "react": ">=16"
3348
+ }
3349
+ },
3350
+ "node_modules/next/node_modules/@swc/helpers": {
3351
+ "version": "0.5.15",
3352
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
3353
+ "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
3354
+ "license": "Apache-2.0",
3355
+ "dependencies": {
3356
+ "tslib": "^2.8.0"
3357
+ }
3358
+ },
3359
+ "node_modules/next/node_modules/postcss": {
3360
+ "version": "8.4.31",
3361
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
3362
+ "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
3363
+ "funding": [
3364
+ {
3365
+ "type": "opencollective",
3366
+ "url": "https://opencollective.com/postcss/"
3367
+ },
3368
+ {
3369
+ "type": "tidelift",
3370
+ "url": "https://tidelift.com/funding/github/npm/postcss"
3371
+ },
3372
+ {
3373
+ "type": "github",
3374
+ "url": "https://github.com/sponsors/ai"
3375
+ }
3376
+ ],
3377
+ "license": "MIT",
3378
+ "dependencies": {
3379
+ "nanoid": "^3.3.6",
3380
+ "picocolors": "^1.0.0",
3381
+ "source-map-js": "^1.0.2"
3382
+ },
3383
+ "engines": {
3384
+ "node": "^10 || ^12 || >=14"
3385
+ }
3386
+ },
3387
+ "node_modules/parse-entities": {
3388
+ "version": "4.0.2",
3389
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
3390
+ "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
3391
+ "license": "MIT",
3392
+ "dependencies": {
3393
+ "@types/unist": "^2.0.0",
3394
+ "character-entities-legacy": "^3.0.0",
3395
+ "character-reference-invalid": "^2.0.0",
3396
+ "decode-named-character-reference": "^1.0.0",
3397
+ "is-alphanumerical": "^2.0.0",
3398
+ "is-decimal": "^2.0.0",
3399
+ "is-hexadecimal": "^2.0.0"
3400
+ },
3401
+ "funding": {
3402
+ "type": "github",
3403
+ "url": "https://github.com/sponsors/wooorm"
3404
+ }
3405
+ },
3406
+ "node_modules/parse-entities/node_modules/@types/unist": {
3407
+ "version": "2.0.11",
3408
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
3409
+ "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
3410
+ "license": "MIT"
3411
+ },
3412
+ "node_modules/picocolors": {
3413
+ "version": "1.1.1",
3414
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3415
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3416
+ "license": "ISC"
3417
+ },
3418
+ "node_modules/postcss": {
3419
+ "version": "8.5.6",
3420
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz",
3421
+ "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==",
3422
+ "dev": true,
3423
+ "funding": [
3424
+ {
3425
+ "type": "opencollective",
3426
+ "url": "https://opencollective.com/postcss/"
3427
+ },
3428
+ {
3429
+ "type": "tidelift",
3430
+ "url": "https://tidelift.com/funding/github/npm/postcss"
3431
+ },
3432
+ {
3433
+ "type": "github",
3434
+ "url": "https://github.com/sponsors/ai"
3435
+ }
3436
+ ],
3437
+ "license": "MIT",
3438
+ "dependencies": {
3439
+ "nanoid": "^3.3.11",
3440
+ "picocolors": "^1.1.1",
3441
+ "source-map-js": "^1.2.1"
3442
+ },
3443
+ "engines": {
3444
+ "node": "^10 || ^12 || >=14"
3445
+ }
3446
+ },
3447
+ "node_modules/prismjs": {
3448
+ "version": "1.30.0",
3449
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.30.0.tgz",
3450
+ "integrity": "sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==",
3451
+ "license": "MIT",
3452
+ "engines": {
3453
+ "node": ">=6"
3454
+ }
3455
+ },
3456
+ "node_modules/property-information": {
3457
+ "version": "7.1.0",
3458
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz",
3459
+ "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==",
3460
+ "license": "MIT",
3461
+ "funding": {
3462
+ "type": "github",
3463
+ "url": "https://github.com/sponsors/wooorm"
3464
+ }
3465
+ },
3466
+ "node_modules/react": {
3467
+ "version": "19.0.0",
3468
+ "resolved": "https://registry.npmjs.org/react/-/react-19.0.0.tgz",
3469
+ "integrity": "sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==",
3470
+ "license": "MIT",
3471
+ "engines": {
3472
+ "node": ">=0.10.0"
3473
+ }
3474
+ },
3475
+ "node_modules/react-dom": {
3476
+ "version": "19.0.0",
3477
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.0.0.tgz",
3478
+ "integrity": "sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==",
3479
+ "license": "MIT",
3480
+ "dependencies": {
3481
+ "scheduler": "^0.25.0"
3482
+ },
3483
+ "peerDependencies": {
3484
+ "react": "^19.0.0"
3485
+ }
3486
+ },
3487
+ "node_modules/react-github-btn": {
3488
+ "version": "1.4.0",
3489
+ "resolved": "https://registry.npmjs.org/react-github-btn/-/react-github-btn-1.4.0.tgz",
3490
+ "integrity": "sha512-lV4FYClAfjWnBfv0iNlJUGhamDgIq6TayD0kPZED6VzHWdpcHmPfsYOZ/CFwLfPv4Zp+F4m8QKTj0oy2HjiGXg==",
3491
+ "license": "BSD-2-Clause",
3492
+ "dependencies": {
3493
+ "github-buttons": "^2.22.0"
3494
+ },
3495
+ "peerDependencies": {
3496
+ "react": ">=16.3.0"
3497
+ }
3498
+ },
3499
+ "node_modules/react-syntax-highlighter": {
3500
+ "version": "15.6.6",
3501
+ "resolved": "https://registry.npmjs.org/react-syntax-highlighter/-/react-syntax-highlighter-15.6.6.tgz",
3502
+ "integrity": "sha512-DgXrc+AZF47+HvAPEmn7Ua/1p10jNoVZVI/LoPiYdtY+OM+/nG5yefLHKJwdKqY1adMuHFbeyBaG9j64ML7vTw==",
3503
+ "license": "MIT",
3504
+ "dependencies": {
3505
+ "@babel/runtime": "^7.3.1",
3506
+ "highlight.js": "^10.4.1",
3507
+ "highlightjs-vue": "^1.0.0",
3508
+ "lowlight": "^1.17.0",
3509
+ "prismjs": "^1.30.0",
3510
+ "refractor": "^3.6.0"
3511
+ },
3512
+ "peerDependencies": {
3513
+ "react": ">= 0.14.0"
3514
+ }
3515
+ },
3516
+ "node_modules/reading-time": {
3517
+ "version": "1.5.0",
3518
+ "resolved": "https://registry.npmjs.org/reading-time/-/reading-time-1.5.0.tgz",
3519
+ "integrity": "sha512-onYyVhBNr4CmAxFsKS7bz+uTLRakypIe4R+5A824vBSkQy/hB3fZepoVEf8OVAxzLvK+H/jm9TzpI3ETSm64Kg==",
3520
+ "license": "MIT"
3521
+ },
3522
+ "node_modules/recma-build-jsx": {
3523
+ "version": "1.0.0",
3524
+ "resolved": "https://registry.npmjs.org/recma-build-jsx/-/recma-build-jsx-1.0.0.tgz",
3525
+ "integrity": "sha512-8GtdyqaBcDfva+GUKDr3nev3VpKAhup1+RvkMvUxURHpW7QyIvk9F5wz7Vzo06CEMSilw6uArgRqhpiUcWp8ew==",
3526
+ "license": "MIT",
3527
+ "dependencies": {
3528
+ "@types/estree": "^1.0.0",
3529
+ "estree-util-build-jsx": "^3.0.0",
3530
+ "vfile": "^6.0.0"
3531
+ },
3532
+ "funding": {
3533
+ "type": "opencollective",
3534
+ "url": "https://opencollective.com/unified"
3535
+ }
3536
+ },
3537
+ "node_modules/recma-jsx": {
3538
+ "version": "1.0.1",
3539
+ "resolved": "https://registry.npmjs.org/recma-jsx/-/recma-jsx-1.0.1.tgz",
3540
+ "integrity": "sha512-huSIy7VU2Z5OLv6oFLosQGGDqPqdO1iq6bWNAdhzMxSJP7RAso4fCZ1cKu8j9YHCZf3TPrq4dw3okhrylgcd7w==",
3541
+ "license": "MIT",
3542
+ "dependencies": {
3543
+ "acorn-jsx": "^5.0.0",
3544
+ "estree-util-to-js": "^2.0.0",
3545
+ "recma-parse": "^1.0.0",
3546
+ "recma-stringify": "^1.0.0",
3547
+ "unified": "^11.0.0"
3548
+ },
3549
+ "funding": {
3550
+ "type": "opencollective",
3551
+ "url": "https://opencollective.com/unified"
3552
+ },
3553
+ "peerDependencies": {
3554
+ "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0"
3555
+ }
3556
+ },
3557
+ "node_modules/recma-parse": {
3558
+ "version": "1.0.0",
3559
+ "resolved": "https://registry.npmjs.org/recma-parse/-/recma-parse-1.0.0.tgz",
3560
+ "integrity": "sha512-OYLsIGBB5Y5wjnSnQW6t3Xg7q3fQ7FWbw/vcXtORTnyaSFscOtABg+7Pnz6YZ6c27fG1/aN8CjfwoUEUIdwqWQ==",
3561
+ "license": "MIT",
3562
+ "dependencies": {
3563
+ "@types/estree": "^1.0.0",
3564
+ "esast-util-from-js": "^2.0.0",
3565
+ "unified": "^11.0.0",
3566
+ "vfile": "^6.0.0"
3567
+ },
3568
+ "funding": {
3569
+ "type": "opencollective",
3570
+ "url": "https://opencollective.com/unified"
3571
+ }
3572
+ },
3573
+ "node_modules/recma-stringify": {
3574
+ "version": "1.0.0",
3575
+ "resolved": "https://registry.npmjs.org/recma-stringify/-/recma-stringify-1.0.0.tgz",
3576
+ "integrity": "sha512-cjwII1MdIIVloKvC9ErQ+OgAtwHBmcZ0Bg4ciz78FtbT8In39aAYbaA7zvxQ61xVMSPE8WxhLwLbhif4Js2C+g==",
3577
+ "license": "MIT",
3578
+ "dependencies": {
3579
+ "@types/estree": "^1.0.0",
3580
+ "estree-util-to-js": "^2.0.0",
3581
+ "unified": "^11.0.0",
3582
+ "vfile": "^6.0.0"
3583
+ },
3584
+ "funding": {
3585
+ "type": "opencollective",
3586
+ "url": "https://opencollective.com/unified"
3587
+ }
3588
+ },
3589
+ "node_modules/refractor": {
3590
+ "version": "3.6.0",
3591
+ "resolved": "https://registry.npmjs.org/refractor/-/refractor-3.6.0.tgz",
3592
+ "integrity": "sha512-MY9W41IOWxxk31o+YvFCNyNzdkc9M20NoZK5vq6jkv4I/uh2zkWcfudj0Q1fovjUQJrNewS9NMzeTtqPf+n5EA==",
3593
+ "license": "MIT",
3594
+ "dependencies": {
3595
+ "hastscript": "^6.0.0",
3596
+ "parse-entities": "^2.0.0",
3597
+ "prismjs": "~1.27.0"
3598
+ },
3599
+ "funding": {
3600
+ "type": "github",
3601
+ "url": "https://github.com/sponsors/wooorm"
3602
+ }
3603
+ },
3604
+ "node_modules/refractor/node_modules/character-entities": {
3605
+ "version": "1.2.4",
3606
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-1.2.4.tgz",
3607
+ "integrity": "sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==",
3608
+ "license": "MIT",
3609
+ "funding": {
3610
+ "type": "github",
3611
+ "url": "https://github.com/sponsors/wooorm"
3612
+ }
3613
+ },
3614
+ "node_modules/refractor/node_modules/character-entities-legacy": {
3615
+ "version": "1.1.4",
3616
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz",
3617
+ "integrity": "sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==",
3618
+ "license": "MIT",
3619
+ "funding": {
3620
+ "type": "github",
3621
+ "url": "https://github.com/sponsors/wooorm"
3622
+ }
3623
+ },
3624
+ "node_modules/refractor/node_modules/character-reference-invalid": {
3625
+ "version": "1.1.4",
3626
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz",
3627
+ "integrity": "sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==",
3628
+ "license": "MIT",
3629
+ "funding": {
3630
+ "type": "github",
3631
+ "url": "https://github.com/sponsors/wooorm"
3632
+ }
3633
+ },
3634
+ "node_modules/refractor/node_modules/is-alphabetical": {
3635
+ "version": "1.0.4",
3636
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-1.0.4.tgz",
3637
+ "integrity": "sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==",
3638
+ "license": "MIT",
3639
+ "funding": {
3640
+ "type": "github",
3641
+ "url": "https://github.com/sponsors/wooorm"
3642
+ }
3643
+ },
3644
+ "node_modules/refractor/node_modules/is-alphanumerical": {
3645
+ "version": "1.0.4",
3646
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz",
3647
+ "integrity": "sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==",
3648
+ "license": "MIT",
3649
+ "dependencies": {
3650
+ "is-alphabetical": "^1.0.0",
3651
+ "is-decimal": "^1.0.0"
3652
+ },
3653
+ "funding": {
3654
+ "type": "github",
3655
+ "url": "https://github.com/sponsors/wooorm"
3656
+ }
3657
+ },
3658
+ "node_modules/refractor/node_modules/is-decimal": {
3659
+ "version": "1.0.4",
3660
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-1.0.4.tgz",
3661
+ "integrity": "sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==",
3662
+ "license": "MIT",
3663
+ "funding": {
3664
+ "type": "github",
3665
+ "url": "https://github.com/sponsors/wooorm"
3666
+ }
3667
+ },
3668
+ "node_modules/refractor/node_modules/is-hexadecimal": {
3669
+ "version": "1.0.4",
3670
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz",
3671
+ "integrity": "sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==",
3672
+ "license": "MIT",
3673
+ "funding": {
3674
+ "type": "github",
3675
+ "url": "https://github.com/sponsors/wooorm"
3676
+ }
3677
+ },
3678
+ "node_modules/refractor/node_modules/parse-entities": {
3679
+ "version": "2.0.0",
3680
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-2.0.0.tgz",
3681
+ "integrity": "sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==",
3682
+ "license": "MIT",
3683
+ "dependencies": {
3684
+ "character-entities": "^1.0.0",
3685
+ "character-entities-legacy": "^1.0.0",
3686
+ "character-reference-invalid": "^1.0.0",
3687
+ "is-alphanumerical": "^1.0.0",
3688
+ "is-decimal": "^1.0.0",
3689
+ "is-hexadecimal": "^1.0.0"
3690
+ },
3691
+ "funding": {
3692
+ "type": "github",
3693
+ "url": "https://github.com/sponsors/wooorm"
3694
+ }
3695
+ },
3696
+ "node_modules/refractor/node_modules/prismjs": {
3697
+ "version": "1.27.0",
3698
+ "resolved": "https://registry.npmjs.org/prismjs/-/prismjs-1.27.0.tgz",
3699
+ "integrity": "sha512-t13BGPUlFDR7wRB5kQDG4jjl7XeuH6jbJGt11JHPL96qwsEHNX2+68tFXqc1/k+/jALsbSWJKUOT/hcYAZ5LkA==",
3700
+ "license": "MIT",
3701
+ "engines": {
3702
+ "node": ">=6"
3703
+ }
3704
+ },
3705
+ "node_modules/rehype-recma": {
3706
+ "version": "1.0.0",
3707
+ "resolved": "https://registry.npmjs.org/rehype-recma/-/rehype-recma-1.0.0.tgz",
3708
+ "integrity": "sha512-lqA4rGUf1JmacCNWWZx0Wv1dHqMwxzsDWYMTowuplHF3xH0N/MmrZ/G3BDZnzAkRmxDadujCjaKM2hqYdCBOGw==",
3709
+ "license": "MIT",
3710
+ "dependencies": {
3711
+ "@types/estree": "^1.0.0",
3712
+ "@types/hast": "^3.0.0",
3713
+ "hast-util-to-estree": "^3.0.0"
3714
+ },
3715
+ "funding": {
3716
+ "type": "opencollective",
3717
+ "url": "https://opencollective.com/unified"
3718
+ }
3719
+ },
3720
+ "node_modules/remark-mdx": {
3721
+ "version": "3.1.1",
3722
+ "resolved": "https://registry.npmjs.org/remark-mdx/-/remark-mdx-3.1.1.tgz",
3723
+ "integrity": "sha512-Pjj2IYlUY3+D8x00UJsIOg5BEvfMyeI+2uLPn9VO9Wg4MEtN/VTIq2NEJQfde9PnX15KgtHyl9S0BcTnWrIuWg==",
3724
+ "license": "MIT",
3725
+ "dependencies": {
3726
+ "mdast-util-mdx": "^3.0.0",
3727
+ "micromark-extension-mdxjs": "^3.0.0"
3728
+ },
3729
+ "funding": {
3730
+ "type": "opencollective",
3731
+ "url": "https://opencollective.com/unified"
3732
+ }
3733
+ },
3734
+ "node_modules/remark-parse": {
3735
+ "version": "11.0.0",
3736
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
3737
+ "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
3738
+ "license": "MIT",
3739
+ "dependencies": {
3740
+ "@types/mdast": "^4.0.0",
3741
+ "mdast-util-from-markdown": "^2.0.0",
3742
+ "micromark-util-types": "^2.0.0",
3743
+ "unified": "^11.0.0"
3744
+ },
3745
+ "funding": {
3746
+ "type": "opencollective",
3747
+ "url": "https://opencollective.com/unified"
3748
+ }
3749
+ },
3750
+ "node_modules/remark-rehype": {
3751
+ "version": "11.1.2",
3752
+ "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
3753
+ "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
3754
+ "license": "MIT",
3755
+ "dependencies": {
3756
+ "@types/hast": "^3.0.0",
3757
+ "@types/mdast": "^4.0.0",
3758
+ "mdast-util-to-hast": "^13.0.0",
3759
+ "unified": "^11.0.0",
3760
+ "vfile": "^6.0.0"
3761
+ },
3762
+ "funding": {
3763
+ "type": "opencollective",
3764
+ "url": "https://opencollective.com/unified"
3765
+ }
3766
+ },
3767
+ "node_modules/scheduler": {
3768
+ "version": "0.25.0",
3769
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.25.0.tgz",
3770
+ "integrity": "sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==",
3771
+ "license": "MIT"
3772
+ },
3773
+ "node_modules/section-matter": {
3774
+ "version": "1.0.0",
3775
+ "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
3776
+ "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
3777
+ "license": "MIT",
3778
+ "dependencies": {
3779
+ "extend-shallow": "^2.0.1",
3780
+ "kind-of": "^6.0.0"
3781
+ },
3782
+ "engines": {
3783
+ "node": ">=4"
3784
+ }
3785
+ },
3786
+ "node_modules/semver": {
3787
+ "version": "7.7.2",
3788
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz",
3789
+ "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==",
3790
+ "license": "ISC",
3791
+ "optional": true,
3792
+ "bin": {
3793
+ "semver": "bin/semver.js"
3794
+ },
3795
+ "engines": {
3796
+ "node": ">=10"
3797
+ }
3798
+ },
3799
+ "node_modules/sharp": {
3800
+ "version": "0.33.5",
3801
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.5.tgz",
3802
+ "integrity": "sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==",
3803
+ "hasInstallScript": true,
3804
+ "license": "Apache-2.0",
3805
+ "optional": true,
3806
+ "dependencies": {
3807
+ "color": "^4.2.3",
3808
+ "detect-libc": "^2.0.3",
3809
+ "semver": "^7.6.3"
3810
+ },
3811
+ "engines": {
3812
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
3813
+ },
3814
+ "funding": {
3815
+ "url": "https://opencollective.com/libvips"
3816
+ },
3817
+ "optionalDependencies": {
3818
+ "@img/sharp-darwin-arm64": "0.33.5",
3819
+ "@img/sharp-darwin-x64": "0.33.5",
3820
+ "@img/sharp-libvips-darwin-arm64": "1.0.4",
3821
+ "@img/sharp-libvips-darwin-x64": "1.0.4",
3822
+ "@img/sharp-libvips-linux-arm": "1.0.5",
3823
+ "@img/sharp-libvips-linux-arm64": "1.0.4",
3824
+ "@img/sharp-libvips-linux-s390x": "1.0.4",
3825
+ "@img/sharp-libvips-linux-x64": "1.0.4",
3826
+ "@img/sharp-libvips-linuxmusl-arm64": "1.0.4",
3827
+ "@img/sharp-libvips-linuxmusl-x64": "1.0.4",
3828
+ "@img/sharp-linux-arm": "0.33.5",
3829
+ "@img/sharp-linux-arm64": "0.33.5",
3830
+ "@img/sharp-linux-s390x": "0.33.5",
3831
+ "@img/sharp-linux-x64": "0.33.5",
3832
+ "@img/sharp-linuxmusl-arm64": "0.33.5",
3833
+ "@img/sharp-linuxmusl-x64": "0.33.5",
3834
+ "@img/sharp-wasm32": "0.33.5",
3835
+ "@img/sharp-win32-ia32": "0.33.5",
3836
+ "@img/sharp-win32-x64": "0.33.5"
3837
+ }
3838
+ },
3839
+ "node_modules/simple-swizzle": {
3840
+ "version": "0.2.4",
3841
+ "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.4.tgz",
3842
+ "integrity": "sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==",
3843
+ "license": "MIT",
3844
+ "optional": true,
3845
+ "dependencies": {
3846
+ "is-arrayish": "^0.3.1"
3847
+ }
3848
+ },
3849
+ "node_modules/source-map": {
3850
+ "version": "0.7.6",
3851
+ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz",
3852
+ "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==",
3853
+ "license": "BSD-3-Clause",
3854
+ "engines": {
3855
+ "node": ">= 12"
3856
+ }
3857
+ },
3858
+ "node_modules/source-map-js": {
3859
+ "version": "1.2.1",
3860
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
3861
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
3862
+ "license": "BSD-3-Clause",
3863
+ "engines": {
3864
+ "node": ">=0.10.0"
3865
+ }
3866
+ },
3867
+ "node_modules/space-separated-tokens": {
3868
+ "version": "2.0.2",
3869
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
3870
+ "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
3871
+ "license": "MIT",
3872
+ "funding": {
3873
+ "type": "github",
3874
+ "url": "https://github.com/sponsors/wooorm"
3875
+ }
3876
+ },
3877
+ "node_modules/sprintf-js": {
3878
+ "version": "1.0.3",
3879
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
3880
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
3881
+ "license": "BSD-3-Clause"
3882
+ },
3883
+ "node_modules/streamsearch": {
3884
+ "version": "1.1.0",
3885
+ "resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-1.1.0.tgz",
3886
+ "integrity": "sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==",
3887
+ "engines": {
3888
+ "node": ">=10.0.0"
3889
+ }
3890
+ },
3891
+ "node_modules/stringify-entities": {
3892
+ "version": "4.0.4",
3893
+ "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
3894
+ "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
3895
+ "license": "MIT",
3896
+ "dependencies": {
3897
+ "character-entities-html4": "^2.0.0",
3898
+ "character-entities-legacy": "^3.0.0"
3899
+ },
3900
+ "funding": {
3901
+ "type": "github",
3902
+ "url": "https://github.com/sponsors/wooorm"
3903
+ }
3904
+ },
3905
+ "node_modules/strip-bom-string": {
3906
+ "version": "1.0.0",
3907
+ "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
3908
+ "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
3909
+ "license": "MIT",
3910
+ "engines": {
3911
+ "node": ">=0.10.0"
3912
+ }
3913
+ },
3914
+ "node_modules/style-to-js": {
3915
+ "version": "1.1.18",
3916
+ "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.18.tgz",
3917
+ "integrity": "sha512-JFPn62D4kJaPTnhFUI244MThx+FEGbi+9dw1b9yBBQ+1CZpV7QAT8kUtJ7b7EUNdHajjF/0x8fT+16oLJoojLg==",
3918
+ "license": "MIT",
3919
+ "dependencies": {
3920
+ "style-to-object": "1.0.11"
3921
+ }
3922
+ },
3923
+ "node_modules/style-to-object": {
3924
+ "version": "1.0.11",
3925
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.11.tgz",
3926
+ "integrity": "sha512-5A560JmXr7wDyGLK12Nq/EYS38VkGlglVzkis1JEdbGWSnbQIEhZzTJhzURXN5/8WwwFCs/f/VVcmkTppbXLow==",
3927
+ "license": "MIT",
3928
+ "dependencies": {
3929
+ "inline-style-parser": "0.2.4"
3930
+ }
3931
+ },
3932
+ "node_modules/styled-jsx": {
3933
+ "version": "5.1.6",
3934
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz",
3935
+ "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==",
3936
+ "license": "MIT",
3937
+ "dependencies": {
3938
+ "client-only": "0.0.1"
3939
+ },
3940
+ "engines": {
3941
+ "node": ">= 12.0.0"
3942
+ },
3943
+ "peerDependencies": {
3944
+ "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
3945
+ },
3946
+ "peerDependenciesMeta": {
3947
+ "@babel/core": {
3948
+ "optional": true
3949
+ },
3950
+ "babel-plugin-macros": {
3951
+ "optional": true
3952
+ }
3953
+ }
3954
+ },
3955
+ "node_modules/tabbable": {
3956
+ "version": "6.2.0",
3957
+ "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz",
3958
+ "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==",
3959
+ "license": "MIT"
3960
+ },
3961
+ "node_modules/tailwindcss": {
3962
+ "version": "4.1.14",
3963
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.1.14.tgz",
3964
+ "integrity": "sha512-b7pCxjGO98LnxVkKjaZSDeNuljC4ueKUddjENJOADtubtdo8llTaJy7HwBMeLNSSo2N5QIAgklslK1+Ir8r6CA==",
3965
+ "dev": true,
3966
+ "license": "MIT"
3967
+ },
3968
+ "node_modules/tapable": {
3969
+ "version": "2.3.0",
3970
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
3971
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
3972
+ "dev": true,
3973
+ "license": "MIT",
3974
+ "engines": {
3975
+ "node": ">=6"
3976
+ },
3977
+ "funding": {
3978
+ "type": "opencollective",
3979
+ "url": "https://opencollective.com/webpack"
3980
+ }
3981
+ },
3982
+ "node_modules/tar": {
3983
+ "version": "7.5.1",
3984
+ "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.1.tgz",
3985
+ "integrity": "sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==",
3986
+ "dev": true,
3987
+ "license": "ISC",
3988
+ "dependencies": {
3989
+ "@isaacs/fs-minipass": "^4.0.0",
3990
+ "chownr": "^3.0.0",
3991
+ "minipass": "^7.1.2",
3992
+ "minizlib": "^3.1.0",
3993
+ "yallist": "^5.0.0"
3994
+ },
3995
+ "engines": {
3996
+ "node": ">=18"
3997
+ }
3998
+ },
3999
+ "node_modules/trim-lines": {
4000
+ "version": "3.0.1",
4001
+ "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
4002
+ "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
4003
+ "license": "MIT",
4004
+ "funding": {
4005
+ "type": "github",
4006
+ "url": "https://github.com/sponsors/wooorm"
4007
+ }
4008
+ },
4009
+ "node_modules/trough": {
4010
+ "version": "2.2.0",
4011
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
4012
+ "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
4013
+ "license": "MIT",
4014
+ "funding": {
4015
+ "type": "github",
4016
+ "url": "https://github.com/sponsors/wooorm"
4017
+ }
4018
+ },
4019
+ "node_modules/tslib": {
4020
+ "version": "2.8.1",
4021
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
4022
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
4023
+ "license": "0BSD"
4024
+ },
4025
+ "node_modules/typescript": {
4026
+ "version": "5.9.3",
4027
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
4028
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
4029
+ "license": "Apache-2.0",
4030
+ "bin": {
4031
+ "tsc": "bin/tsc",
4032
+ "tsserver": "bin/tsserver"
4033
+ },
4034
+ "engines": {
4035
+ "node": ">=14.17"
4036
+ }
4037
+ },
4038
+ "node_modules/undici-types": {
4039
+ "version": "6.21.0",
4040
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
4041
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
4042
+ "license": "MIT"
4043
+ },
4044
+ "node_modules/unified": {
4045
+ "version": "11.0.5",
4046
+ "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
4047
+ "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
4048
+ "license": "MIT",
4049
+ "dependencies": {
4050
+ "@types/unist": "^3.0.0",
4051
+ "bail": "^2.0.0",
4052
+ "devlop": "^1.0.0",
4053
+ "extend": "^3.0.0",
4054
+ "is-plain-obj": "^4.0.0",
4055
+ "trough": "^2.0.0",
4056
+ "vfile": "^6.0.0"
4057
+ },
4058
+ "funding": {
4059
+ "type": "opencollective",
4060
+ "url": "https://opencollective.com/unified"
4061
+ }
4062
+ },
4063
+ "node_modules/unist-util-is": {
4064
+ "version": "6.0.1",
4065
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
4066
+ "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
4067
+ "license": "MIT",
4068
+ "dependencies": {
4069
+ "@types/unist": "^3.0.0"
4070
+ },
4071
+ "funding": {
4072
+ "type": "opencollective",
4073
+ "url": "https://opencollective.com/unified"
4074
+ }
4075
+ },
4076
+ "node_modules/unist-util-position": {
4077
+ "version": "5.0.0",
4078
+ "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
4079
+ "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
4080
+ "license": "MIT",
4081
+ "dependencies": {
4082
+ "@types/unist": "^3.0.0"
4083
+ },
4084
+ "funding": {
4085
+ "type": "opencollective",
4086
+ "url": "https://opencollective.com/unified"
4087
+ }
4088
+ },
4089
+ "node_modules/unist-util-position-from-estree": {
4090
+ "version": "2.0.0",
4091
+ "resolved": "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-2.0.0.tgz",
4092
+ "integrity": "sha512-KaFVRjoqLyF6YXCbVLNad/eS4+OfPQQn2yOd7zF/h5T/CSL2v8NpN6a5TPvtbXthAGw5nG+PuTtq+DdIZr+cRQ==",
4093
+ "license": "MIT",
4094
+ "dependencies": {
4095
+ "@types/unist": "^3.0.0"
4096
+ },
4097
+ "funding": {
4098
+ "type": "opencollective",
4099
+ "url": "https://opencollective.com/unified"
4100
+ }
4101
+ },
4102
+ "node_modules/unist-util-remove": {
4103
+ "version": "3.1.1",
4104
+ "resolved": "https://registry.npmjs.org/unist-util-remove/-/unist-util-remove-3.1.1.tgz",
4105
+ "integrity": "sha512-kfCqZK5YVY5yEa89tvpl7KnBBHu2c6CzMkqHUrlOqaRgGOMp0sMvwWOVrbAtj03KhovQB7i96Gda72v/EFE0vw==",
4106
+ "license": "MIT",
4107
+ "dependencies": {
4108
+ "@types/unist": "^2.0.0",
4109
+ "unist-util-is": "^5.0.0",
4110
+ "unist-util-visit-parents": "^5.0.0"
4111
+ },
4112
+ "funding": {
4113
+ "type": "opencollective",
4114
+ "url": "https://opencollective.com/unified"
4115
+ }
4116
+ },
4117
+ "node_modules/unist-util-remove/node_modules/@types/unist": {
4118
+ "version": "2.0.11",
4119
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
4120
+ "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
4121
+ "license": "MIT"
4122
+ },
4123
+ "node_modules/unist-util-remove/node_modules/unist-util-is": {
4124
+ "version": "5.2.1",
4125
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-5.2.1.tgz",
4126
+ "integrity": "sha512-u9njyyfEh43npf1M+yGKDGVPbY/JWEemg5nH05ncKPfi+kBbKBJoTdsogMu33uhytuLlv9y0O7GH7fEdwLdLQw==",
4127
+ "license": "MIT",
4128
+ "dependencies": {
4129
+ "@types/unist": "^2.0.0"
4130
+ },
4131
+ "funding": {
4132
+ "type": "opencollective",
4133
+ "url": "https://opencollective.com/unified"
4134
+ }
4135
+ },
4136
+ "node_modules/unist-util-remove/node_modules/unist-util-visit-parents": {
4137
+ "version": "5.1.3",
4138
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-5.1.3.tgz",
4139
+ "integrity": "sha512-x6+y8g7wWMyQhL1iZfhIPhDAs7Xwbn9nRosDXl7qoPTSCy0yNxnKc+hWokFifWQIDGi154rdUqKvbCa4+1kLhg==",
4140
+ "license": "MIT",
4141
+ "dependencies": {
4142
+ "@types/unist": "^2.0.0",
4143
+ "unist-util-is": "^5.0.0"
4144
+ },
4145
+ "funding": {
4146
+ "type": "opencollective",
4147
+ "url": "https://opencollective.com/unified"
4148
+ }
4149
+ },
4150
+ "node_modules/unist-util-stringify-position": {
4151
+ "version": "4.0.0",
4152
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
4153
+ "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
4154
+ "license": "MIT",
4155
+ "dependencies": {
4156
+ "@types/unist": "^3.0.0"
4157
+ },
4158
+ "funding": {
4159
+ "type": "opencollective",
4160
+ "url": "https://opencollective.com/unified"
4161
+ }
4162
+ },
4163
+ "node_modules/unist-util-visit": {
4164
+ "version": "5.0.0",
4165
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.0.0.tgz",
4166
+ "integrity": "sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==",
4167
+ "license": "MIT",
4168
+ "dependencies": {
4169
+ "@types/unist": "^3.0.0",
4170
+ "unist-util-is": "^6.0.0",
4171
+ "unist-util-visit-parents": "^6.0.0"
4172
+ },
4173
+ "funding": {
4174
+ "type": "opencollective",
4175
+ "url": "https://opencollective.com/unified"
4176
+ }
4177
+ },
4178
+ "node_modules/unist-util-visit-parents": {
4179
+ "version": "6.0.2",
4180
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
4181
+ "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
4182
+ "license": "MIT",
4183
+ "dependencies": {
4184
+ "@types/unist": "^3.0.0",
4185
+ "unist-util-is": "^6.0.0"
4186
+ },
4187
+ "funding": {
4188
+ "type": "opencollective",
4189
+ "url": "https://opencollective.com/unified"
4190
+ }
4191
+ },
4192
+ "node_modules/use-sync-external-store": {
4193
+ "version": "1.6.0",
4194
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
4195
+ "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
4196
+ "license": "MIT",
4197
+ "peerDependencies": {
4198
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
4199
+ }
4200
+ },
4201
+ "node_modules/vfile": {
4202
+ "version": "6.0.3",
4203
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
4204
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
4205
+ "license": "MIT",
4206
+ "dependencies": {
4207
+ "@types/unist": "^3.0.0",
4208
+ "vfile-message": "^4.0.0"
4209
+ },
4210
+ "funding": {
4211
+ "type": "opencollective",
4212
+ "url": "https://opencollective.com/unified"
4213
+ }
4214
+ },
4215
+ "node_modules/vfile-matter": {
4216
+ "version": "5.0.1",
4217
+ "resolved": "https://registry.npmjs.org/vfile-matter/-/vfile-matter-5.0.1.tgz",
4218
+ "integrity": "sha512-o6roP82AiX0XfkyTHyRCMXgHfltUNlXSEqCIS80f+mbAyiQBE2fxtDVMtseyytGx75sihiJFo/zR6r/4LTs2Cw==",
4219
+ "license": "MIT",
4220
+ "dependencies": {
4221
+ "vfile": "^6.0.0",
4222
+ "yaml": "^2.0.0"
4223
+ },
4224
+ "funding": {
4225
+ "type": "opencollective",
4226
+ "url": "https://opencollective.com/unified"
4227
+ }
4228
+ },
4229
+ "node_modules/vfile-message": {
4230
+ "version": "4.0.3",
4231
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
4232
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
4233
+ "license": "MIT",
4234
+ "dependencies": {
4235
+ "@types/unist": "^3.0.0",
4236
+ "unist-util-stringify-position": "^4.0.0"
4237
+ },
4238
+ "funding": {
4239
+ "type": "opencollective",
4240
+ "url": "https://opencollective.com/unified"
4241
+ }
4242
+ },
4243
+ "node_modules/xtend": {
4244
+ "version": "4.0.2",
4245
+ "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz",
4246
+ "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==",
4247
+ "license": "MIT",
4248
+ "engines": {
4249
+ "node": ">=0.4"
4250
+ }
4251
+ },
4252
+ "node_modules/yallist": {
4253
+ "version": "5.0.0",
4254
+ "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz",
4255
+ "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==",
4256
+ "dev": true,
4257
+ "license": "BlueOak-1.0.0",
4258
+ "engines": {
4259
+ "node": ">=18"
4260
+ }
4261
+ },
4262
+ "node_modules/yaml": {
4263
+ "version": "2.8.1",
4264
+ "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.1.tgz",
4265
+ "integrity": "sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==",
4266
+ "license": "ISC",
4267
+ "bin": {
4268
+ "yaml": "bin.mjs"
4269
+ },
4270
+ "engines": {
4271
+ "node": ">= 14.6"
4272
+ }
4273
+ },
4274
+ "node_modules/zwitch": {
4275
+ "version": "2.0.4",
4276
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
4277
+ "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
4278
+ "license": "MIT",
4279
+ "funding": {
4280
+ "type": "github",
4281
+ "url": "https://github.com/sponsors/wooorm"
4282
+ }
4283
+ }
4284
+ }
4285
+ }