create-claude-code-visualizer 0.1.0

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 (220) hide show
  1. package/index.js +393 -0
  2. package/package.json +31 -0
  3. package/templates/CLAUDE.md +108 -0
  4. package/templates/app/.env.local.example +14 -0
  5. package/templates/app/ecosystem.config.js +29 -0
  6. package/templates/app/next-env.d.ts +6 -0
  7. package/templates/app/next.config.ts +16 -0
  8. package/templates/app/package-lock.json +4581 -0
  9. package/templates/app/package.json +38 -0
  10. package/templates/app/postcss.config.js +5 -0
  11. package/templates/app/src/app/agents/[slug]/chat/loading.tsx +26 -0
  12. package/templates/app/src/app/agents/[slug]/chat/page.tsx +579 -0
  13. package/templates/app/src/app/agents/[slug]/loading.tsx +19 -0
  14. package/templates/app/src/app/agents/page.tsx +8 -0
  15. package/templates/app/src/app/api/agents/[slug]/capabilities/route.ts +11 -0
  16. package/templates/app/src/app/api/agents/[slug]/route.ts +57 -0
  17. package/templates/app/src/app/api/agents/route.ts +28 -0
  18. package/templates/app/src/app/api/ai/generate-agent/route.ts +87 -0
  19. package/templates/app/src/app/api/ai/improve-claude-md/route.ts +78 -0
  20. package/templates/app/src/app/api/ai/suggestions/route.ts +64 -0
  21. package/templates/app/src/app/api/ai/title/route.ts +88 -0
  22. package/templates/app/src/app/api/auth/role/route.ts +17 -0
  23. package/templates/app/src/app/api/commands/[slug]/route.ts +61 -0
  24. package/templates/app/src/app/api/commands/route.ts +6 -0
  25. package/templates/app/src/app/api/governance/costs/route.ts +117 -0
  26. package/templates/app/src/app/api/governance/sessions/route.ts +335 -0
  27. package/templates/app/src/app/api/notifications/route.ts +62 -0
  28. package/templates/app/src/app/api/preferences/route.ts +44 -0
  29. package/templates/app/src/app/api/runs/[id]/approve/route.ts +38 -0
  30. package/templates/app/src/app/api/runs/[id]/events/route.ts +28 -0
  31. package/templates/app/src/app/api/runs/[id]/metadata/route.ts +30 -0
  32. package/templates/app/src/app/api/runs/[id]/route.ts +21 -0
  33. package/templates/app/src/app/api/runs/[id]/start/route.ts +61 -0
  34. package/templates/app/src/app/api/runs/[id]/stop/route.ts +16 -0
  35. package/templates/app/src/app/api/runs/[id]/stream/route.ts +201 -0
  36. package/templates/app/src/app/api/runs/route.ts +95 -0
  37. package/templates/app/src/app/api/schedules/[id]/route.ts +81 -0
  38. package/templates/app/src/app/api/schedules/route.ts +75 -0
  39. package/templates/app/src/app/api/settings/access-logs/route.ts +33 -0
  40. package/templates/app/src/app/api/settings/claude-md/route.ts +44 -0
  41. package/templates/app/src/app/api/settings/env-keys/route.ts +271 -0
  42. package/templates/app/src/app/api/settings/users/route.ts +108 -0
  43. package/templates/app/src/app/api/skills/[slug]/route.ts +43 -0
  44. package/templates/app/src/app/api/skills/route.ts +6 -0
  45. package/templates/app/src/app/api/tools/route.ts +65 -0
  46. package/templates/app/src/app/api/uploads/cleanup/route.ts +29 -0
  47. package/templates/app/src/app/api/uploads/route.ts +77 -0
  48. package/templates/app/src/app/auth/callback/route.ts +19 -0
  49. package/templates/app/src/app/globals.css +115 -0
  50. package/templates/app/src/app/layout.tsx +24 -0
  51. package/templates/app/src/app/loading.tsx +16 -0
  52. package/templates/app/src/app/login/page.tsx +64 -0
  53. package/templates/app/src/app/not-authorized/page.tsx +33 -0
  54. package/templates/app/src/app/runs/page.tsx +55 -0
  55. package/templates/app/src/app/schedules/page.tsx +110 -0
  56. package/templates/app/src/app/settings/page.tsx +1294 -0
  57. package/templates/app/src/app/skills/page.tsx +7 -0
  58. package/templates/app/src/components/agent-card.tsx +58 -0
  59. package/templates/app/src/components/agent-grid.tsx +90 -0
  60. package/templates/app/src/components/auth/auth-context.tsx +79 -0
  61. package/templates/app/src/components/chat-thread.tsx +50 -0
  62. package/templates/app/src/components/chat-view.tsx +670 -0
  63. package/templates/app/src/components/commands-browser.tsx +349 -0
  64. package/templates/app/src/components/create-agent-modal.tsx +388 -0
  65. package/templates/app/src/components/governance-dashboard.tsx +397 -0
  66. package/templates/app/src/components/icons.tsx +401 -0
  67. package/templates/app/src/components/layout/agent-sidebar.tsx +504 -0
  68. package/templates/app/src/components/layout/app-shell.tsx +29 -0
  69. package/templates/app/src/components/layout/nav.tsx +87 -0
  70. package/templates/app/src/components/layout/overview-inner.tsx +14 -0
  71. package/templates/app/src/components/layout/profile-menu.tsx +95 -0
  72. package/templates/app/src/components/layout/sidebar.tsx +30 -0
  73. package/templates/app/src/components/markdown.tsx +57 -0
  74. package/templates/app/src/components/message-bar.tsx +161 -0
  75. package/templates/app/src/components/notifications/notification-bell.tsx +104 -0
  76. package/templates/app/src/components/notifications/notification-panel.tsx +116 -0
  77. package/templates/app/src/components/overview/overview-content.tsx +287 -0
  78. package/templates/app/src/components/overview/overview-context.tsx +88 -0
  79. package/templates/app/src/components/preferences-modal.tsx +112 -0
  80. package/templates/app/src/components/run-form.tsx +73 -0
  81. package/templates/app/src/components/run-history-table.tsx +226 -0
  82. package/templates/app/src/components/run-output.tsx +187 -0
  83. package/templates/app/src/components/schedule-form.tsx +148 -0
  84. package/templates/app/src/components/skills-browser.tsx +338 -0
  85. package/templates/app/src/components/tool-tooltip.tsx +82 -0
  86. package/templates/app/src/hooks/use-sse.ts +115 -0
  87. package/templates/app/src/instrumentation.ts +9 -0
  88. package/templates/app/src/lib/agent-cache.ts +19 -0
  89. package/templates/app/src/lib/agent-runner.ts +411 -0
  90. package/templates/app/src/lib/agents.ts +168 -0
  91. package/templates/app/src/lib/ai.ts +40 -0
  92. package/templates/app/src/lib/approval-store.ts +70 -0
  93. package/templates/app/src/lib/auth-guard.ts +116 -0
  94. package/templates/app/src/lib/capabilities.ts +191 -0
  95. package/templates/app/src/lib/line-diff.ts +96 -0
  96. package/templates/app/src/lib/queue.ts +22 -0
  97. package/templates/app/src/lib/redis.ts +12 -0
  98. package/templates/app/src/lib/role-permissions.ts +166 -0
  99. package/templates/app/src/lib/run-agent.ts +442 -0
  100. package/templates/app/src/lib/supabase-browser.ts +8 -0
  101. package/templates/app/src/lib/supabase-middleware.ts +63 -0
  102. package/templates/app/src/lib/supabase-server.ts +28 -0
  103. package/templates/app/src/lib/supabase.ts +6 -0
  104. package/templates/app/src/lib/tool-descriptions.ts +29 -0
  105. package/templates/app/src/lib/types.ts +73 -0
  106. package/templates/app/src/lib/typewriter-animation.ts +159 -0
  107. package/templates/app/src/middleware.ts +13 -0
  108. package/templates/app/tsconfig.json +21 -0
  109. package/templates/app/uploads/.gitkeep +0 -0
  110. package/templates/app/worker/index.ts +342 -0
  111. package/templates/claude/agents/ai-trends-scout.md +66 -0
  112. package/templates/claude/commands/add-to-todos.md +56 -0
  113. package/templates/claude/commands/check-todos.md +56 -0
  114. package/templates/claude/hooks/auto-approve-safe.sh +34 -0
  115. package/templates/claude/hooks/auto-format.sh +25 -0
  116. package/templates/claude/hooks/block-destructive.sh +32 -0
  117. package/templates/claude/hooks/compaction-preserver.sh +16 -0
  118. package/templates/claude/hooks/notify.sh +26 -0
  119. package/templates/claude/settings.local.json +66 -0
  120. package/templates/claude/skills/frontend-design/SKILL.md +127 -0
  121. package/templates/claude/skills/frontend-design/reference/color-and-contrast.md +132 -0
  122. package/templates/claude/skills/frontend-design/reference/interaction-design.md +123 -0
  123. package/templates/claude/skills/frontend-design/reference/motion-design.md +99 -0
  124. package/templates/claude/skills/frontend-design/reference/responsive-design.md +114 -0
  125. package/templates/claude/skills/frontend-design/reference/spatial-design.md +100 -0
  126. package/templates/claude/skills/frontend-design/reference/typography.md +131 -0
  127. package/templates/claude/skills/frontend-design/reference/ux-writing.md +107 -0
  128. package/templates/claude/skills/gws-admin-reports/SKILL.md +57 -0
  129. package/templates/claude/skills/gws-calendar/SKILL.md +108 -0
  130. package/templates/claude/skills/gws-calendar-agenda/SKILL.md +52 -0
  131. package/templates/claude/skills/gws-calendar-insert/SKILL.md +55 -0
  132. package/templates/claude/skills/gws-chat/SKILL.md +73 -0
  133. package/templates/claude/skills/gws-chat-send/SKILL.md +49 -0
  134. package/templates/claude/skills/gws-classroom/SKILL.md +75 -0
  135. package/templates/claude/skills/gws-docs/SKILL.md +48 -0
  136. package/templates/claude/skills/gws-docs-write/SKILL.md +49 -0
  137. package/templates/claude/skills/gws-drive/SKILL.md +137 -0
  138. package/templates/claude/skills/gws-drive-upload/SKILL.md +52 -0
  139. package/templates/claude/skills/gws-events/SKILL.md +67 -0
  140. package/templates/claude/skills/gws-events-renew/SKILL.md +48 -0
  141. package/templates/claude/skills/gws-events-subscribe/SKILL.md +59 -0
  142. package/templates/claude/skills/gws-forms/SKILL.md +45 -0
  143. package/templates/claude/skills/gws-gmail/SKILL.md +59 -0
  144. package/templates/claude/skills/gws-gmail-forward/SKILL.md +53 -0
  145. package/templates/claude/skills/gws-gmail-reply/SKILL.md +56 -0
  146. package/templates/claude/skills/gws-gmail-reply-all/SKILL.md +60 -0
  147. package/templates/claude/skills/gws-gmail-send/SKILL.md +55 -0
  148. package/templates/claude/skills/gws-gmail-triage/SKILL.md +50 -0
  149. package/templates/claude/skills/gws-gmail-watch/SKILL.md +58 -0
  150. package/templates/claude/skills/gws-keep/SKILL.md +48 -0
  151. package/templates/claude/skills/gws-meet/SKILL.md +51 -0
  152. package/templates/claude/skills/gws-modelarmor/SKILL.md +42 -0
  153. package/templates/claude/skills/gws-modelarmor-create-template/SKILL.md +53 -0
  154. package/templates/claude/skills/gws-modelarmor-sanitize-prompt/SKILL.md +48 -0
  155. package/templates/claude/skills/gws-modelarmor-sanitize-response/SKILL.md +48 -0
  156. package/templates/claude/skills/gws-people/SKILL.md +67 -0
  157. package/templates/claude/skills/gws-shared/SKILL.md +66 -0
  158. package/templates/claude/skills/gws-sheets/SKILL.md +53 -0
  159. package/templates/claude/skills/gws-sheets-append/SKILL.md +51 -0
  160. package/templates/claude/skills/gws-sheets-read/SKILL.md +47 -0
  161. package/templates/claude/skills/gws-slides/SKILL.md +43 -0
  162. package/templates/claude/skills/gws-tasks/SKILL.md +56 -0
  163. package/templates/claude/skills/gws-workflow/SKILL.md +44 -0
  164. package/templates/claude/skills/gws-workflow-email-to-task/SKILL.md +47 -0
  165. package/templates/claude/skills/gws-workflow-file-announce/SKILL.md +50 -0
  166. package/templates/claude/skills/gws-workflow-meeting-prep/SKILL.md +47 -0
  167. package/templates/claude/skills/gws-workflow-standup-report/SKILL.md +46 -0
  168. package/templates/claude/skills/gws-workflow-weekly-digest/SKILL.md +46 -0
  169. package/templates/claude/skills/persona-content-creator/SKILL.md +33 -0
  170. package/templates/claude/skills/persona-customer-support/SKILL.md +34 -0
  171. package/templates/claude/skills/persona-event-coordinator/SKILL.md +35 -0
  172. package/templates/claude/skills/persona-exec-assistant/SKILL.md +35 -0
  173. package/templates/claude/skills/persona-hr-coordinator/SKILL.md +33 -0
  174. package/templates/claude/skills/persona-it-admin/SKILL.md +30 -0
  175. package/templates/claude/skills/persona-project-manager/SKILL.md +35 -0
  176. package/templates/claude/skills/persona-researcher/SKILL.md +33 -0
  177. package/templates/claude/skills/persona-sales-ops/SKILL.md +35 -0
  178. package/templates/claude/skills/persona-team-lead/SKILL.md +36 -0
  179. package/templates/claude/skills/recipe-backup-sheet-as-csv/SKILL.md +25 -0
  180. package/templates/claude/skills/recipe-batch-invite-to-event/SKILL.md +25 -0
  181. package/templates/claude/skills/recipe-block-focus-time/SKILL.md +24 -0
  182. package/templates/claude/skills/recipe-bulk-download-folder/SKILL.md +25 -0
  183. package/templates/claude/skills/recipe-collect-form-responses/SKILL.md +25 -0
  184. package/templates/claude/skills/recipe-compare-sheet-tabs/SKILL.md +25 -0
  185. package/templates/claude/skills/recipe-copy-sheet-for-new-month/SKILL.md +25 -0
  186. package/templates/claude/skills/recipe-create-classroom-course/SKILL.md +25 -0
  187. package/templates/claude/skills/recipe-create-doc-from-template/SKILL.md +29 -0
  188. package/templates/claude/skills/recipe-create-events-from-sheet/SKILL.md +24 -0
  189. package/templates/claude/skills/recipe-create-expense-tracker/SKILL.md +26 -0
  190. package/templates/claude/skills/recipe-create-feedback-form/SKILL.md +25 -0
  191. package/templates/claude/skills/recipe-create-gmail-filter/SKILL.md +26 -0
  192. package/templates/claude/skills/recipe-create-meet-space/SKILL.md +25 -0
  193. package/templates/claude/skills/recipe-create-presentation/SKILL.md +25 -0
  194. package/templates/claude/skills/recipe-create-shared-drive/SKILL.md +25 -0
  195. package/templates/claude/skills/recipe-create-task-list/SKILL.md +26 -0
  196. package/templates/claude/skills/recipe-create-vacation-responder/SKILL.md +25 -0
  197. package/templates/claude/skills/recipe-draft-email-from-doc/SKILL.md +25 -0
  198. package/templates/claude/skills/recipe-email-drive-link/SKILL.md +25 -0
  199. package/templates/claude/skills/recipe-find-free-time/SKILL.md +25 -0
  200. package/templates/claude/skills/recipe-find-large-files/SKILL.md +24 -0
  201. package/templates/claude/skills/recipe-forward-labeled-emails/SKILL.md +27 -0
  202. package/templates/claude/skills/recipe-generate-report-from-sheet/SKILL.md +34 -0
  203. package/templates/claude/skills/recipe-label-and-archive-emails/SKILL.md +25 -0
  204. package/templates/claude/skills/recipe-log-deal-update/SKILL.md +25 -0
  205. package/templates/claude/skills/recipe-organize-drive-folder/SKILL.md +26 -0
  206. package/templates/claude/skills/recipe-plan-weekly-schedule/SKILL.md +26 -0
  207. package/templates/claude/skills/recipe-post-mortem-setup/SKILL.md +25 -0
  208. package/templates/claude/skills/recipe-reschedule-meeting/SKILL.md +25 -0
  209. package/templates/claude/skills/recipe-review-meet-participants/SKILL.md +25 -0
  210. package/templates/claude/skills/recipe-review-overdue-tasks/SKILL.md +25 -0
  211. package/templates/claude/skills/recipe-save-email-attachments/SKILL.md +26 -0
  212. package/templates/claude/skills/recipe-save-email-to-doc/SKILL.md +29 -0
  213. package/templates/claude/skills/recipe-schedule-recurring-event/SKILL.md +24 -0
  214. package/templates/claude/skills/recipe-send-team-announcement/SKILL.md +24 -0
  215. package/templates/claude/skills/recipe-share-doc-and-notify/SKILL.md +25 -0
  216. package/templates/claude/skills/recipe-share-event-materials/SKILL.md +25 -0
  217. package/templates/claude/skills/recipe-share-folder-with-team/SKILL.md +26 -0
  218. package/templates/claude/skills/recipe-sync-contacts-to-sheet/SKILL.md +25 -0
  219. package/templates/claude/skills/recipe-watch-drive-changes/SKILL.md +25 -0
  220. package/templates/mcp.json +12 -0
@@ -0,0 +1,4581 @@
1
+ {
2
+ "name": "personal-assistant-app",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "personal-assistant-app",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@anthropic-ai/claude-agent-sdk": "^0.2",
12
+ "@supabase/ssr": "^0.9.0",
13
+ "@supabase/supabase-js": "^2",
14
+ "bullmq": "^5",
15
+ "cronstrue": "^2",
16
+ "dotenv": "^16",
17
+ "gray-matter": "^4",
18
+ "next": "^15",
19
+ "react": "^19",
20
+ "react-dom": "^19",
21
+ "react-markdown": "^10.1.0",
22
+ "remark-gfm": "^4.0.1"
23
+ },
24
+ "devDependencies": {
25
+ "@tailwindcss/postcss": "^4",
26
+ "@types/node": "^22",
27
+ "@types/react": "^19",
28
+ "@types/react-dom": "^19.2.3",
29
+ "concurrently": "^9",
30
+ "postcss": "^8",
31
+ "tailwindcss": "^4",
32
+ "tsx": "^4",
33
+ "typescript": "^5"
34
+ }
35
+ },
36
+ "node_modules/@alloc/quick-lru": {
37
+ "version": "5.2.0",
38
+ "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz",
39
+ "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==",
40
+ "dev": true,
41
+ "license": "MIT",
42
+ "engines": {
43
+ "node": ">=10"
44
+ },
45
+ "funding": {
46
+ "url": "https://github.com/sponsors/sindresorhus"
47
+ }
48
+ },
49
+ "node_modules/@anthropic-ai/claude-agent-sdk": {
50
+ "version": "0.2.74",
51
+ "resolved": "https://registry.npmjs.org/@anthropic-ai/claude-agent-sdk/-/claude-agent-sdk-0.2.74.tgz",
52
+ "integrity": "sha512-S/SFSSbZHPL1HiQxAqCCxU3iHuE5nM+ir0OK1n0bZ+9hlVUH7OOn88AsV9s54E0c1kvH9YF4/foWH8J9kICsBw==",
53
+ "license": "SEE LICENSE IN README.md",
54
+ "engines": {
55
+ "node": ">=18.0.0"
56
+ },
57
+ "optionalDependencies": {
58
+ "@img/sharp-darwin-arm64": "^0.34.2",
59
+ "@img/sharp-darwin-x64": "^0.34.2",
60
+ "@img/sharp-linux-arm": "^0.34.2",
61
+ "@img/sharp-linux-arm64": "^0.34.2",
62
+ "@img/sharp-linux-x64": "^0.34.2",
63
+ "@img/sharp-linuxmusl-arm64": "^0.34.2",
64
+ "@img/sharp-linuxmusl-x64": "^0.34.2",
65
+ "@img/sharp-win32-arm64": "^0.34.2",
66
+ "@img/sharp-win32-x64": "^0.34.2"
67
+ },
68
+ "peerDependencies": {
69
+ "zod": "^4.0.0"
70
+ }
71
+ },
72
+ "node_modules/@emnapi/runtime": {
73
+ "version": "1.9.0",
74
+ "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.9.0.tgz",
75
+ "integrity": "sha512-QN75eB0IH2ywSpRpNddCRfQIhmJYBCJ1x5Lb3IscKAL8bMnVAKnRg8dCoXbHzVLLH7P38N2Z3mtulB7W0J0FKw==",
76
+ "license": "MIT",
77
+ "optional": true,
78
+ "dependencies": {
79
+ "tslib": "^2.4.0"
80
+ }
81
+ },
82
+ "node_modules/@esbuild/aix-ppc64": {
83
+ "version": "0.27.4",
84
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.4.tgz",
85
+ "integrity": "sha512-cQPwL2mp2nSmHHJlCyoXgHGhbEPMrEEU5xhkcy3Hs/O7nGZqEpZ2sUtLaL9MORLtDfRvVl2/3PAuEkYZH0Ty8Q==",
86
+ "cpu": [
87
+ "ppc64"
88
+ ],
89
+ "dev": true,
90
+ "license": "MIT",
91
+ "optional": true,
92
+ "os": [
93
+ "aix"
94
+ ],
95
+ "engines": {
96
+ "node": ">=18"
97
+ }
98
+ },
99
+ "node_modules/@esbuild/android-arm": {
100
+ "version": "0.27.4",
101
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.4.tgz",
102
+ "integrity": "sha512-X9bUgvxiC8CHAGKYufLIHGXPJWnr0OCdR0anD2e21vdvgCI8lIfqFbnoeOz7lBjdrAGUhqLZLcQo6MLhTO2DKQ==",
103
+ "cpu": [
104
+ "arm"
105
+ ],
106
+ "dev": true,
107
+ "license": "MIT",
108
+ "optional": true,
109
+ "os": [
110
+ "android"
111
+ ],
112
+ "engines": {
113
+ "node": ">=18"
114
+ }
115
+ },
116
+ "node_modules/@esbuild/android-arm64": {
117
+ "version": "0.27.4",
118
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.4.tgz",
119
+ "integrity": "sha512-gdLscB7v75wRfu7QSm/zg6Rx29VLdy9eTr2t44sfTW7CxwAtQghZ4ZnqHk3/ogz7xao0QAgrkradbBzcqFPasw==",
120
+ "cpu": [
121
+ "arm64"
122
+ ],
123
+ "dev": true,
124
+ "license": "MIT",
125
+ "optional": true,
126
+ "os": [
127
+ "android"
128
+ ],
129
+ "engines": {
130
+ "node": ">=18"
131
+ }
132
+ },
133
+ "node_modules/@esbuild/android-x64": {
134
+ "version": "0.27.4",
135
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.4.tgz",
136
+ "integrity": "sha512-PzPFnBNVF292sfpfhiyiXCGSn9HZg5BcAz+ivBuSsl6Rk4ga1oEXAamhOXRFyMcjwr2DVtm40G65N3GLeH1Lvw==",
137
+ "cpu": [
138
+ "x64"
139
+ ],
140
+ "dev": true,
141
+ "license": "MIT",
142
+ "optional": true,
143
+ "os": [
144
+ "android"
145
+ ],
146
+ "engines": {
147
+ "node": ">=18"
148
+ }
149
+ },
150
+ "node_modules/@esbuild/darwin-arm64": {
151
+ "version": "0.27.4",
152
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.4.tgz",
153
+ "integrity": "sha512-b7xaGIwdJlht8ZFCvMkpDN6uiSmnxxK56N2GDTMYPr2/gzvfdQN8rTfBsvVKmIVY/X7EM+/hJKEIbbHs9oA4tQ==",
154
+ "cpu": [
155
+ "arm64"
156
+ ],
157
+ "dev": true,
158
+ "license": "MIT",
159
+ "optional": true,
160
+ "os": [
161
+ "darwin"
162
+ ],
163
+ "engines": {
164
+ "node": ">=18"
165
+ }
166
+ },
167
+ "node_modules/@esbuild/darwin-x64": {
168
+ "version": "0.27.4",
169
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.4.tgz",
170
+ "integrity": "sha512-sR+OiKLwd15nmCdqpXMnuJ9W2kpy0KigzqScqHI3Hqwr7IXxBp3Yva+yJwoqh7rE8V77tdoheRYataNKL4QrPw==",
171
+ "cpu": [
172
+ "x64"
173
+ ],
174
+ "dev": true,
175
+ "license": "MIT",
176
+ "optional": true,
177
+ "os": [
178
+ "darwin"
179
+ ],
180
+ "engines": {
181
+ "node": ">=18"
182
+ }
183
+ },
184
+ "node_modules/@esbuild/freebsd-arm64": {
185
+ "version": "0.27.4",
186
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.4.tgz",
187
+ "integrity": "sha512-jnfpKe+p79tCnm4GVav68A7tUFeKQwQyLgESwEAUzyxk/TJr4QdGog9sqWNcUbr/bZt/O/HXouspuQDd9JxFSw==",
188
+ "cpu": [
189
+ "arm64"
190
+ ],
191
+ "dev": true,
192
+ "license": "MIT",
193
+ "optional": true,
194
+ "os": [
195
+ "freebsd"
196
+ ],
197
+ "engines": {
198
+ "node": ">=18"
199
+ }
200
+ },
201
+ "node_modules/@esbuild/freebsd-x64": {
202
+ "version": "0.27.4",
203
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.4.tgz",
204
+ "integrity": "sha512-2kb4ceA/CpfUrIcTUl1wrP/9ad9Atrp5J94Lq69w7UwOMolPIGrfLSvAKJp0RTvkPPyn6CIWrNy13kyLikZRZQ==",
205
+ "cpu": [
206
+ "x64"
207
+ ],
208
+ "dev": true,
209
+ "license": "MIT",
210
+ "optional": true,
211
+ "os": [
212
+ "freebsd"
213
+ ],
214
+ "engines": {
215
+ "node": ">=18"
216
+ }
217
+ },
218
+ "node_modules/@esbuild/linux-arm": {
219
+ "version": "0.27.4",
220
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.4.tgz",
221
+ "integrity": "sha512-aBYgcIxX/wd5n2ys0yESGeYMGF+pv6g0DhZr3G1ZG4jMfruU9Tl1i2Z+Wnj9/KjGz1lTLCcorqE2viePZqj4Eg==",
222
+ "cpu": [
223
+ "arm"
224
+ ],
225
+ "dev": true,
226
+ "license": "MIT",
227
+ "optional": true,
228
+ "os": [
229
+ "linux"
230
+ ],
231
+ "engines": {
232
+ "node": ">=18"
233
+ }
234
+ },
235
+ "node_modules/@esbuild/linux-arm64": {
236
+ "version": "0.27.4",
237
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.4.tgz",
238
+ "integrity": "sha512-7nQOttdzVGth1iz57kxg9uCz57dxQLHWxopL6mYuYthohPKEK0vU0C3O21CcBK6KDlkYVcnDXY099HcCDXd9dA==",
239
+ "cpu": [
240
+ "arm64"
241
+ ],
242
+ "dev": true,
243
+ "license": "MIT",
244
+ "optional": true,
245
+ "os": [
246
+ "linux"
247
+ ],
248
+ "engines": {
249
+ "node": ">=18"
250
+ }
251
+ },
252
+ "node_modules/@esbuild/linux-ia32": {
253
+ "version": "0.27.4",
254
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.4.tgz",
255
+ "integrity": "sha512-oPtixtAIzgvzYcKBQM/qZ3R+9TEUd1aNJQu0HhGyqtx6oS7qTpvjheIWBbes4+qu1bNlo2V4cbkISr8q6gRBFA==",
256
+ "cpu": [
257
+ "ia32"
258
+ ],
259
+ "dev": true,
260
+ "license": "MIT",
261
+ "optional": true,
262
+ "os": [
263
+ "linux"
264
+ ],
265
+ "engines": {
266
+ "node": ">=18"
267
+ }
268
+ },
269
+ "node_modules/@esbuild/linux-loong64": {
270
+ "version": "0.27.4",
271
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.4.tgz",
272
+ "integrity": "sha512-8mL/vh8qeCoRcFH2nM8wm5uJP+ZcVYGGayMavi8GmRJjuI3g1v6Z7Ni0JJKAJW+m0EtUuARb6Lmp4hMjzCBWzA==",
273
+ "cpu": [
274
+ "loong64"
275
+ ],
276
+ "dev": true,
277
+ "license": "MIT",
278
+ "optional": true,
279
+ "os": [
280
+ "linux"
281
+ ],
282
+ "engines": {
283
+ "node": ">=18"
284
+ }
285
+ },
286
+ "node_modules/@esbuild/linux-mips64el": {
287
+ "version": "0.27.4",
288
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.4.tgz",
289
+ "integrity": "sha512-1RdrWFFiiLIW7LQq9Q2NES+HiD4NyT8Itj9AUeCl0IVCA459WnPhREKgwrpaIfTOe+/2rdntisegiPWn/r/aAw==",
290
+ "cpu": [
291
+ "mips64el"
292
+ ],
293
+ "dev": true,
294
+ "license": "MIT",
295
+ "optional": true,
296
+ "os": [
297
+ "linux"
298
+ ],
299
+ "engines": {
300
+ "node": ">=18"
301
+ }
302
+ },
303
+ "node_modules/@esbuild/linux-ppc64": {
304
+ "version": "0.27.4",
305
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.4.tgz",
306
+ "integrity": "sha512-tLCwNG47l3sd9lpfyx9LAGEGItCUeRCWeAx6x2Jmbav65nAwoPXfewtAdtbtit/pJFLUWOhpv0FpS6GQAmPrHA==",
307
+ "cpu": [
308
+ "ppc64"
309
+ ],
310
+ "dev": true,
311
+ "license": "MIT",
312
+ "optional": true,
313
+ "os": [
314
+ "linux"
315
+ ],
316
+ "engines": {
317
+ "node": ">=18"
318
+ }
319
+ },
320
+ "node_modules/@esbuild/linux-riscv64": {
321
+ "version": "0.27.4",
322
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.4.tgz",
323
+ "integrity": "sha512-BnASypppbUWyqjd1KIpU4AUBiIhVr6YlHx/cnPgqEkNoVOhHg+YiSVxM1RLfiy4t9cAulbRGTNCKOcqHrEQLIw==",
324
+ "cpu": [
325
+ "riscv64"
326
+ ],
327
+ "dev": true,
328
+ "license": "MIT",
329
+ "optional": true,
330
+ "os": [
331
+ "linux"
332
+ ],
333
+ "engines": {
334
+ "node": ">=18"
335
+ }
336
+ },
337
+ "node_modules/@esbuild/linux-s390x": {
338
+ "version": "0.27.4",
339
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.4.tgz",
340
+ "integrity": "sha512-+eUqgb/Z7vxVLezG8bVB9SfBie89gMueS+I0xYh2tJdw3vqA/0ImZJ2ROeWwVJN59ihBeZ7Tu92dF/5dy5FttA==",
341
+ "cpu": [
342
+ "s390x"
343
+ ],
344
+ "dev": true,
345
+ "license": "MIT",
346
+ "optional": true,
347
+ "os": [
348
+ "linux"
349
+ ],
350
+ "engines": {
351
+ "node": ">=18"
352
+ }
353
+ },
354
+ "node_modules/@esbuild/linux-x64": {
355
+ "version": "0.27.4",
356
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.4.tgz",
357
+ "integrity": "sha512-S5qOXrKV8BQEzJPVxAwnryi2+Iq5pB40gTEIT69BQONqR7JH1EPIcQ/Uiv9mCnn05jff9umq/5nqzxlqTOg9NA==",
358
+ "cpu": [
359
+ "x64"
360
+ ],
361
+ "dev": true,
362
+ "license": "MIT",
363
+ "optional": true,
364
+ "os": [
365
+ "linux"
366
+ ],
367
+ "engines": {
368
+ "node": ">=18"
369
+ }
370
+ },
371
+ "node_modules/@esbuild/netbsd-arm64": {
372
+ "version": "0.27.4",
373
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.4.tgz",
374
+ "integrity": "sha512-xHT8X4sb0GS8qTqiwzHqpY00C95DPAq7nAwX35Ie/s+LO9830hrMd3oX0ZMKLvy7vsonee73x0lmcdOVXFzd6Q==",
375
+ "cpu": [
376
+ "arm64"
377
+ ],
378
+ "dev": true,
379
+ "license": "MIT",
380
+ "optional": true,
381
+ "os": [
382
+ "netbsd"
383
+ ],
384
+ "engines": {
385
+ "node": ">=18"
386
+ }
387
+ },
388
+ "node_modules/@esbuild/netbsd-x64": {
389
+ "version": "0.27.4",
390
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.4.tgz",
391
+ "integrity": "sha512-RugOvOdXfdyi5Tyv40kgQnI0byv66BFgAqjdgtAKqHoZTbTF2QqfQrFwa7cHEORJf6X2ht+l9ABLMP0dnKYsgg==",
392
+ "cpu": [
393
+ "x64"
394
+ ],
395
+ "dev": true,
396
+ "license": "MIT",
397
+ "optional": true,
398
+ "os": [
399
+ "netbsd"
400
+ ],
401
+ "engines": {
402
+ "node": ">=18"
403
+ }
404
+ },
405
+ "node_modules/@esbuild/openbsd-arm64": {
406
+ "version": "0.27.4",
407
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.4.tgz",
408
+ "integrity": "sha512-2MyL3IAaTX+1/qP0O1SwskwcwCoOI4kV2IBX1xYnDDqthmq5ArrW94qSIKCAuRraMgPOmG0RDTA74mzYNQA9ow==",
409
+ "cpu": [
410
+ "arm64"
411
+ ],
412
+ "dev": true,
413
+ "license": "MIT",
414
+ "optional": true,
415
+ "os": [
416
+ "openbsd"
417
+ ],
418
+ "engines": {
419
+ "node": ">=18"
420
+ }
421
+ },
422
+ "node_modules/@esbuild/openbsd-x64": {
423
+ "version": "0.27.4",
424
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.4.tgz",
425
+ "integrity": "sha512-u8fg/jQ5aQDfsnIV6+KwLOf1CmJnfu1ShpwqdwC0uA7ZPwFws55Ngc12vBdeUdnuWoQYx/SOQLGDcdlfXhYmXQ==",
426
+ "cpu": [
427
+ "x64"
428
+ ],
429
+ "dev": true,
430
+ "license": "MIT",
431
+ "optional": true,
432
+ "os": [
433
+ "openbsd"
434
+ ],
435
+ "engines": {
436
+ "node": ">=18"
437
+ }
438
+ },
439
+ "node_modules/@esbuild/openharmony-arm64": {
440
+ "version": "0.27.4",
441
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.4.tgz",
442
+ "integrity": "sha512-JkTZrl6VbyO8lDQO3yv26nNr2RM2yZzNrNHEsj9bm6dOwwu9OYN28CjzZkH57bh4w0I2F7IodpQvUAEd1mbWXg==",
443
+ "cpu": [
444
+ "arm64"
445
+ ],
446
+ "dev": true,
447
+ "license": "MIT",
448
+ "optional": true,
449
+ "os": [
450
+ "openharmony"
451
+ ],
452
+ "engines": {
453
+ "node": ">=18"
454
+ }
455
+ },
456
+ "node_modules/@esbuild/sunos-x64": {
457
+ "version": "0.27.4",
458
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.4.tgz",
459
+ "integrity": "sha512-/gOzgaewZJfeJTlsWhvUEmUG4tWEY2Spp5M20INYRg2ZKl9QPO3QEEgPeRtLjEWSW8FilRNacPOg8R1uaYkA6g==",
460
+ "cpu": [
461
+ "x64"
462
+ ],
463
+ "dev": true,
464
+ "license": "MIT",
465
+ "optional": true,
466
+ "os": [
467
+ "sunos"
468
+ ],
469
+ "engines": {
470
+ "node": ">=18"
471
+ }
472
+ },
473
+ "node_modules/@esbuild/win32-arm64": {
474
+ "version": "0.27.4",
475
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.4.tgz",
476
+ "integrity": "sha512-Z9SExBg2y32smoDQdf1HRwHRt6vAHLXcxD2uGgO/v2jK7Y718Ix4ndsbNMU/+1Qiem9OiOdaqitioZwxivhXYg==",
477
+ "cpu": [
478
+ "arm64"
479
+ ],
480
+ "dev": true,
481
+ "license": "MIT",
482
+ "optional": true,
483
+ "os": [
484
+ "win32"
485
+ ],
486
+ "engines": {
487
+ "node": ">=18"
488
+ }
489
+ },
490
+ "node_modules/@esbuild/win32-ia32": {
491
+ "version": "0.27.4",
492
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.4.tgz",
493
+ "integrity": "sha512-DAyGLS0Jz5G5iixEbMHi5KdiApqHBWMGzTtMiJ72ZOLhbu/bzxgAe8Ue8CTS3n3HbIUHQz/L51yMdGMeoxXNJw==",
494
+ "cpu": [
495
+ "ia32"
496
+ ],
497
+ "dev": true,
498
+ "license": "MIT",
499
+ "optional": true,
500
+ "os": [
501
+ "win32"
502
+ ],
503
+ "engines": {
504
+ "node": ">=18"
505
+ }
506
+ },
507
+ "node_modules/@esbuild/win32-x64": {
508
+ "version": "0.27.4",
509
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.4.tgz",
510
+ "integrity": "sha512-+knoa0BDoeXgkNvvV1vvbZX4+hizelrkwmGJBdT17t8FNPwG2lKemmuMZlmaNQ3ws3DKKCxpb4zRZEIp3UxFCg==",
511
+ "cpu": [
512
+ "x64"
513
+ ],
514
+ "dev": true,
515
+ "license": "MIT",
516
+ "optional": true,
517
+ "os": [
518
+ "win32"
519
+ ],
520
+ "engines": {
521
+ "node": ">=18"
522
+ }
523
+ },
524
+ "node_modules/@img/colour": {
525
+ "version": "1.1.0",
526
+ "resolved": "https://registry.npmjs.org/@img/colour/-/colour-1.1.0.tgz",
527
+ "integrity": "sha512-Td76q7j57o/tLVdgS746cYARfSyxk8iEfRxewL9h4OMzYhbW4TAcppl0mT4eyqXddh6L/jwoM75mo7ixa/pCeQ==",
528
+ "license": "MIT",
529
+ "optional": true,
530
+ "engines": {
531
+ "node": ">=18"
532
+ }
533
+ },
534
+ "node_modules/@img/sharp-darwin-arm64": {
535
+ "version": "0.34.5",
536
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.5.tgz",
537
+ "integrity": "sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==",
538
+ "cpu": [
539
+ "arm64"
540
+ ],
541
+ "license": "Apache-2.0",
542
+ "optional": true,
543
+ "os": [
544
+ "darwin"
545
+ ],
546
+ "engines": {
547
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
548
+ },
549
+ "funding": {
550
+ "url": "https://opencollective.com/libvips"
551
+ },
552
+ "optionalDependencies": {
553
+ "@img/sharp-libvips-darwin-arm64": "1.2.4"
554
+ }
555
+ },
556
+ "node_modules/@img/sharp-darwin-x64": {
557
+ "version": "0.34.5",
558
+ "resolved": "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.5.tgz",
559
+ "integrity": "sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==",
560
+ "cpu": [
561
+ "x64"
562
+ ],
563
+ "license": "Apache-2.0",
564
+ "optional": true,
565
+ "os": [
566
+ "darwin"
567
+ ],
568
+ "engines": {
569
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
570
+ },
571
+ "funding": {
572
+ "url": "https://opencollective.com/libvips"
573
+ },
574
+ "optionalDependencies": {
575
+ "@img/sharp-libvips-darwin-x64": "1.2.4"
576
+ }
577
+ },
578
+ "node_modules/@img/sharp-libvips-darwin-arm64": {
579
+ "version": "1.2.4",
580
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.2.4.tgz",
581
+ "integrity": "sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==",
582
+ "cpu": [
583
+ "arm64"
584
+ ],
585
+ "license": "LGPL-3.0-or-later",
586
+ "optional": true,
587
+ "os": [
588
+ "darwin"
589
+ ],
590
+ "funding": {
591
+ "url": "https://opencollective.com/libvips"
592
+ }
593
+ },
594
+ "node_modules/@img/sharp-libvips-darwin-x64": {
595
+ "version": "1.2.4",
596
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.2.4.tgz",
597
+ "integrity": "sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==",
598
+ "cpu": [
599
+ "x64"
600
+ ],
601
+ "license": "LGPL-3.0-or-later",
602
+ "optional": true,
603
+ "os": [
604
+ "darwin"
605
+ ],
606
+ "funding": {
607
+ "url": "https://opencollective.com/libvips"
608
+ }
609
+ },
610
+ "node_modules/@img/sharp-libvips-linux-arm": {
611
+ "version": "1.2.4",
612
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.2.4.tgz",
613
+ "integrity": "sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==",
614
+ "cpu": [
615
+ "arm"
616
+ ],
617
+ "license": "LGPL-3.0-or-later",
618
+ "optional": true,
619
+ "os": [
620
+ "linux"
621
+ ],
622
+ "funding": {
623
+ "url": "https://opencollective.com/libvips"
624
+ }
625
+ },
626
+ "node_modules/@img/sharp-libvips-linux-arm64": {
627
+ "version": "1.2.4",
628
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.2.4.tgz",
629
+ "integrity": "sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==",
630
+ "cpu": [
631
+ "arm64"
632
+ ],
633
+ "license": "LGPL-3.0-or-later",
634
+ "optional": true,
635
+ "os": [
636
+ "linux"
637
+ ],
638
+ "funding": {
639
+ "url": "https://opencollective.com/libvips"
640
+ }
641
+ },
642
+ "node_modules/@img/sharp-libvips-linux-ppc64": {
643
+ "version": "1.2.4",
644
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.2.4.tgz",
645
+ "integrity": "sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==",
646
+ "cpu": [
647
+ "ppc64"
648
+ ],
649
+ "license": "LGPL-3.0-or-later",
650
+ "optional": true,
651
+ "os": [
652
+ "linux"
653
+ ],
654
+ "funding": {
655
+ "url": "https://opencollective.com/libvips"
656
+ }
657
+ },
658
+ "node_modules/@img/sharp-libvips-linux-riscv64": {
659
+ "version": "1.2.4",
660
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-riscv64/-/sharp-libvips-linux-riscv64-1.2.4.tgz",
661
+ "integrity": "sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==",
662
+ "cpu": [
663
+ "riscv64"
664
+ ],
665
+ "license": "LGPL-3.0-or-later",
666
+ "optional": true,
667
+ "os": [
668
+ "linux"
669
+ ],
670
+ "funding": {
671
+ "url": "https://opencollective.com/libvips"
672
+ }
673
+ },
674
+ "node_modules/@img/sharp-libvips-linux-s390x": {
675
+ "version": "1.2.4",
676
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.2.4.tgz",
677
+ "integrity": "sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==",
678
+ "cpu": [
679
+ "s390x"
680
+ ],
681
+ "license": "LGPL-3.0-or-later",
682
+ "optional": true,
683
+ "os": [
684
+ "linux"
685
+ ],
686
+ "funding": {
687
+ "url": "https://opencollective.com/libvips"
688
+ }
689
+ },
690
+ "node_modules/@img/sharp-libvips-linux-x64": {
691
+ "version": "1.2.4",
692
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.2.4.tgz",
693
+ "integrity": "sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==",
694
+ "cpu": [
695
+ "x64"
696
+ ],
697
+ "license": "LGPL-3.0-or-later",
698
+ "optional": true,
699
+ "os": [
700
+ "linux"
701
+ ],
702
+ "funding": {
703
+ "url": "https://opencollective.com/libvips"
704
+ }
705
+ },
706
+ "node_modules/@img/sharp-libvips-linuxmusl-arm64": {
707
+ "version": "1.2.4",
708
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.2.4.tgz",
709
+ "integrity": "sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==",
710
+ "cpu": [
711
+ "arm64"
712
+ ],
713
+ "license": "LGPL-3.0-or-later",
714
+ "optional": true,
715
+ "os": [
716
+ "linux"
717
+ ],
718
+ "funding": {
719
+ "url": "https://opencollective.com/libvips"
720
+ }
721
+ },
722
+ "node_modules/@img/sharp-libvips-linuxmusl-x64": {
723
+ "version": "1.2.4",
724
+ "resolved": "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.2.4.tgz",
725
+ "integrity": "sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==",
726
+ "cpu": [
727
+ "x64"
728
+ ],
729
+ "license": "LGPL-3.0-or-later",
730
+ "optional": true,
731
+ "os": [
732
+ "linux"
733
+ ],
734
+ "funding": {
735
+ "url": "https://opencollective.com/libvips"
736
+ }
737
+ },
738
+ "node_modules/@img/sharp-linux-arm": {
739
+ "version": "0.34.5",
740
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.5.tgz",
741
+ "integrity": "sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==",
742
+ "cpu": [
743
+ "arm"
744
+ ],
745
+ "license": "Apache-2.0",
746
+ "optional": true,
747
+ "os": [
748
+ "linux"
749
+ ],
750
+ "engines": {
751
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
752
+ },
753
+ "funding": {
754
+ "url": "https://opencollective.com/libvips"
755
+ },
756
+ "optionalDependencies": {
757
+ "@img/sharp-libvips-linux-arm": "1.2.4"
758
+ }
759
+ },
760
+ "node_modules/@img/sharp-linux-arm64": {
761
+ "version": "0.34.5",
762
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.5.tgz",
763
+ "integrity": "sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==",
764
+ "cpu": [
765
+ "arm64"
766
+ ],
767
+ "license": "Apache-2.0",
768
+ "optional": true,
769
+ "os": [
770
+ "linux"
771
+ ],
772
+ "engines": {
773
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
774
+ },
775
+ "funding": {
776
+ "url": "https://opencollective.com/libvips"
777
+ },
778
+ "optionalDependencies": {
779
+ "@img/sharp-libvips-linux-arm64": "1.2.4"
780
+ }
781
+ },
782
+ "node_modules/@img/sharp-linux-ppc64": {
783
+ "version": "0.34.5",
784
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-ppc64/-/sharp-linux-ppc64-0.34.5.tgz",
785
+ "integrity": "sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==",
786
+ "cpu": [
787
+ "ppc64"
788
+ ],
789
+ "license": "Apache-2.0",
790
+ "optional": true,
791
+ "os": [
792
+ "linux"
793
+ ],
794
+ "engines": {
795
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
796
+ },
797
+ "funding": {
798
+ "url": "https://opencollective.com/libvips"
799
+ },
800
+ "optionalDependencies": {
801
+ "@img/sharp-libvips-linux-ppc64": "1.2.4"
802
+ }
803
+ },
804
+ "node_modules/@img/sharp-linux-riscv64": {
805
+ "version": "0.34.5",
806
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-riscv64/-/sharp-linux-riscv64-0.34.5.tgz",
807
+ "integrity": "sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==",
808
+ "cpu": [
809
+ "riscv64"
810
+ ],
811
+ "license": "Apache-2.0",
812
+ "optional": true,
813
+ "os": [
814
+ "linux"
815
+ ],
816
+ "engines": {
817
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
818
+ },
819
+ "funding": {
820
+ "url": "https://opencollective.com/libvips"
821
+ },
822
+ "optionalDependencies": {
823
+ "@img/sharp-libvips-linux-riscv64": "1.2.4"
824
+ }
825
+ },
826
+ "node_modules/@img/sharp-linux-s390x": {
827
+ "version": "0.34.5",
828
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.5.tgz",
829
+ "integrity": "sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==",
830
+ "cpu": [
831
+ "s390x"
832
+ ],
833
+ "license": "Apache-2.0",
834
+ "optional": true,
835
+ "os": [
836
+ "linux"
837
+ ],
838
+ "engines": {
839
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
840
+ },
841
+ "funding": {
842
+ "url": "https://opencollective.com/libvips"
843
+ },
844
+ "optionalDependencies": {
845
+ "@img/sharp-libvips-linux-s390x": "1.2.4"
846
+ }
847
+ },
848
+ "node_modules/@img/sharp-linux-x64": {
849
+ "version": "0.34.5",
850
+ "resolved": "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.5.tgz",
851
+ "integrity": "sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==",
852
+ "cpu": [
853
+ "x64"
854
+ ],
855
+ "license": "Apache-2.0",
856
+ "optional": true,
857
+ "os": [
858
+ "linux"
859
+ ],
860
+ "engines": {
861
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
862
+ },
863
+ "funding": {
864
+ "url": "https://opencollective.com/libvips"
865
+ },
866
+ "optionalDependencies": {
867
+ "@img/sharp-libvips-linux-x64": "1.2.4"
868
+ }
869
+ },
870
+ "node_modules/@img/sharp-linuxmusl-arm64": {
871
+ "version": "0.34.5",
872
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.5.tgz",
873
+ "integrity": "sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==",
874
+ "cpu": [
875
+ "arm64"
876
+ ],
877
+ "license": "Apache-2.0",
878
+ "optional": true,
879
+ "os": [
880
+ "linux"
881
+ ],
882
+ "engines": {
883
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
884
+ },
885
+ "funding": {
886
+ "url": "https://opencollective.com/libvips"
887
+ },
888
+ "optionalDependencies": {
889
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4"
890
+ }
891
+ },
892
+ "node_modules/@img/sharp-linuxmusl-x64": {
893
+ "version": "0.34.5",
894
+ "resolved": "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.5.tgz",
895
+ "integrity": "sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==",
896
+ "cpu": [
897
+ "x64"
898
+ ],
899
+ "license": "Apache-2.0",
900
+ "optional": true,
901
+ "os": [
902
+ "linux"
903
+ ],
904
+ "engines": {
905
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
906
+ },
907
+ "funding": {
908
+ "url": "https://opencollective.com/libvips"
909
+ },
910
+ "optionalDependencies": {
911
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4"
912
+ }
913
+ },
914
+ "node_modules/@img/sharp-wasm32": {
915
+ "version": "0.34.5",
916
+ "resolved": "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.5.tgz",
917
+ "integrity": "sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==",
918
+ "cpu": [
919
+ "wasm32"
920
+ ],
921
+ "license": "Apache-2.0 AND LGPL-3.0-or-later AND MIT",
922
+ "optional": true,
923
+ "dependencies": {
924
+ "@emnapi/runtime": "^1.7.0"
925
+ },
926
+ "engines": {
927
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
928
+ },
929
+ "funding": {
930
+ "url": "https://opencollective.com/libvips"
931
+ }
932
+ },
933
+ "node_modules/@img/sharp-win32-arm64": {
934
+ "version": "0.34.5",
935
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.5.tgz",
936
+ "integrity": "sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==",
937
+ "cpu": [
938
+ "arm64"
939
+ ],
940
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
941
+ "optional": true,
942
+ "os": [
943
+ "win32"
944
+ ],
945
+ "engines": {
946
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
947
+ },
948
+ "funding": {
949
+ "url": "https://opencollective.com/libvips"
950
+ }
951
+ },
952
+ "node_modules/@img/sharp-win32-ia32": {
953
+ "version": "0.34.5",
954
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.5.tgz",
955
+ "integrity": "sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==",
956
+ "cpu": [
957
+ "ia32"
958
+ ],
959
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
960
+ "optional": true,
961
+ "os": [
962
+ "win32"
963
+ ],
964
+ "engines": {
965
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
966
+ },
967
+ "funding": {
968
+ "url": "https://opencollective.com/libvips"
969
+ }
970
+ },
971
+ "node_modules/@img/sharp-win32-x64": {
972
+ "version": "0.34.5",
973
+ "resolved": "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.5.tgz",
974
+ "integrity": "sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==",
975
+ "cpu": [
976
+ "x64"
977
+ ],
978
+ "license": "Apache-2.0 AND LGPL-3.0-or-later",
979
+ "optional": true,
980
+ "os": [
981
+ "win32"
982
+ ],
983
+ "engines": {
984
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
985
+ },
986
+ "funding": {
987
+ "url": "https://opencollective.com/libvips"
988
+ }
989
+ },
990
+ "node_modules/@jridgewell/gen-mapping": {
991
+ "version": "0.3.13",
992
+ "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz",
993
+ "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==",
994
+ "dev": true,
995
+ "license": "MIT",
996
+ "dependencies": {
997
+ "@jridgewell/sourcemap-codec": "^1.5.0",
998
+ "@jridgewell/trace-mapping": "^0.3.24"
999
+ }
1000
+ },
1001
+ "node_modules/@jridgewell/remapping": {
1002
+ "version": "2.3.5",
1003
+ "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz",
1004
+ "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==",
1005
+ "dev": true,
1006
+ "license": "MIT",
1007
+ "dependencies": {
1008
+ "@jridgewell/gen-mapping": "^0.3.5",
1009
+ "@jridgewell/trace-mapping": "^0.3.24"
1010
+ }
1011
+ },
1012
+ "node_modules/@jridgewell/resolve-uri": {
1013
+ "version": "3.1.2",
1014
+ "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz",
1015
+ "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==",
1016
+ "dev": true,
1017
+ "license": "MIT",
1018
+ "engines": {
1019
+ "node": ">=6.0.0"
1020
+ }
1021
+ },
1022
+ "node_modules/@jridgewell/sourcemap-codec": {
1023
+ "version": "1.5.5",
1024
+ "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz",
1025
+ "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==",
1026
+ "dev": true,
1027
+ "license": "MIT"
1028
+ },
1029
+ "node_modules/@jridgewell/trace-mapping": {
1030
+ "version": "0.3.31",
1031
+ "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz",
1032
+ "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==",
1033
+ "dev": true,
1034
+ "license": "MIT",
1035
+ "dependencies": {
1036
+ "@jridgewell/resolve-uri": "^3.1.0",
1037
+ "@jridgewell/sourcemap-codec": "^1.4.14"
1038
+ }
1039
+ },
1040
+ "node_modules/@msgpackr-extract/msgpackr-extract-darwin-arm64": {
1041
+ "version": "3.0.3",
1042
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-arm64/-/msgpackr-extract-darwin-arm64-3.0.3.tgz",
1043
+ "integrity": "sha512-QZHtlVgbAdy2zAqNA9Gu1UpIuI8Xvsd1v8ic6B2pZmeFnFcMWiPLfWXh7TVw4eGEZ/C9TH281KwhVoeQUKbyjw==",
1044
+ "cpu": [
1045
+ "arm64"
1046
+ ],
1047
+ "license": "MIT",
1048
+ "optional": true,
1049
+ "os": [
1050
+ "darwin"
1051
+ ]
1052
+ },
1053
+ "node_modules/@msgpackr-extract/msgpackr-extract-darwin-x64": {
1054
+ "version": "3.0.3",
1055
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-darwin-x64/-/msgpackr-extract-darwin-x64-3.0.3.tgz",
1056
+ "integrity": "sha512-mdzd3AVzYKuUmiWOQ8GNhl64/IoFGol569zNRdkLReh6LRLHOXxU4U8eq0JwaD8iFHdVGqSy4IjFL4reoWCDFw==",
1057
+ "cpu": [
1058
+ "x64"
1059
+ ],
1060
+ "license": "MIT",
1061
+ "optional": true,
1062
+ "os": [
1063
+ "darwin"
1064
+ ]
1065
+ },
1066
+ "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm": {
1067
+ "version": "3.0.3",
1068
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm/-/msgpackr-extract-linux-arm-3.0.3.tgz",
1069
+ "integrity": "sha512-fg0uy/dG/nZEXfYilKoRe7yALaNmHoYeIoJuJ7KJ+YyU2bvY8vPv27f7UKhGRpY6euFYqEVhxCFZgAUNQBM3nw==",
1070
+ "cpu": [
1071
+ "arm"
1072
+ ],
1073
+ "license": "MIT",
1074
+ "optional": true,
1075
+ "os": [
1076
+ "linux"
1077
+ ]
1078
+ },
1079
+ "node_modules/@msgpackr-extract/msgpackr-extract-linux-arm64": {
1080
+ "version": "3.0.3",
1081
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-arm64/-/msgpackr-extract-linux-arm64-3.0.3.tgz",
1082
+ "integrity": "sha512-YxQL+ax0XqBJDZiKimS2XQaf+2wDGVa1enVRGzEvLLVFeqa5kx2bWbtcSXgsxjQB7nRqqIGFIcLteF/sHeVtQg==",
1083
+ "cpu": [
1084
+ "arm64"
1085
+ ],
1086
+ "license": "MIT",
1087
+ "optional": true,
1088
+ "os": [
1089
+ "linux"
1090
+ ]
1091
+ },
1092
+ "node_modules/@msgpackr-extract/msgpackr-extract-linux-x64": {
1093
+ "version": "3.0.3",
1094
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-linux-x64/-/msgpackr-extract-linux-x64-3.0.3.tgz",
1095
+ "integrity": "sha512-cvwNfbP07pKUfq1uH+S6KJ7dT9K8WOE4ZiAcsrSes+UY55E/0jLYc+vq+DO7jlmqRb5zAggExKm0H7O/CBaesg==",
1096
+ "cpu": [
1097
+ "x64"
1098
+ ],
1099
+ "license": "MIT",
1100
+ "optional": true,
1101
+ "os": [
1102
+ "linux"
1103
+ ]
1104
+ },
1105
+ "node_modules/@msgpackr-extract/msgpackr-extract-win32-x64": {
1106
+ "version": "3.0.3",
1107
+ "resolved": "https://registry.npmjs.org/@msgpackr-extract/msgpackr-extract-win32-x64/-/msgpackr-extract-win32-x64-3.0.3.tgz",
1108
+ "integrity": "sha512-x0fWaQtYp4E6sktbsdAqnehxDgEc/VwM7uLsRCYWaiGu0ykYdZPiS8zCWdnjHwyiumousxfBm4SO31eXqwEZhQ==",
1109
+ "cpu": [
1110
+ "x64"
1111
+ ],
1112
+ "license": "MIT",
1113
+ "optional": true,
1114
+ "os": [
1115
+ "win32"
1116
+ ]
1117
+ },
1118
+ "node_modules/@next/env": {
1119
+ "version": "15.5.12",
1120
+ "resolved": "https://registry.npmjs.org/@next/env/-/env-15.5.12.tgz",
1121
+ "integrity": "sha512-pUvdJN1on574wQHjaBfNGDt9Mz5utDSZFsIIQkMzPgNS8ZvT4H2mwOrOIClwsQOb6EGx5M76/CZr6G8i6pSpLg==",
1122
+ "license": "MIT"
1123
+ },
1124
+ "node_modules/@next/swc-darwin-arm64": {
1125
+ "version": "15.5.12",
1126
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.5.12.tgz",
1127
+ "integrity": "sha512-RnRjBtH8S8eXCpUNkQ+543DUc7ys8y15VxmFU9HRqlo9BG3CcBUiwNtF8SNoi2xvGCVJq1vl2yYq+3oISBS0Zg==",
1128
+ "cpu": [
1129
+ "arm64"
1130
+ ],
1131
+ "license": "MIT",
1132
+ "optional": true,
1133
+ "os": [
1134
+ "darwin"
1135
+ ],
1136
+ "engines": {
1137
+ "node": ">= 10"
1138
+ }
1139
+ },
1140
+ "node_modules/@next/swc-darwin-x64": {
1141
+ "version": "15.5.12",
1142
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.5.12.tgz",
1143
+ "integrity": "sha512-nqa9/7iQlboF1EFtNhWxQA0rQstmYRSBGxSM6g3GxvxHxcoeqVXfGNr9stJOme674m2V7r4E3+jEhhGvSQhJRA==",
1144
+ "cpu": [
1145
+ "x64"
1146
+ ],
1147
+ "license": "MIT",
1148
+ "optional": true,
1149
+ "os": [
1150
+ "darwin"
1151
+ ],
1152
+ "engines": {
1153
+ "node": ">= 10"
1154
+ }
1155
+ },
1156
+ "node_modules/@next/swc-linux-arm64-gnu": {
1157
+ "version": "15.5.12",
1158
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.5.12.tgz",
1159
+ "integrity": "sha512-dCzAjqhDHwmoB2M4eYfVKqXs99QdQxNQVpftvP1eGVppamXh/OkDAwV737Zr0KPXEqRUMN4uCjh6mjO+XtF3Mw==",
1160
+ "cpu": [
1161
+ "arm64"
1162
+ ],
1163
+ "license": "MIT",
1164
+ "optional": true,
1165
+ "os": [
1166
+ "linux"
1167
+ ],
1168
+ "engines": {
1169
+ "node": ">= 10"
1170
+ }
1171
+ },
1172
+ "node_modules/@next/swc-linux-arm64-musl": {
1173
+ "version": "15.5.12",
1174
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.5.12.tgz",
1175
+ "integrity": "sha512-+fpGWvQiITgf7PUtbWY1H7qUSnBZsPPLyyq03QuAKpVoTy/QUx1JptEDTQMVvQhvizCEuNLEeghrQUyXQOekuw==",
1176
+ "cpu": [
1177
+ "arm64"
1178
+ ],
1179
+ "license": "MIT",
1180
+ "optional": true,
1181
+ "os": [
1182
+ "linux"
1183
+ ],
1184
+ "engines": {
1185
+ "node": ">= 10"
1186
+ }
1187
+ },
1188
+ "node_modules/@next/swc-linux-x64-gnu": {
1189
+ "version": "15.5.12",
1190
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.5.12.tgz",
1191
+ "integrity": "sha512-jSLvgdRRL/hrFAPqEjJf1fFguC719kmcptjNVDJl26BnJIpjL3KH5h6mzR4mAweociLQaqvt4UyzfbFjgAdDcw==",
1192
+ "cpu": [
1193
+ "x64"
1194
+ ],
1195
+ "license": "MIT",
1196
+ "optional": true,
1197
+ "os": [
1198
+ "linux"
1199
+ ],
1200
+ "engines": {
1201
+ "node": ">= 10"
1202
+ }
1203
+ },
1204
+ "node_modules/@next/swc-linux-x64-musl": {
1205
+ "version": "15.5.12",
1206
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.5.12.tgz",
1207
+ "integrity": "sha512-/uaF0WfmYqQgLfPmN6BvULwxY0dufI2mlN2JbOKqqceZh1G4hjREyi7pg03zjfyS6eqNemHAZPSoP84x17vo6w==",
1208
+ "cpu": [
1209
+ "x64"
1210
+ ],
1211
+ "license": "MIT",
1212
+ "optional": true,
1213
+ "os": [
1214
+ "linux"
1215
+ ],
1216
+ "engines": {
1217
+ "node": ">= 10"
1218
+ }
1219
+ },
1220
+ "node_modules/@next/swc-win32-arm64-msvc": {
1221
+ "version": "15.5.12",
1222
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.5.12.tgz",
1223
+ "integrity": "sha512-xhsL1OvQSfGmlL5RbOmU+FV120urrgFpYLq+6U8C6KIym32gZT6XF/SDE92jKzzlPWskkbjOKCpqk5m4i8PEfg==",
1224
+ "cpu": [
1225
+ "arm64"
1226
+ ],
1227
+ "license": "MIT",
1228
+ "optional": true,
1229
+ "os": [
1230
+ "win32"
1231
+ ],
1232
+ "engines": {
1233
+ "node": ">= 10"
1234
+ }
1235
+ },
1236
+ "node_modules/@next/swc-win32-x64-msvc": {
1237
+ "version": "15.5.12",
1238
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.5.12.tgz",
1239
+ "integrity": "sha512-Z1Dh6lhFkxvBDH1FoW6OU/L6prYwPSlwjLiZkExIAh8fbP6iI/M7iGTQAJPYJ9YFlWobCZ1PHbchFhFYb2ADkw==",
1240
+ "cpu": [
1241
+ "x64"
1242
+ ],
1243
+ "license": "MIT",
1244
+ "optional": true,
1245
+ "os": [
1246
+ "win32"
1247
+ ],
1248
+ "engines": {
1249
+ "node": ">= 10"
1250
+ }
1251
+ },
1252
+ "node_modules/@supabase/auth-js": {
1253
+ "version": "2.99.1",
1254
+ "resolved": "https://registry.npmjs.org/@supabase/auth-js/-/auth-js-2.99.1.tgz",
1255
+ "integrity": "sha512-x7lKKTvKjABJt/FYcRSPiTT01Xhm2FF8RhfL8+RHMkmlwmRQ88/lREupIHKwFPW0W6pTCJqkZb7Yhpw/EZ+fNw==",
1256
+ "license": "MIT",
1257
+ "dependencies": {
1258
+ "tslib": "2.8.1"
1259
+ },
1260
+ "engines": {
1261
+ "node": ">=20.0.0"
1262
+ }
1263
+ },
1264
+ "node_modules/@supabase/functions-js": {
1265
+ "version": "2.99.1",
1266
+ "resolved": "https://registry.npmjs.org/@supabase/functions-js/-/functions-js-2.99.1.tgz",
1267
+ "integrity": "sha512-WQE62W5geYImCO4jzFxCk/avnK7JmOdtqu2eiPz3zOaNiIJajNRSAwMMDgEGd2EMs+sUVYj1LfBjfmW3EzHgIA==",
1268
+ "license": "MIT",
1269
+ "dependencies": {
1270
+ "tslib": "2.8.1"
1271
+ },
1272
+ "engines": {
1273
+ "node": ">=20.0.0"
1274
+ }
1275
+ },
1276
+ "node_modules/@supabase/postgrest-js": {
1277
+ "version": "2.99.1",
1278
+ "resolved": "https://registry.npmjs.org/@supabase/postgrest-js/-/postgrest-js-2.99.1.tgz",
1279
+ "integrity": "sha512-gtw2ibJrADvfqrpUWXGNlrYUvxttF4WVWfPpTFKOb2IRj7B6YRWMDgcrYqIuD4ZEabK4m6YKQCCGy6clgf1lPA==",
1280
+ "license": "MIT",
1281
+ "dependencies": {
1282
+ "tslib": "2.8.1"
1283
+ },
1284
+ "engines": {
1285
+ "node": ">=20.0.0"
1286
+ }
1287
+ },
1288
+ "node_modules/@supabase/realtime-js": {
1289
+ "version": "2.99.1",
1290
+ "resolved": "https://registry.npmjs.org/@supabase/realtime-js/-/realtime-js-2.99.1.tgz",
1291
+ "integrity": "sha512-9EDdy/5wOseGFqxW88ShV9JMRhm7f+9JGY5x+LqT8c7R0X1CTLwg5qie8FiBWcXTZ+68yYxVWunI+7W4FhkWOg==",
1292
+ "license": "MIT",
1293
+ "dependencies": {
1294
+ "@types/phoenix": "^1.6.6",
1295
+ "@types/ws": "^8.18.1",
1296
+ "tslib": "2.8.1",
1297
+ "ws": "^8.18.2"
1298
+ },
1299
+ "engines": {
1300
+ "node": ">=20.0.0"
1301
+ }
1302
+ },
1303
+ "node_modules/@supabase/ssr": {
1304
+ "version": "0.9.0",
1305
+ "resolved": "https://registry.npmjs.org/@supabase/ssr/-/ssr-0.9.0.tgz",
1306
+ "integrity": "sha512-UFY6otYV3yqCgV+AyHj80vNkTvbf1Gas2LW4dpbQ4ap6p6v3eB2oaDfcI99jsuJzwVBCFU4BJI+oDYyhNk1z0Q==",
1307
+ "license": "MIT",
1308
+ "dependencies": {
1309
+ "cookie": "^1.0.2"
1310
+ },
1311
+ "peerDependencies": {
1312
+ "@supabase/supabase-js": "^2.97.0"
1313
+ }
1314
+ },
1315
+ "node_modules/@supabase/storage-js": {
1316
+ "version": "2.99.1",
1317
+ "resolved": "https://registry.npmjs.org/@supabase/storage-js/-/storage-js-2.99.1.tgz",
1318
+ "integrity": "sha512-mf7zPfqofI62SOoyQJeNUVxe72E4rQsbWim6lTDPeLu3lHija/cP5utlQADGrjeTgOUN6znx/rWn7SjrETP1dw==",
1319
+ "license": "MIT",
1320
+ "dependencies": {
1321
+ "iceberg-js": "^0.8.1",
1322
+ "tslib": "2.8.1"
1323
+ },
1324
+ "engines": {
1325
+ "node": ">=20.0.0"
1326
+ }
1327
+ },
1328
+ "node_modules/@supabase/supabase-js": {
1329
+ "version": "2.99.1",
1330
+ "resolved": "https://registry.npmjs.org/@supabase/supabase-js/-/supabase-js-2.99.1.tgz",
1331
+ "integrity": "sha512-5MRoYD9ffXq8F6a036dm65YoSHisC3by/d22mauKE99Vrwf792KxYIIr/iqCX7E4hkuugbPZ5EGYHTB7MKy6Vg==",
1332
+ "license": "MIT",
1333
+ "dependencies": {
1334
+ "@supabase/auth-js": "2.99.1",
1335
+ "@supabase/functions-js": "2.99.1",
1336
+ "@supabase/postgrest-js": "2.99.1",
1337
+ "@supabase/realtime-js": "2.99.1",
1338
+ "@supabase/storage-js": "2.99.1"
1339
+ },
1340
+ "engines": {
1341
+ "node": ">=20.0.0"
1342
+ }
1343
+ },
1344
+ "node_modules/@swc/helpers": {
1345
+ "version": "0.5.15",
1346
+ "resolved": "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz",
1347
+ "integrity": "sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==",
1348
+ "license": "Apache-2.0",
1349
+ "dependencies": {
1350
+ "tslib": "^2.8.0"
1351
+ }
1352
+ },
1353
+ "node_modules/@tailwindcss/node": {
1354
+ "version": "4.2.1",
1355
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.1.tgz",
1356
+ "integrity": "sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==",
1357
+ "dev": true,
1358
+ "license": "MIT",
1359
+ "dependencies": {
1360
+ "@jridgewell/remapping": "^2.3.5",
1361
+ "enhanced-resolve": "^5.19.0",
1362
+ "jiti": "^2.6.1",
1363
+ "lightningcss": "1.31.1",
1364
+ "magic-string": "^0.30.21",
1365
+ "source-map-js": "^1.2.1",
1366
+ "tailwindcss": "4.2.1"
1367
+ }
1368
+ },
1369
+ "node_modules/@tailwindcss/oxide": {
1370
+ "version": "4.2.1",
1371
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.1.tgz",
1372
+ "integrity": "sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==",
1373
+ "dev": true,
1374
+ "license": "MIT",
1375
+ "engines": {
1376
+ "node": ">= 20"
1377
+ },
1378
+ "optionalDependencies": {
1379
+ "@tailwindcss/oxide-android-arm64": "4.2.1",
1380
+ "@tailwindcss/oxide-darwin-arm64": "4.2.1",
1381
+ "@tailwindcss/oxide-darwin-x64": "4.2.1",
1382
+ "@tailwindcss/oxide-freebsd-x64": "4.2.1",
1383
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.1",
1384
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.1",
1385
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.1",
1386
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.1",
1387
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.1",
1388
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.1",
1389
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.1",
1390
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.1"
1391
+ }
1392
+ },
1393
+ "node_modules/@tailwindcss/oxide-android-arm64": {
1394
+ "version": "4.2.1",
1395
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.1.tgz",
1396
+ "integrity": "sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==",
1397
+ "cpu": [
1398
+ "arm64"
1399
+ ],
1400
+ "dev": true,
1401
+ "license": "MIT",
1402
+ "optional": true,
1403
+ "os": [
1404
+ "android"
1405
+ ],
1406
+ "engines": {
1407
+ "node": ">= 20"
1408
+ }
1409
+ },
1410
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
1411
+ "version": "4.2.1",
1412
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.1.tgz",
1413
+ "integrity": "sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==",
1414
+ "cpu": [
1415
+ "arm64"
1416
+ ],
1417
+ "dev": true,
1418
+ "license": "MIT",
1419
+ "optional": true,
1420
+ "os": [
1421
+ "darwin"
1422
+ ],
1423
+ "engines": {
1424
+ "node": ">= 20"
1425
+ }
1426
+ },
1427
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
1428
+ "version": "4.2.1",
1429
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.1.tgz",
1430
+ "integrity": "sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==",
1431
+ "cpu": [
1432
+ "x64"
1433
+ ],
1434
+ "dev": true,
1435
+ "license": "MIT",
1436
+ "optional": true,
1437
+ "os": [
1438
+ "darwin"
1439
+ ],
1440
+ "engines": {
1441
+ "node": ">= 20"
1442
+ }
1443
+ },
1444
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
1445
+ "version": "4.2.1",
1446
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.1.tgz",
1447
+ "integrity": "sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==",
1448
+ "cpu": [
1449
+ "x64"
1450
+ ],
1451
+ "dev": true,
1452
+ "license": "MIT",
1453
+ "optional": true,
1454
+ "os": [
1455
+ "freebsd"
1456
+ ],
1457
+ "engines": {
1458
+ "node": ">= 20"
1459
+ }
1460
+ },
1461
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
1462
+ "version": "4.2.1",
1463
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.1.tgz",
1464
+ "integrity": "sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==",
1465
+ "cpu": [
1466
+ "arm"
1467
+ ],
1468
+ "dev": true,
1469
+ "license": "MIT",
1470
+ "optional": true,
1471
+ "os": [
1472
+ "linux"
1473
+ ],
1474
+ "engines": {
1475
+ "node": ">= 20"
1476
+ }
1477
+ },
1478
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
1479
+ "version": "4.2.1",
1480
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.1.tgz",
1481
+ "integrity": "sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==",
1482
+ "cpu": [
1483
+ "arm64"
1484
+ ],
1485
+ "dev": true,
1486
+ "license": "MIT",
1487
+ "optional": true,
1488
+ "os": [
1489
+ "linux"
1490
+ ],
1491
+ "engines": {
1492
+ "node": ">= 20"
1493
+ }
1494
+ },
1495
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
1496
+ "version": "4.2.1",
1497
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.1.tgz",
1498
+ "integrity": "sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==",
1499
+ "cpu": [
1500
+ "arm64"
1501
+ ],
1502
+ "dev": true,
1503
+ "license": "MIT",
1504
+ "optional": true,
1505
+ "os": [
1506
+ "linux"
1507
+ ],
1508
+ "engines": {
1509
+ "node": ">= 20"
1510
+ }
1511
+ },
1512
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
1513
+ "version": "4.2.1",
1514
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.1.tgz",
1515
+ "integrity": "sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==",
1516
+ "cpu": [
1517
+ "x64"
1518
+ ],
1519
+ "dev": true,
1520
+ "license": "MIT",
1521
+ "optional": true,
1522
+ "os": [
1523
+ "linux"
1524
+ ],
1525
+ "engines": {
1526
+ "node": ">= 20"
1527
+ }
1528
+ },
1529
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1530
+ "version": "4.2.1",
1531
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.1.tgz",
1532
+ "integrity": "sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==",
1533
+ "cpu": [
1534
+ "x64"
1535
+ ],
1536
+ "dev": true,
1537
+ "license": "MIT",
1538
+ "optional": true,
1539
+ "os": [
1540
+ "linux"
1541
+ ],
1542
+ "engines": {
1543
+ "node": ">= 20"
1544
+ }
1545
+ },
1546
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1547
+ "version": "4.2.1",
1548
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.1.tgz",
1549
+ "integrity": "sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==",
1550
+ "bundleDependencies": [
1551
+ "@napi-rs/wasm-runtime",
1552
+ "@emnapi/core",
1553
+ "@emnapi/runtime",
1554
+ "@tybys/wasm-util",
1555
+ "@emnapi/wasi-threads",
1556
+ "tslib"
1557
+ ],
1558
+ "cpu": [
1559
+ "wasm32"
1560
+ ],
1561
+ "dev": true,
1562
+ "license": "MIT",
1563
+ "optional": true,
1564
+ "dependencies": {
1565
+ "@emnapi/core": "^1.8.1",
1566
+ "@emnapi/runtime": "^1.8.1",
1567
+ "@emnapi/wasi-threads": "^1.1.0",
1568
+ "@napi-rs/wasm-runtime": "^1.1.1",
1569
+ "@tybys/wasm-util": "^0.10.1",
1570
+ "tslib": "^2.8.1"
1571
+ },
1572
+ "engines": {
1573
+ "node": ">=14.0.0"
1574
+ }
1575
+ },
1576
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1577
+ "version": "4.2.1",
1578
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.1.tgz",
1579
+ "integrity": "sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==",
1580
+ "cpu": [
1581
+ "arm64"
1582
+ ],
1583
+ "dev": true,
1584
+ "license": "MIT",
1585
+ "optional": true,
1586
+ "os": [
1587
+ "win32"
1588
+ ],
1589
+ "engines": {
1590
+ "node": ">= 20"
1591
+ }
1592
+ },
1593
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1594
+ "version": "4.2.1",
1595
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.1.tgz",
1596
+ "integrity": "sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==",
1597
+ "cpu": [
1598
+ "x64"
1599
+ ],
1600
+ "dev": true,
1601
+ "license": "MIT",
1602
+ "optional": true,
1603
+ "os": [
1604
+ "win32"
1605
+ ],
1606
+ "engines": {
1607
+ "node": ">= 20"
1608
+ }
1609
+ },
1610
+ "node_modules/@tailwindcss/postcss": {
1611
+ "version": "4.2.1",
1612
+ "resolved": "https://registry.npmjs.org/@tailwindcss/postcss/-/postcss-4.2.1.tgz",
1613
+ "integrity": "sha512-OEwGIBnXnj7zJeonOh6ZG9woofIjGrd2BORfvE5p9USYKDCZoQmfqLcfNiRWoJlRWLdNPn2IgVZuWAOM4iTYMw==",
1614
+ "dev": true,
1615
+ "license": "MIT",
1616
+ "dependencies": {
1617
+ "@alloc/quick-lru": "^5.2.0",
1618
+ "@tailwindcss/node": "4.2.1",
1619
+ "@tailwindcss/oxide": "4.2.1",
1620
+ "postcss": "^8.5.6",
1621
+ "tailwindcss": "4.2.1"
1622
+ }
1623
+ },
1624
+ "node_modules/@types/debug": {
1625
+ "version": "4.1.12",
1626
+ "resolved": "https://registry.npmjs.org/@types/debug/-/debug-4.1.12.tgz",
1627
+ "integrity": "sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==",
1628
+ "license": "MIT",
1629
+ "dependencies": {
1630
+ "@types/ms": "*"
1631
+ }
1632
+ },
1633
+ "node_modules/@types/estree": {
1634
+ "version": "1.0.8",
1635
+ "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
1636
+ "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==",
1637
+ "license": "MIT"
1638
+ },
1639
+ "node_modules/@types/estree-jsx": {
1640
+ "version": "1.0.5",
1641
+ "resolved": "https://registry.npmjs.org/@types/estree-jsx/-/estree-jsx-1.0.5.tgz",
1642
+ "integrity": "sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==",
1643
+ "license": "MIT",
1644
+ "dependencies": {
1645
+ "@types/estree": "*"
1646
+ }
1647
+ },
1648
+ "node_modules/@types/hast": {
1649
+ "version": "3.0.4",
1650
+ "resolved": "https://registry.npmjs.org/@types/hast/-/hast-3.0.4.tgz",
1651
+ "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==",
1652
+ "license": "MIT",
1653
+ "dependencies": {
1654
+ "@types/unist": "*"
1655
+ }
1656
+ },
1657
+ "node_modules/@types/mdast": {
1658
+ "version": "4.0.4",
1659
+ "resolved": "https://registry.npmjs.org/@types/mdast/-/mdast-4.0.4.tgz",
1660
+ "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==",
1661
+ "license": "MIT",
1662
+ "dependencies": {
1663
+ "@types/unist": "*"
1664
+ }
1665
+ },
1666
+ "node_modules/@types/ms": {
1667
+ "version": "2.1.0",
1668
+ "resolved": "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz",
1669
+ "integrity": "sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==",
1670
+ "license": "MIT"
1671
+ },
1672
+ "node_modules/@types/node": {
1673
+ "version": "22.19.15",
1674
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.15.tgz",
1675
+ "integrity": "sha512-F0R/h2+dsy5wJAUe3tAU6oqa2qbWY5TpNfL/RGmo1y38hiyO1w3x2jPtt76wmuaJI4DQnOBu21cNXQ2STIUUWg==",
1676
+ "license": "MIT",
1677
+ "dependencies": {
1678
+ "undici-types": "~6.21.0"
1679
+ }
1680
+ },
1681
+ "node_modules/@types/phoenix": {
1682
+ "version": "1.6.7",
1683
+ "resolved": "https://registry.npmjs.org/@types/phoenix/-/phoenix-1.6.7.tgz",
1684
+ "integrity": "sha512-oN9ive//QSBkf19rfDv45M7eZPi0eEXylht2OLEXicu5b4KoQ1OzXIw+xDSGWxSxe1JmepRR/ZH283vsu518/Q==",
1685
+ "license": "MIT"
1686
+ },
1687
+ "node_modules/@types/react": {
1688
+ "version": "19.2.14",
1689
+ "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
1690
+ "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
1691
+ "license": "MIT",
1692
+ "dependencies": {
1693
+ "csstype": "^3.2.2"
1694
+ }
1695
+ },
1696
+ "node_modules/@types/react-dom": {
1697
+ "version": "19.2.3",
1698
+ "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-19.2.3.tgz",
1699
+ "integrity": "sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==",
1700
+ "dev": true,
1701
+ "license": "MIT",
1702
+ "peerDependencies": {
1703
+ "@types/react": "^19.2.0"
1704
+ }
1705
+ },
1706
+ "node_modules/@types/unist": {
1707
+ "version": "3.0.3",
1708
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz",
1709
+ "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==",
1710
+ "license": "MIT"
1711
+ },
1712
+ "node_modules/@types/ws": {
1713
+ "version": "8.18.1",
1714
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz",
1715
+ "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==",
1716
+ "license": "MIT",
1717
+ "dependencies": {
1718
+ "@types/node": "*"
1719
+ }
1720
+ },
1721
+ "node_modules/@ungap/structured-clone": {
1722
+ "version": "1.3.0",
1723
+ "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.3.0.tgz",
1724
+ "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==",
1725
+ "license": "ISC"
1726
+ },
1727
+ "node_modules/ansi-regex": {
1728
+ "version": "5.0.1",
1729
+ "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz",
1730
+ "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==",
1731
+ "dev": true,
1732
+ "license": "MIT",
1733
+ "engines": {
1734
+ "node": ">=8"
1735
+ }
1736
+ },
1737
+ "node_modules/ansi-styles": {
1738
+ "version": "4.3.0",
1739
+ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz",
1740
+ "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==",
1741
+ "dev": true,
1742
+ "license": "MIT",
1743
+ "dependencies": {
1744
+ "color-convert": "^2.0.1"
1745
+ },
1746
+ "engines": {
1747
+ "node": ">=8"
1748
+ },
1749
+ "funding": {
1750
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1751
+ }
1752
+ },
1753
+ "node_modules/argparse": {
1754
+ "version": "1.0.10",
1755
+ "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
1756
+ "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
1757
+ "license": "MIT",
1758
+ "dependencies": {
1759
+ "sprintf-js": "~1.0.2"
1760
+ }
1761
+ },
1762
+ "node_modules/bail": {
1763
+ "version": "2.0.2",
1764
+ "resolved": "https://registry.npmjs.org/bail/-/bail-2.0.2.tgz",
1765
+ "integrity": "sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==",
1766
+ "license": "MIT",
1767
+ "funding": {
1768
+ "type": "github",
1769
+ "url": "https://github.com/sponsors/wooorm"
1770
+ }
1771
+ },
1772
+ "node_modules/bullmq": {
1773
+ "version": "5.71.0",
1774
+ "resolved": "https://registry.npmjs.org/bullmq/-/bullmq-5.71.0.tgz",
1775
+ "integrity": "sha512-aeNWh4drsafSKnAJeiNH/nZP/5O8ZdtdMbnOPZmpjXj7NZUP5YC901U3bIH41iZValm7d1i3c34ojv7q31m30w==",
1776
+ "license": "MIT",
1777
+ "dependencies": {
1778
+ "cron-parser": "4.9.0",
1779
+ "ioredis": "5.9.3",
1780
+ "msgpackr": "1.11.5",
1781
+ "node-abort-controller": "3.1.1",
1782
+ "semver": "7.7.4",
1783
+ "tslib": "2.8.1",
1784
+ "uuid": "11.1.0"
1785
+ }
1786
+ },
1787
+ "node_modules/bullmq/node_modules/@ioredis/commands": {
1788
+ "version": "1.5.0",
1789
+ "resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.5.0.tgz",
1790
+ "integrity": "sha512-eUgLqrMf8nJkZxT24JvVRrQya1vZkQh8BBeYNwGDqa5I0VUi8ACx7uFvAaLxintokpTenkK6DASvo/bvNbBGow==",
1791
+ "license": "MIT"
1792
+ },
1793
+ "node_modules/bullmq/node_modules/ioredis": {
1794
+ "version": "5.9.3",
1795
+ "resolved": "https://registry.npmjs.org/ioredis/-/ioredis-5.9.3.tgz",
1796
+ "integrity": "sha512-VI5tMCdeoxZWU5vjHWsiE/Su76JGhBvWF1MJnV9ZtGltHk9BmD48oDq8Tj8haZ85aceXZMxLNDQZRVo5QKNgXA==",
1797
+ "license": "MIT",
1798
+ "dependencies": {
1799
+ "@ioredis/commands": "1.5.0",
1800
+ "cluster-key-slot": "^1.1.0",
1801
+ "debug": "^4.3.4",
1802
+ "denque": "^2.1.0",
1803
+ "lodash.defaults": "^4.2.0",
1804
+ "lodash.isarguments": "^3.1.0",
1805
+ "redis-errors": "^1.2.0",
1806
+ "redis-parser": "^3.0.0",
1807
+ "standard-as-callback": "^2.1.0"
1808
+ },
1809
+ "engines": {
1810
+ "node": ">=12.22.0"
1811
+ },
1812
+ "funding": {
1813
+ "type": "opencollective",
1814
+ "url": "https://opencollective.com/ioredis"
1815
+ }
1816
+ },
1817
+ "node_modules/caniuse-lite": {
1818
+ "version": "1.0.30001778",
1819
+ "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001778.tgz",
1820
+ "integrity": "sha512-PN7uxFL+ExFJO61aVmP1aIEG4i9whQd4eoSCebav62UwDyp5OHh06zN4jqKSMePVgxHifCw1QJxdRkA1Pisekg==",
1821
+ "funding": [
1822
+ {
1823
+ "type": "opencollective",
1824
+ "url": "https://opencollective.com/browserslist"
1825
+ },
1826
+ {
1827
+ "type": "tidelift",
1828
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1829
+ },
1830
+ {
1831
+ "type": "github",
1832
+ "url": "https://github.com/sponsors/ai"
1833
+ }
1834
+ ],
1835
+ "license": "CC-BY-4.0"
1836
+ },
1837
+ "node_modules/ccount": {
1838
+ "version": "2.0.1",
1839
+ "resolved": "https://registry.npmjs.org/ccount/-/ccount-2.0.1.tgz",
1840
+ "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==",
1841
+ "license": "MIT",
1842
+ "funding": {
1843
+ "type": "github",
1844
+ "url": "https://github.com/sponsors/wooorm"
1845
+ }
1846
+ },
1847
+ "node_modules/chalk": {
1848
+ "version": "4.1.2",
1849
+ "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
1850
+ "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==",
1851
+ "dev": true,
1852
+ "license": "MIT",
1853
+ "dependencies": {
1854
+ "ansi-styles": "^4.1.0",
1855
+ "supports-color": "^7.1.0"
1856
+ },
1857
+ "engines": {
1858
+ "node": ">=10"
1859
+ },
1860
+ "funding": {
1861
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1862
+ }
1863
+ },
1864
+ "node_modules/chalk/node_modules/supports-color": {
1865
+ "version": "7.2.0",
1866
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz",
1867
+ "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==",
1868
+ "dev": true,
1869
+ "license": "MIT",
1870
+ "dependencies": {
1871
+ "has-flag": "^4.0.0"
1872
+ },
1873
+ "engines": {
1874
+ "node": ">=8"
1875
+ }
1876
+ },
1877
+ "node_modules/character-entities": {
1878
+ "version": "2.0.2",
1879
+ "resolved": "https://registry.npmjs.org/character-entities/-/character-entities-2.0.2.tgz",
1880
+ "integrity": "sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==",
1881
+ "license": "MIT",
1882
+ "funding": {
1883
+ "type": "github",
1884
+ "url": "https://github.com/sponsors/wooorm"
1885
+ }
1886
+ },
1887
+ "node_modules/character-entities-html4": {
1888
+ "version": "2.1.0",
1889
+ "resolved": "https://registry.npmjs.org/character-entities-html4/-/character-entities-html4-2.1.0.tgz",
1890
+ "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==",
1891
+ "license": "MIT",
1892
+ "funding": {
1893
+ "type": "github",
1894
+ "url": "https://github.com/sponsors/wooorm"
1895
+ }
1896
+ },
1897
+ "node_modules/character-entities-legacy": {
1898
+ "version": "3.0.0",
1899
+ "resolved": "https://registry.npmjs.org/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz",
1900
+ "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==",
1901
+ "license": "MIT",
1902
+ "funding": {
1903
+ "type": "github",
1904
+ "url": "https://github.com/sponsors/wooorm"
1905
+ }
1906
+ },
1907
+ "node_modules/character-reference-invalid": {
1908
+ "version": "2.0.1",
1909
+ "resolved": "https://registry.npmjs.org/character-reference-invalid/-/character-reference-invalid-2.0.1.tgz",
1910
+ "integrity": "sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==",
1911
+ "license": "MIT",
1912
+ "funding": {
1913
+ "type": "github",
1914
+ "url": "https://github.com/sponsors/wooorm"
1915
+ }
1916
+ },
1917
+ "node_modules/client-only": {
1918
+ "version": "0.0.1",
1919
+ "resolved": "https://registry.npmjs.org/client-only/-/client-only-0.0.1.tgz",
1920
+ "integrity": "sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==",
1921
+ "license": "MIT"
1922
+ },
1923
+ "node_modules/cliui": {
1924
+ "version": "8.0.1",
1925
+ "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz",
1926
+ "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==",
1927
+ "dev": true,
1928
+ "license": "ISC",
1929
+ "dependencies": {
1930
+ "string-width": "^4.2.0",
1931
+ "strip-ansi": "^6.0.1",
1932
+ "wrap-ansi": "^7.0.0"
1933
+ },
1934
+ "engines": {
1935
+ "node": ">=12"
1936
+ }
1937
+ },
1938
+ "node_modules/cluster-key-slot": {
1939
+ "version": "1.1.2",
1940
+ "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz",
1941
+ "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==",
1942
+ "license": "Apache-2.0",
1943
+ "engines": {
1944
+ "node": ">=0.10.0"
1945
+ }
1946
+ },
1947
+ "node_modules/color-convert": {
1948
+ "version": "2.0.1",
1949
+ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz",
1950
+ "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==",
1951
+ "dev": true,
1952
+ "license": "MIT",
1953
+ "dependencies": {
1954
+ "color-name": "~1.1.4"
1955
+ },
1956
+ "engines": {
1957
+ "node": ">=7.0.0"
1958
+ }
1959
+ },
1960
+ "node_modules/color-name": {
1961
+ "version": "1.1.4",
1962
+ "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz",
1963
+ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==",
1964
+ "dev": true,
1965
+ "license": "MIT"
1966
+ },
1967
+ "node_modules/comma-separated-tokens": {
1968
+ "version": "2.0.3",
1969
+ "resolved": "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz",
1970
+ "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==",
1971
+ "license": "MIT",
1972
+ "funding": {
1973
+ "type": "github",
1974
+ "url": "https://github.com/sponsors/wooorm"
1975
+ }
1976
+ },
1977
+ "node_modules/concurrently": {
1978
+ "version": "9.2.1",
1979
+ "resolved": "https://registry.npmjs.org/concurrently/-/concurrently-9.2.1.tgz",
1980
+ "integrity": "sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==",
1981
+ "dev": true,
1982
+ "license": "MIT",
1983
+ "dependencies": {
1984
+ "chalk": "4.1.2",
1985
+ "rxjs": "7.8.2",
1986
+ "shell-quote": "1.8.3",
1987
+ "supports-color": "8.1.1",
1988
+ "tree-kill": "1.2.2",
1989
+ "yargs": "17.7.2"
1990
+ },
1991
+ "bin": {
1992
+ "conc": "dist/bin/concurrently.js",
1993
+ "concurrently": "dist/bin/concurrently.js"
1994
+ },
1995
+ "engines": {
1996
+ "node": ">=18"
1997
+ },
1998
+ "funding": {
1999
+ "url": "https://github.com/open-cli-tools/concurrently?sponsor=1"
2000
+ }
2001
+ },
2002
+ "node_modules/cookie": {
2003
+ "version": "1.1.1",
2004
+ "resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
2005
+ "integrity": "sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==",
2006
+ "license": "MIT",
2007
+ "engines": {
2008
+ "node": ">=18"
2009
+ },
2010
+ "funding": {
2011
+ "type": "opencollective",
2012
+ "url": "https://opencollective.com/express"
2013
+ }
2014
+ },
2015
+ "node_modules/cron-parser": {
2016
+ "version": "4.9.0",
2017
+ "resolved": "https://registry.npmjs.org/cron-parser/-/cron-parser-4.9.0.tgz",
2018
+ "integrity": "sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==",
2019
+ "license": "MIT",
2020
+ "dependencies": {
2021
+ "luxon": "^3.2.1"
2022
+ },
2023
+ "engines": {
2024
+ "node": ">=12.0.0"
2025
+ }
2026
+ },
2027
+ "node_modules/cronstrue": {
2028
+ "version": "2.59.0",
2029
+ "resolved": "https://registry.npmjs.org/cronstrue/-/cronstrue-2.59.0.tgz",
2030
+ "integrity": "sha512-YKGmAy84hKH+hHIIER07VCAHf9u0Ldelx1uU6EBxsRPDXIA1m5fsKmJfyC3xBhw6cVC/1i83VdbL4PvepTrt8A==",
2031
+ "license": "MIT",
2032
+ "bin": {
2033
+ "cronstrue": "bin/cli.js"
2034
+ }
2035
+ },
2036
+ "node_modules/csstype": {
2037
+ "version": "3.2.3",
2038
+ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
2039
+ "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
2040
+ "license": "MIT"
2041
+ },
2042
+ "node_modules/debug": {
2043
+ "version": "4.4.3",
2044
+ "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
2045
+ "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
2046
+ "license": "MIT",
2047
+ "dependencies": {
2048
+ "ms": "^2.1.3"
2049
+ },
2050
+ "engines": {
2051
+ "node": ">=6.0"
2052
+ },
2053
+ "peerDependenciesMeta": {
2054
+ "supports-color": {
2055
+ "optional": true
2056
+ }
2057
+ }
2058
+ },
2059
+ "node_modules/decode-named-character-reference": {
2060
+ "version": "1.3.0",
2061
+ "resolved": "https://registry.npmjs.org/decode-named-character-reference/-/decode-named-character-reference-1.3.0.tgz",
2062
+ "integrity": "sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==",
2063
+ "license": "MIT",
2064
+ "dependencies": {
2065
+ "character-entities": "^2.0.0"
2066
+ },
2067
+ "funding": {
2068
+ "type": "github",
2069
+ "url": "https://github.com/sponsors/wooorm"
2070
+ }
2071
+ },
2072
+ "node_modules/denque": {
2073
+ "version": "2.1.0",
2074
+ "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz",
2075
+ "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==",
2076
+ "license": "Apache-2.0",
2077
+ "engines": {
2078
+ "node": ">=0.10"
2079
+ }
2080
+ },
2081
+ "node_modules/dequal": {
2082
+ "version": "2.0.3",
2083
+ "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz",
2084
+ "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==",
2085
+ "license": "MIT",
2086
+ "engines": {
2087
+ "node": ">=6"
2088
+ }
2089
+ },
2090
+ "node_modules/detect-libc": {
2091
+ "version": "2.1.2",
2092
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
2093
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
2094
+ "devOptional": true,
2095
+ "license": "Apache-2.0",
2096
+ "engines": {
2097
+ "node": ">=8"
2098
+ }
2099
+ },
2100
+ "node_modules/devlop": {
2101
+ "version": "1.1.0",
2102
+ "resolved": "https://registry.npmjs.org/devlop/-/devlop-1.1.0.tgz",
2103
+ "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==",
2104
+ "license": "MIT",
2105
+ "dependencies": {
2106
+ "dequal": "^2.0.0"
2107
+ },
2108
+ "funding": {
2109
+ "type": "github",
2110
+ "url": "https://github.com/sponsors/wooorm"
2111
+ }
2112
+ },
2113
+ "node_modules/dotenv": {
2114
+ "version": "16.6.1",
2115
+ "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.6.1.tgz",
2116
+ "integrity": "sha512-uBq4egWHTcTt33a72vpSG0z3HnPuIl6NqYcTrKEg2azoEyl2hpW0zqlxysq2pK9HlDIHyHyakeYaYnSAwd8bow==",
2117
+ "license": "BSD-2-Clause",
2118
+ "engines": {
2119
+ "node": ">=12"
2120
+ },
2121
+ "funding": {
2122
+ "url": "https://dotenvx.com"
2123
+ }
2124
+ },
2125
+ "node_modules/emoji-regex": {
2126
+ "version": "8.0.0",
2127
+ "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz",
2128
+ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==",
2129
+ "dev": true,
2130
+ "license": "MIT"
2131
+ },
2132
+ "node_modules/enhanced-resolve": {
2133
+ "version": "5.20.0",
2134
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.0.tgz",
2135
+ "integrity": "sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==",
2136
+ "dev": true,
2137
+ "license": "MIT",
2138
+ "dependencies": {
2139
+ "graceful-fs": "^4.2.4",
2140
+ "tapable": "^2.3.0"
2141
+ },
2142
+ "engines": {
2143
+ "node": ">=10.13.0"
2144
+ }
2145
+ },
2146
+ "node_modules/esbuild": {
2147
+ "version": "0.27.4",
2148
+ "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.4.tgz",
2149
+ "integrity": "sha512-Rq4vbHnYkK5fws5NF7MYTU68FPRE1ajX7heQ/8QXXWqNgqqJ/GkmmyxIzUnf2Sr/bakf8l54716CcMGHYhMrrQ==",
2150
+ "dev": true,
2151
+ "hasInstallScript": true,
2152
+ "license": "MIT",
2153
+ "bin": {
2154
+ "esbuild": "bin/esbuild"
2155
+ },
2156
+ "engines": {
2157
+ "node": ">=18"
2158
+ },
2159
+ "optionalDependencies": {
2160
+ "@esbuild/aix-ppc64": "0.27.4",
2161
+ "@esbuild/android-arm": "0.27.4",
2162
+ "@esbuild/android-arm64": "0.27.4",
2163
+ "@esbuild/android-x64": "0.27.4",
2164
+ "@esbuild/darwin-arm64": "0.27.4",
2165
+ "@esbuild/darwin-x64": "0.27.4",
2166
+ "@esbuild/freebsd-arm64": "0.27.4",
2167
+ "@esbuild/freebsd-x64": "0.27.4",
2168
+ "@esbuild/linux-arm": "0.27.4",
2169
+ "@esbuild/linux-arm64": "0.27.4",
2170
+ "@esbuild/linux-ia32": "0.27.4",
2171
+ "@esbuild/linux-loong64": "0.27.4",
2172
+ "@esbuild/linux-mips64el": "0.27.4",
2173
+ "@esbuild/linux-ppc64": "0.27.4",
2174
+ "@esbuild/linux-riscv64": "0.27.4",
2175
+ "@esbuild/linux-s390x": "0.27.4",
2176
+ "@esbuild/linux-x64": "0.27.4",
2177
+ "@esbuild/netbsd-arm64": "0.27.4",
2178
+ "@esbuild/netbsd-x64": "0.27.4",
2179
+ "@esbuild/openbsd-arm64": "0.27.4",
2180
+ "@esbuild/openbsd-x64": "0.27.4",
2181
+ "@esbuild/openharmony-arm64": "0.27.4",
2182
+ "@esbuild/sunos-x64": "0.27.4",
2183
+ "@esbuild/win32-arm64": "0.27.4",
2184
+ "@esbuild/win32-ia32": "0.27.4",
2185
+ "@esbuild/win32-x64": "0.27.4"
2186
+ }
2187
+ },
2188
+ "node_modules/escalade": {
2189
+ "version": "3.2.0",
2190
+ "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz",
2191
+ "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==",
2192
+ "dev": true,
2193
+ "license": "MIT",
2194
+ "engines": {
2195
+ "node": ">=6"
2196
+ }
2197
+ },
2198
+ "node_modules/escape-string-regexp": {
2199
+ "version": "5.0.0",
2200
+ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz",
2201
+ "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==",
2202
+ "license": "MIT",
2203
+ "engines": {
2204
+ "node": ">=12"
2205
+ },
2206
+ "funding": {
2207
+ "url": "https://github.com/sponsors/sindresorhus"
2208
+ }
2209
+ },
2210
+ "node_modules/esprima": {
2211
+ "version": "4.0.1",
2212
+ "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz",
2213
+ "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==",
2214
+ "license": "BSD-2-Clause",
2215
+ "bin": {
2216
+ "esparse": "bin/esparse.js",
2217
+ "esvalidate": "bin/esvalidate.js"
2218
+ },
2219
+ "engines": {
2220
+ "node": ">=4"
2221
+ }
2222
+ },
2223
+ "node_modules/estree-util-is-identifier-name": {
2224
+ "version": "3.0.0",
2225
+ "resolved": "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-3.0.0.tgz",
2226
+ "integrity": "sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==",
2227
+ "license": "MIT",
2228
+ "funding": {
2229
+ "type": "opencollective",
2230
+ "url": "https://opencollective.com/unified"
2231
+ }
2232
+ },
2233
+ "node_modules/extend": {
2234
+ "version": "3.0.2",
2235
+ "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
2236
+ "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==",
2237
+ "license": "MIT"
2238
+ },
2239
+ "node_modules/extend-shallow": {
2240
+ "version": "2.0.1",
2241
+ "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz",
2242
+ "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==",
2243
+ "license": "MIT",
2244
+ "dependencies": {
2245
+ "is-extendable": "^0.1.0"
2246
+ },
2247
+ "engines": {
2248
+ "node": ">=0.10.0"
2249
+ }
2250
+ },
2251
+ "node_modules/fsevents": {
2252
+ "version": "2.3.3",
2253
+ "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
2254
+ "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==",
2255
+ "dev": true,
2256
+ "hasInstallScript": true,
2257
+ "license": "MIT",
2258
+ "optional": true,
2259
+ "os": [
2260
+ "darwin"
2261
+ ],
2262
+ "engines": {
2263
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2264
+ }
2265
+ },
2266
+ "node_modules/get-caller-file": {
2267
+ "version": "2.0.5",
2268
+ "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz",
2269
+ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==",
2270
+ "dev": true,
2271
+ "license": "ISC",
2272
+ "engines": {
2273
+ "node": "6.* || 8.* || >= 10.*"
2274
+ }
2275
+ },
2276
+ "node_modules/get-tsconfig": {
2277
+ "version": "4.13.6",
2278
+ "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.6.tgz",
2279
+ "integrity": "sha512-shZT/QMiSHc/YBLxxOkMtgSid5HFoauqCE3/exfsEcwg1WkeqjG+V40yBbBrsD+jW2HDXcs28xOfcbm2jI8Ddw==",
2280
+ "dev": true,
2281
+ "license": "MIT",
2282
+ "dependencies": {
2283
+ "resolve-pkg-maps": "^1.0.0"
2284
+ },
2285
+ "funding": {
2286
+ "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1"
2287
+ }
2288
+ },
2289
+ "node_modules/graceful-fs": {
2290
+ "version": "4.2.11",
2291
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2292
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2293
+ "dev": true,
2294
+ "license": "ISC"
2295
+ },
2296
+ "node_modules/gray-matter": {
2297
+ "version": "4.0.3",
2298
+ "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz",
2299
+ "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==",
2300
+ "license": "MIT",
2301
+ "dependencies": {
2302
+ "js-yaml": "^3.13.1",
2303
+ "kind-of": "^6.0.2",
2304
+ "section-matter": "^1.0.0",
2305
+ "strip-bom-string": "^1.0.0"
2306
+ },
2307
+ "engines": {
2308
+ "node": ">=6.0"
2309
+ }
2310
+ },
2311
+ "node_modules/has-flag": {
2312
+ "version": "4.0.0",
2313
+ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz",
2314
+ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==",
2315
+ "dev": true,
2316
+ "license": "MIT",
2317
+ "engines": {
2318
+ "node": ">=8"
2319
+ }
2320
+ },
2321
+ "node_modules/hast-util-to-jsx-runtime": {
2322
+ "version": "2.3.6",
2323
+ "resolved": "https://registry.npmjs.org/hast-util-to-jsx-runtime/-/hast-util-to-jsx-runtime-2.3.6.tgz",
2324
+ "integrity": "sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==",
2325
+ "license": "MIT",
2326
+ "dependencies": {
2327
+ "@types/estree": "^1.0.0",
2328
+ "@types/hast": "^3.0.0",
2329
+ "@types/unist": "^3.0.0",
2330
+ "comma-separated-tokens": "^2.0.0",
2331
+ "devlop": "^1.0.0",
2332
+ "estree-util-is-identifier-name": "^3.0.0",
2333
+ "hast-util-whitespace": "^3.0.0",
2334
+ "mdast-util-mdx-expression": "^2.0.0",
2335
+ "mdast-util-mdx-jsx": "^3.0.0",
2336
+ "mdast-util-mdxjs-esm": "^2.0.0",
2337
+ "property-information": "^7.0.0",
2338
+ "space-separated-tokens": "^2.0.0",
2339
+ "style-to-js": "^1.0.0",
2340
+ "unist-util-position": "^5.0.0",
2341
+ "vfile-message": "^4.0.0"
2342
+ },
2343
+ "funding": {
2344
+ "type": "opencollective",
2345
+ "url": "https://opencollective.com/unified"
2346
+ }
2347
+ },
2348
+ "node_modules/hast-util-whitespace": {
2349
+ "version": "3.0.0",
2350
+ "resolved": "https://registry.npmjs.org/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz",
2351
+ "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==",
2352
+ "license": "MIT",
2353
+ "dependencies": {
2354
+ "@types/hast": "^3.0.0"
2355
+ },
2356
+ "funding": {
2357
+ "type": "opencollective",
2358
+ "url": "https://opencollective.com/unified"
2359
+ }
2360
+ },
2361
+ "node_modules/html-url-attributes": {
2362
+ "version": "3.0.1",
2363
+ "resolved": "https://registry.npmjs.org/html-url-attributes/-/html-url-attributes-3.0.1.tgz",
2364
+ "integrity": "sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==",
2365
+ "license": "MIT",
2366
+ "funding": {
2367
+ "type": "opencollective",
2368
+ "url": "https://opencollective.com/unified"
2369
+ }
2370
+ },
2371
+ "node_modules/iceberg-js": {
2372
+ "version": "0.8.1",
2373
+ "resolved": "https://registry.npmjs.org/iceberg-js/-/iceberg-js-0.8.1.tgz",
2374
+ "integrity": "sha512-1dhVQZXhcHje7798IVM+xoo/1ZdVfzOMIc8/rgVSijRK38EDqOJoGula9N/8ZI5RD8QTxNQtK/Gozpr+qUqRRA==",
2375
+ "license": "MIT",
2376
+ "engines": {
2377
+ "node": ">=20.0.0"
2378
+ }
2379
+ },
2380
+ "node_modules/inline-style-parser": {
2381
+ "version": "0.2.7",
2382
+ "resolved": "https://registry.npmjs.org/inline-style-parser/-/inline-style-parser-0.2.7.tgz",
2383
+ "integrity": "sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==",
2384
+ "license": "MIT"
2385
+ },
2386
+ "node_modules/is-alphabetical": {
2387
+ "version": "2.0.1",
2388
+ "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz",
2389
+ "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==",
2390
+ "license": "MIT",
2391
+ "funding": {
2392
+ "type": "github",
2393
+ "url": "https://github.com/sponsors/wooorm"
2394
+ }
2395
+ },
2396
+ "node_modules/is-alphanumerical": {
2397
+ "version": "2.0.1",
2398
+ "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz",
2399
+ "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==",
2400
+ "license": "MIT",
2401
+ "dependencies": {
2402
+ "is-alphabetical": "^2.0.0",
2403
+ "is-decimal": "^2.0.0"
2404
+ },
2405
+ "funding": {
2406
+ "type": "github",
2407
+ "url": "https://github.com/sponsors/wooorm"
2408
+ }
2409
+ },
2410
+ "node_modules/is-decimal": {
2411
+ "version": "2.0.1",
2412
+ "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz",
2413
+ "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==",
2414
+ "license": "MIT",
2415
+ "funding": {
2416
+ "type": "github",
2417
+ "url": "https://github.com/sponsors/wooorm"
2418
+ }
2419
+ },
2420
+ "node_modules/is-extendable": {
2421
+ "version": "0.1.1",
2422
+ "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz",
2423
+ "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==",
2424
+ "license": "MIT",
2425
+ "engines": {
2426
+ "node": ">=0.10.0"
2427
+ }
2428
+ },
2429
+ "node_modules/is-fullwidth-code-point": {
2430
+ "version": "3.0.0",
2431
+ "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz",
2432
+ "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==",
2433
+ "dev": true,
2434
+ "license": "MIT",
2435
+ "engines": {
2436
+ "node": ">=8"
2437
+ }
2438
+ },
2439
+ "node_modules/is-hexadecimal": {
2440
+ "version": "2.0.1",
2441
+ "resolved": "https://registry.npmjs.org/is-hexadecimal/-/is-hexadecimal-2.0.1.tgz",
2442
+ "integrity": "sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==",
2443
+ "license": "MIT",
2444
+ "funding": {
2445
+ "type": "github",
2446
+ "url": "https://github.com/sponsors/wooorm"
2447
+ }
2448
+ },
2449
+ "node_modules/is-plain-obj": {
2450
+ "version": "4.1.0",
2451
+ "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz",
2452
+ "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==",
2453
+ "license": "MIT",
2454
+ "engines": {
2455
+ "node": ">=12"
2456
+ },
2457
+ "funding": {
2458
+ "url": "https://github.com/sponsors/sindresorhus"
2459
+ }
2460
+ },
2461
+ "node_modules/jiti": {
2462
+ "version": "2.6.1",
2463
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
2464
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
2465
+ "dev": true,
2466
+ "license": "MIT",
2467
+ "bin": {
2468
+ "jiti": "lib/jiti-cli.mjs"
2469
+ }
2470
+ },
2471
+ "node_modules/js-yaml": {
2472
+ "version": "3.14.2",
2473
+ "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz",
2474
+ "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==",
2475
+ "license": "MIT",
2476
+ "dependencies": {
2477
+ "argparse": "^1.0.7",
2478
+ "esprima": "^4.0.0"
2479
+ },
2480
+ "bin": {
2481
+ "js-yaml": "bin/js-yaml.js"
2482
+ }
2483
+ },
2484
+ "node_modules/kind-of": {
2485
+ "version": "6.0.3",
2486
+ "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz",
2487
+ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==",
2488
+ "license": "MIT",
2489
+ "engines": {
2490
+ "node": ">=0.10.0"
2491
+ }
2492
+ },
2493
+ "node_modules/lightningcss": {
2494
+ "version": "1.31.1",
2495
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.31.1.tgz",
2496
+ "integrity": "sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==",
2497
+ "dev": true,
2498
+ "license": "MPL-2.0",
2499
+ "dependencies": {
2500
+ "detect-libc": "^2.0.3"
2501
+ },
2502
+ "engines": {
2503
+ "node": ">= 12.0.0"
2504
+ },
2505
+ "funding": {
2506
+ "type": "opencollective",
2507
+ "url": "https://opencollective.com/parcel"
2508
+ },
2509
+ "optionalDependencies": {
2510
+ "lightningcss-android-arm64": "1.31.1",
2511
+ "lightningcss-darwin-arm64": "1.31.1",
2512
+ "lightningcss-darwin-x64": "1.31.1",
2513
+ "lightningcss-freebsd-x64": "1.31.1",
2514
+ "lightningcss-linux-arm-gnueabihf": "1.31.1",
2515
+ "lightningcss-linux-arm64-gnu": "1.31.1",
2516
+ "lightningcss-linux-arm64-musl": "1.31.1",
2517
+ "lightningcss-linux-x64-gnu": "1.31.1",
2518
+ "lightningcss-linux-x64-musl": "1.31.1",
2519
+ "lightningcss-win32-arm64-msvc": "1.31.1",
2520
+ "lightningcss-win32-x64-msvc": "1.31.1"
2521
+ }
2522
+ },
2523
+ "node_modules/lightningcss-android-arm64": {
2524
+ "version": "1.31.1",
2525
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.31.1.tgz",
2526
+ "integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==",
2527
+ "cpu": [
2528
+ "arm64"
2529
+ ],
2530
+ "dev": true,
2531
+ "license": "MPL-2.0",
2532
+ "optional": true,
2533
+ "os": [
2534
+ "android"
2535
+ ],
2536
+ "engines": {
2537
+ "node": ">= 12.0.0"
2538
+ },
2539
+ "funding": {
2540
+ "type": "opencollective",
2541
+ "url": "https://opencollective.com/parcel"
2542
+ }
2543
+ },
2544
+ "node_modules/lightningcss-darwin-arm64": {
2545
+ "version": "1.31.1",
2546
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.31.1.tgz",
2547
+ "integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==",
2548
+ "cpu": [
2549
+ "arm64"
2550
+ ],
2551
+ "dev": true,
2552
+ "license": "MPL-2.0",
2553
+ "optional": true,
2554
+ "os": [
2555
+ "darwin"
2556
+ ],
2557
+ "engines": {
2558
+ "node": ">= 12.0.0"
2559
+ },
2560
+ "funding": {
2561
+ "type": "opencollective",
2562
+ "url": "https://opencollective.com/parcel"
2563
+ }
2564
+ },
2565
+ "node_modules/lightningcss-darwin-x64": {
2566
+ "version": "1.31.1",
2567
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.31.1.tgz",
2568
+ "integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==",
2569
+ "cpu": [
2570
+ "x64"
2571
+ ],
2572
+ "dev": true,
2573
+ "license": "MPL-2.0",
2574
+ "optional": true,
2575
+ "os": [
2576
+ "darwin"
2577
+ ],
2578
+ "engines": {
2579
+ "node": ">= 12.0.0"
2580
+ },
2581
+ "funding": {
2582
+ "type": "opencollective",
2583
+ "url": "https://opencollective.com/parcel"
2584
+ }
2585
+ },
2586
+ "node_modules/lightningcss-freebsd-x64": {
2587
+ "version": "1.31.1",
2588
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.31.1.tgz",
2589
+ "integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==",
2590
+ "cpu": [
2591
+ "x64"
2592
+ ],
2593
+ "dev": true,
2594
+ "license": "MPL-2.0",
2595
+ "optional": true,
2596
+ "os": [
2597
+ "freebsd"
2598
+ ],
2599
+ "engines": {
2600
+ "node": ">= 12.0.0"
2601
+ },
2602
+ "funding": {
2603
+ "type": "opencollective",
2604
+ "url": "https://opencollective.com/parcel"
2605
+ }
2606
+ },
2607
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
2608
+ "version": "1.31.1",
2609
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.31.1.tgz",
2610
+ "integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==",
2611
+ "cpu": [
2612
+ "arm"
2613
+ ],
2614
+ "dev": true,
2615
+ "license": "MPL-2.0",
2616
+ "optional": true,
2617
+ "os": [
2618
+ "linux"
2619
+ ],
2620
+ "engines": {
2621
+ "node": ">= 12.0.0"
2622
+ },
2623
+ "funding": {
2624
+ "type": "opencollective",
2625
+ "url": "https://opencollective.com/parcel"
2626
+ }
2627
+ },
2628
+ "node_modules/lightningcss-linux-arm64-gnu": {
2629
+ "version": "1.31.1",
2630
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.31.1.tgz",
2631
+ "integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==",
2632
+ "cpu": [
2633
+ "arm64"
2634
+ ],
2635
+ "dev": true,
2636
+ "license": "MPL-2.0",
2637
+ "optional": true,
2638
+ "os": [
2639
+ "linux"
2640
+ ],
2641
+ "engines": {
2642
+ "node": ">= 12.0.0"
2643
+ },
2644
+ "funding": {
2645
+ "type": "opencollective",
2646
+ "url": "https://opencollective.com/parcel"
2647
+ }
2648
+ },
2649
+ "node_modules/lightningcss-linux-arm64-musl": {
2650
+ "version": "1.31.1",
2651
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.31.1.tgz",
2652
+ "integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==",
2653
+ "cpu": [
2654
+ "arm64"
2655
+ ],
2656
+ "dev": true,
2657
+ "license": "MPL-2.0",
2658
+ "optional": true,
2659
+ "os": [
2660
+ "linux"
2661
+ ],
2662
+ "engines": {
2663
+ "node": ">= 12.0.0"
2664
+ },
2665
+ "funding": {
2666
+ "type": "opencollective",
2667
+ "url": "https://opencollective.com/parcel"
2668
+ }
2669
+ },
2670
+ "node_modules/lightningcss-linux-x64-gnu": {
2671
+ "version": "1.31.1",
2672
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.31.1.tgz",
2673
+ "integrity": "sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==",
2674
+ "cpu": [
2675
+ "x64"
2676
+ ],
2677
+ "dev": true,
2678
+ "license": "MPL-2.0",
2679
+ "optional": true,
2680
+ "os": [
2681
+ "linux"
2682
+ ],
2683
+ "engines": {
2684
+ "node": ">= 12.0.0"
2685
+ },
2686
+ "funding": {
2687
+ "type": "opencollective",
2688
+ "url": "https://opencollective.com/parcel"
2689
+ }
2690
+ },
2691
+ "node_modules/lightningcss-linux-x64-musl": {
2692
+ "version": "1.31.1",
2693
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.31.1.tgz",
2694
+ "integrity": "sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==",
2695
+ "cpu": [
2696
+ "x64"
2697
+ ],
2698
+ "dev": true,
2699
+ "license": "MPL-2.0",
2700
+ "optional": true,
2701
+ "os": [
2702
+ "linux"
2703
+ ],
2704
+ "engines": {
2705
+ "node": ">= 12.0.0"
2706
+ },
2707
+ "funding": {
2708
+ "type": "opencollective",
2709
+ "url": "https://opencollective.com/parcel"
2710
+ }
2711
+ },
2712
+ "node_modules/lightningcss-win32-arm64-msvc": {
2713
+ "version": "1.31.1",
2714
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.31.1.tgz",
2715
+ "integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==",
2716
+ "cpu": [
2717
+ "arm64"
2718
+ ],
2719
+ "dev": true,
2720
+ "license": "MPL-2.0",
2721
+ "optional": true,
2722
+ "os": [
2723
+ "win32"
2724
+ ],
2725
+ "engines": {
2726
+ "node": ">= 12.0.0"
2727
+ },
2728
+ "funding": {
2729
+ "type": "opencollective",
2730
+ "url": "https://opencollective.com/parcel"
2731
+ }
2732
+ },
2733
+ "node_modules/lightningcss-win32-x64-msvc": {
2734
+ "version": "1.31.1",
2735
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.31.1.tgz",
2736
+ "integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==",
2737
+ "cpu": [
2738
+ "x64"
2739
+ ],
2740
+ "dev": true,
2741
+ "license": "MPL-2.0",
2742
+ "optional": true,
2743
+ "os": [
2744
+ "win32"
2745
+ ],
2746
+ "engines": {
2747
+ "node": ">= 12.0.0"
2748
+ },
2749
+ "funding": {
2750
+ "type": "opencollective",
2751
+ "url": "https://opencollective.com/parcel"
2752
+ }
2753
+ },
2754
+ "node_modules/lodash.defaults": {
2755
+ "version": "4.2.0",
2756
+ "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz",
2757
+ "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==",
2758
+ "license": "MIT"
2759
+ },
2760
+ "node_modules/lodash.isarguments": {
2761
+ "version": "3.1.0",
2762
+ "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz",
2763
+ "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==",
2764
+ "license": "MIT"
2765
+ },
2766
+ "node_modules/longest-streak": {
2767
+ "version": "3.1.0",
2768
+ "resolved": "https://registry.npmjs.org/longest-streak/-/longest-streak-3.1.0.tgz",
2769
+ "integrity": "sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==",
2770
+ "license": "MIT",
2771
+ "funding": {
2772
+ "type": "github",
2773
+ "url": "https://github.com/sponsors/wooorm"
2774
+ }
2775
+ },
2776
+ "node_modules/luxon": {
2777
+ "version": "3.7.2",
2778
+ "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.7.2.tgz",
2779
+ "integrity": "sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==",
2780
+ "license": "MIT",
2781
+ "engines": {
2782
+ "node": ">=12"
2783
+ }
2784
+ },
2785
+ "node_modules/magic-string": {
2786
+ "version": "0.30.21",
2787
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
2788
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
2789
+ "dev": true,
2790
+ "license": "MIT",
2791
+ "dependencies": {
2792
+ "@jridgewell/sourcemap-codec": "^1.5.5"
2793
+ }
2794
+ },
2795
+ "node_modules/markdown-table": {
2796
+ "version": "3.0.4",
2797
+ "resolved": "https://registry.npmjs.org/markdown-table/-/markdown-table-3.0.4.tgz",
2798
+ "integrity": "sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==",
2799
+ "license": "MIT",
2800
+ "funding": {
2801
+ "type": "github",
2802
+ "url": "https://github.com/sponsors/wooorm"
2803
+ }
2804
+ },
2805
+ "node_modules/mdast-util-find-and-replace": {
2806
+ "version": "3.0.2",
2807
+ "resolved": "https://registry.npmjs.org/mdast-util-find-and-replace/-/mdast-util-find-and-replace-3.0.2.tgz",
2808
+ "integrity": "sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==",
2809
+ "license": "MIT",
2810
+ "dependencies": {
2811
+ "@types/mdast": "^4.0.0",
2812
+ "escape-string-regexp": "^5.0.0",
2813
+ "unist-util-is": "^6.0.0",
2814
+ "unist-util-visit-parents": "^6.0.0"
2815
+ },
2816
+ "funding": {
2817
+ "type": "opencollective",
2818
+ "url": "https://opencollective.com/unified"
2819
+ }
2820
+ },
2821
+ "node_modules/mdast-util-from-markdown": {
2822
+ "version": "2.0.3",
2823
+ "resolved": "https://registry.npmjs.org/mdast-util-from-markdown/-/mdast-util-from-markdown-2.0.3.tgz",
2824
+ "integrity": "sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==",
2825
+ "license": "MIT",
2826
+ "dependencies": {
2827
+ "@types/mdast": "^4.0.0",
2828
+ "@types/unist": "^3.0.0",
2829
+ "decode-named-character-reference": "^1.0.0",
2830
+ "devlop": "^1.0.0",
2831
+ "mdast-util-to-string": "^4.0.0",
2832
+ "micromark": "^4.0.0",
2833
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
2834
+ "micromark-util-decode-string": "^2.0.0",
2835
+ "micromark-util-normalize-identifier": "^2.0.0",
2836
+ "micromark-util-symbol": "^2.0.0",
2837
+ "micromark-util-types": "^2.0.0",
2838
+ "unist-util-stringify-position": "^4.0.0"
2839
+ },
2840
+ "funding": {
2841
+ "type": "opencollective",
2842
+ "url": "https://opencollective.com/unified"
2843
+ }
2844
+ },
2845
+ "node_modules/mdast-util-gfm": {
2846
+ "version": "3.1.0",
2847
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm/-/mdast-util-gfm-3.1.0.tgz",
2848
+ "integrity": "sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==",
2849
+ "license": "MIT",
2850
+ "dependencies": {
2851
+ "mdast-util-from-markdown": "^2.0.0",
2852
+ "mdast-util-gfm-autolink-literal": "^2.0.0",
2853
+ "mdast-util-gfm-footnote": "^2.0.0",
2854
+ "mdast-util-gfm-strikethrough": "^2.0.0",
2855
+ "mdast-util-gfm-table": "^2.0.0",
2856
+ "mdast-util-gfm-task-list-item": "^2.0.0",
2857
+ "mdast-util-to-markdown": "^2.0.0"
2858
+ },
2859
+ "funding": {
2860
+ "type": "opencollective",
2861
+ "url": "https://opencollective.com/unified"
2862
+ }
2863
+ },
2864
+ "node_modules/mdast-util-gfm-autolink-literal": {
2865
+ "version": "2.0.1",
2866
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-autolink-literal/-/mdast-util-gfm-autolink-literal-2.0.1.tgz",
2867
+ "integrity": "sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==",
2868
+ "license": "MIT",
2869
+ "dependencies": {
2870
+ "@types/mdast": "^4.0.0",
2871
+ "ccount": "^2.0.0",
2872
+ "devlop": "^1.0.0",
2873
+ "mdast-util-find-and-replace": "^3.0.0",
2874
+ "micromark-util-character": "^2.0.0"
2875
+ },
2876
+ "funding": {
2877
+ "type": "opencollective",
2878
+ "url": "https://opencollective.com/unified"
2879
+ }
2880
+ },
2881
+ "node_modules/mdast-util-gfm-footnote": {
2882
+ "version": "2.1.0",
2883
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-footnote/-/mdast-util-gfm-footnote-2.1.0.tgz",
2884
+ "integrity": "sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==",
2885
+ "license": "MIT",
2886
+ "dependencies": {
2887
+ "@types/mdast": "^4.0.0",
2888
+ "devlop": "^1.1.0",
2889
+ "mdast-util-from-markdown": "^2.0.0",
2890
+ "mdast-util-to-markdown": "^2.0.0",
2891
+ "micromark-util-normalize-identifier": "^2.0.0"
2892
+ },
2893
+ "funding": {
2894
+ "type": "opencollective",
2895
+ "url": "https://opencollective.com/unified"
2896
+ }
2897
+ },
2898
+ "node_modules/mdast-util-gfm-strikethrough": {
2899
+ "version": "2.0.0",
2900
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-strikethrough/-/mdast-util-gfm-strikethrough-2.0.0.tgz",
2901
+ "integrity": "sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==",
2902
+ "license": "MIT",
2903
+ "dependencies": {
2904
+ "@types/mdast": "^4.0.0",
2905
+ "mdast-util-from-markdown": "^2.0.0",
2906
+ "mdast-util-to-markdown": "^2.0.0"
2907
+ },
2908
+ "funding": {
2909
+ "type": "opencollective",
2910
+ "url": "https://opencollective.com/unified"
2911
+ }
2912
+ },
2913
+ "node_modules/mdast-util-gfm-table": {
2914
+ "version": "2.0.0",
2915
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-table/-/mdast-util-gfm-table-2.0.0.tgz",
2916
+ "integrity": "sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==",
2917
+ "license": "MIT",
2918
+ "dependencies": {
2919
+ "@types/mdast": "^4.0.0",
2920
+ "devlop": "^1.0.0",
2921
+ "markdown-table": "^3.0.0",
2922
+ "mdast-util-from-markdown": "^2.0.0",
2923
+ "mdast-util-to-markdown": "^2.0.0"
2924
+ },
2925
+ "funding": {
2926
+ "type": "opencollective",
2927
+ "url": "https://opencollective.com/unified"
2928
+ }
2929
+ },
2930
+ "node_modules/mdast-util-gfm-task-list-item": {
2931
+ "version": "2.0.0",
2932
+ "resolved": "https://registry.npmjs.org/mdast-util-gfm-task-list-item/-/mdast-util-gfm-task-list-item-2.0.0.tgz",
2933
+ "integrity": "sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==",
2934
+ "license": "MIT",
2935
+ "dependencies": {
2936
+ "@types/mdast": "^4.0.0",
2937
+ "devlop": "^1.0.0",
2938
+ "mdast-util-from-markdown": "^2.0.0",
2939
+ "mdast-util-to-markdown": "^2.0.0"
2940
+ },
2941
+ "funding": {
2942
+ "type": "opencollective",
2943
+ "url": "https://opencollective.com/unified"
2944
+ }
2945
+ },
2946
+ "node_modules/mdast-util-mdx-expression": {
2947
+ "version": "2.0.1",
2948
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-2.0.1.tgz",
2949
+ "integrity": "sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==",
2950
+ "license": "MIT",
2951
+ "dependencies": {
2952
+ "@types/estree-jsx": "^1.0.0",
2953
+ "@types/hast": "^3.0.0",
2954
+ "@types/mdast": "^4.0.0",
2955
+ "devlop": "^1.0.0",
2956
+ "mdast-util-from-markdown": "^2.0.0",
2957
+ "mdast-util-to-markdown": "^2.0.0"
2958
+ },
2959
+ "funding": {
2960
+ "type": "opencollective",
2961
+ "url": "https://opencollective.com/unified"
2962
+ }
2963
+ },
2964
+ "node_modules/mdast-util-mdx-jsx": {
2965
+ "version": "3.2.0",
2966
+ "resolved": "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-3.2.0.tgz",
2967
+ "integrity": "sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==",
2968
+ "license": "MIT",
2969
+ "dependencies": {
2970
+ "@types/estree-jsx": "^1.0.0",
2971
+ "@types/hast": "^3.0.0",
2972
+ "@types/mdast": "^4.0.0",
2973
+ "@types/unist": "^3.0.0",
2974
+ "ccount": "^2.0.0",
2975
+ "devlop": "^1.1.0",
2976
+ "mdast-util-from-markdown": "^2.0.0",
2977
+ "mdast-util-to-markdown": "^2.0.0",
2978
+ "parse-entities": "^4.0.0",
2979
+ "stringify-entities": "^4.0.0",
2980
+ "unist-util-stringify-position": "^4.0.0",
2981
+ "vfile-message": "^4.0.0"
2982
+ },
2983
+ "funding": {
2984
+ "type": "opencollective",
2985
+ "url": "https://opencollective.com/unified"
2986
+ }
2987
+ },
2988
+ "node_modules/mdast-util-mdxjs-esm": {
2989
+ "version": "2.0.1",
2990
+ "resolved": "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-2.0.1.tgz",
2991
+ "integrity": "sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==",
2992
+ "license": "MIT",
2993
+ "dependencies": {
2994
+ "@types/estree-jsx": "^1.0.0",
2995
+ "@types/hast": "^3.0.0",
2996
+ "@types/mdast": "^4.0.0",
2997
+ "devlop": "^1.0.0",
2998
+ "mdast-util-from-markdown": "^2.0.0",
2999
+ "mdast-util-to-markdown": "^2.0.0"
3000
+ },
3001
+ "funding": {
3002
+ "type": "opencollective",
3003
+ "url": "https://opencollective.com/unified"
3004
+ }
3005
+ },
3006
+ "node_modules/mdast-util-phrasing": {
3007
+ "version": "4.1.0",
3008
+ "resolved": "https://registry.npmjs.org/mdast-util-phrasing/-/mdast-util-phrasing-4.1.0.tgz",
3009
+ "integrity": "sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==",
3010
+ "license": "MIT",
3011
+ "dependencies": {
3012
+ "@types/mdast": "^4.0.0",
3013
+ "unist-util-is": "^6.0.0"
3014
+ },
3015
+ "funding": {
3016
+ "type": "opencollective",
3017
+ "url": "https://opencollective.com/unified"
3018
+ }
3019
+ },
3020
+ "node_modules/mdast-util-to-hast": {
3021
+ "version": "13.2.1",
3022
+ "resolved": "https://registry.npmjs.org/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz",
3023
+ "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==",
3024
+ "license": "MIT",
3025
+ "dependencies": {
3026
+ "@types/hast": "^3.0.0",
3027
+ "@types/mdast": "^4.0.0",
3028
+ "@ungap/structured-clone": "^1.0.0",
3029
+ "devlop": "^1.0.0",
3030
+ "micromark-util-sanitize-uri": "^2.0.0",
3031
+ "trim-lines": "^3.0.0",
3032
+ "unist-util-position": "^5.0.0",
3033
+ "unist-util-visit": "^5.0.0",
3034
+ "vfile": "^6.0.0"
3035
+ },
3036
+ "funding": {
3037
+ "type": "opencollective",
3038
+ "url": "https://opencollective.com/unified"
3039
+ }
3040
+ },
3041
+ "node_modules/mdast-util-to-markdown": {
3042
+ "version": "2.1.2",
3043
+ "resolved": "https://registry.npmjs.org/mdast-util-to-markdown/-/mdast-util-to-markdown-2.1.2.tgz",
3044
+ "integrity": "sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==",
3045
+ "license": "MIT",
3046
+ "dependencies": {
3047
+ "@types/mdast": "^4.0.0",
3048
+ "@types/unist": "^3.0.0",
3049
+ "longest-streak": "^3.0.0",
3050
+ "mdast-util-phrasing": "^4.0.0",
3051
+ "mdast-util-to-string": "^4.0.0",
3052
+ "micromark-util-classify-character": "^2.0.0",
3053
+ "micromark-util-decode-string": "^2.0.0",
3054
+ "unist-util-visit": "^5.0.0",
3055
+ "zwitch": "^2.0.0"
3056
+ },
3057
+ "funding": {
3058
+ "type": "opencollective",
3059
+ "url": "https://opencollective.com/unified"
3060
+ }
3061
+ },
3062
+ "node_modules/mdast-util-to-string": {
3063
+ "version": "4.0.0",
3064
+ "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-4.0.0.tgz",
3065
+ "integrity": "sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==",
3066
+ "license": "MIT",
3067
+ "dependencies": {
3068
+ "@types/mdast": "^4.0.0"
3069
+ },
3070
+ "funding": {
3071
+ "type": "opencollective",
3072
+ "url": "https://opencollective.com/unified"
3073
+ }
3074
+ },
3075
+ "node_modules/micromark": {
3076
+ "version": "4.0.2",
3077
+ "resolved": "https://registry.npmjs.org/micromark/-/micromark-4.0.2.tgz",
3078
+ "integrity": "sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==",
3079
+ "funding": [
3080
+ {
3081
+ "type": "GitHub Sponsors",
3082
+ "url": "https://github.com/sponsors/unifiedjs"
3083
+ },
3084
+ {
3085
+ "type": "OpenCollective",
3086
+ "url": "https://opencollective.com/unified"
3087
+ }
3088
+ ],
3089
+ "license": "MIT",
3090
+ "dependencies": {
3091
+ "@types/debug": "^4.0.0",
3092
+ "debug": "^4.0.0",
3093
+ "decode-named-character-reference": "^1.0.0",
3094
+ "devlop": "^1.0.0",
3095
+ "micromark-core-commonmark": "^2.0.0",
3096
+ "micromark-factory-space": "^2.0.0",
3097
+ "micromark-util-character": "^2.0.0",
3098
+ "micromark-util-chunked": "^2.0.0",
3099
+ "micromark-util-combine-extensions": "^2.0.0",
3100
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
3101
+ "micromark-util-encode": "^2.0.0",
3102
+ "micromark-util-normalize-identifier": "^2.0.0",
3103
+ "micromark-util-resolve-all": "^2.0.0",
3104
+ "micromark-util-sanitize-uri": "^2.0.0",
3105
+ "micromark-util-subtokenize": "^2.0.0",
3106
+ "micromark-util-symbol": "^2.0.0",
3107
+ "micromark-util-types": "^2.0.0"
3108
+ }
3109
+ },
3110
+ "node_modules/micromark-core-commonmark": {
3111
+ "version": "2.0.3",
3112
+ "resolved": "https://registry.npmjs.org/micromark-core-commonmark/-/micromark-core-commonmark-2.0.3.tgz",
3113
+ "integrity": "sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==",
3114
+ "funding": [
3115
+ {
3116
+ "type": "GitHub Sponsors",
3117
+ "url": "https://github.com/sponsors/unifiedjs"
3118
+ },
3119
+ {
3120
+ "type": "OpenCollective",
3121
+ "url": "https://opencollective.com/unified"
3122
+ }
3123
+ ],
3124
+ "license": "MIT",
3125
+ "dependencies": {
3126
+ "decode-named-character-reference": "^1.0.0",
3127
+ "devlop": "^1.0.0",
3128
+ "micromark-factory-destination": "^2.0.0",
3129
+ "micromark-factory-label": "^2.0.0",
3130
+ "micromark-factory-space": "^2.0.0",
3131
+ "micromark-factory-title": "^2.0.0",
3132
+ "micromark-factory-whitespace": "^2.0.0",
3133
+ "micromark-util-character": "^2.0.0",
3134
+ "micromark-util-chunked": "^2.0.0",
3135
+ "micromark-util-classify-character": "^2.0.0",
3136
+ "micromark-util-html-tag-name": "^2.0.0",
3137
+ "micromark-util-normalize-identifier": "^2.0.0",
3138
+ "micromark-util-resolve-all": "^2.0.0",
3139
+ "micromark-util-subtokenize": "^2.0.0",
3140
+ "micromark-util-symbol": "^2.0.0",
3141
+ "micromark-util-types": "^2.0.0"
3142
+ }
3143
+ },
3144
+ "node_modules/micromark-extension-gfm": {
3145
+ "version": "3.0.0",
3146
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm/-/micromark-extension-gfm-3.0.0.tgz",
3147
+ "integrity": "sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==",
3148
+ "license": "MIT",
3149
+ "dependencies": {
3150
+ "micromark-extension-gfm-autolink-literal": "^2.0.0",
3151
+ "micromark-extension-gfm-footnote": "^2.0.0",
3152
+ "micromark-extension-gfm-strikethrough": "^2.0.0",
3153
+ "micromark-extension-gfm-table": "^2.0.0",
3154
+ "micromark-extension-gfm-tagfilter": "^2.0.0",
3155
+ "micromark-extension-gfm-task-list-item": "^2.0.0",
3156
+ "micromark-util-combine-extensions": "^2.0.0",
3157
+ "micromark-util-types": "^2.0.0"
3158
+ },
3159
+ "funding": {
3160
+ "type": "opencollective",
3161
+ "url": "https://opencollective.com/unified"
3162
+ }
3163
+ },
3164
+ "node_modules/micromark-extension-gfm-autolink-literal": {
3165
+ "version": "2.1.0",
3166
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-autolink-literal/-/micromark-extension-gfm-autolink-literal-2.1.0.tgz",
3167
+ "integrity": "sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==",
3168
+ "license": "MIT",
3169
+ "dependencies": {
3170
+ "micromark-util-character": "^2.0.0",
3171
+ "micromark-util-sanitize-uri": "^2.0.0",
3172
+ "micromark-util-symbol": "^2.0.0",
3173
+ "micromark-util-types": "^2.0.0"
3174
+ },
3175
+ "funding": {
3176
+ "type": "opencollective",
3177
+ "url": "https://opencollective.com/unified"
3178
+ }
3179
+ },
3180
+ "node_modules/micromark-extension-gfm-footnote": {
3181
+ "version": "2.1.0",
3182
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-footnote/-/micromark-extension-gfm-footnote-2.1.0.tgz",
3183
+ "integrity": "sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==",
3184
+ "license": "MIT",
3185
+ "dependencies": {
3186
+ "devlop": "^1.0.0",
3187
+ "micromark-core-commonmark": "^2.0.0",
3188
+ "micromark-factory-space": "^2.0.0",
3189
+ "micromark-util-character": "^2.0.0",
3190
+ "micromark-util-normalize-identifier": "^2.0.0",
3191
+ "micromark-util-sanitize-uri": "^2.0.0",
3192
+ "micromark-util-symbol": "^2.0.0",
3193
+ "micromark-util-types": "^2.0.0"
3194
+ },
3195
+ "funding": {
3196
+ "type": "opencollective",
3197
+ "url": "https://opencollective.com/unified"
3198
+ }
3199
+ },
3200
+ "node_modules/micromark-extension-gfm-strikethrough": {
3201
+ "version": "2.1.0",
3202
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-strikethrough/-/micromark-extension-gfm-strikethrough-2.1.0.tgz",
3203
+ "integrity": "sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==",
3204
+ "license": "MIT",
3205
+ "dependencies": {
3206
+ "devlop": "^1.0.0",
3207
+ "micromark-util-chunked": "^2.0.0",
3208
+ "micromark-util-classify-character": "^2.0.0",
3209
+ "micromark-util-resolve-all": "^2.0.0",
3210
+ "micromark-util-symbol": "^2.0.0",
3211
+ "micromark-util-types": "^2.0.0"
3212
+ },
3213
+ "funding": {
3214
+ "type": "opencollective",
3215
+ "url": "https://opencollective.com/unified"
3216
+ }
3217
+ },
3218
+ "node_modules/micromark-extension-gfm-table": {
3219
+ "version": "2.1.1",
3220
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-table/-/micromark-extension-gfm-table-2.1.1.tgz",
3221
+ "integrity": "sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==",
3222
+ "license": "MIT",
3223
+ "dependencies": {
3224
+ "devlop": "^1.0.0",
3225
+ "micromark-factory-space": "^2.0.0",
3226
+ "micromark-util-character": "^2.0.0",
3227
+ "micromark-util-symbol": "^2.0.0",
3228
+ "micromark-util-types": "^2.0.0"
3229
+ },
3230
+ "funding": {
3231
+ "type": "opencollective",
3232
+ "url": "https://opencollective.com/unified"
3233
+ }
3234
+ },
3235
+ "node_modules/micromark-extension-gfm-tagfilter": {
3236
+ "version": "2.0.0",
3237
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-tagfilter/-/micromark-extension-gfm-tagfilter-2.0.0.tgz",
3238
+ "integrity": "sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==",
3239
+ "license": "MIT",
3240
+ "dependencies": {
3241
+ "micromark-util-types": "^2.0.0"
3242
+ },
3243
+ "funding": {
3244
+ "type": "opencollective",
3245
+ "url": "https://opencollective.com/unified"
3246
+ }
3247
+ },
3248
+ "node_modules/micromark-extension-gfm-task-list-item": {
3249
+ "version": "2.1.0",
3250
+ "resolved": "https://registry.npmjs.org/micromark-extension-gfm-task-list-item/-/micromark-extension-gfm-task-list-item-2.1.0.tgz",
3251
+ "integrity": "sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==",
3252
+ "license": "MIT",
3253
+ "dependencies": {
3254
+ "devlop": "^1.0.0",
3255
+ "micromark-factory-space": "^2.0.0",
3256
+ "micromark-util-character": "^2.0.0",
3257
+ "micromark-util-symbol": "^2.0.0",
3258
+ "micromark-util-types": "^2.0.0"
3259
+ },
3260
+ "funding": {
3261
+ "type": "opencollective",
3262
+ "url": "https://opencollective.com/unified"
3263
+ }
3264
+ },
3265
+ "node_modules/micromark-factory-destination": {
3266
+ "version": "2.0.1",
3267
+ "resolved": "https://registry.npmjs.org/micromark-factory-destination/-/micromark-factory-destination-2.0.1.tgz",
3268
+ "integrity": "sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==",
3269
+ "funding": [
3270
+ {
3271
+ "type": "GitHub Sponsors",
3272
+ "url": "https://github.com/sponsors/unifiedjs"
3273
+ },
3274
+ {
3275
+ "type": "OpenCollective",
3276
+ "url": "https://opencollective.com/unified"
3277
+ }
3278
+ ],
3279
+ "license": "MIT",
3280
+ "dependencies": {
3281
+ "micromark-util-character": "^2.0.0",
3282
+ "micromark-util-symbol": "^2.0.0",
3283
+ "micromark-util-types": "^2.0.0"
3284
+ }
3285
+ },
3286
+ "node_modules/micromark-factory-label": {
3287
+ "version": "2.0.1",
3288
+ "resolved": "https://registry.npmjs.org/micromark-factory-label/-/micromark-factory-label-2.0.1.tgz",
3289
+ "integrity": "sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==",
3290
+ "funding": [
3291
+ {
3292
+ "type": "GitHub Sponsors",
3293
+ "url": "https://github.com/sponsors/unifiedjs"
3294
+ },
3295
+ {
3296
+ "type": "OpenCollective",
3297
+ "url": "https://opencollective.com/unified"
3298
+ }
3299
+ ],
3300
+ "license": "MIT",
3301
+ "dependencies": {
3302
+ "devlop": "^1.0.0",
3303
+ "micromark-util-character": "^2.0.0",
3304
+ "micromark-util-symbol": "^2.0.0",
3305
+ "micromark-util-types": "^2.0.0"
3306
+ }
3307
+ },
3308
+ "node_modules/micromark-factory-space": {
3309
+ "version": "2.0.1",
3310
+ "resolved": "https://registry.npmjs.org/micromark-factory-space/-/micromark-factory-space-2.0.1.tgz",
3311
+ "integrity": "sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==",
3312
+ "funding": [
3313
+ {
3314
+ "type": "GitHub Sponsors",
3315
+ "url": "https://github.com/sponsors/unifiedjs"
3316
+ },
3317
+ {
3318
+ "type": "OpenCollective",
3319
+ "url": "https://opencollective.com/unified"
3320
+ }
3321
+ ],
3322
+ "license": "MIT",
3323
+ "dependencies": {
3324
+ "micromark-util-character": "^2.0.0",
3325
+ "micromark-util-types": "^2.0.0"
3326
+ }
3327
+ },
3328
+ "node_modules/micromark-factory-title": {
3329
+ "version": "2.0.1",
3330
+ "resolved": "https://registry.npmjs.org/micromark-factory-title/-/micromark-factory-title-2.0.1.tgz",
3331
+ "integrity": "sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==",
3332
+ "funding": [
3333
+ {
3334
+ "type": "GitHub Sponsors",
3335
+ "url": "https://github.com/sponsors/unifiedjs"
3336
+ },
3337
+ {
3338
+ "type": "OpenCollective",
3339
+ "url": "https://opencollective.com/unified"
3340
+ }
3341
+ ],
3342
+ "license": "MIT",
3343
+ "dependencies": {
3344
+ "micromark-factory-space": "^2.0.0",
3345
+ "micromark-util-character": "^2.0.0",
3346
+ "micromark-util-symbol": "^2.0.0",
3347
+ "micromark-util-types": "^2.0.0"
3348
+ }
3349
+ },
3350
+ "node_modules/micromark-factory-whitespace": {
3351
+ "version": "2.0.1",
3352
+ "resolved": "https://registry.npmjs.org/micromark-factory-whitespace/-/micromark-factory-whitespace-2.0.1.tgz",
3353
+ "integrity": "sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==",
3354
+ "funding": [
3355
+ {
3356
+ "type": "GitHub Sponsors",
3357
+ "url": "https://github.com/sponsors/unifiedjs"
3358
+ },
3359
+ {
3360
+ "type": "OpenCollective",
3361
+ "url": "https://opencollective.com/unified"
3362
+ }
3363
+ ],
3364
+ "license": "MIT",
3365
+ "dependencies": {
3366
+ "micromark-factory-space": "^2.0.0",
3367
+ "micromark-util-character": "^2.0.0",
3368
+ "micromark-util-symbol": "^2.0.0",
3369
+ "micromark-util-types": "^2.0.0"
3370
+ }
3371
+ },
3372
+ "node_modules/micromark-util-character": {
3373
+ "version": "2.1.1",
3374
+ "resolved": "https://registry.npmjs.org/micromark-util-character/-/micromark-util-character-2.1.1.tgz",
3375
+ "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==",
3376
+ "funding": [
3377
+ {
3378
+ "type": "GitHub Sponsors",
3379
+ "url": "https://github.com/sponsors/unifiedjs"
3380
+ },
3381
+ {
3382
+ "type": "OpenCollective",
3383
+ "url": "https://opencollective.com/unified"
3384
+ }
3385
+ ],
3386
+ "license": "MIT",
3387
+ "dependencies": {
3388
+ "micromark-util-symbol": "^2.0.0",
3389
+ "micromark-util-types": "^2.0.0"
3390
+ }
3391
+ },
3392
+ "node_modules/micromark-util-chunked": {
3393
+ "version": "2.0.1",
3394
+ "resolved": "https://registry.npmjs.org/micromark-util-chunked/-/micromark-util-chunked-2.0.1.tgz",
3395
+ "integrity": "sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==",
3396
+ "funding": [
3397
+ {
3398
+ "type": "GitHub Sponsors",
3399
+ "url": "https://github.com/sponsors/unifiedjs"
3400
+ },
3401
+ {
3402
+ "type": "OpenCollective",
3403
+ "url": "https://opencollective.com/unified"
3404
+ }
3405
+ ],
3406
+ "license": "MIT",
3407
+ "dependencies": {
3408
+ "micromark-util-symbol": "^2.0.0"
3409
+ }
3410
+ },
3411
+ "node_modules/micromark-util-classify-character": {
3412
+ "version": "2.0.1",
3413
+ "resolved": "https://registry.npmjs.org/micromark-util-classify-character/-/micromark-util-classify-character-2.0.1.tgz",
3414
+ "integrity": "sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==",
3415
+ "funding": [
3416
+ {
3417
+ "type": "GitHub Sponsors",
3418
+ "url": "https://github.com/sponsors/unifiedjs"
3419
+ },
3420
+ {
3421
+ "type": "OpenCollective",
3422
+ "url": "https://opencollective.com/unified"
3423
+ }
3424
+ ],
3425
+ "license": "MIT",
3426
+ "dependencies": {
3427
+ "micromark-util-character": "^2.0.0",
3428
+ "micromark-util-symbol": "^2.0.0",
3429
+ "micromark-util-types": "^2.0.0"
3430
+ }
3431
+ },
3432
+ "node_modules/micromark-util-combine-extensions": {
3433
+ "version": "2.0.1",
3434
+ "resolved": "https://registry.npmjs.org/micromark-util-combine-extensions/-/micromark-util-combine-extensions-2.0.1.tgz",
3435
+ "integrity": "sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==",
3436
+ "funding": [
3437
+ {
3438
+ "type": "GitHub Sponsors",
3439
+ "url": "https://github.com/sponsors/unifiedjs"
3440
+ },
3441
+ {
3442
+ "type": "OpenCollective",
3443
+ "url": "https://opencollective.com/unified"
3444
+ }
3445
+ ],
3446
+ "license": "MIT",
3447
+ "dependencies": {
3448
+ "micromark-util-chunked": "^2.0.0",
3449
+ "micromark-util-types": "^2.0.0"
3450
+ }
3451
+ },
3452
+ "node_modules/micromark-util-decode-numeric-character-reference": {
3453
+ "version": "2.0.2",
3454
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-numeric-character-reference/-/micromark-util-decode-numeric-character-reference-2.0.2.tgz",
3455
+ "integrity": "sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==",
3456
+ "funding": [
3457
+ {
3458
+ "type": "GitHub Sponsors",
3459
+ "url": "https://github.com/sponsors/unifiedjs"
3460
+ },
3461
+ {
3462
+ "type": "OpenCollective",
3463
+ "url": "https://opencollective.com/unified"
3464
+ }
3465
+ ],
3466
+ "license": "MIT",
3467
+ "dependencies": {
3468
+ "micromark-util-symbol": "^2.0.0"
3469
+ }
3470
+ },
3471
+ "node_modules/micromark-util-decode-string": {
3472
+ "version": "2.0.1",
3473
+ "resolved": "https://registry.npmjs.org/micromark-util-decode-string/-/micromark-util-decode-string-2.0.1.tgz",
3474
+ "integrity": "sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==",
3475
+ "funding": [
3476
+ {
3477
+ "type": "GitHub Sponsors",
3478
+ "url": "https://github.com/sponsors/unifiedjs"
3479
+ },
3480
+ {
3481
+ "type": "OpenCollective",
3482
+ "url": "https://opencollective.com/unified"
3483
+ }
3484
+ ],
3485
+ "license": "MIT",
3486
+ "dependencies": {
3487
+ "decode-named-character-reference": "^1.0.0",
3488
+ "micromark-util-character": "^2.0.0",
3489
+ "micromark-util-decode-numeric-character-reference": "^2.0.0",
3490
+ "micromark-util-symbol": "^2.0.0"
3491
+ }
3492
+ },
3493
+ "node_modules/micromark-util-encode": {
3494
+ "version": "2.0.1",
3495
+ "resolved": "https://registry.npmjs.org/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz",
3496
+ "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==",
3497
+ "funding": [
3498
+ {
3499
+ "type": "GitHub Sponsors",
3500
+ "url": "https://github.com/sponsors/unifiedjs"
3501
+ },
3502
+ {
3503
+ "type": "OpenCollective",
3504
+ "url": "https://opencollective.com/unified"
3505
+ }
3506
+ ],
3507
+ "license": "MIT"
3508
+ },
3509
+ "node_modules/micromark-util-html-tag-name": {
3510
+ "version": "2.0.1",
3511
+ "resolved": "https://registry.npmjs.org/micromark-util-html-tag-name/-/micromark-util-html-tag-name-2.0.1.tgz",
3512
+ "integrity": "sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==",
3513
+ "funding": [
3514
+ {
3515
+ "type": "GitHub Sponsors",
3516
+ "url": "https://github.com/sponsors/unifiedjs"
3517
+ },
3518
+ {
3519
+ "type": "OpenCollective",
3520
+ "url": "https://opencollective.com/unified"
3521
+ }
3522
+ ],
3523
+ "license": "MIT"
3524
+ },
3525
+ "node_modules/micromark-util-normalize-identifier": {
3526
+ "version": "2.0.1",
3527
+ "resolved": "https://registry.npmjs.org/micromark-util-normalize-identifier/-/micromark-util-normalize-identifier-2.0.1.tgz",
3528
+ "integrity": "sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==",
3529
+ "funding": [
3530
+ {
3531
+ "type": "GitHub Sponsors",
3532
+ "url": "https://github.com/sponsors/unifiedjs"
3533
+ },
3534
+ {
3535
+ "type": "OpenCollective",
3536
+ "url": "https://opencollective.com/unified"
3537
+ }
3538
+ ],
3539
+ "license": "MIT",
3540
+ "dependencies": {
3541
+ "micromark-util-symbol": "^2.0.0"
3542
+ }
3543
+ },
3544
+ "node_modules/micromark-util-resolve-all": {
3545
+ "version": "2.0.1",
3546
+ "resolved": "https://registry.npmjs.org/micromark-util-resolve-all/-/micromark-util-resolve-all-2.0.1.tgz",
3547
+ "integrity": "sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==",
3548
+ "funding": [
3549
+ {
3550
+ "type": "GitHub Sponsors",
3551
+ "url": "https://github.com/sponsors/unifiedjs"
3552
+ },
3553
+ {
3554
+ "type": "OpenCollective",
3555
+ "url": "https://opencollective.com/unified"
3556
+ }
3557
+ ],
3558
+ "license": "MIT",
3559
+ "dependencies": {
3560
+ "micromark-util-types": "^2.0.0"
3561
+ }
3562
+ },
3563
+ "node_modules/micromark-util-sanitize-uri": {
3564
+ "version": "2.0.1",
3565
+ "resolved": "https://registry.npmjs.org/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz",
3566
+ "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==",
3567
+ "funding": [
3568
+ {
3569
+ "type": "GitHub Sponsors",
3570
+ "url": "https://github.com/sponsors/unifiedjs"
3571
+ },
3572
+ {
3573
+ "type": "OpenCollective",
3574
+ "url": "https://opencollective.com/unified"
3575
+ }
3576
+ ],
3577
+ "license": "MIT",
3578
+ "dependencies": {
3579
+ "micromark-util-character": "^2.0.0",
3580
+ "micromark-util-encode": "^2.0.0",
3581
+ "micromark-util-symbol": "^2.0.0"
3582
+ }
3583
+ },
3584
+ "node_modules/micromark-util-subtokenize": {
3585
+ "version": "2.1.0",
3586
+ "resolved": "https://registry.npmjs.org/micromark-util-subtokenize/-/micromark-util-subtokenize-2.1.0.tgz",
3587
+ "integrity": "sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==",
3588
+ "funding": [
3589
+ {
3590
+ "type": "GitHub Sponsors",
3591
+ "url": "https://github.com/sponsors/unifiedjs"
3592
+ },
3593
+ {
3594
+ "type": "OpenCollective",
3595
+ "url": "https://opencollective.com/unified"
3596
+ }
3597
+ ],
3598
+ "license": "MIT",
3599
+ "dependencies": {
3600
+ "devlop": "^1.0.0",
3601
+ "micromark-util-chunked": "^2.0.0",
3602
+ "micromark-util-symbol": "^2.0.0",
3603
+ "micromark-util-types": "^2.0.0"
3604
+ }
3605
+ },
3606
+ "node_modules/micromark-util-symbol": {
3607
+ "version": "2.0.1",
3608
+ "resolved": "https://registry.npmjs.org/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz",
3609
+ "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==",
3610
+ "funding": [
3611
+ {
3612
+ "type": "GitHub Sponsors",
3613
+ "url": "https://github.com/sponsors/unifiedjs"
3614
+ },
3615
+ {
3616
+ "type": "OpenCollective",
3617
+ "url": "https://opencollective.com/unified"
3618
+ }
3619
+ ],
3620
+ "license": "MIT"
3621
+ },
3622
+ "node_modules/micromark-util-types": {
3623
+ "version": "2.0.2",
3624
+ "resolved": "https://registry.npmjs.org/micromark-util-types/-/micromark-util-types-2.0.2.tgz",
3625
+ "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==",
3626
+ "funding": [
3627
+ {
3628
+ "type": "GitHub Sponsors",
3629
+ "url": "https://github.com/sponsors/unifiedjs"
3630
+ },
3631
+ {
3632
+ "type": "OpenCollective",
3633
+ "url": "https://opencollective.com/unified"
3634
+ }
3635
+ ],
3636
+ "license": "MIT"
3637
+ },
3638
+ "node_modules/ms": {
3639
+ "version": "2.1.3",
3640
+ "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
3641
+ "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
3642
+ "license": "MIT"
3643
+ },
3644
+ "node_modules/msgpackr": {
3645
+ "version": "1.11.5",
3646
+ "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.11.5.tgz",
3647
+ "integrity": "sha512-UjkUHN0yqp9RWKy0Lplhh+wlpdt9oQBYgULZOiFhV3VclSF1JnSQWZ5r9gORQlNYaUKQoR8itv7g7z1xDDuACA==",
3648
+ "license": "MIT",
3649
+ "optionalDependencies": {
3650
+ "msgpackr-extract": "^3.0.2"
3651
+ }
3652
+ },
3653
+ "node_modules/msgpackr-extract": {
3654
+ "version": "3.0.3",
3655
+ "resolved": "https://registry.npmjs.org/msgpackr-extract/-/msgpackr-extract-3.0.3.tgz",
3656
+ "integrity": "sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==",
3657
+ "hasInstallScript": true,
3658
+ "license": "MIT",
3659
+ "optional": true,
3660
+ "dependencies": {
3661
+ "node-gyp-build-optional-packages": "5.2.2"
3662
+ },
3663
+ "bin": {
3664
+ "download-msgpackr-prebuilds": "bin/download-prebuilds.js"
3665
+ },
3666
+ "optionalDependencies": {
3667
+ "@msgpackr-extract/msgpackr-extract-darwin-arm64": "3.0.3",
3668
+ "@msgpackr-extract/msgpackr-extract-darwin-x64": "3.0.3",
3669
+ "@msgpackr-extract/msgpackr-extract-linux-arm": "3.0.3",
3670
+ "@msgpackr-extract/msgpackr-extract-linux-arm64": "3.0.3",
3671
+ "@msgpackr-extract/msgpackr-extract-linux-x64": "3.0.3",
3672
+ "@msgpackr-extract/msgpackr-extract-win32-x64": "3.0.3"
3673
+ }
3674
+ },
3675
+ "node_modules/nanoid": {
3676
+ "version": "3.3.11",
3677
+ "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz",
3678
+ "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==",
3679
+ "funding": [
3680
+ {
3681
+ "type": "github",
3682
+ "url": "https://github.com/sponsors/ai"
3683
+ }
3684
+ ],
3685
+ "license": "MIT",
3686
+ "bin": {
3687
+ "nanoid": "bin/nanoid.cjs"
3688
+ },
3689
+ "engines": {
3690
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
3691
+ }
3692
+ },
3693
+ "node_modules/next": {
3694
+ "version": "15.5.12",
3695
+ "resolved": "https://registry.npmjs.org/next/-/next-15.5.12.tgz",
3696
+ "integrity": "sha512-Fi/wQ4Etlrn60rz78bebG1i1SR20QxvV8tVp6iJspjLUSHcZoeUXCt+vmWoEcza85ElZzExK/jJ/F6SvtGktjA==",
3697
+ "license": "MIT",
3698
+ "dependencies": {
3699
+ "@next/env": "15.5.12",
3700
+ "@swc/helpers": "0.5.15",
3701
+ "caniuse-lite": "^1.0.30001579",
3702
+ "postcss": "8.4.31",
3703
+ "styled-jsx": "5.1.6"
3704
+ },
3705
+ "bin": {
3706
+ "next": "dist/bin/next"
3707
+ },
3708
+ "engines": {
3709
+ "node": "^18.18.0 || ^19.8.0 || >= 20.0.0"
3710
+ },
3711
+ "optionalDependencies": {
3712
+ "@next/swc-darwin-arm64": "15.5.12",
3713
+ "@next/swc-darwin-x64": "15.5.12",
3714
+ "@next/swc-linux-arm64-gnu": "15.5.12",
3715
+ "@next/swc-linux-arm64-musl": "15.5.12",
3716
+ "@next/swc-linux-x64-gnu": "15.5.12",
3717
+ "@next/swc-linux-x64-musl": "15.5.12",
3718
+ "@next/swc-win32-arm64-msvc": "15.5.12",
3719
+ "@next/swc-win32-x64-msvc": "15.5.12",
3720
+ "sharp": "^0.34.3"
3721
+ },
3722
+ "peerDependencies": {
3723
+ "@opentelemetry/api": "^1.1.0",
3724
+ "@playwright/test": "^1.51.1",
3725
+ "babel-plugin-react-compiler": "*",
3726
+ "react": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
3727
+ "react-dom": "^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0",
3728
+ "sass": "^1.3.0"
3729
+ },
3730
+ "peerDependenciesMeta": {
3731
+ "@opentelemetry/api": {
3732
+ "optional": true
3733
+ },
3734
+ "@playwright/test": {
3735
+ "optional": true
3736
+ },
3737
+ "babel-plugin-react-compiler": {
3738
+ "optional": true
3739
+ },
3740
+ "sass": {
3741
+ "optional": true
3742
+ }
3743
+ }
3744
+ },
3745
+ "node_modules/next/node_modules/postcss": {
3746
+ "version": "8.4.31",
3747
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz",
3748
+ "integrity": "sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==",
3749
+ "funding": [
3750
+ {
3751
+ "type": "opencollective",
3752
+ "url": "https://opencollective.com/postcss/"
3753
+ },
3754
+ {
3755
+ "type": "tidelift",
3756
+ "url": "https://tidelift.com/funding/github/npm/postcss"
3757
+ },
3758
+ {
3759
+ "type": "github",
3760
+ "url": "https://github.com/sponsors/ai"
3761
+ }
3762
+ ],
3763
+ "license": "MIT",
3764
+ "dependencies": {
3765
+ "nanoid": "^3.3.6",
3766
+ "picocolors": "^1.0.0",
3767
+ "source-map-js": "^1.0.2"
3768
+ },
3769
+ "engines": {
3770
+ "node": "^10 || ^12 || >=14"
3771
+ }
3772
+ },
3773
+ "node_modules/node-abort-controller": {
3774
+ "version": "3.1.1",
3775
+ "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz",
3776
+ "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==",
3777
+ "license": "MIT"
3778
+ },
3779
+ "node_modules/node-gyp-build-optional-packages": {
3780
+ "version": "5.2.2",
3781
+ "resolved": "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.2.2.tgz",
3782
+ "integrity": "sha512-s+w+rBWnpTMwSFbaE0UXsRlg7hU4FjekKU4eyAih5T8nJuNZT1nNsskXpxmeqSK9UzkBl6UgRlnKc8hz8IEqOw==",
3783
+ "license": "MIT",
3784
+ "optional": true,
3785
+ "dependencies": {
3786
+ "detect-libc": "^2.0.1"
3787
+ },
3788
+ "bin": {
3789
+ "node-gyp-build-optional-packages": "bin.js",
3790
+ "node-gyp-build-optional-packages-optional": "optional.js",
3791
+ "node-gyp-build-optional-packages-test": "build-test.js"
3792
+ }
3793
+ },
3794
+ "node_modules/parse-entities": {
3795
+ "version": "4.0.2",
3796
+ "resolved": "https://registry.npmjs.org/parse-entities/-/parse-entities-4.0.2.tgz",
3797
+ "integrity": "sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==",
3798
+ "license": "MIT",
3799
+ "dependencies": {
3800
+ "@types/unist": "^2.0.0",
3801
+ "character-entities-legacy": "^3.0.0",
3802
+ "character-reference-invalid": "^2.0.0",
3803
+ "decode-named-character-reference": "^1.0.0",
3804
+ "is-alphanumerical": "^2.0.0",
3805
+ "is-decimal": "^2.0.0",
3806
+ "is-hexadecimal": "^2.0.0"
3807
+ },
3808
+ "funding": {
3809
+ "type": "github",
3810
+ "url": "https://github.com/sponsors/wooorm"
3811
+ }
3812
+ },
3813
+ "node_modules/parse-entities/node_modules/@types/unist": {
3814
+ "version": "2.0.11",
3815
+ "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz",
3816
+ "integrity": "sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==",
3817
+ "license": "MIT"
3818
+ },
3819
+ "node_modules/picocolors": {
3820
+ "version": "1.1.1",
3821
+ "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz",
3822
+ "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==",
3823
+ "license": "ISC"
3824
+ },
3825
+ "node_modules/postcss": {
3826
+ "version": "8.5.8",
3827
+ "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
3828
+ "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
3829
+ "dev": true,
3830
+ "funding": [
3831
+ {
3832
+ "type": "opencollective",
3833
+ "url": "https://opencollective.com/postcss/"
3834
+ },
3835
+ {
3836
+ "type": "tidelift",
3837
+ "url": "https://tidelift.com/funding/github/npm/postcss"
3838
+ },
3839
+ {
3840
+ "type": "github",
3841
+ "url": "https://github.com/sponsors/ai"
3842
+ }
3843
+ ],
3844
+ "license": "MIT",
3845
+ "dependencies": {
3846
+ "nanoid": "^3.3.11",
3847
+ "picocolors": "^1.1.1",
3848
+ "source-map-js": "^1.2.1"
3849
+ },
3850
+ "engines": {
3851
+ "node": "^10 || ^12 || >=14"
3852
+ }
3853
+ },
3854
+ "node_modules/property-information": {
3855
+ "version": "7.1.0",
3856
+ "resolved": "https://registry.npmjs.org/property-information/-/property-information-7.1.0.tgz",
3857
+ "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==",
3858
+ "license": "MIT",
3859
+ "funding": {
3860
+ "type": "github",
3861
+ "url": "https://github.com/sponsors/wooorm"
3862
+ }
3863
+ },
3864
+ "node_modules/react": {
3865
+ "version": "19.2.4",
3866
+ "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz",
3867
+ "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==",
3868
+ "license": "MIT",
3869
+ "engines": {
3870
+ "node": ">=0.10.0"
3871
+ }
3872
+ },
3873
+ "node_modules/react-dom": {
3874
+ "version": "19.2.4",
3875
+ "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-19.2.4.tgz",
3876
+ "integrity": "sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==",
3877
+ "license": "MIT",
3878
+ "dependencies": {
3879
+ "scheduler": "^0.27.0"
3880
+ },
3881
+ "peerDependencies": {
3882
+ "react": "^19.2.4"
3883
+ }
3884
+ },
3885
+ "node_modules/react-markdown": {
3886
+ "version": "10.1.0",
3887
+ "resolved": "https://registry.npmjs.org/react-markdown/-/react-markdown-10.1.0.tgz",
3888
+ "integrity": "sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==",
3889
+ "license": "MIT",
3890
+ "dependencies": {
3891
+ "@types/hast": "^3.0.0",
3892
+ "@types/mdast": "^4.0.0",
3893
+ "devlop": "^1.0.0",
3894
+ "hast-util-to-jsx-runtime": "^2.0.0",
3895
+ "html-url-attributes": "^3.0.0",
3896
+ "mdast-util-to-hast": "^13.0.0",
3897
+ "remark-parse": "^11.0.0",
3898
+ "remark-rehype": "^11.0.0",
3899
+ "unified": "^11.0.0",
3900
+ "unist-util-visit": "^5.0.0",
3901
+ "vfile": "^6.0.0"
3902
+ },
3903
+ "funding": {
3904
+ "type": "opencollective",
3905
+ "url": "https://opencollective.com/unified"
3906
+ },
3907
+ "peerDependencies": {
3908
+ "@types/react": ">=18",
3909
+ "react": ">=18"
3910
+ }
3911
+ },
3912
+ "node_modules/redis-errors": {
3913
+ "version": "1.2.0",
3914
+ "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz",
3915
+ "integrity": "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==",
3916
+ "license": "MIT",
3917
+ "engines": {
3918
+ "node": ">=4"
3919
+ }
3920
+ },
3921
+ "node_modules/redis-parser": {
3922
+ "version": "3.0.0",
3923
+ "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz",
3924
+ "integrity": "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==",
3925
+ "license": "MIT",
3926
+ "dependencies": {
3927
+ "redis-errors": "^1.0.0"
3928
+ },
3929
+ "engines": {
3930
+ "node": ">=4"
3931
+ }
3932
+ },
3933
+ "node_modules/remark-gfm": {
3934
+ "version": "4.0.1",
3935
+ "resolved": "https://registry.npmjs.org/remark-gfm/-/remark-gfm-4.0.1.tgz",
3936
+ "integrity": "sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==",
3937
+ "license": "MIT",
3938
+ "dependencies": {
3939
+ "@types/mdast": "^4.0.0",
3940
+ "mdast-util-gfm": "^3.0.0",
3941
+ "micromark-extension-gfm": "^3.0.0",
3942
+ "remark-parse": "^11.0.0",
3943
+ "remark-stringify": "^11.0.0",
3944
+ "unified": "^11.0.0"
3945
+ },
3946
+ "funding": {
3947
+ "type": "opencollective",
3948
+ "url": "https://opencollective.com/unified"
3949
+ }
3950
+ },
3951
+ "node_modules/remark-parse": {
3952
+ "version": "11.0.0",
3953
+ "resolved": "https://registry.npmjs.org/remark-parse/-/remark-parse-11.0.0.tgz",
3954
+ "integrity": "sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==",
3955
+ "license": "MIT",
3956
+ "dependencies": {
3957
+ "@types/mdast": "^4.0.0",
3958
+ "mdast-util-from-markdown": "^2.0.0",
3959
+ "micromark-util-types": "^2.0.0",
3960
+ "unified": "^11.0.0"
3961
+ },
3962
+ "funding": {
3963
+ "type": "opencollective",
3964
+ "url": "https://opencollective.com/unified"
3965
+ }
3966
+ },
3967
+ "node_modules/remark-rehype": {
3968
+ "version": "11.1.2",
3969
+ "resolved": "https://registry.npmjs.org/remark-rehype/-/remark-rehype-11.1.2.tgz",
3970
+ "integrity": "sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==",
3971
+ "license": "MIT",
3972
+ "dependencies": {
3973
+ "@types/hast": "^3.0.0",
3974
+ "@types/mdast": "^4.0.0",
3975
+ "mdast-util-to-hast": "^13.0.0",
3976
+ "unified": "^11.0.0",
3977
+ "vfile": "^6.0.0"
3978
+ },
3979
+ "funding": {
3980
+ "type": "opencollective",
3981
+ "url": "https://opencollective.com/unified"
3982
+ }
3983
+ },
3984
+ "node_modules/remark-stringify": {
3985
+ "version": "11.0.0",
3986
+ "resolved": "https://registry.npmjs.org/remark-stringify/-/remark-stringify-11.0.0.tgz",
3987
+ "integrity": "sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==",
3988
+ "license": "MIT",
3989
+ "dependencies": {
3990
+ "@types/mdast": "^4.0.0",
3991
+ "mdast-util-to-markdown": "^2.0.0",
3992
+ "unified": "^11.0.0"
3993
+ },
3994
+ "funding": {
3995
+ "type": "opencollective",
3996
+ "url": "https://opencollective.com/unified"
3997
+ }
3998
+ },
3999
+ "node_modules/require-directory": {
4000
+ "version": "2.1.1",
4001
+ "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz",
4002
+ "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==",
4003
+ "dev": true,
4004
+ "license": "MIT",
4005
+ "engines": {
4006
+ "node": ">=0.10.0"
4007
+ }
4008
+ },
4009
+ "node_modules/resolve-pkg-maps": {
4010
+ "version": "1.0.0",
4011
+ "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz",
4012
+ "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==",
4013
+ "dev": true,
4014
+ "license": "MIT",
4015
+ "funding": {
4016
+ "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1"
4017
+ }
4018
+ },
4019
+ "node_modules/rxjs": {
4020
+ "version": "7.8.2",
4021
+ "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz",
4022
+ "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==",
4023
+ "dev": true,
4024
+ "license": "Apache-2.0",
4025
+ "dependencies": {
4026
+ "tslib": "^2.1.0"
4027
+ }
4028
+ },
4029
+ "node_modules/scheduler": {
4030
+ "version": "0.27.0",
4031
+ "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.27.0.tgz",
4032
+ "integrity": "sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==",
4033
+ "license": "MIT"
4034
+ },
4035
+ "node_modules/section-matter": {
4036
+ "version": "1.0.0",
4037
+ "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz",
4038
+ "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==",
4039
+ "license": "MIT",
4040
+ "dependencies": {
4041
+ "extend-shallow": "^2.0.1",
4042
+ "kind-of": "^6.0.0"
4043
+ },
4044
+ "engines": {
4045
+ "node": ">=4"
4046
+ }
4047
+ },
4048
+ "node_modules/semver": {
4049
+ "version": "7.7.4",
4050
+ "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz",
4051
+ "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==",
4052
+ "license": "ISC",
4053
+ "bin": {
4054
+ "semver": "bin/semver.js"
4055
+ },
4056
+ "engines": {
4057
+ "node": ">=10"
4058
+ }
4059
+ },
4060
+ "node_modules/sharp": {
4061
+ "version": "0.34.5",
4062
+ "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.34.5.tgz",
4063
+ "integrity": "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==",
4064
+ "hasInstallScript": true,
4065
+ "license": "Apache-2.0",
4066
+ "optional": true,
4067
+ "dependencies": {
4068
+ "@img/colour": "^1.0.0",
4069
+ "detect-libc": "^2.1.2",
4070
+ "semver": "^7.7.3"
4071
+ },
4072
+ "engines": {
4073
+ "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
4074
+ },
4075
+ "funding": {
4076
+ "url": "https://opencollective.com/libvips"
4077
+ },
4078
+ "optionalDependencies": {
4079
+ "@img/sharp-darwin-arm64": "0.34.5",
4080
+ "@img/sharp-darwin-x64": "0.34.5",
4081
+ "@img/sharp-libvips-darwin-arm64": "1.2.4",
4082
+ "@img/sharp-libvips-darwin-x64": "1.2.4",
4083
+ "@img/sharp-libvips-linux-arm": "1.2.4",
4084
+ "@img/sharp-libvips-linux-arm64": "1.2.4",
4085
+ "@img/sharp-libvips-linux-ppc64": "1.2.4",
4086
+ "@img/sharp-libvips-linux-riscv64": "1.2.4",
4087
+ "@img/sharp-libvips-linux-s390x": "1.2.4",
4088
+ "@img/sharp-libvips-linux-x64": "1.2.4",
4089
+ "@img/sharp-libvips-linuxmusl-arm64": "1.2.4",
4090
+ "@img/sharp-libvips-linuxmusl-x64": "1.2.4",
4091
+ "@img/sharp-linux-arm": "0.34.5",
4092
+ "@img/sharp-linux-arm64": "0.34.5",
4093
+ "@img/sharp-linux-ppc64": "0.34.5",
4094
+ "@img/sharp-linux-riscv64": "0.34.5",
4095
+ "@img/sharp-linux-s390x": "0.34.5",
4096
+ "@img/sharp-linux-x64": "0.34.5",
4097
+ "@img/sharp-linuxmusl-arm64": "0.34.5",
4098
+ "@img/sharp-linuxmusl-x64": "0.34.5",
4099
+ "@img/sharp-wasm32": "0.34.5",
4100
+ "@img/sharp-win32-arm64": "0.34.5",
4101
+ "@img/sharp-win32-ia32": "0.34.5",
4102
+ "@img/sharp-win32-x64": "0.34.5"
4103
+ }
4104
+ },
4105
+ "node_modules/shell-quote": {
4106
+ "version": "1.8.3",
4107
+ "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.3.tgz",
4108
+ "integrity": "sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==",
4109
+ "dev": true,
4110
+ "license": "MIT",
4111
+ "engines": {
4112
+ "node": ">= 0.4"
4113
+ },
4114
+ "funding": {
4115
+ "url": "https://github.com/sponsors/ljharb"
4116
+ }
4117
+ },
4118
+ "node_modules/source-map-js": {
4119
+ "version": "1.2.1",
4120
+ "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz",
4121
+ "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==",
4122
+ "license": "BSD-3-Clause",
4123
+ "engines": {
4124
+ "node": ">=0.10.0"
4125
+ }
4126
+ },
4127
+ "node_modules/space-separated-tokens": {
4128
+ "version": "2.0.2",
4129
+ "resolved": "https://registry.npmjs.org/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz",
4130
+ "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==",
4131
+ "license": "MIT",
4132
+ "funding": {
4133
+ "type": "github",
4134
+ "url": "https://github.com/sponsors/wooorm"
4135
+ }
4136
+ },
4137
+ "node_modules/sprintf-js": {
4138
+ "version": "1.0.3",
4139
+ "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
4140
+ "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==",
4141
+ "license": "BSD-3-Clause"
4142
+ },
4143
+ "node_modules/standard-as-callback": {
4144
+ "version": "2.1.0",
4145
+ "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz",
4146
+ "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==",
4147
+ "license": "MIT"
4148
+ },
4149
+ "node_modules/string-width": {
4150
+ "version": "4.2.3",
4151
+ "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz",
4152
+ "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==",
4153
+ "dev": true,
4154
+ "license": "MIT",
4155
+ "dependencies": {
4156
+ "emoji-regex": "^8.0.0",
4157
+ "is-fullwidth-code-point": "^3.0.0",
4158
+ "strip-ansi": "^6.0.1"
4159
+ },
4160
+ "engines": {
4161
+ "node": ">=8"
4162
+ }
4163
+ },
4164
+ "node_modules/stringify-entities": {
4165
+ "version": "4.0.4",
4166
+ "resolved": "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz",
4167
+ "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==",
4168
+ "license": "MIT",
4169
+ "dependencies": {
4170
+ "character-entities-html4": "^2.0.0",
4171
+ "character-entities-legacy": "^3.0.0"
4172
+ },
4173
+ "funding": {
4174
+ "type": "github",
4175
+ "url": "https://github.com/sponsors/wooorm"
4176
+ }
4177
+ },
4178
+ "node_modules/strip-ansi": {
4179
+ "version": "6.0.1",
4180
+ "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz",
4181
+ "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==",
4182
+ "dev": true,
4183
+ "license": "MIT",
4184
+ "dependencies": {
4185
+ "ansi-regex": "^5.0.1"
4186
+ },
4187
+ "engines": {
4188
+ "node": ">=8"
4189
+ }
4190
+ },
4191
+ "node_modules/strip-bom-string": {
4192
+ "version": "1.0.0",
4193
+ "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz",
4194
+ "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==",
4195
+ "license": "MIT",
4196
+ "engines": {
4197
+ "node": ">=0.10.0"
4198
+ }
4199
+ },
4200
+ "node_modules/style-to-js": {
4201
+ "version": "1.1.21",
4202
+ "resolved": "https://registry.npmjs.org/style-to-js/-/style-to-js-1.1.21.tgz",
4203
+ "integrity": "sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==",
4204
+ "license": "MIT",
4205
+ "dependencies": {
4206
+ "style-to-object": "1.0.14"
4207
+ }
4208
+ },
4209
+ "node_modules/style-to-object": {
4210
+ "version": "1.0.14",
4211
+ "resolved": "https://registry.npmjs.org/style-to-object/-/style-to-object-1.0.14.tgz",
4212
+ "integrity": "sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==",
4213
+ "license": "MIT",
4214
+ "dependencies": {
4215
+ "inline-style-parser": "0.2.7"
4216
+ }
4217
+ },
4218
+ "node_modules/styled-jsx": {
4219
+ "version": "5.1.6",
4220
+ "resolved": "https://registry.npmjs.org/styled-jsx/-/styled-jsx-5.1.6.tgz",
4221
+ "integrity": "sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==",
4222
+ "license": "MIT",
4223
+ "dependencies": {
4224
+ "client-only": "0.0.1"
4225
+ },
4226
+ "engines": {
4227
+ "node": ">= 12.0.0"
4228
+ },
4229
+ "peerDependencies": {
4230
+ "react": ">= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0"
4231
+ },
4232
+ "peerDependenciesMeta": {
4233
+ "@babel/core": {
4234
+ "optional": true
4235
+ },
4236
+ "babel-plugin-macros": {
4237
+ "optional": true
4238
+ }
4239
+ }
4240
+ },
4241
+ "node_modules/supports-color": {
4242
+ "version": "8.1.1",
4243
+ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz",
4244
+ "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==",
4245
+ "dev": true,
4246
+ "license": "MIT",
4247
+ "dependencies": {
4248
+ "has-flag": "^4.0.0"
4249
+ },
4250
+ "engines": {
4251
+ "node": ">=10"
4252
+ },
4253
+ "funding": {
4254
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
4255
+ }
4256
+ },
4257
+ "node_modules/tailwindcss": {
4258
+ "version": "4.2.1",
4259
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.1.tgz",
4260
+ "integrity": "sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==",
4261
+ "dev": true,
4262
+ "license": "MIT"
4263
+ },
4264
+ "node_modules/tapable": {
4265
+ "version": "2.3.0",
4266
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
4267
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
4268
+ "dev": true,
4269
+ "license": "MIT",
4270
+ "engines": {
4271
+ "node": ">=6"
4272
+ },
4273
+ "funding": {
4274
+ "type": "opencollective",
4275
+ "url": "https://opencollective.com/webpack"
4276
+ }
4277
+ },
4278
+ "node_modules/tree-kill": {
4279
+ "version": "1.2.2",
4280
+ "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz",
4281
+ "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==",
4282
+ "dev": true,
4283
+ "license": "MIT",
4284
+ "bin": {
4285
+ "tree-kill": "cli.js"
4286
+ }
4287
+ },
4288
+ "node_modules/trim-lines": {
4289
+ "version": "3.0.1",
4290
+ "resolved": "https://registry.npmjs.org/trim-lines/-/trim-lines-3.0.1.tgz",
4291
+ "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==",
4292
+ "license": "MIT",
4293
+ "funding": {
4294
+ "type": "github",
4295
+ "url": "https://github.com/sponsors/wooorm"
4296
+ }
4297
+ },
4298
+ "node_modules/trough": {
4299
+ "version": "2.2.0",
4300
+ "resolved": "https://registry.npmjs.org/trough/-/trough-2.2.0.tgz",
4301
+ "integrity": "sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==",
4302
+ "license": "MIT",
4303
+ "funding": {
4304
+ "type": "github",
4305
+ "url": "https://github.com/sponsors/wooorm"
4306
+ }
4307
+ },
4308
+ "node_modules/tslib": {
4309
+ "version": "2.8.1",
4310
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
4311
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
4312
+ "license": "0BSD"
4313
+ },
4314
+ "node_modules/tsx": {
4315
+ "version": "4.21.0",
4316
+ "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz",
4317
+ "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==",
4318
+ "dev": true,
4319
+ "license": "MIT",
4320
+ "dependencies": {
4321
+ "esbuild": "~0.27.0",
4322
+ "get-tsconfig": "^4.7.5"
4323
+ },
4324
+ "bin": {
4325
+ "tsx": "dist/cli.mjs"
4326
+ },
4327
+ "engines": {
4328
+ "node": ">=18.0.0"
4329
+ },
4330
+ "optionalDependencies": {
4331
+ "fsevents": "~2.3.3"
4332
+ }
4333
+ },
4334
+ "node_modules/typescript": {
4335
+ "version": "5.9.3",
4336
+ "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
4337
+ "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
4338
+ "dev": true,
4339
+ "license": "Apache-2.0",
4340
+ "bin": {
4341
+ "tsc": "bin/tsc",
4342
+ "tsserver": "bin/tsserver"
4343
+ },
4344
+ "engines": {
4345
+ "node": ">=14.17"
4346
+ }
4347
+ },
4348
+ "node_modules/undici-types": {
4349
+ "version": "6.21.0",
4350
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
4351
+ "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
4352
+ "license": "MIT"
4353
+ },
4354
+ "node_modules/unified": {
4355
+ "version": "11.0.5",
4356
+ "resolved": "https://registry.npmjs.org/unified/-/unified-11.0.5.tgz",
4357
+ "integrity": "sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==",
4358
+ "license": "MIT",
4359
+ "dependencies": {
4360
+ "@types/unist": "^3.0.0",
4361
+ "bail": "^2.0.0",
4362
+ "devlop": "^1.0.0",
4363
+ "extend": "^3.0.0",
4364
+ "is-plain-obj": "^4.0.0",
4365
+ "trough": "^2.0.0",
4366
+ "vfile": "^6.0.0"
4367
+ },
4368
+ "funding": {
4369
+ "type": "opencollective",
4370
+ "url": "https://opencollective.com/unified"
4371
+ }
4372
+ },
4373
+ "node_modules/unist-util-is": {
4374
+ "version": "6.0.1",
4375
+ "resolved": "https://registry.npmjs.org/unist-util-is/-/unist-util-is-6.0.1.tgz",
4376
+ "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==",
4377
+ "license": "MIT",
4378
+ "dependencies": {
4379
+ "@types/unist": "^3.0.0"
4380
+ },
4381
+ "funding": {
4382
+ "type": "opencollective",
4383
+ "url": "https://opencollective.com/unified"
4384
+ }
4385
+ },
4386
+ "node_modules/unist-util-position": {
4387
+ "version": "5.0.0",
4388
+ "resolved": "https://registry.npmjs.org/unist-util-position/-/unist-util-position-5.0.0.tgz",
4389
+ "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==",
4390
+ "license": "MIT",
4391
+ "dependencies": {
4392
+ "@types/unist": "^3.0.0"
4393
+ },
4394
+ "funding": {
4395
+ "type": "opencollective",
4396
+ "url": "https://opencollective.com/unified"
4397
+ }
4398
+ },
4399
+ "node_modules/unist-util-stringify-position": {
4400
+ "version": "4.0.0",
4401
+ "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz",
4402
+ "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==",
4403
+ "license": "MIT",
4404
+ "dependencies": {
4405
+ "@types/unist": "^3.0.0"
4406
+ },
4407
+ "funding": {
4408
+ "type": "opencollective",
4409
+ "url": "https://opencollective.com/unified"
4410
+ }
4411
+ },
4412
+ "node_modules/unist-util-visit": {
4413
+ "version": "5.1.0",
4414
+ "resolved": "https://registry.npmjs.org/unist-util-visit/-/unist-util-visit-5.1.0.tgz",
4415
+ "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==",
4416
+ "license": "MIT",
4417
+ "dependencies": {
4418
+ "@types/unist": "^3.0.0",
4419
+ "unist-util-is": "^6.0.0",
4420
+ "unist-util-visit-parents": "^6.0.0"
4421
+ },
4422
+ "funding": {
4423
+ "type": "opencollective",
4424
+ "url": "https://opencollective.com/unified"
4425
+ }
4426
+ },
4427
+ "node_modules/unist-util-visit-parents": {
4428
+ "version": "6.0.2",
4429
+ "resolved": "https://registry.npmjs.org/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz",
4430
+ "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==",
4431
+ "license": "MIT",
4432
+ "dependencies": {
4433
+ "@types/unist": "^3.0.0",
4434
+ "unist-util-is": "^6.0.0"
4435
+ },
4436
+ "funding": {
4437
+ "type": "opencollective",
4438
+ "url": "https://opencollective.com/unified"
4439
+ }
4440
+ },
4441
+ "node_modules/uuid": {
4442
+ "version": "11.1.0",
4443
+ "resolved": "https://registry.npmjs.org/uuid/-/uuid-11.1.0.tgz",
4444
+ "integrity": "sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==",
4445
+ "funding": [
4446
+ "https://github.com/sponsors/broofa",
4447
+ "https://github.com/sponsors/ctavan"
4448
+ ],
4449
+ "license": "MIT",
4450
+ "bin": {
4451
+ "uuid": "dist/esm/bin/uuid"
4452
+ }
4453
+ },
4454
+ "node_modules/vfile": {
4455
+ "version": "6.0.3",
4456
+ "resolved": "https://registry.npmjs.org/vfile/-/vfile-6.0.3.tgz",
4457
+ "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==",
4458
+ "license": "MIT",
4459
+ "dependencies": {
4460
+ "@types/unist": "^3.0.0",
4461
+ "vfile-message": "^4.0.0"
4462
+ },
4463
+ "funding": {
4464
+ "type": "opencollective",
4465
+ "url": "https://opencollective.com/unified"
4466
+ }
4467
+ },
4468
+ "node_modules/vfile-message": {
4469
+ "version": "4.0.3",
4470
+ "resolved": "https://registry.npmjs.org/vfile-message/-/vfile-message-4.0.3.tgz",
4471
+ "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==",
4472
+ "license": "MIT",
4473
+ "dependencies": {
4474
+ "@types/unist": "^3.0.0",
4475
+ "unist-util-stringify-position": "^4.0.0"
4476
+ },
4477
+ "funding": {
4478
+ "type": "opencollective",
4479
+ "url": "https://opencollective.com/unified"
4480
+ }
4481
+ },
4482
+ "node_modules/wrap-ansi": {
4483
+ "version": "7.0.0",
4484
+ "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz",
4485
+ "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==",
4486
+ "dev": true,
4487
+ "license": "MIT",
4488
+ "dependencies": {
4489
+ "ansi-styles": "^4.0.0",
4490
+ "string-width": "^4.1.0",
4491
+ "strip-ansi": "^6.0.0"
4492
+ },
4493
+ "engines": {
4494
+ "node": ">=10"
4495
+ },
4496
+ "funding": {
4497
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
4498
+ }
4499
+ },
4500
+ "node_modules/ws": {
4501
+ "version": "8.19.0",
4502
+ "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz",
4503
+ "integrity": "sha512-blAT2mjOEIi0ZzruJfIhb3nps74PRWTCz1IjglWEEpQl5XS/UNama6u2/rjFkDDouqr4L67ry+1aGIALViWjDg==",
4504
+ "license": "MIT",
4505
+ "engines": {
4506
+ "node": ">=10.0.0"
4507
+ },
4508
+ "peerDependencies": {
4509
+ "bufferutil": "^4.0.1",
4510
+ "utf-8-validate": ">=5.0.2"
4511
+ },
4512
+ "peerDependenciesMeta": {
4513
+ "bufferutil": {
4514
+ "optional": true
4515
+ },
4516
+ "utf-8-validate": {
4517
+ "optional": true
4518
+ }
4519
+ }
4520
+ },
4521
+ "node_modules/y18n": {
4522
+ "version": "5.0.8",
4523
+ "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz",
4524
+ "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==",
4525
+ "dev": true,
4526
+ "license": "ISC",
4527
+ "engines": {
4528
+ "node": ">=10"
4529
+ }
4530
+ },
4531
+ "node_modules/yargs": {
4532
+ "version": "17.7.2",
4533
+ "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz",
4534
+ "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==",
4535
+ "dev": true,
4536
+ "license": "MIT",
4537
+ "dependencies": {
4538
+ "cliui": "^8.0.1",
4539
+ "escalade": "^3.1.1",
4540
+ "get-caller-file": "^2.0.5",
4541
+ "require-directory": "^2.1.1",
4542
+ "string-width": "^4.2.3",
4543
+ "y18n": "^5.0.5",
4544
+ "yargs-parser": "^21.1.1"
4545
+ },
4546
+ "engines": {
4547
+ "node": ">=12"
4548
+ }
4549
+ },
4550
+ "node_modules/yargs-parser": {
4551
+ "version": "21.1.1",
4552
+ "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz",
4553
+ "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==",
4554
+ "dev": true,
4555
+ "license": "ISC",
4556
+ "engines": {
4557
+ "node": ">=12"
4558
+ }
4559
+ },
4560
+ "node_modules/zod": {
4561
+ "version": "4.3.6",
4562
+ "resolved": "https://registry.npmjs.org/zod/-/zod-4.3.6.tgz",
4563
+ "integrity": "sha512-rftlrkhHZOcjDwkGlnUtZZkvaPHCsDATp4pGpuOOMDaTdDDXF91wuVDJoWoPsKX/3YPQ5fHuF3STjcYyKr+Qhg==",
4564
+ "license": "MIT",
4565
+ "peer": true,
4566
+ "funding": {
4567
+ "url": "https://github.com/sponsors/colinhacks"
4568
+ }
4569
+ },
4570
+ "node_modules/zwitch": {
4571
+ "version": "2.0.4",
4572
+ "resolved": "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz",
4573
+ "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==",
4574
+ "license": "MIT",
4575
+ "funding": {
4576
+ "type": "github",
4577
+ "url": "https://github.com/sponsors/wooorm"
4578
+ }
4579
+ }
4580
+ }
4581
+ }