@desplega.ai/agent-swarm 1.49.0 → 1.52.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 (547) hide show
  1. package/README.md +1 -1
  2. package/openapi.json +2070 -728
  3. package/package.json +10 -1
  4. package/src/agentmail/handlers.ts +65 -10
  5. package/src/agentmail/templates.ts +111 -0
  6. package/src/be/db.ts +1233 -7
  7. package/src/be/migrations/014_prompt_templates.sql +33 -0
  8. package/src/be/migrations/015_workflow_workspace.sql +3 -0
  9. package/src/be/migrations/016_active_session_runner_session.sql +4 -0
  10. package/src/be/migrations/017_channel_activity_cursors.sql +6 -0
  11. package/src/be/migrations/018_fix_seed_double_version.sql +30 -0
  12. package/src/be/migrations/019_skills.sql +65 -0
  13. package/src/be/migrations/020_approval_requests.sql +41 -0
  14. package/src/be/seed.ts +62 -0
  15. package/src/be/skill-parser.ts +70 -0
  16. package/src/be/skill-sync.ts +106 -0
  17. package/src/commands/runner.ts +320 -132
  18. package/src/commands/templates.ts +172 -0
  19. package/src/github/handlers.ts +292 -77
  20. package/src/github/mentions-aliases.test.ts +73 -0
  21. package/src/github/mentions.test.ts +3 -3
  22. package/src/github/mentions.ts +32 -6
  23. package/src/github/templates.ts +398 -0
  24. package/src/gitlab/handlers.ts +63 -22
  25. package/src/gitlab/templates.ts +140 -0
  26. package/src/heartbeat/heartbeat.ts +19 -10
  27. package/src/heartbeat/templates.ts +30 -0
  28. package/src/http/active-sessions.ts +27 -0
  29. package/src/http/approval-requests.ts +247 -0
  30. package/src/http/config.ts +3 -3
  31. package/src/http/index.ts +9 -2
  32. package/src/http/poll.ts +135 -14
  33. package/src/http/prompt-templates.ts +412 -0
  34. package/src/http/schedules.ts +35 -0
  35. package/src/http/skills.ts +479 -0
  36. package/src/http/workflows.ts +8 -0
  37. package/src/linear/sync.ts +28 -4
  38. package/src/linear/templates.ts +47 -0
  39. package/src/prompts/base-prompt.ts +41 -490
  40. package/src/prompts/registry.ts +57 -0
  41. package/src/prompts/resolver.ts +296 -0
  42. package/src/prompts/session-templates.ts +604 -0
  43. package/src/providers/claude-adapter.ts +15 -2
  44. package/src/providers/pi-mono-extension.ts +5 -1
  45. package/src/scheduler/scheduler.ts +125 -91
  46. package/src/server.ts +44 -0
  47. package/src/slack/assistant.ts +7 -4
  48. package/src/slack/channel-activity.ts +177 -0
  49. package/src/slack/handlers.ts +21 -6
  50. package/src/slack/templates.ts +55 -0
  51. package/src/tests/approval-requests.test.ts +735 -0
  52. package/src/tests/artifact-sdk.test.ts +12 -12
  53. package/src/tests/base-prompt.test.ts +49 -49
  54. package/src/tests/channel-activity.test.ts +363 -0
  55. package/src/tests/heartbeat.test.ts +1 -0
  56. package/src/tests/linear-webhook.test.ts +7 -3
  57. package/src/tests/pool-session-logs.test.ts +199 -0
  58. package/src/tests/prompt-template-github.test.ts +682 -0
  59. package/src/tests/prompt-template-remaining.test.ts +504 -0
  60. package/src/tests/prompt-template-resolver.test.ts +621 -0
  61. package/src/tests/prompt-template-session.test.ts +363 -0
  62. package/src/tests/prompt-templates-db.test.ts +616 -0
  63. package/src/tests/self-improvement.test.ts +8 -7
  64. package/src/tests/skill-parser.test.ts +178 -0
  65. package/src/tests/skill-sync.test.ts +171 -0
  66. package/src/tests/slack-metadata-inheritance.test.ts +1 -1
  67. package/src/tests/slack-thread-followups.test.ts +1 -1
  68. package/src/tests/structured-output.test.ts +0 -4
  69. package/src/tests/tool-annotations.test.ts +2 -1
  70. package/src/tests/update-profile-agentid.test.ts +248 -0
  71. package/src/tests/update-profile-auth.test.ts +195 -0
  72. package/src/tests/workflow-async-v2.test.ts +126 -4
  73. package/src/tests/workflow-definition-validation.test.ts +76 -0
  74. package/src/tests/workflow-executors.test.ts +4 -2
  75. package/src/tests/workflow-retry-v2.test.ts +1 -1
  76. package/src/tests/workflow-schedule-trigger.test.ts +104 -0
  77. package/src/tests/workflow-workspace.test.ts +272 -0
  78. package/src/tools/prompt-templates/delete.ts +86 -0
  79. package/src/tools/prompt-templates/get.ts +89 -0
  80. package/src/tools/prompt-templates/index.ts +5 -0
  81. package/src/tools/prompt-templates/list.ts +95 -0
  82. package/src/tools/prompt-templates/preview.ts +84 -0
  83. package/src/tools/prompt-templates/set.ts +117 -0
  84. package/src/tools/request-human-input.ts +106 -0
  85. package/src/tools/skills/index.ts +11 -0
  86. package/src/tools/skills/skill-create.ts +105 -0
  87. package/src/tools/skills/skill-delete.ts +67 -0
  88. package/src/tools/skills/skill-get.ts +75 -0
  89. package/src/tools/skills/skill-install-remote.ts +152 -0
  90. package/src/tools/skills/skill-install.ts +101 -0
  91. package/src/tools/skills/skill-list.ts +77 -0
  92. package/src/tools/skills/skill-publish.ts +123 -0
  93. package/src/tools/skills/skill-search.ts +43 -0
  94. package/src/tools/skills/skill-sync-remote.ts +128 -0
  95. package/src/tools/skills/skill-uninstall.ts +60 -0
  96. package/src/tools/skills/skill-update.ts +128 -0
  97. package/src/tools/store-progress.ts +22 -4
  98. package/src/tools/task-action.ts +20 -0
  99. package/src/tools/templates.ts +53 -0
  100. package/src/tools/tool-config.ts +23 -0
  101. package/src/tools/update-profile.ts +106 -34
  102. package/src/tools/workflows/create-workflow.ts +19 -1
  103. package/src/tools/workflows/update-workflow.ts +16 -1
  104. package/src/types.ts +109 -2
  105. package/src/workflows/definition.ts +30 -12
  106. package/src/workflows/engine.ts +40 -14
  107. package/src/workflows/executors/agent-task.ts +14 -3
  108. package/src/workflows/executors/human-in-the-loop.ts +160 -0
  109. package/src/workflows/executors/registry.ts +2 -0
  110. package/src/workflows/index.ts +1 -1
  111. package/src/workflows/recovery.ts +72 -0
  112. package/src/workflows/resume.ts +162 -12
  113. package/src/workflows/triggers.ts +31 -2
  114. package/src/workflows/version.ts +2 -0
  115. package/.claude/settings.json +0 -84
  116. package/.claude/settings.local.json +0 -117
  117. package/.dockerignore +0 -61
  118. package/.editorconfig +0 -15
  119. package/.entire/settings.json +0 -4
  120. package/.env.docker.example +0 -56
  121. package/.env.example +0 -78
  122. package/.github/ISSUE_TEMPLATE/bug_report.yml +0 -78
  123. package/.github/ISSUE_TEMPLATE/community-template.yml +0 -77
  124. package/.github/ISSUE_TEMPLATE/config.yml +0 -8
  125. package/.github/ISSUE_TEMPLATE/feature_request.yml +0 -60
  126. package/.github/PULL_REQUEST_TEMPLATE/community-template.md +0 -29
  127. package/.github/workflows/ci.yml +0 -52
  128. package/.github/workflows/docker-and-deploy.yml +0 -132
  129. package/.github/workflows/merge-gate.yml +0 -233
  130. package/.opencode/plugins/entire.ts +0 -133
  131. package/.superset/config.json +0 -6
  132. package/.wts-config.json +0 -4
  133. package/.wts-setup.ts +0 -171
  134. package/CHANGELOG.md +0 -447
  135. package/CLAUDE.md +0 -521
  136. package/CONTRIBUTING.md +0 -315
  137. package/DEPLOYMENT.md +0 -622
  138. package/Dockerfile +0 -65
  139. package/Dockerfile.worker +0 -189
  140. package/MCP.md +0 -841
  141. package/UI.md +0 -40
  142. package/api-entrypoint.sh +0 -56
  143. package/assets/agent-swarm-logo-orange.png +0 -0
  144. package/assets/agent-swarm-logo.png +0 -0
  145. package/assets/agent-swarm.mp4 +0 -0
  146. package/assets/agent-swarm.png +0 -0
  147. package/biome.json +0 -39
  148. package/deploy/DEPLOY.md +0 -60
  149. package/deploy/agent-swarm.service +0 -17
  150. package/deploy/docker-push.ts +0 -30
  151. package/deploy/install.ts +0 -85
  152. package/deploy/prod-db.ts +0 -42
  153. package/deploy/uninstall.ts +0 -12
  154. package/deploy/update.ts +0 -21
  155. package/depot.json +0 -1
  156. package/docker-compose.example.yml +0 -350
  157. package/docker-compose.local.yml +0 -119
  158. package/docker-entrypoint.sh +0 -632
  159. package/docs-site/app/api/search/route.ts +0 -4
  160. package/docs-site/app/docs/[[...slug]]/page.tsx +0 -87
  161. package/docs-site/app/docs/layout.tsx +0 -12
  162. package/docs-site/app/globals.css +0 -24
  163. package/docs-site/app/layout.config.tsx +0 -34
  164. package/docs-site/app/layout.tsx +0 -119
  165. package/docs-site/app/llms-full.txt/route.ts +0 -11
  166. package/docs-site/app/llms.mdx/docs/[[...slug]]/route.ts +0 -24
  167. package/docs-site/app/llms.txt/route.ts +0 -8
  168. package/docs-site/app/page.tsx +0 -5
  169. package/docs-site/app/robots.ts +0 -13
  170. package/docs-site/app/sitemap.ts +0 -37
  171. package/docs-site/components/api-page.client.tsx +0 -4
  172. package/docs-site/components/api-page.tsx +0 -7
  173. package/docs-site/components/mdx/mermaid.tsx +0 -55
  174. package/docs-site/content/docs/(documentation)/architecture/agents.mdx +0 -117
  175. package/docs-site/content/docs/(documentation)/architecture/hooks.mdx +0 -77
  176. package/docs-site/content/docs/(documentation)/architecture/memory.mdx +0 -96
  177. package/docs-site/content/docs/(documentation)/architecture/meta.json +0 -4
  178. package/docs-site/content/docs/(documentation)/architecture/overview.mdx +0 -172
  179. package/docs-site/content/docs/(documentation)/concepts/epics.mdx +0 -98
  180. package/docs-site/content/docs/(documentation)/concepts/meta.json +0 -4
  181. package/docs-site/content/docs/(documentation)/concepts/scheduling.mdx +0 -136
  182. package/docs-site/content/docs/(documentation)/concepts/services.mdx +0 -104
  183. package/docs-site/content/docs/(documentation)/concepts/task-lifecycle.mdx +0 -148
  184. package/docs-site/content/docs/(documentation)/concepts/workflows.mdx +0 -209
  185. package/docs-site/content/docs/(documentation)/contributing.mdx +0 -158
  186. package/docs-site/content/docs/(documentation)/getting-started.mdx +0 -157
  187. package/docs-site/content/docs/(documentation)/guides/agentmail-integration.mdx +0 -79
  188. package/docs-site/content/docs/(documentation)/guides/deployment.mdx +0 -171
  189. package/docs-site/content/docs/(documentation)/guides/github-integration.mdx +0 -81
  190. package/docs-site/content/docs/(documentation)/guides/gitlab-integration.mdx +0 -93
  191. package/docs-site/content/docs/(documentation)/guides/linear-integration.mdx +0 -98
  192. package/docs-site/content/docs/(documentation)/guides/meta.json +0 -13
  193. package/docs-site/content/docs/(documentation)/guides/sentry-integration.mdx +0 -52
  194. package/docs-site/content/docs/(documentation)/guides/slack-integration.mdx +0 -179
  195. package/docs-site/content/docs/(documentation)/guides/x402-payments.mdx +0 -154
  196. package/docs-site/content/docs/(documentation)/index.mdx +0 -65
  197. package/docs-site/content/docs/(documentation)/meta.json +0 -19
  198. package/docs-site/content/docs/(documentation)/reference/cli.mdx +0 -241
  199. package/docs-site/content/docs/(documentation)/reference/environment-variables.mdx +0 -205
  200. package/docs-site/content/docs/(documentation)/reference/mcp-tools.mdx +0 -449
  201. package/docs-site/content/docs/(documentation)/reference/meta.json +0 -4
  202. package/docs-site/content/docs/api-reference/active-sessions.mdx +0 -9
  203. package/docs-site/content/docs/api-reference/agents.mdx +0 -9
  204. package/docs-site/content/docs/api-reference/channels.mdx +0 -9
  205. package/docs-site/content/docs/api-reference/config.mdx +0 -9
  206. package/docs-site/content/docs/api-reference/debug.mdx +0 -9
  207. package/docs-site/content/docs/api-reference/ecosystem.mdx +0 -9
  208. package/docs-site/content/docs/api-reference/epics.mdx +0 -9
  209. package/docs-site/content/docs/api-reference/index.mdx +0 -32
  210. package/docs-site/content/docs/api-reference/memory.mdx +0 -9
  211. package/docs-site/content/docs/api-reference/meta.json +0 -25
  212. package/docs-site/content/docs/api-reference/poll.mdx +0 -9
  213. package/docs-site/content/docs/api-reference/repos.mdx +0 -9
  214. package/docs-site/content/docs/api-reference/schedules.mdx +0 -9
  215. package/docs-site/content/docs/api-reference/session-data.mdx +0 -9
  216. package/docs-site/content/docs/api-reference/stats.mdx +0 -9
  217. package/docs-site/content/docs/api-reference/tasks.mdx +0 -9
  218. package/docs-site/content/docs/api-reference/trackers.mdx +0 -9
  219. package/docs-site/content/docs/api-reference/webhooks.mdx +0 -9
  220. package/docs-site/content/docs/api-reference/workflows.mdx +0 -9
  221. package/docs-site/content/docs/meta.json +0 -3
  222. package/docs-site/lib/get-llm-text.ts +0 -10
  223. package/docs-site/lib/openapi.ts +0 -23
  224. package/docs-site/lib/source.ts +0 -8
  225. package/docs-site/mdx-components.tsx +0 -13
  226. package/docs-site/next.config.mjs +0 -29
  227. package/docs-site/package.json +0 -35
  228. package/docs-site/pnpm-lock.yaml +0 -5407
  229. package/docs-site/postcss.config.mjs +0 -8
  230. package/docs-site/public/logo.png +0 -0
  231. package/docs-site/scripts/generate-docs.ts +0 -171
  232. package/docs-site/source.config.ts +0 -17
  233. package/docs-site/tsconfig.json +0 -46
  234. package/ecosystem.config.cjs +0 -66
  235. package/landing/next.config.ts +0 -14
  236. package/landing/package.json +0 -31
  237. package/landing/pnpm-lock.yaml +0 -1091
  238. package/landing/postcss.config.mjs +0 -8
  239. package/landing/public/apple-touch-icon.png +0 -0
  240. package/landing/public/favicon.ico +0 -0
  241. package/landing/public/logo.png +0 -0
  242. package/landing/public/og-image.png +0 -0
  243. package/landing/public/omghost-desplega.svg +0 -30
  244. package/landing/public/omghost-openfort.svg +0 -9
  245. package/landing/src/app/actions/waitlist.ts +0 -25
  246. package/landing/src/app/blog/openfort-hackathon/page.tsx +0 -863
  247. package/landing/src/app/blog/page.tsx +0 -162
  248. package/landing/src/app/blog/swarm-metrics/page.tsx +0 -685
  249. package/landing/src/app/examples/page.tsx +0 -174
  250. package/landing/src/app/examples/x402/page.tsx +0 -456
  251. package/landing/src/app/globals.css +0 -122
  252. package/landing/src/app/layout.tsx +0 -134
  253. package/landing/src/app/page.tsx +0 -27
  254. package/landing/src/app/robots.ts +0 -13
  255. package/landing/src/app/sitemap.ts +0 -44
  256. package/landing/src/components/architecture.tsx +0 -163
  257. package/landing/src/components/cta.tsx +0 -52
  258. package/landing/src/components/features.tsx +0 -160
  259. package/landing/src/components/footer.tsx +0 -100
  260. package/landing/src/components/hero.tsx +0 -217
  261. package/landing/src/components/how-it-works.tsx +0 -165
  262. package/landing/src/components/navbar.tsx +0 -147
  263. package/landing/src/components/waitlist.tsx +0 -110
  264. package/landing/src/components/why-choose.tsx +0 -149
  265. package/landing/src/components/workshops.tsx +0 -328
  266. package/landing/src/lib/utils.ts +0 -6
  267. package/landing/tsconfig.json +0 -41
  268. package/misc/transcripts/2026-03-09-pi-mono-e2e-verification.md +0 -154
  269. package/new-ui/CLAUDE.md +0 -92
  270. package/new-ui/README.md +0 -73
  271. package/new-ui/biome.json +0 -42
  272. package/new-ui/components.json +0 -21
  273. package/new-ui/index.html +0 -25
  274. package/new-ui/package.json +0 -49
  275. package/new-ui/pnpm-lock.yaml +0 -4845
  276. package/new-ui/public/logo.png +0 -0
  277. package/new-ui/src/api/client.ts +0 -814
  278. package/new-ui/src/api/hooks/index.ts +0 -64
  279. package/new-ui/src/api/hooks/use-agents.ts +0 -58
  280. package/new-ui/src/api/hooks/use-channels.ts +0 -115
  281. package/new-ui/src/api/hooks/use-config-api.ts +0 -46
  282. package/new-ui/src/api/hooks/use-costs.ts +0 -122
  283. package/new-ui/src/api/hooks/use-db-query.ts +0 -29
  284. package/new-ui/src/api/hooks/use-epics.ts +0 -75
  285. package/new-ui/src/api/hooks/use-repos.ts +0 -61
  286. package/new-ui/src/api/hooks/use-schedules.ts +0 -81
  287. package/new-ui/src/api/hooks/use-services.ts +0 -16
  288. package/new-ui/src/api/hooks/use-stats.ts +0 -27
  289. package/new-ui/src/api/hooks/use-tasks.ts +0 -89
  290. package/new-ui/src/api/hooks/use-workflows.ts +0 -109
  291. package/new-ui/src/api/types.ts +0 -549
  292. package/new-ui/src/app/App.tsx +0 -13
  293. package/new-ui/src/app/providers.tsx +0 -32
  294. package/new-ui/src/app/router.tsx +0 -52
  295. package/new-ui/src/components/layout/app-header.tsx +0 -47
  296. package/new-ui/src/components/layout/app-sidebar.tsx +0 -128
  297. package/new-ui/src/components/layout/breadcrumbs.tsx +0 -57
  298. package/new-ui/src/components/layout/config-guard.tsx +0 -22
  299. package/new-ui/src/components/layout/root-layout.tsx +0 -40
  300. package/new-ui/src/components/layout/swarm-switcher.tsx +0 -85
  301. package/new-ui/src/components/shared/command-menu.tsx +0 -131
  302. package/new-ui/src/components/shared/data-grid.tsx +0 -141
  303. package/new-ui/src/components/shared/empty-state.tsx +0 -24
  304. package/new-ui/src/components/shared/error-boundary.tsx +0 -72
  305. package/new-ui/src/components/shared/json-viewer.tsx +0 -47
  306. package/new-ui/src/components/shared/name-connection-modal.tsx +0 -99
  307. package/new-ui/src/components/shared/page-skeleton.tsx +0 -16
  308. package/new-ui/src/components/shared/session-log-viewer.tsx +0 -364
  309. package/new-ui/src/components/shared/stats-bar.tsx +0 -132
  310. package/new-ui/src/components/shared/status-badge.tsx +0 -131
  311. package/new-ui/src/components/shared/usage-summary.tsx +0 -179
  312. package/new-ui/src/components/ui/alert-dialog.tsx +0 -176
  313. package/new-ui/src/components/ui/alert.tsx +0 -60
  314. package/new-ui/src/components/ui/avatar.tsx +0 -96
  315. package/new-ui/src/components/ui/badge.tsx +0 -46
  316. package/new-ui/src/components/ui/button.tsx +0 -62
  317. package/new-ui/src/components/ui/card.tsx +0 -75
  318. package/new-ui/src/components/ui/command.tsx +0 -160
  319. package/new-ui/src/components/ui/dialog.tsx +0 -143
  320. package/new-ui/src/components/ui/dropdown-menu.tsx +0 -226
  321. package/new-ui/src/components/ui/input.tsx +0 -21
  322. package/new-ui/src/components/ui/label.tsx +0 -19
  323. package/new-ui/src/components/ui/progress.tsx +0 -26
  324. package/new-ui/src/components/ui/scroll-area.tsx +0 -54
  325. package/new-ui/src/components/ui/select.tsx +0 -175
  326. package/new-ui/src/components/ui/separator.tsx +0 -28
  327. package/new-ui/src/components/ui/sheet.tsx +0 -132
  328. package/new-ui/src/components/ui/sidebar.tsx +0 -691
  329. package/new-ui/src/components/ui/skeleton.tsx +0 -13
  330. package/new-ui/src/components/ui/sonner.tsx +0 -35
  331. package/new-ui/src/components/ui/switch.tsx +0 -33
  332. package/new-ui/src/components/ui/table.tsx +0 -92
  333. package/new-ui/src/components/ui/tabs.tsx +0 -79
  334. package/new-ui/src/components/ui/textarea.tsx +0 -18
  335. package/new-ui/src/components/ui/tooltip.tsx +0 -51
  336. package/new-ui/src/components/workflows/action-node.tsx +0 -53
  337. package/new-ui/src/components/workflows/condition-node.tsx +0 -50
  338. package/new-ui/src/components/workflows/graph-utils.ts +0 -124
  339. package/new-ui/src/components/workflows/json-tree.tsx +0 -189
  340. package/new-ui/src/components/workflows/node-styles.ts +0 -10
  341. package/new-ui/src/components/workflows/step-detail-sheet.tsx +0 -87
  342. package/new-ui/src/components/workflows/trigger-node.tsx +0 -41
  343. package/new-ui/src/components/workflows/workflow-graph.tsx +0 -65
  344. package/new-ui/src/hooks/use-auto-scroll.ts +0 -82
  345. package/new-ui/src/hooks/use-config.ts +0 -203
  346. package/new-ui/src/hooks/use-keyboard-shortcuts.ts +0 -41
  347. package/new-ui/src/hooks/use-mobile.ts +0 -19
  348. package/new-ui/src/hooks/use-theme.ts +0 -60
  349. package/new-ui/src/lib/config.ts +0 -188
  350. package/new-ui/src/lib/slugs.ts +0 -71
  351. package/new-ui/src/lib/utils.ts +0 -120
  352. package/new-ui/src/main.tsx +0 -11
  353. package/new-ui/src/pages/agents/[id]/page.tsx +0 -492
  354. package/new-ui/src/pages/agents/page.tsx +0 -134
  355. package/new-ui/src/pages/chat/page.tsx +0 -674
  356. package/new-ui/src/pages/config/page.tsx +0 -1109
  357. package/new-ui/src/pages/dashboard/page.tsx +0 -454
  358. package/new-ui/src/pages/debug/page.tsx +0 -275
  359. package/new-ui/src/pages/epics/[id]/page.tsx +0 -809
  360. package/new-ui/src/pages/epics/page.tsx +0 -321
  361. package/new-ui/src/pages/not-found/page.tsx +0 -18
  362. package/new-ui/src/pages/repos/page.tsx +0 -369
  363. package/new-ui/src/pages/schedules/[id]/page.tsx +0 -664
  364. package/new-ui/src/pages/schedules/page.tsx +0 -477
  365. package/new-ui/src/pages/services/page.tsx +0 -128
  366. package/new-ui/src/pages/tasks/[id]/page.tsx +0 -670
  367. package/new-ui/src/pages/tasks/page.tsx +0 -592
  368. package/new-ui/src/pages/usage/page.tsx +0 -195
  369. package/new-ui/src/pages/workflow-runs/[id]/page.tsx +0 -363
  370. package/new-ui/src/pages/workflows/[id]/page.tsx +0 -417
  371. package/new-ui/src/pages/workflows/page.tsx +0 -266
  372. package/new-ui/src/styles/ag-grid.css +0 -36
  373. package/new-ui/src/styles/globals.css +0 -213
  374. package/new-ui/test-results/.last-run.json +0 -4
  375. package/new-ui/tsconfig.app.json +0 -34
  376. package/new-ui/tsconfig.json +0 -4
  377. package/new-ui/tsconfig.node.json +0 -26
  378. package/new-ui/vercel.json +0 -4
  379. package/new-ui/vite.config.ts +0 -28
  380. package/plugin/README.md +0 -1
  381. package/plugin/build-pi-skills.ts +0 -233
  382. package/plugin/hooks/hooks.json +0 -71
  383. package/prek.toml +0 -75
  384. package/pyproject.toml +0 -9
  385. package/scripts/check-db-boundary.sh +0 -60
  386. package/scripts/e2e-docker-provider.ts +0 -820
  387. package/scripts/e2e-io-schemas-test.ts +0 -807
  388. package/scripts/e2e-provider-test.ts +0 -220
  389. package/scripts/e2e-workflow-redesign.sh +0 -229
  390. package/scripts/e2e-workflow-test.sh +0 -285
  391. package/scripts/e2e-workflow-test.ts +0 -857
  392. package/scripts/generate-mcp-docs.ts +0 -415
  393. package/scripts/generate-openapi.ts +0 -26
  394. package/scripts/measure-tool-tokens.ts +0 -118
  395. package/scripts/x402-e2e-test.ts +0 -195
  396. package/scripts/x402-test-server.ts +0 -236
  397. package/scripts/x402-testnet-e2e.ts +0 -668
  398. package/slack-manifest.json +0 -88
  399. package/templates-ui/README.md +0 -46
  400. package/templates-ui/components.json +0 -17
  401. package/templates-ui/eslint.config.mjs +0 -18
  402. package/templates-ui/next.config.ts +0 -7
  403. package/templates-ui/package.json +0 -35
  404. package/templates-ui/pnpm-lock.yaml +0 -4571
  405. package/templates-ui/postcss.config.mjs +0 -7
  406. package/templates-ui/public/file.svg +0 -1
  407. package/templates-ui/public/globe.svg +0 -1
  408. package/templates-ui/public/logo.png +0 -0
  409. package/templates-ui/public/next.svg +0 -1
  410. package/templates-ui/public/vercel.svg +0 -1
  411. package/templates-ui/public/window.svg +0 -1
  412. package/templates-ui/src/app/[category]/[name]/page.tsx +0 -89
  413. package/templates-ui/src/app/api/templates/[...slug]/route.ts +0 -52
  414. package/templates-ui/src/app/api/templates/route.ts +0 -18
  415. package/templates-ui/src/app/builder/page.tsx +0 -37
  416. package/templates-ui/src/app/globals.css +0 -94
  417. package/templates-ui/src/app/layout.tsx +0 -79
  418. package/templates-ui/src/app/page.tsx +0 -38
  419. package/templates-ui/src/app/robots.ts +0 -11
  420. package/templates-ui/src/app/sitemap.ts +0 -31
  421. package/templates-ui/src/components/compose-builder.tsx +0 -442
  422. package/templates-ui/src/components/compose-preview.tsx +0 -117
  423. package/templates-ui/src/components/file-preview.tsx +0 -77
  424. package/templates-ui/src/components/footer.tsx +0 -40
  425. package/templates-ui/src/components/header.tsx +0 -41
  426. package/templates-ui/src/components/template-card.tsx +0 -87
  427. package/templates-ui/src/components/template-detail.tsx +0 -125
  428. package/templates-ui/src/components/template-gallery.tsx +0 -263
  429. package/templates-ui/src/components/ui/badge.tsx +0 -36
  430. package/templates-ui/src/components/ui/button.tsx +0 -57
  431. package/templates-ui/src/components/ui/card.tsx +0 -76
  432. package/templates-ui/src/components/ui/separator.tsx +0 -31
  433. package/templates-ui/src/components/ui/tooltip.tsx +0 -32
  434. package/templates-ui/src/lib/compose-generator.ts +0 -241
  435. package/templates-ui/src/lib/templates.ts +0 -137
  436. package/templates-ui/src/lib/utils.ts +0 -6
  437. package/templates-ui/tsconfig.json +0 -34
  438. package/thoughts/research/2026-02-28-openfort-viem-x402-research.md +0 -679
  439. package/thoughts/research/2026-02-28-x402-payments-research.md +0 -686
  440. package/thoughts/researcher/plans/2026-02-20-agent-self-improvement-plan.md +0 -282
  441. package/thoughts/researcher/research/2026-02-20-agent-self-improvement.md +0 -492
  442. package/thoughts/shared/plans/.gitkeep +0 -0
  443. package/thoughts/shared/plans/2025-12-18-slack-integration.md +0 -1195
  444. package/thoughts/shared/plans/2025-12-19-agent-log-streaming.md +0 -732
  445. package/thoughts/shared/plans/2025-12-19-role-based-swarm-plugin.md +0 -361
  446. package/thoughts/shared/plans/2025-12-20-mobile-responsive-ui.md +0 -501
  447. package/thoughts/shared/plans/2025-12-20-startup-team-swarm.md +0 -560
  448. package/thoughts/shared/plans/2025-12-23-runner-level-polling.md +0 -934
  449. package/thoughts/shared/plans/2025-12-23-runner-session-logs.md +0 -1000
  450. package/thoughts/shared/plans/2025-12-23-worker-lead-spawn-triggers.md +0 -568
  451. package/thoughts/shared/plans/2026-01-09-inverse-teleport.md +0 -1516
  452. package/thoughts/shared/plans/2026-01-12-agent-rename-pm2-control.md +0 -1133
  453. package/thoughts/shared/plans/2026-01-12-github-app-integration.md +0 -380
  454. package/thoughts/shared/plans/2026-01-12-lead-inbox-model.md +0 -876
  455. package/thoughts/shared/plans/2026-01-12-ralph-wiggum-integration.md +0 -463
  456. package/thoughts/shared/plans/2026-01-13-agent-concurrency.md +0 -691
  457. package/thoughts/shared/plans/2026-01-13-github-assignment-handling.md +0 -690
  458. package/thoughts/shared/plans/2026-01-13-prevent-duplicate-trigger-processing.md +0 -1071
  459. package/thoughts/shared/plans/2026-01-14-fix-slack-thread-context.md +0 -507
  460. package/thoughts/shared/plans/2026-01-15-scheduled-tasks-implementation.md +0 -565
  461. package/thoughts/shared/plans/2026-01-15-usage-cost-tracking-ui.md +0 -1479
  462. package/thoughts/shared/plans/2026-01-16-epics-feature-implementation.md +0 -1230
  463. package/thoughts/shared/plans/2026-02-26-mcp-tool-context-reduction.md +0 -282
  464. package/thoughts/shared/plans/2026-03-02-claude-context-mode-integration.md +0 -328
  465. package/thoughts/shared/plans/2026-03-02-code-level-heartbeat.md +0 -224
  466. package/thoughts/shared/research/.gitkeep +0 -0
  467. package/thoughts/shared/research/2025-01-09-inverse-teleport-plan-review.md +0 -420
  468. package/thoughts/shared/research/2025-12-18-slack-integration.md +0 -442
  469. package/thoughts/shared/research/2025-12-19-agent-log-streaming.md +0 -339
  470. package/thoughts/shared/research/2025-12-19-agent-secrets-cli-research.md +0 -390
  471. package/thoughts/shared/research/2025-12-21-gemini-cli-integration.md +0 -376
  472. package/thoughts/shared/research/2025-12-22-runner-loop-architecture.md +0 -582
  473. package/thoughts/shared/research/2025-12-22-setup-experience-improvements.md +0 -264
  474. package/thoughts/shared/research/2026-01-13-lead-duplicate-trigger-processing.md +0 -223
  475. package/thoughts/shared/research/2026-01-14-lead-slack-thread-context.md +0 -277
  476. package/thoughts/shared/research/2026-01-15-ai-tracker-agent-swarm-integration.md +0 -376
  477. package/thoughts/shared/research/2026-01-15-auto-starting-processes-in-worker-containers.md +0 -787
  478. package/thoughts/shared/research/2026-01-15-scheduled-tasks.md +0 -390
  479. package/thoughts/shared/research/2026-01-16-epics-feature-research.md +0 -437
  480. package/thoughts/shared/research/2026-02-26-cliffy-mcp-tools.md +0 -159
  481. package/thoughts/shared/research/2026-03-03-database-migration-system-refactor.md +0 -337
  482. package/thoughts/swarm-researcher/plans/2026-02-23-openclaw-improvements-plan.md +0 -778
  483. package/thoughts/swarm-researcher/plans/2026-02-26-artifacts-localtunnel-plan.md +0 -1269
  484. package/thoughts/swarm-researcher/research/2026-02-23-openclaw-vs-agent-swarm-comparison.md +0 -411
  485. package/thoughts/swarm-researcher/research/2026-02-26-artifacts-localtunnel.md +0 -724
  486. package/thoughts/taras/brainstorms/2026-03-20-prompt-template-registry.md +0 -443
  487. package/thoughts/taras/brainstorms/2026-03-20-setup-cli-onboarding.md +0 -307
  488. package/thoughts/taras/plans/2026-01-22-agent-swarm-schemas.md +0 -98
  489. package/thoughts/taras/plans/2026-01-28-per-worker-claude-md.md +0 -617
  490. package/thoughts/taras/plans/2026-01-28-sentry-cli-integration.md +0 -214
  491. package/thoughts/taras/plans/2026-02-20-auto-improvement.md +0 -803
  492. package/thoughts/taras/plans/2026-02-20-env-management.md +0 -538
  493. package/thoughts/taras/plans/2026-02-20-memory-system.md +0 -882
  494. package/thoughts/taras/plans/2026-02-20-repos-knowledge.md +0 -806
  495. package/thoughts/taras/plans/2026-02-20-session-attach.md +0 -647
  496. package/thoughts/taras/plans/2026-02-20-worker-identity.md +0 -820
  497. package/thoughts/taras/plans/2026-02-25-feat-new-ui-visual-redesign-plan.md +0 -768
  498. package/thoughts/taras/plans/2026-03-04-fix-buildSystemPrompt-missing-fields.md +0 -77
  499. package/thoughts/taras/plans/2026-03-04-new-ui-missing-actions.md +0 -543
  500. package/thoughts/taras/plans/2026-03-06-one-time-scheduled-tasks.md +0 -373
  501. package/thoughts/taras/plans/2026-03-08-memory-self-improvement-enhancements.md +0 -512
  502. package/thoughts/taras/plans/2026-03-08-pi-mono-provider-implementation.md +0 -919
  503. package/thoughts/taras/plans/2026-03-09-templates-registry.md +0 -723
  504. package/thoughts/taras/plans/2026-03-10-task-working-directory.md +0 -371
  505. package/thoughts/taras/plans/2026-03-11-archil-per-agent-write-strategy.md +0 -621
  506. package/thoughts/taras/plans/2026-03-12-eliminate-inbox-route-to-tasks.md +0 -61
  507. package/thoughts/taras/plans/2026-03-12-slack-thread-followup-additive.md +0 -488
  508. package/thoughts/taras/plans/2026-03-13-slack-ai-improvements.md +0 -644
  509. package/thoughts/taras/plans/2026-03-16-route-wrapper-openapi.md +0 -636
  510. package/thoughts/taras/plans/2026-03-17-multi-api-config.md +0 -444
  511. package/thoughts/taras/plans/2026-03-18-agent-fs-integration.md +0 -591
  512. package/thoughts/taras/plans/2026-03-18-debug-db-explorer.md +0 -446
  513. package/thoughts/taras/plans/2026-03-18-workflow-redesign.md +0 -987
  514. package/thoughts/taras/plans/2026-03-19-compound-learnings.md +0 -403
  515. package/thoughts/taras/plans/2026-03-19-ticket-tracker-linear-integration.md +0 -860
  516. package/thoughts/taras/plans/2026-03-19-workflow-io-schemas-and-bugs.md +0 -899
  517. package/thoughts/taras/plans/2026-03-20-setup-cli-onboarding.md +0 -874
  518. package/thoughts/taras/plans/2026-03-20-workflow-structured-output-validation-workspace.md +0 -723
  519. package/thoughts/taras/research/2026-01-22-vercel-cli-integration.md +0 -287
  520. package/thoughts/taras/research/2026-01-27-excessive-polling-issue.md +0 -311
  521. package/thoughts/taras/research/2026-01-28-per-worker-claude-md.md +0 -383
  522. package/thoughts/taras/research/2026-01-28-sentry-cli-integration.md +0 -240
  523. package/thoughts/taras/research/2026-02-19-agent-native-swarm-architecture.md +0 -390
  524. package/thoughts/taras/research/2026-02-19-swarm-gaps-implementation.md +0 -594
  525. package/thoughts/taras/research/2026-02-25-dashboard-ui-design-best-practices.md +0 -825
  526. package/thoughts/taras/research/2026-02-26-task-detail-page-redesign.md +0 -393
  527. package/thoughts/taras/research/2026-03-03-new-ui-missing-actions.md +0 -168
  528. package/thoughts/taras/research/2026-03-05-pi-mono-provider-research.md +0 -230
  529. package/thoughts/taras/research/2026-03-06-workflow-engine-design.md +0 -445
  530. package/thoughts/taras/research/2026-03-08-drive-loop-concept.md +0 -375
  531. package/thoughts/taras/research/2026-03-08-pi-mono-deep-dive.md +0 -869
  532. package/thoughts/taras/research/2026-03-09-templates-registry.md +0 -373
  533. package/thoughts/taras/research/2026-03-10-agent-working-directory.md +0 -223
  534. package/thoughts/taras/research/2026-03-10-configurable-event-prompts.md +0 -339
  535. package/thoughts/taras/research/2026-03-11-archil-production-setup.md +0 -181
  536. package/thoughts/taras/research/2026-03-11-archil-shared-disk-write-strategies.md +0 -437
  537. package/thoughts/taras/research/2026-03-13-slack-ai-features.md +0 -258
  538. package/thoughts/taras/research/2026-03-16-openapi-docs-generation.md +0 -335
  539. package/thoughts/taras/research/2026-03-16-route-wrapper-openapi.md +0 -670
  540. package/thoughts/taras/research/2026-03-16-slack-thread-followups-e2e.md +0 -54
  541. package/thoughts/taras/research/2026-03-18-agent-fs-integration.md +0 -558
  542. package/thoughts/taras/research/2026-03-18-linear-integration-finalization.md +0 -526
  543. package/thoughts/taras/research/2026-03-18-workflow-redesign.md +0 -797
  544. package/thoughts/taras/research/2026-03-19-workflow-node-io-schemas-and-bugs.md +0 -563
  545. package/thoughts/taras/research/2026-03-19-workflow-structured-output-validation-workspace.md +0 -486
  546. package/thoughts/taras/research/2026-03-20-prompt-template-registry.md +0 -469
  547. package/tsconfig.json +0 -37
@@ -1,4845 +0,0 @@
1
- lockfileVersion: '9.0'
2
-
3
- settings:
4
- autoInstallPeers: true
5
- excludeLinksFromLockfile: false
6
-
7
- importers:
8
-
9
- .:
10
- dependencies:
11
- '@monaco-editor/react':
12
- specifier: ^4.7.0
13
- version: 4.7.0(monaco-editor@0.55.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
14
- '@tailwindcss/vite':
15
- specifier: ^4.2.1
16
- version: 4.2.1(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(lightningcss@1.31.1))
17
- '@tanstack/react-query':
18
- specifier: ^5.90.21
19
- version: 5.90.21(react@19.2.4)
20
- '@xyflow/react':
21
- specifier: ^12.10.1
22
- version: 12.10.1(@types/react@19.2.14)(immer@11.1.4)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
23
- ag-grid-community:
24
- specifier: ^35.1.0
25
- version: 35.1.0
26
- ag-grid-react:
27
- specifier: ^35.1.0
28
- version: 35.1.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
29
- class-variance-authority:
30
- specifier: ^0.7.1
31
- version: 0.7.1
32
- clsx:
33
- specifier: ^2.1.1
34
- version: 2.1.1
35
- cmdk:
36
- specifier: ^1.1.1
37
- version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
38
- dagre:
39
- specifier: ^0.8.5
40
- version: 0.8.5
41
- lucide-react:
42
- specifier: ^0.575.0
43
- version: 0.575.0(react@19.2.4)
44
- next-themes:
45
- specifier: ^0.4.6
46
- version: 0.4.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
47
- radix-ui:
48
- specifier: ^1.4.3
49
- version: 1.4.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
50
- react:
51
- specifier: ^19.2.0
52
- version: 19.2.4
53
- react-dom:
54
- specifier: ^19.2.0
55
- version: 19.2.4(react@19.2.4)
56
- react-markdown:
57
- specifier: ^10.1.0
58
- version: 10.1.0(@types/react@19.2.14)(react@19.2.4)
59
- react-router-dom:
60
- specifier: ^7.13.1
61
- version: 7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
62
- recharts:
63
- specifier: ^3.7.0
64
- version: 3.7.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react-is@16.13.1)(react@19.2.4)(redux@5.0.1)
65
- remark-gfm:
66
- specifier: ^4.0.1
67
- version: 4.0.1
68
- sonner:
69
- specifier: ^2.0.7
70
- version: 2.0.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
71
- tailwind-merge:
72
- specifier: ^3.5.0
73
- version: 3.5.0
74
- tailwindcss:
75
- specifier: ^4.2.1
76
- version: 4.2.1
77
- tw-animate-css:
78
- specifier: ^1.4.0
79
- version: 1.4.0
80
- devDependencies:
81
- '@biomejs/biome':
82
- specifier: ^2.4.5
83
- version: 2.4.5
84
- '@types/dagre':
85
- specifier: ^0.7.54
86
- version: 0.7.54
87
- '@types/node':
88
- specifier: ^24.10.1
89
- version: 24.10.13
90
- '@types/react':
91
- specifier: ^19.2.7
92
- version: 19.2.14
93
- '@types/react-dom':
94
- specifier: ^19.2.3
95
- version: 19.2.3(@types/react@19.2.14)
96
- '@vitejs/plugin-react':
97
- specifier: ^5.1.1
98
- version: 5.1.4(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(lightningcss@1.31.1))
99
- typescript:
100
- specifier: ~5.9.3
101
- version: 5.9.3
102
- vite:
103
- specifier: ^7.3.1
104
- version: 7.3.1(@types/node@24.10.13)(jiti@2.6.1)(lightningcss@1.31.1)
105
-
106
- packages:
107
-
108
- '@babel/code-frame@7.29.0':
109
- resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==}
110
- engines: {node: '>=6.9.0'}
111
-
112
- '@babel/compat-data@7.29.0':
113
- resolution: {integrity: sha512-T1NCJqT/j9+cn8fvkt7jtwbLBfLC/1y1c7NtCeXFRgzGTsafi68MRv8yzkYSapBnFA6L3U2VSc02ciDzoAJhJg==}
114
- engines: {node: '>=6.9.0'}
115
-
116
- '@babel/core@7.29.0':
117
- resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==}
118
- engines: {node: '>=6.9.0'}
119
-
120
- '@babel/generator@7.29.1':
121
- resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==}
122
- engines: {node: '>=6.9.0'}
123
-
124
- '@babel/helper-compilation-targets@7.28.6':
125
- resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
126
- engines: {node: '>=6.9.0'}
127
-
128
- '@babel/helper-globals@7.28.0':
129
- resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
130
- engines: {node: '>=6.9.0'}
131
-
132
- '@babel/helper-module-imports@7.28.6':
133
- resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
134
- engines: {node: '>=6.9.0'}
135
-
136
- '@babel/helper-module-transforms@7.28.6':
137
- resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
138
- engines: {node: '>=6.9.0'}
139
- peerDependencies:
140
- '@babel/core': ^7.0.0
141
-
142
- '@babel/helper-plugin-utils@7.28.6':
143
- resolution: {integrity: sha512-S9gzZ/bz83GRysI7gAD4wPT/AI3uCnY+9xn+Mx/KPs2JwHJIz1W8PZkg2cqyt3RNOBM8ejcXhV6y8Og7ly/Dug==}
144
- engines: {node: '>=6.9.0'}
145
-
146
- '@babel/helper-string-parser@7.27.1':
147
- resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
148
- engines: {node: '>=6.9.0'}
149
-
150
- '@babel/helper-validator-identifier@7.28.5':
151
- resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
152
- engines: {node: '>=6.9.0'}
153
-
154
- '@babel/helper-validator-option@7.27.1':
155
- resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
156
- engines: {node: '>=6.9.0'}
157
-
158
- '@babel/helpers@7.28.6':
159
- resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==}
160
- engines: {node: '>=6.9.0'}
161
-
162
- '@babel/parser@7.29.0':
163
- resolution: {integrity: sha512-IyDgFV5GeDUVX4YdF/3CPULtVGSXXMLh1xVIgdCgxApktqnQV0r7/8Nqthg+8YLGaAtdyIlo2qIdZrbCv4+7ww==}
164
- engines: {node: '>=6.0.0'}
165
- hasBin: true
166
-
167
- '@babel/plugin-transform-react-jsx-self@7.27.1':
168
- resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
169
- engines: {node: '>=6.9.0'}
170
- peerDependencies:
171
- '@babel/core': ^7.0.0-0
172
-
173
- '@babel/plugin-transform-react-jsx-source@7.27.1':
174
- resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
175
- engines: {node: '>=6.9.0'}
176
- peerDependencies:
177
- '@babel/core': ^7.0.0-0
178
-
179
- '@babel/template@7.28.6':
180
- resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
181
- engines: {node: '>=6.9.0'}
182
-
183
- '@babel/traverse@7.29.0':
184
- resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==}
185
- engines: {node: '>=6.9.0'}
186
-
187
- '@babel/types@7.29.0':
188
- resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==}
189
- engines: {node: '>=6.9.0'}
190
-
191
- '@biomejs/biome@2.4.5':
192
- resolution: {integrity: sha512-OWNCyMS0Q011R6YifXNOg6qsOg64IVc7XX6SqGsrGszPbkVCoaO7Sr/lISFnXZ9hjQhDewwZ40789QmrG0GYgQ==}
193
- engines: {node: '>=14.21.3'}
194
- hasBin: true
195
-
196
- '@biomejs/cli-darwin-arm64@2.4.5':
197
- resolution: {integrity: sha512-lGS4Nd5O3KQJ6TeWv10mElnx1phERhBxqGP/IKq0SvZl78kcWDFMaTtVK+w3v3lusRFxJY78n07PbKplirsU5g==}
198
- engines: {node: '>=14.21.3'}
199
- cpu: [arm64]
200
- os: [darwin]
201
-
202
- '@biomejs/cli-darwin-x64@2.4.5':
203
- resolution: {integrity: sha512-6MoH4tyISIBNkZ2Q5T1R7dLd5BsITb2yhhhrU9jHZxnNSNMWl+s2Mxu7NBF8Y3a7JJcqq9nsk8i637z4gqkJxQ==}
204
- engines: {node: '>=14.21.3'}
205
- cpu: [x64]
206
- os: [darwin]
207
-
208
- '@biomejs/cli-linux-arm64-musl@2.4.5':
209
- resolution: {integrity: sha512-iqLDgpzobG7gpBF0fwEVS/LT8kmN7+S0E2YKFDtqliJfzNLnAiV2Nnyb+ehCDCJgAZBASkYHR2o60VQWikpqIg==}
210
- engines: {node: '>=14.21.3'}
211
- cpu: [arm64]
212
- os: [linux]
213
-
214
- '@biomejs/cli-linux-arm64@2.4.5':
215
- resolution: {integrity: sha512-U1GAG6FTjhAO04MyH4xn23wRNBkT6H7NentHh+8UxD6ShXKBm5SY4RedKJzkUThANxb9rUKIPc7B8ew9Xo/cWg==}
216
- engines: {node: '>=14.21.3'}
217
- cpu: [arm64]
218
- os: [linux]
219
-
220
- '@biomejs/cli-linux-x64-musl@2.4.5':
221
- resolution: {integrity: sha512-NlKa7GpbQmNhZf9kakQeddqZyT7itN7jjWdakELeXyTU3pg/83fTysRRDPJD0akTfKDl6vZYNT9Zqn4MYZVBOA==}
222
- engines: {node: '>=14.21.3'}
223
- cpu: [x64]
224
- os: [linux]
225
-
226
- '@biomejs/cli-linux-x64@2.4.5':
227
- resolution: {integrity: sha512-NdODlSugMzTlENPTa4z0xB82dTUlCpsrOxc43///aNkTLblIYH4XpYflBbf5ySlQuP8AA4AZd1qXhV07IdrHdQ==}
228
- engines: {node: '>=14.21.3'}
229
- cpu: [x64]
230
- os: [linux]
231
-
232
- '@biomejs/cli-win32-arm64@2.4.5':
233
- resolution: {integrity: sha512-EBfrTqRIWOFSd7CQb/0ttjHMR88zm3hGravnDwUA9wHAaCAYsULKDebWcN5RmrEo1KBtl/gDVJMrFjNR0pdGUw==}
234
- engines: {node: '>=14.21.3'}
235
- cpu: [arm64]
236
- os: [win32]
237
-
238
- '@biomejs/cli-win32-x64@2.4.5':
239
- resolution: {integrity: sha512-Pmhv9zT95YzECfjEHNl3mN9Vhusw9VA5KHY0ZvlGsxsjwS5cb7vpRnHzJIv0vG7jB0JI7xEaMH9ddfZm/RozBw==}
240
- engines: {node: '>=14.21.3'}
241
- cpu: [x64]
242
- os: [win32]
243
-
244
- '@esbuild/aix-ppc64@0.27.3':
245
- resolution: {integrity: sha512-9fJMTNFTWZMh5qwrBItuziu834eOCUcEqymSH7pY+zoMVEZg3gcPuBNxH1EvfVYe9h0x/Ptw8KBzv7qxb7l8dg==}
246
- engines: {node: '>=18'}
247
- cpu: [ppc64]
248
- os: [aix]
249
-
250
- '@esbuild/android-arm64@0.27.3':
251
- resolution: {integrity: sha512-YdghPYUmj/FX2SYKJ0OZxf+iaKgMsKHVPF1MAq/P8WirnSpCStzKJFjOjzsW0QQ7oIAiccHdcqjbHmJxRb/dmg==}
252
- engines: {node: '>=18'}
253
- cpu: [arm64]
254
- os: [android]
255
-
256
- '@esbuild/android-arm@0.27.3':
257
- resolution: {integrity: sha512-i5D1hPY7GIQmXlXhs2w8AWHhenb00+GxjxRncS2ZM7YNVGNfaMxgzSGuO8o8SJzRc/oZwU2bcScvVERk03QhzA==}
258
- engines: {node: '>=18'}
259
- cpu: [arm]
260
- os: [android]
261
-
262
- '@esbuild/android-x64@0.27.3':
263
- resolution: {integrity: sha512-IN/0BNTkHtk8lkOM8JWAYFg4ORxBkZQf9zXiEOfERX/CzxW3Vg1ewAhU7QSWQpVIzTW+b8Xy+lGzdYXV6UZObQ==}
264
- engines: {node: '>=18'}
265
- cpu: [x64]
266
- os: [android]
267
-
268
- '@esbuild/darwin-arm64@0.27.3':
269
- resolution: {integrity: sha512-Re491k7ByTVRy0t3EKWajdLIr0gz2kKKfzafkth4Q8A5n1xTHrkqZgLLjFEHVD+AXdUGgQMq+Godfq45mGpCKg==}
270
- engines: {node: '>=18'}
271
- cpu: [arm64]
272
- os: [darwin]
273
-
274
- '@esbuild/darwin-x64@0.27.3':
275
- resolution: {integrity: sha512-vHk/hA7/1AckjGzRqi6wbo+jaShzRowYip6rt6q7VYEDX4LEy1pZfDpdxCBnGtl+A5zq8iXDcyuxwtv3hNtHFg==}
276
- engines: {node: '>=18'}
277
- cpu: [x64]
278
- os: [darwin]
279
-
280
- '@esbuild/freebsd-arm64@0.27.3':
281
- resolution: {integrity: sha512-ipTYM2fjt3kQAYOvo6vcxJx3nBYAzPjgTCk7QEgZG8AUO3ydUhvelmhrbOheMnGOlaSFUoHXB6un+A7q4ygY9w==}
282
- engines: {node: '>=18'}
283
- cpu: [arm64]
284
- os: [freebsd]
285
-
286
- '@esbuild/freebsd-x64@0.27.3':
287
- resolution: {integrity: sha512-dDk0X87T7mI6U3K9VjWtHOXqwAMJBNN2r7bejDsc+j03SEjtD9HrOl8gVFByeM0aJksoUuUVU9TBaZa2rgj0oA==}
288
- engines: {node: '>=18'}
289
- cpu: [x64]
290
- os: [freebsd]
291
-
292
- '@esbuild/linux-arm64@0.27.3':
293
- resolution: {integrity: sha512-sZOuFz/xWnZ4KH3YfFrKCf1WyPZHakVzTiqji3WDc0BCl2kBwiJLCXpzLzUBLgmp4veFZdvN5ChW4Eq/8Fc2Fg==}
294
- engines: {node: '>=18'}
295
- cpu: [arm64]
296
- os: [linux]
297
-
298
- '@esbuild/linux-arm@0.27.3':
299
- resolution: {integrity: sha512-s6nPv2QkSupJwLYyfS+gwdirm0ukyTFNl3KTgZEAiJDd+iHZcbTPPcWCcRYH+WlNbwChgH2QkE9NSlNrMT8Gfw==}
300
- engines: {node: '>=18'}
301
- cpu: [arm]
302
- os: [linux]
303
-
304
- '@esbuild/linux-ia32@0.27.3':
305
- resolution: {integrity: sha512-yGlQYjdxtLdh0a3jHjuwOrxQjOZYD/C9PfdbgJJF3TIZWnm/tMd/RcNiLngiu4iwcBAOezdnSLAwQDPqTmtTYg==}
306
- engines: {node: '>=18'}
307
- cpu: [ia32]
308
- os: [linux]
309
-
310
- '@esbuild/linux-loong64@0.27.3':
311
- resolution: {integrity: sha512-WO60Sn8ly3gtzhyjATDgieJNet/KqsDlX5nRC5Y3oTFcS1l0KWba+SEa9Ja1GfDqSF1z6hif/SkpQJbL63cgOA==}
312
- engines: {node: '>=18'}
313
- cpu: [loong64]
314
- os: [linux]
315
-
316
- '@esbuild/linux-mips64el@0.27.3':
317
- resolution: {integrity: sha512-APsymYA6sGcZ4pD6k+UxbDjOFSvPWyZhjaiPyl/f79xKxwTnrn5QUnXR5prvetuaSMsb4jgeHewIDCIWljrSxw==}
318
- engines: {node: '>=18'}
319
- cpu: [mips64el]
320
- os: [linux]
321
-
322
- '@esbuild/linux-ppc64@0.27.3':
323
- resolution: {integrity: sha512-eizBnTeBefojtDb9nSh4vvVQ3V9Qf9Df01PfawPcRzJH4gFSgrObw+LveUyDoKU3kxi5+9RJTCWlj4FjYXVPEA==}
324
- engines: {node: '>=18'}
325
- cpu: [ppc64]
326
- os: [linux]
327
-
328
- '@esbuild/linux-riscv64@0.27.3':
329
- resolution: {integrity: sha512-3Emwh0r5wmfm3ssTWRQSyVhbOHvqegUDRd0WhmXKX2mkHJe1SFCMJhagUleMq+Uci34wLSipf8Lagt4LlpRFWQ==}
330
- engines: {node: '>=18'}
331
- cpu: [riscv64]
332
- os: [linux]
333
-
334
- '@esbuild/linux-s390x@0.27.3':
335
- resolution: {integrity: sha512-pBHUx9LzXWBc7MFIEEL0yD/ZVtNgLytvx60gES28GcWMqil8ElCYR4kvbV2BDqsHOvVDRrOxGySBM9Fcv744hw==}
336
- engines: {node: '>=18'}
337
- cpu: [s390x]
338
- os: [linux]
339
-
340
- '@esbuild/linux-x64@0.27.3':
341
- resolution: {integrity: sha512-Czi8yzXUWIQYAtL/2y6vogER8pvcsOsk5cpwL4Gk5nJqH5UZiVByIY8Eorm5R13gq+DQKYg0+JyQoytLQas4dA==}
342
- engines: {node: '>=18'}
343
- cpu: [x64]
344
- os: [linux]
345
-
346
- '@esbuild/netbsd-arm64@0.27.3':
347
- resolution: {integrity: sha512-sDpk0RgmTCR/5HguIZa9n9u+HVKf40fbEUt+iTzSnCaGvY9kFP0YKBWZtJaraonFnqef5SlJ8/TiPAxzyS+UoA==}
348
- engines: {node: '>=18'}
349
- cpu: [arm64]
350
- os: [netbsd]
351
-
352
- '@esbuild/netbsd-x64@0.27.3':
353
- resolution: {integrity: sha512-P14lFKJl/DdaE00LItAukUdZO5iqNH7+PjoBm+fLQjtxfcfFE20Xf5CrLsmZdq5LFFZzb5JMZ9grUwvtVYzjiA==}
354
- engines: {node: '>=18'}
355
- cpu: [x64]
356
- os: [netbsd]
357
-
358
- '@esbuild/openbsd-arm64@0.27.3':
359
- resolution: {integrity: sha512-AIcMP77AvirGbRl/UZFTq5hjXK+2wC7qFRGoHSDrZ5v5b8DK/GYpXW3CPRL53NkvDqb9D+alBiC/dV0Fb7eJcw==}
360
- engines: {node: '>=18'}
361
- cpu: [arm64]
362
- os: [openbsd]
363
-
364
- '@esbuild/openbsd-x64@0.27.3':
365
- resolution: {integrity: sha512-DnW2sRrBzA+YnE70LKqnM3P+z8vehfJWHXECbwBmH/CU51z6FiqTQTHFenPlHmo3a8UgpLyH3PT+87OViOh1AQ==}
366
- engines: {node: '>=18'}
367
- cpu: [x64]
368
- os: [openbsd]
369
-
370
- '@esbuild/openharmony-arm64@0.27.3':
371
- resolution: {integrity: sha512-NinAEgr/etERPTsZJ7aEZQvvg/A6IsZG/LgZy+81wON2huV7SrK3e63dU0XhyZP4RKGyTm7aOgmQk0bGp0fy2g==}
372
- engines: {node: '>=18'}
373
- cpu: [arm64]
374
- os: [openharmony]
375
-
376
- '@esbuild/sunos-x64@0.27.3':
377
- resolution: {integrity: sha512-PanZ+nEz+eWoBJ8/f8HKxTTD172SKwdXebZ0ndd953gt1HRBbhMsaNqjTyYLGLPdoWHy4zLU7bDVJztF5f3BHA==}
378
- engines: {node: '>=18'}
379
- cpu: [x64]
380
- os: [sunos]
381
-
382
- '@esbuild/win32-arm64@0.27.3':
383
- resolution: {integrity: sha512-B2t59lWWYrbRDw/tjiWOuzSsFh1Y/E95ofKz7rIVYSQkUYBjfSgf6oeYPNWHToFRr2zx52JKApIcAS/D5TUBnA==}
384
- engines: {node: '>=18'}
385
- cpu: [arm64]
386
- os: [win32]
387
-
388
- '@esbuild/win32-ia32@0.27.3':
389
- resolution: {integrity: sha512-QLKSFeXNS8+tHW7tZpMtjlNb7HKau0QDpwm49u0vUp9y1WOF+PEzkU84y9GqYaAVW8aH8f3GcBck26jh54cX4Q==}
390
- engines: {node: '>=18'}
391
- cpu: [ia32]
392
- os: [win32]
393
-
394
- '@esbuild/win32-x64@0.27.3':
395
- resolution: {integrity: sha512-4uJGhsxuptu3OcpVAzli+/gWusVGwZZHTlS63hh++ehExkVT8SgiEf7/uC/PclrPPkLhZqGgCTjd0VWLo6xMqA==}
396
- engines: {node: '>=18'}
397
- cpu: [x64]
398
- os: [win32]
399
-
400
- '@floating-ui/core@1.7.4':
401
- resolution: {integrity: sha512-C3HlIdsBxszvm5McXlB8PeOEWfBhcGBTZGkGlWc2U0KFY5IwG5OQEuQ8rq52DZmcHDlPLd+YFBK+cZcytwIFWg==}
402
-
403
- '@floating-ui/dom@1.7.5':
404
- resolution: {integrity: sha512-N0bD2kIPInNHUHehXhMke1rBGs1dwqvC9O9KYMyyjK7iXt7GAhnro7UlcuYcGdS/yYOlq0MAVgrow8IbWJwyqg==}
405
-
406
- '@floating-ui/react-dom@2.1.7':
407
- resolution: {integrity: sha512-0tLRojf/1Go2JgEVm+3Frg9A3IW8bJgKgdO0BN5RkF//ufuz2joZM63Npau2ff3J6lUVYgDSNzNkR+aH3IVfjg==}
408
- peerDependencies:
409
- react: '>=16.8.0'
410
- react-dom: '>=16.8.0'
411
-
412
- '@floating-ui/utils@0.2.10':
413
- resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
414
-
415
- '@jridgewell/gen-mapping@0.3.13':
416
- resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
417
-
418
- '@jridgewell/remapping@2.3.5':
419
- resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
420
-
421
- '@jridgewell/resolve-uri@3.1.2':
422
- resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
423
- engines: {node: '>=6.0.0'}
424
-
425
- '@jridgewell/sourcemap-codec@1.5.5':
426
- resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
427
-
428
- '@jridgewell/trace-mapping@0.3.31':
429
- resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
430
-
431
- '@monaco-editor/loader@1.7.0':
432
- resolution: {integrity: sha512-gIwR1HrJrrx+vfyOhYmCZ0/JcWqG5kbfG7+d3f/C1LXk2EvzAbHSg3MQ5lO2sMlo9izoAZ04shohfKLVT6crVA==}
433
-
434
- '@monaco-editor/react@4.7.0':
435
- resolution: {integrity: sha512-cyzXQCtO47ydzxpQtCGSQGOC8Gk3ZUeBXFAxD+CWXYFo5OqZyZUonFl0DwUlTyAfRHntBfw2p3w4s9R6oe1eCA==}
436
- peerDependencies:
437
- monaco-editor: '>= 0.25.0 < 1'
438
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
439
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
440
-
441
- '@radix-ui/number@1.1.1':
442
- resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
443
-
444
- '@radix-ui/primitive@1.1.3':
445
- resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
446
-
447
- '@radix-ui/react-accessible-icon@1.1.7':
448
- resolution: {integrity: sha512-XM+E4WXl0OqUJFovy6GjmxxFyx9opfCAIUku4dlKRd5YEPqt4kALOkQOp0Of6reHuUkJuiPBEc5k0o4z4lTC8A==}
449
- peerDependencies:
450
- '@types/react': '*'
451
- '@types/react-dom': '*'
452
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
453
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
454
- peerDependenciesMeta:
455
- '@types/react':
456
- optional: true
457
- '@types/react-dom':
458
- optional: true
459
-
460
- '@radix-ui/react-accordion@1.2.12':
461
- resolution: {integrity: sha512-T4nygeh9YE9dLRPhAHSeOZi7HBXo+0kYIPJXayZfvWOWA0+n3dESrZbjfDPUABkUNym6Hd+f2IR113To8D2GPA==}
462
- peerDependencies:
463
- '@types/react': '*'
464
- '@types/react-dom': '*'
465
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
466
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
467
- peerDependenciesMeta:
468
- '@types/react':
469
- optional: true
470
- '@types/react-dom':
471
- optional: true
472
-
473
- '@radix-ui/react-alert-dialog@1.1.15':
474
- resolution: {integrity: sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==}
475
- peerDependencies:
476
- '@types/react': '*'
477
- '@types/react-dom': '*'
478
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
479
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
480
- peerDependenciesMeta:
481
- '@types/react':
482
- optional: true
483
- '@types/react-dom':
484
- optional: true
485
-
486
- '@radix-ui/react-arrow@1.1.7':
487
- resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
488
- peerDependencies:
489
- '@types/react': '*'
490
- '@types/react-dom': '*'
491
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
492
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
493
- peerDependenciesMeta:
494
- '@types/react':
495
- optional: true
496
- '@types/react-dom':
497
- optional: true
498
-
499
- '@radix-ui/react-aspect-ratio@1.1.7':
500
- resolution: {integrity: sha512-Yq6lvO9HQyPwev1onK1daHCHqXVLzPhSVjmsNjCa2Zcxy2f7uJD2itDtxknv6FzAKCwD1qQkeVDmX/cev13n/g==}
501
- peerDependencies:
502
- '@types/react': '*'
503
- '@types/react-dom': '*'
504
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
505
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
506
- peerDependenciesMeta:
507
- '@types/react':
508
- optional: true
509
- '@types/react-dom':
510
- optional: true
511
-
512
- '@radix-ui/react-avatar@1.1.10':
513
- resolution: {integrity: sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==}
514
- peerDependencies:
515
- '@types/react': '*'
516
- '@types/react-dom': '*'
517
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
518
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
519
- peerDependenciesMeta:
520
- '@types/react':
521
- optional: true
522
- '@types/react-dom':
523
- optional: true
524
-
525
- '@radix-ui/react-checkbox@1.3.3':
526
- resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
527
- peerDependencies:
528
- '@types/react': '*'
529
- '@types/react-dom': '*'
530
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
531
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
532
- peerDependenciesMeta:
533
- '@types/react':
534
- optional: true
535
- '@types/react-dom':
536
- optional: true
537
-
538
- '@radix-ui/react-collapsible@1.1.12':
539
- resolution: {integrity: sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==}
540
- peerDependencies:
541
- '@types/react': '*'
542
- '@types/react-dom': '*'
543
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
544
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
545
- peerDependenciesMeta:
546
- '@types/react':
547
- optional: true
548
- '@types/react-dom':
549
- optional: true
550
-
551
- '@radix-ui/react-collection@1.1.7':
552
- resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
553
- peerDependencies:
554
- '@types/react': '*'
555
- '@types/react-dom': '*'
556
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
557
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
558
- peerDependenciesMeta:
559
- '@types/react':
560
- optional: true
561
- '@types/react-dom':
562
- optional: true
563
-
564
- '@radix-ui/react-compose-refs@1.1.2':
565
- resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
566
- peerDependencies:
567
- '@types/react': '*'
568
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
569
- peerDependenciesMeta:
570
- '@types/react':
571
- optional: true
572
-
573
- '@radix-ui/react-context-menu@2.2.16':
574
- resolution: {integrity: sha512-O8morBEW+HsVG28gYDZPTrT9UUovQUlJue5YO836tiTJhuIWBm/zQHc7j388sHWtdH/xUZurK9olD2+pcqx5ww==}
575
- peerDependencies:
576
- '@types/react': '*'
577
- '@types/react-dom': '*'
578
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
579
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
580
- peerDependenciesMeta:
581
- '@types/react':
582
- optional: true
583
- '@types/react-dom':
584
- optional: true
585
-
586
- '@radix-ui/react-context@1.1.2':
587
- resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
588
- peerDependencies:
589
- '@types/react': '*'
590
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
591
- peerDependenciesMeta:
592
- '@types/react':
593
- optional: true
594
-
595
- '@radix-ui/react-dialog@1.1.15':
596
- resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
597
- peerDependencies:
598
- '@types/react': '*'
599
- '@types/react-dom': '*'
600
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
601
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
602
- peerDependenciesMeta:
603
- '@types/react':
604
- optional: true
605
- '@types/react-dom':
606
- optional: true
607
-
608
- '@radix-ui/react-direction@1.1.1':
609
- resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
610
- peerDependencies:
611
- '@types/react': '*'
612
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
613
- peerDependenciesMeta:
614
- '@types/react':
615
- optional: true
616
-
617
- '@radix-ui/react-dismissable-layer@1.1.11':
618
- resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
619
- peerDependencies:
620
- '@types/react': '*'
621
- '@types/react-dom': '*'
622
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
623
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
624
- peerDependenciesMeta:
625
- '@types/react':
626
- optional: true
627
- '@types/react-dom':
628
- optional: true
629
-
630
- '@radix-ui/react-dropdown-menu@2.1.16':
631
- resolution: {integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==}
632
- peerDependencies:
633
- '@types/react': '*'
634
- '@types/react-dom': '*'
635
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
636
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
637
- peerDependenciesMeta:
638
- '@types/react':
639
- optional: true
640
- '@types/react-dom':
641
- optional: true
642
-
643
- '@radix-ui/react-focus-guards@1.1.3':
644
- resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
645
- peerDependencies:
646
- '@types/react': '*'
647
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
648
- peerDependenciesMeta:
649
- '@types/react':
650
- optional: true
651
-
652
- '@radix-ui/react-focus-scope@1.1.7':
653
- resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
654
- peerDependencies:
655
- '@types/react': '*'
656
- '@types/react-dom': '*'
657
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
658
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
659
- peerDependenciesMeta:
660
- '@types/react':
661
- optional: true
662
- '@types/react-dom':
663
- optional: true
664
-
665
- '@radix-ui/react-form@0.1.8':
666
- resolution: {integrity: sha512-QM70k4Zwjttifr5a4sZFts9fn8FzHYvQ5PiB19O2HsYibaHSVt9fH9rzB0XZo/YcM+b7t/p7lYCT/F5eOeF5yQ==}
667
- peerDependencies:
668
- '@types/react': '*'
669
- '@types/react-dom': '*'
670
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
671
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
672
- peerDependenciesMeta:
673
- '@types/react':
674
- optional: true
675
- '@types/react-dom':
676
- optional: true
677
-
678
- '@radix-ui/react-hover-card@1.1.15':
679
- resolution: {integrity: sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg==}
680
- peerDependencies:
681
- '@types/react': '*'
682
- '@types/react-dom': '*'
683
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
684
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
685
- peerDependenciesMeta:
686
- '@types/react':
687
- optional: true
688
- '@types/react-dom':
689
- optional: true
690
-
691
- '@radix-ui/react-id@1.1.1':
692
- resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
693
- peerDependencies:
694
- '@types/react': '*'
695
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
696
- peerDependenciesMeta:
697
- '@types/react':
698
- optional: true
699
-
700
- '@radix-ui/react-label@2.1.7':
701
- resolution: {integrity: sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==}
702
- peerDependencies:
703
- '@types/react': '*'
704
- '@types/react-dom': '*'
705
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
706
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
707
- peerDependenciesMeta:
708
- '@types/react':
709
- optional: true
710
- '@types/react-dom':
711
- optional: true
712
-
713
- '@radix-ui/react-menu@2.1.16':
714
- resolution: {integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==}
715
- peerDependencies:
716
- '@types/react': '*'
717
- '@types/react-dom': '*'
718
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
719
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
720
- peerDependenciesMeta:
721
- '@types/react':
722
- optional: true
723
- '@types/react-dom':
724
- optional: true
725
-
726
- '@radix-ui/react-menubar@1.1.16':
727
- resolution: {integrity: sha512-EB1FktTz5xRRi2Er974AUQZWg2yVBb1yjip38/lgwtCVRd3a+maUoGHN/xs9Yv8SY8QwbSEb+YrxGadVWbEutA==}
728
- peerDependencies:
729
- '@types/react': '*'
730
- '@types/react-dom': '*'
731
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
732
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
733
- peerDependenciesMeta:
734
- '@types/react':
735
- optional: true
736
- '@types/react-dom':
737
- optional: true
738
-
739
- '@radix-ui/react-navigation-menu@1.2.14':
740
- resolution: {integrity: sha512-YB9mTFQvCOAQMHU+C/jVl96WmuWeltyUEpRJJky51huhds5W2FQr1J8D/16sQlf0ozxkPK8uF3niQMdUwZPv5w==}
741
- peerDependencies:
742
- '@types/react': '*'
743
- '@types/react-dom': '*'
744
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
745
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
746
- peerDependenciesMeta:
747
- '@types/react':
748
- optional: true
749
- '@types/react-dom':
750
- optional: true
751
-
752
- '@radix-ui/react-one-time-password-field@0.1.8':
753
- resolution: {integrity: sha512-ycS4rbwURavDPVjCb5iS3aG4lURFDILi6sKI/WITUMZ13gMmn/xGjpLoqBAalhJaDk8I3UbCM5GzKHrnzwHbvg==}
754
- peerDependencies:
755
- '@types/react': '*'
756
- '@types/react-dom': '*'
757
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
758
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
759
- peerDependenciesMeta:
760
- '@types/react':
761
- optional: true
762
- '@types/react-dom':
763
- optional: true
764
-
765
- '@radix-ui/react-password-toggle-field@0.1.3':
766
- resolution: {integrity: sha512-/UuCrDBWravcaMix4TdT+qlNdVwOM1Nck9kWx/vafXsdfj1ChfhOdfi3cy9SGBpWgTXwYCuboT/oYpJy3clqfw==}
767
- peerDependencies:
768
- '@types/react': '*'
769
- '@types/react-dom': '*'
770
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
771
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
772
- peerDependenciesMeta:
773
- '@types/react':
774
- optional: true
775
- '@types/react-dom':
776
- optional: true
777
-
778
- '@radix-ui/react-popover@1.1.15':
779
- resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
780
- peerDependencies:
781
- '@types/react': '*'
782
- '@types/react-dom': '*'
783
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
784
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
785
- peerDependenciesMeta:
786
- '@types/react':
787
- optional: true
788
- '@types/react-dom':
789
- optional: true
790
-
791
- '@radix-ui/react-popper@1.2.8':
792
- resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
793
- peerDependencies:
794
- '@types/react': '*'
795
- '@types/react-dom': '*'
796
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
797
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
798
- peerDependenciesMeta:
799
- '@types/react':
800
- optional: true
801
- '@types/react-dom':
802
- optional: true
803
-
804
- '@radix-ui/react-portal@1.1.9':
805
- resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
806
- peerDependencies:
807
- '@types/react': '*'
808
- '@types/react-dom': '*'
809
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
810
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
811
- peerDependenciesMeta:
812
- '@types/react':
813
- optional: true
814
- '@types/react-dom':
815
- optional: true
816
-
817
- '@radix-ui/react-presence@1.1.5':
818
- resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
819
- peerDependencies:
820
- '@types/react': '*'
821
- '@types/react-dom': '*'
822
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
823
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
824
- peerDependenciesMeta:
825
- '@types/react':
826
- optional: true
827
- '@types/react-dom':
828
- optional: true
829
-
830
- '@radix-ui/react-primitive@2.1.3':
831
- resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
832
- peerDependencies:
833
- '@types/react': '*'
834
- '@types/react-dom': '*'
835
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
836
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
837
- peerDependenciesMeta:
838
- '@types/react':
839
- optional: true
840
- '@types/react-dom':
841
- optional: true
842
-
843
- '@radix-ui/react-progress@1.1.7':
844
- resolution: {integrity: sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==}
845
- peerDependencies:
846
- '@types/react': '*'
847
- '@types/react-dom': '*'
848
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
849
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
850
- peerDependenciesMeta:
851
- '@types/react':
852
- optional: true
853
- '@types/react-dom':
854
- optional: true
855
-
856
- '@radix-ui/react-radio-group@1.3.8':
857
- resolution: {integrity: sha512-VBKYIYImA5zsxACdisNQ3BjCBfmbGH3kQlnFVqlWU4tXwjy7cGX8ta80BcrO+WJXIn5iBylEH3K6ZTlee//lgQ==}
858
- peerDependencies:
859
- '@types/react': '*'
860
- '@types/react-dom': '*'
861
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
862
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
863
- peerDependenciesMeta:
864
- '@types/react':
865
- optional: true
866
- '@types/react-dom':
867
- optional: true
868
-
869
- '@radix-ui/react-roving-focus@1.1.11':
870
- resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
871
- peerDependencies:
872
- '@types/react': '*'
873
- '@types/react-dom': '*'
874
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
875
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
876
- peerDependenciesMeta:
877
- '@types/react':
878
- optional: true
879
- '@types/react-dom':
880
- optional: true
881
-
882
- '@radix-ui/react-scroll-area@1.2.10':
883
- resolution: {integrity: sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==}
884
- peerDependencies:
885
- '@types/react': '*'
886
- '@types/react-dom': '*'
887
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
888
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
889
- peerDependenciesMeta:
890
- '@types/react':
891
- optional: true
892
- '@types/react-dom':
893
- optional: true
894
-
895
- '@radix-ui/react-select@2.2.6':
896
- resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
897
- peerDependencies:
898
- '@types/react': '*'
899
- '@types/react-dom': '*'
900
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
901
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
902
- peerDependenciesMeta:
903
- '@types/react':
904
- optional: true
905
- '@types/react-dom':
906
- optional: true
907
-
908
- '@radix-ui/react-separator@1.1.7':
909
- resolution: {integrity: sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==}
910
- peerDependencies:
911
- '@types/react': '*'
912
- '@types/react-dom': '*'
913
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
914
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
915
- peerDependenciesMeta:
916
- '@types/react':
917
- optional: true
918
- '@types/react-dom':
919
- optional: true
920
-
921
- '@radix-ui/react-slider@1.3.6':
922
- resolution: {integrity: sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==}
923
- peerDependencies:
924
- '@types/react': '*'
925
- '@types/react-dom': '*'
926
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
927
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
928
- peerDependenciesMeta:
929
- '@types/react':
930
- optional: true
931
- '@types/react-dom':
932
- optional: true
933
-
934
- '@radix-ui/react-slot@1.2.3':
935
- resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
936
- peerDependencies:
937
- '@types/react': '*'
938
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
939
- peerDependenciesMeta:
940
- '@types/react':
941
- optional: true
942
-
943
- '@radix-ui/react-switch@1.2.6':
944
- resolution: {integrity: sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==}
945
- peerDependencies:
946
- '@types/react': '*'
947
- '@types/react-dom': '*'
948
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
949
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
950
- peerDependenciesMeta:
951
- '@types/react':
952
- optional: true
953
- '@types/react-dom':
954
- optional: true
955
-
956
- '@radix-ui/react-tabs@1.1.13':
957
- resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
958
- peerDependencies:
959
- '@types/react': '*'
960
- '@types/react-dom': '*'
961
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
962
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
963
- peerDependenciesMeta:
964
- '@types/react':
965
- optional: true
966
- '@types/react-dom':
967
- optional: true
968
-
969
- '@radix-ui/react-toast@1.2.15':
970
- resolution: {integrity: sha512-3OSz3TacUWy4WtOXV38DggwxoqJK4+eDkNMl5Z/MJZaoUPaP4/9lf81xXMe1I2ReTAptverZUpbPY4wWwWyL5g==}
971
- peerDependencies:
972
- '@types/react': '*'
973
- '@types/react-dom': '*'
974
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
975
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
976
- peerDependenciesMeta:
977
- '@types/react':
978
- optional: true
979
- '@types/react-dom':
980
- optional: true
981
-
982
- '@radix-ui/react-toggle-group@1.1.11':
983
- resolution: {integrity: sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==}
984
- peerDependencies:
985
- '@types/react': '*'
986
- '@types/react-dom': '*'
987
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
988
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
989
- peerDependenciesMeta:
990
- '@types/react':
991
- optional: true
992
- '@types/react-dom':
993
- optional: true
994
-
995
- '@radix-ui/react-toggle@1.1.10':
996
- resolution: {integrity: sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==}
997
- peerDependencies:
998
- '@types/react': '*'
999
- '@types/react-dom': '*'
1000
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1001
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1002
- peerDependenciesMeta:
1003
- '@types/react':
1004
- optional: true
1005
- '@types/react-dom':
1006
- optional: true
1007
-
1008
- '@radix-ui/react-toolbar@1.1.11':
1009
- resolution: {integrity: sha512-4ol06/1bLoFu1nwUqzdD4Y5RZ9oDdKeiHIsntug54Hcr1pgaHiPqHFEaXI1IFP/EsOfROQZ8Mig9VTIRza6Tjg==}
1010
- peerDependencies:
1011
- '@types/react': '*'
1012
- '@types/react-dom': '*'
1013
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1014
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1015
- peerDependenciesMeta:
1016
- '@types/react':
1017
- optional: true
1018
- '@types/react-dom':
1019
- optional: true
1020
-
1021
- '@radix-ui/react-tooltip@1.2.8':
1022
- resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
1023
- peerDependencies:
1024
- '@types/react': '*'
1025
- '@types/react-dom': '*'
1026
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1027
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1028
- peerDependenciesMeta:
1029
- '@types/react':
1030
- optional: true
1031
- '@types/react-dom':
1032
- optional: true
1033
-
1034
- '@radix-ui/react-use-callback-ref@1.1.1':
1035
- resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
1036
- peerDependencies:
1037
- '@types/react': '*'
1038
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1039
- peerDependenciesMeta:
1040
- '@types/react':
1041
- optional: true
1042
-
1043
- '@radix-ui/react-use-controllable-state@1.2.2':
1044
- resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
1045
- peerDependencies:
1046
- '@types/react': '*'
1047
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1048
- peerDependenciesMeta:
1049
- '@types/react':
1050
- optional: true
1051
-
1052
- '@radix-ui/react-use-effect-event@0.0.2':
1053
- resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
1054
- peerDependencies:
1055
- '@types/react': '*'
1056
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1057
- peerDependenciesMeta:
1058
- '@types/react':
1059
- optional: true
1060
-
1061
- '@radix-ui/react-use-escape-keydown@1.1.1':
1062
- resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
1063
- peerDependencies:
1064
- '@types/react': '*'
1065
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1066
- peerDependenciesMeta:
1067
- '@types/react':
1068
- optional: true
1069
-
1070
- '@radix-ui/react-use-is-hydrated@0.1.0':
1071
- resolution: {integrity: sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==}
1072
- peerDependencies:
1073
- '@types/react': '*'
1074
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1075
- peerDependenciesMeta:
1076
- '@types/react':
1077
- optional: true
1078
-
1079
- '@radix-ui/react-use-layout-effect@1.1.1':
1080
- resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
1081
- peerDependencies:
1082
- '@types/react': '*'
1083
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1084
- peerDependenciesMeta:
1085
- '@types/react':
1086
- optional: true
1087
-
1088
- '@radix-ui/react-use-previous@1.1.1':
1089
- resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
1090
- peerDependencies:
1091
- '@types/react': '*'
1092
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1093
- peerDependenciesMeta:
1094
- '@types/react':
1095
- optional: true
1096
-
1097
- '@radix-ui/react-use-rect@1.1.1':
1098
- resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
1099
- peerDependencies:
1100
- '@types/react': '*'
1101
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1102
- peerDependenciesMeta:
1103
- '@types/react':
1104
- optional: true
1105
-
1106
- '@radix-ui/react-use-size@1.1.1':
1107
- resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
1108
- peerDependencies:
1109
- '@types/react': '*'
1110
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1111
- peerDependenciesMeta:
1112
- '@types/react':
1113
- optional: true
1114
-
1115
- '@radix-ui/react-visually-hidden@1.2.3':
1116
- resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
1117
- peerDependencies:
1118
- '@types/react': '*'
1119
- '@types/react-dom': '*'
1120
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1121
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
1122
- peerDependenciesMeta:
1123
- '@types/react':
1124
- optional: true
1125
- '@types/react-dom':
1126
- optional: true
1127
-
1128
- '@radix-ui/rect@1.1.1':
1129
- resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
1130
-
1131
- '@reduxjs/toolkit@2.11.2':
1132
- resolution: {integrity: sha512-Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ==}
1133
- peerDependencies:
1134
- react: ^16.9.0 || ^17.0.0 || ^18 || ^19
1135
- react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0
1136
- peerDependenciesMeta:
1137
- react:
1138
- optional: true
1139
- react-redux:
1140
- optional: true
1141
-
1142
- '@rolldown/pluginutils@1.0.0-rc.3':
1143
- resolution: {integrity: sha512-eybk3TjzzzV97Dlj5c+XrBFW57eTNhzod66y9HrBlzJ6NsCrWCp/2kaPS3K9wJmurBC0Tdw4yPjXKZqlznim3Q==}
1144
-
1145
- '@rollup/rollup-android-arm-eabi@4.59.0':
1146
- resolution: {integrity: sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==}
1147
- cpu: [arm]
1148
- os: [android]
1149
-
1150
- '@rollup/rollup-android-arm64@4.59.0':
1151
- resolution: {integrity: sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==}
1152
- cpu: [arm64]
1153
- os: [android]
1154
-
1155
- '@rollup/rollup-darwin-arm64@4.59.0':
1156
- resolution: {integrity: sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==}
1157
- cpu: [arm64]
1158
- os: [darwin]
1159
-
1160
- '@rollup/rollup-darwin-x64@4.59.0':
1161
- resolution: {integrity: sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==}
1162
- cpu: [x64]
1163
- os: [darwin]
1164
-
1165
- '@rollup/rollup-freebsd-arm64@4.59.0':
1166
- resolution: {integrity: sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==}
1167
- cpu: [arm64]
1168
- os: [freebsd]
1169
-
1170
- '@rollup/rollup-freebsd-x64@4.59.0':
1171
- resolution: {integrity: sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==}
1172
- cpu: [x64]
1173
- os: [freebsd]
1174
-
1175
- '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
1176
- resolution: {integrity: sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==}
1177
- cpu: [arm]
1178
- os: [linux]
1179
-
1180
- '@rollup/rollup-linux-arm-musleabihf@4.59.0':
1181
- resolution: {integrity: sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==}
1182
- cpu: [arm]
1183
- os: [linux]
1184
-
1185
- '@rollup/rollup-linux-arm64-gnu@4.59.0':
1186
- resolution: {integrity: sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==}
1187
- cpu: [arm64]
1188
- os: [linux]
1189
-
1190
- '@rollup/rollup-linux-arm64-musl@4.59.0':
1191
- resolution: {integrity: sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==}
1192
- cpu: [arm64]
1193
- os: [linux]
1194
-
1195
- '@rollup/rollup-linux-loong64-gnu@4.59.0':
1196
- resolution: {integrity: sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==}
1197
- cpu: [loong64]
1198
- os: [linux]
1199
-
1200
- '@rollup/rollup-linux-loong64-musl@4.59.0':
1201
- resolution: {integrity: sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==}
1202
- cpu: [loong64]
1203
- os: [linux]
1204
-
1205
- '@rollup/rollup-linux-ppc64-gnu@4.59.0':
1206
- resolution: {integrity: sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==}
1207
- cpu: [ppc64]
1208
- os: [linux]
1209
-
1210
- '@rollup/rollup-linux-ppc64-musl@4.59.0':
1211
- resolution: {integrity: sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==}
1212
- cpu: [ppc64]
1213
- os: [linux]
1214
-
1215
- '@rollup/rollup-linux-riscv64-gnu@4.59.0':
1216
- resolution: {integrity: sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==}
1217
- cpu: [riscv64]
1218
- os: [linux]
1219
-
1220
- '@rollup/rollup-linux-riscv64-musl@4.59.0':
1221
- resolution: {integrity: sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==}
1222
- cpu: [riscv64]
1223
- os: [linux]
1224
-
1225
- '@rollup/rollup-linux-s390x-gnu@4.59.0':
1226
- resolution: {integrity: sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==}
1227
- cpu: [s390x]
1228
- os: [linux]
1229
-
1230
- '@rollup/rollup-linux-x64-gnu@4.59.0':
1231
- resolution: {integrity: sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==}
1232
- cpu: [x64]
1233
- os: [linux]
1234
-
1235
- '@rollup/rollup-linux-x64-musl@4.59.0':
1236
- resolution: {integrity: sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==}
1237
- cpu: [x64]
1238
- os: [linux]
1239
-
1240
- '@rollup/rollup-openbsd-x64@4.59.0':
1241
- resolution: {integrity: sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==}
1242
- cpu: [x64]
1243
- os: [openbsd]
1244
-
1245
- '@rollup/rollup-openharmony-arm64@4.59.0':
1246
- resolution: {integrity: sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==}
1247
- cpu: [arm64]
1248
- os: [openharmony]
1249
-
1250
- '@rollup/rollup-win32-arm64-msvc@4.59.0':
1251
- resolution: {integrity: sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==}
1252
- cpu: [arm64]
1253
- os: [win32]
1254
-
1255
- '@rollup/rollup-win32-ia32-msvc@4.59.0':
1256
- resolution: {integrity: sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==}
1257
- cpu: [ia32]
1258
- os: [win32]
1259
-
1260
- '@rollup/rollup-win32-x64-gnu@4.59.0':
1261
- resolution: {integrity: sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==}
1262
- cpu: [x64]
1263
- os: [win32]
1264
-
1265
- '@rollup/rollup-win32-x64-msvc@4.59.0':
1266
- resolution: {integrity: sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==}
1267
- cpu: [x64]
1268
- os: [win32]
1269
-
1270
- '@standard-schema/spec@1.1.0':
1271
- resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
1272
-
1273
- '@standard-schema/utils@0.3.0':
1274
- resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
1275
-
1276
- '@tailwindcss/node@4.2.1':
1277
- resolution: {integrity: sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==}
1278
-
1279
- '@tailwindcss/oxide-android-arm64@4.2.1':
1280
- resolution: {integrity: sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==}
1281
- engines: {node: '>= 20'}
1282
- cpu: [arm64]
1283
- os: [android]
1284
-
1285
- '@tailwindcss/oxide-darwin-arm64@4.2.1':
1286
- resolution: {integrity: sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==}
1287
- engines: {node: '>= 20'}
1288
- cpu: [arm64]
1289
- os: [darwin]
1290
-
1291
- '@tailwindcss/oxide-darwin-x64@4.2.1':
1292
- resolution: {integrity: sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==}
1293
- engines: {node: '>= 20'}
1294
- cpu: [x64]
1295
- os: [darwin]
1296
-
1297
- '@tailwindcss/oxide-freebsd-x64@4.2.1':
1298
- resolution: {integrity: sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==}
1299
- engines: {node: '>= 20'}
1300
- cpu: [x64]
1301
- os: [freebsd]
1302
-
1303
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1':
1304
- resolution: {integrity: sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==}
1305
- engines: {node: '>= 20'}
1306
- cpu: [arm]
1307
- os: [linux]
1308
-
1309
- '@tailwindcss/oxide-linux-arm64-gnu@4.2.1':
1310
- resolution: {integrity: sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==}
1311
- engines: {node: '>= 20'}
1312
- cpu: [arm64]
1313
- os: [linux]
1314
-
1315
- '@tailwindcss/oxide-linux-arm64-musl@4.2.1':
1316
- resolution: {integrity: sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==}
1317
- engines: {node: '>= 20'}
1318
- cpu: [arm64]
1319
- os: [linux]
1320
-
1321
- '@tailwindcss/oxide-linux-x64-gnu@4.2.1':
1322
- resolution: {integrity: sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==}
1323
- engines: {node: '>= 20'}
1324
- cpu: [x64]
1325
- os: [linux]
1326
-
1327
- '@tailwindcss/oxide-linux-x64-musl@4.2.1':
1328
- resolution: {integrity: sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==}
1329
- engines: {node: '>= 20'}
1330
- cpu: [x64]
1331
- os: [linux]
1332
-
1333
- '@tailwindcss/oxide-wasm32-wasi@4.2.1':
1334
- resolution: {integrity: sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==}
1335
- engines: {node: '>=14.0.0'}
1336
- cpu: [wasm32]
1337
- bundledDependencies:
1338
- - '@napi-rs/wasm-runtime'
1339
- - '@emnapi/core'
1340
- - '@emnapi/runtime'
1341
- - '@tybys/wasm-util'
1342
- - '@emnapi/wasi-threads'
1343
- - tslib
1344
-
1345
- '@tailwindcss/oxide-win32-arm64-msvc@4.2.1':
1346
- resolution: {integrity: sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==}
1347
- engines: {node: '>= 20'}
1348
- cpu: [arm64]
1349
- os: [win32]
1350
-
1351
- '@tailwindcss/oxide-win32-x64-msvc@4.2.1':
1352
- resolution: {integrity: sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==}
1353
- engines: {node: '>= 20'}
1354
- cpu: [x64]
1355
- os: [win32]
1356
-
1357
- '@tailwindcss/oxide@4.2.1':
1358
- resolution: {integrity: sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==}
1359
- engines: {node: '>= 20'}
1360
-
1361
- '@tailwindcss/vite@4.2.1':
1362
- resolution: {integrity: sha512-TBf2sJjYeb28jD2U/OhwdW0bbOsxkWPwQ7SrqGf9sVcoYwZj7rkXljroBO9wKBut9XnmQLXanuDUeqQK0lGg/w==}
1363
- peerDependencies:
1364
- vite: ^5.2.0 || ^6 || ^7
1365
-
1366
- '@tanstack/query-core@5.90.20':
1367
- resolution: {integrity: sha512-OMD2HLpNouXEfZJWcKeVKUgQ5n+n3A2JFmBaScpNDUqSrQSjiveC7dKMe53uJUg1nDG16ttFPz2xfilz6i2uVg==}
1368
-
1369
- '@tanstack/react-query@5.90.21':
1370
- resolution: {integrity: sha512-0Lu6y5t+tvlTJMTO7oh5NSpJfpg/5D41LlThfepTixPYkJ0sE2Jj0m0f6yYqujBwIXlId87e234+MxG3D3g7kg==}
1371
- peerDependencies:
1372
- react: ^18 || ^19
1373
-
1374
- '@types/babel__core@7.20.5':
1375
- resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
1376
-
1377
- '@types/babel__generator@7.27.0':
1378
- resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
1379
-
1380
- '@types/babel__template@7.4.4':
1381
- resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
1382
-
1383
- '@types/babel__traverse@7.28.0':
1384
- resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
1385
-
1386
- '@types/d3-array@3.2.2':
1387
- resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
1388
-
1389
- '@types/d3-color@3.1.3':
1390
- resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
1391
-
1392
- '@types/d3-drag@3.0.7':
1393
- resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==}
1394
-
1395
- '@types/d3-ease@3.0.2':
1396
- resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
1397
-
1398
- '@types/d3-interpolate@3.0.4':
1399
- resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
1400
-
1401
- '@types/d3-path@3.1.1':
1402
- resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
1403
-
1404
- '@types/d3-scale@4.0.9':
1405
- resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
1406
-
1407
- '@types/d3-selection@3.0.11':
1408
- resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==}
1409
-
1410
- '@types/d3-shape@3.1.8':
1411
- resolution: {integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==}
1412
-
1413
- '@types/d3-time@3.0.4':
1414
- resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
1415
-
1416
- '@types/d3-timer@3.0.2':
1417
- resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
1418
-
1419
- '@types/d3-transition@3.0.9':
1420
- resolution: {integrity: sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==}
1421
-
1422
- '@types/d3-zoom@3.0.8':
1423
- resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==}
1424
-
1425
- '@types/dagre@0.7.54':
1426
- resolution: {integrity: sha512-QjcRY+adGbYvBFS7cwv5txhVIwX1XXIUswWl+kSQTbI6NjgZydrZkEKX/etzVd7i+bCsCb40Z/xlBY5eoFuvWQ==}
1427
-
1428
- '@types/debug@4.1.12':
1429
- resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
1430
-
1431
- '@types/estree-jsx@1.0.5':
1432
- resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
1433
-
1434
- '@types/estree@1.0.8':
1435
- resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
1436
-
1437
- '@types/hast@3.0.4':
1438
- resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
1439
-
1440
- '@types/mdast@4.0.4':
1441
- resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
1442
-
1443
- '@types/ms@2.1.0':
1444
- resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
1445
-
1446
- '@types/node@24.10.13':
1447
- resolution: {integrity: sha512-oH72nZRfDv9lADUBSo104Aq7gPHpQZc4BTx38r9xf9pg5LfP6EzSyH2n7qFmmxRQXh7YlUXODcYsg6PuTDSxGg==}
1448
-
1449
- '@types/react-dom@19.2.3':
1450
- resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
1451
- peerDependencies:
1452
- '@types/react': ^19.2.0
1453
-
1454
- '@types/react@19.2.14':
1455
- resolution: {integrity: sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==}
1456
-
1457
- '@types/trusted-types@2.0.7':
1458
- resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
1459
-
1460
- '@types/unist@2.0.11':
1461
- resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
1462
-
1463
- '@types/unist@3.0.3':
1464
- resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
1465
-
1466
- '@types/use-sync-external-store@0.0.6':
1467
- resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==}
1468
-
1469
- '@ungap/structured-clone@1.3.0':
1470
- resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
1471
-
1472
- '@vitejs/plugin-react@5.1.4':
1473
- resolution: {integrity: sha512-VIcFLdRi/VYRU8OL/puL7QXMYafHmqOnwTZY50U1JPlCNj30PxCMx65c494b1K9be9hX83KVt0+gTEwTWLqToA==}
1474
- engines: {node: ^20.19.0 || >=22.12.0}
1475
- peerDependencies:
1476
- vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
1477
-
1478
- '@xyflow/react@12.10.1':
1479
- resolution: {integrity: sha512-5eSWtIK/+rkldOuFbOOz44CRgQRjtS9v5nufk77DV+XBnfCGL9HAQ8PG00o2ZYKqkEU/Ak6wrKC95Tu+2zuK3Q==}
1480
- peerDependencies:
1481
- react: '>=17'
1482
- react-dom: '>=17'
1483
-
1484
- '@xyflow/system@0.0.75':
1485
- resolution: {integrity: sha512-iXs+AGFLi8w/VlAoc/iSxk+CxfT6o64Uw/k0CKASOPqjqz6E0rb5jFZgJtXGZCpfQI6OQpu5EnumP5fGxQheaQ==}
1486
-
1487
- ag-charts-types@13.1.0:
1488
- resolution: {integrity: sha512-DytRM3CXli+Y013SC1Mr8lQBrhVTACK+11ilDHOhwUM0sRpmGuR51XFGcBKOliW1Vas1AycP31Cm3Pp0jx3hqw==}
1489
-
1490
- ag-grid-community@35.1.0:
1491
- resolution: {integrity: sha512-yWFQfRNjv3KUBkHHzFdDOYGjPcDMU0B8Up4qG651diFlGRUGEGVs94SK73niWvk1FDZdpV9oWrwq3f30/qAoVg==}
1492
-
1493
- ag-grid-react@35.1.0:
1494
- resolution: {integrity: sha512-n8pJh4RTpos8stzz91nEhTCZZdLy9bjQYAGxIxJ8ocVagnEsAk9T5Vz/VEKUhOGz36il68n7TVbVWSuUA3a+mg==}
1495
- peerDependencies:
1496
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1497
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1498
-
1499
- aria-hidden@1.2.6:
1500
- resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
1501
- engines: {node: '>=10'}
1502
-
1503
- bail@2.0.2:
1504
- resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
1505
-
1506
- baseline-browser-mapping@2.10.0:
1507
- resolution: {integrity: sha512-lIyg0szRfYbiy67j9KN8IyeD7q7hcmqnJ1ddWmNt19ItGpNN64mnllmxUNFIOdOm6by97jlL6wfpTTJrmnjWAA==}
1508
- engines: {node: '>=6.0.0'}
1509
- hasBin: true
1510
-
1511
- browserslist@4.28.1:
1512
- resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
1513
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
1514
- hasBin: true
1515
-
1516
- caniuse-lite@1.0.30001774:
1517
- resolution: {integrity: sha512-DDdwPGz99nmIEv216hKSgLD+D4ikHQHjBC/seF98N9CPqRX4M5mSxT9eTV6oyisnJcuzxtZy4n17yKKQYmYQOA==}
1518
-
1519
- ccount@2.0.1:
1520
- resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
1521
-
1522
- character-entities-html4@2.1.0:
1523
- resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
1524
-
1525
- character-entities-legacy@3.0.0:
1526
- resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
1527
-
1528
- character-entities@2.0.2:
1529
- resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
1530
-
1531
- character-reference-invalid@2.0.1:
1532
- resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
1533
-
1534
- class-variance-authority@0.7.1:
1535
- resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
1536
-
1537
- classcat@5.0.5:
1538
- resolution: {integrity: sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==}
1539
-
1540
- clsx@2.1.1:
1541
- resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
1542
- engines: {node: '>=6'}
1543
-
1544
- cmdk@1.1.1:
1545
- resolution: {integrity: sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==}
1546
- peerDependencies:
1547
- react: ^18 || ^19 || ^19.0.0-rc
1548
- react-dom: ^18 || ^19 || ^19.0.0-rc
1549
-
1550
- comma-separated-tokens@2.0.3:
1551
- resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
1552
-
1553
- convert-source-map@2.0.0:
1554
- resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
1555
-
1556
- cookie@1.1.1:
1557
- resolution: {integrity: sha512-ei8Aos7ja0weRpFzJnEA9UHJ/7XQmqglbRwnf2ATjcB9Wq874VKH9kfjjirM6UhU2/E5fFYadylyhFldcqSidQ==}
1558
- engines: {node: '>=18'}
1559
-
1560
- csstype@3.2.3:
1561
- resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
1562
-
1563
- d3-array@3.2.4:
1564
- resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
1565
- engines: {node: '>=12'}
1566
-
1567
- d3-color@3.1.0:
1568
- resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
1569
- engines: {node: '>=12'}
1570
-
1571
- d3-dispatch@3.0.1:
1572
- resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==}
1573
- engines: {node: '>=12'}
1574
-
1575
- d3-drag@3.0.0:
1576
- resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==}
1577
- engines: {node: '>=12'}
1578
-
1579
- d3-ease@3.0.1:
1580
- resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
1581
- engines: {node: '>=12'}
1582
-
1583
- d3-format@3.1.2:
1584
- resolution: {integrity: sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==}
1585
- engines: {node: '>=12'}
1586
-
1587
- d3-interpolate@3.0.1:
1588
- resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
1589
- engines: {node: '>=12'}
1590
-
1591
- d3-path@3.1.0:
1592
- resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
1593
- engines: {node: '>=12'}
1594
-
1595
- d3-scale@4.0.2:
1596
- resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
1597
- engines: {node: '>=12'}
1598
-
1599
- d3-selection@3.0.0:
1600
- resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==}
1601
- engines: {node: '>=12'}
1602
-
1603
- d3-shape@3.2.0:
1604
- resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
1605
- engines: {node: '>=12'}
1606
-
1607
- d3-time-format@4.1.0:
1608
- resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
1609
- engines: {node: '>=12'}
1610
-
1611
- d3-time@3.1.0:
1612
- resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
1613
- engines: {node: '>=12'}
1614
-
1615
- d3-timer@3.0.1:
1616
- resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
1617
- engines: {node: '>=12'}
1618
-
1619
- d3-transition@3.0.1:
1620
- resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==}
1621
- engines: {node: '>=12'}
1622
- peerDependencies:
1623
- d3-selection: 2 - 3
1624
-
1625
- d3-zoom@3.0.0:
1626
- resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==}
1627
- engines: {node: '>=12'}
1628
-
1629
- dagre@0.8.5:
1630
- resolution: {integrity: sha512-/aTqmnRta7x7MCCpExk7HQL2O4owCT2h8NT//9I1OQ9vt29Pa0BzSAkR5lwFUcQ7491yVi/3CXU9jQ5o0Mn2Sw==}
1631
-
1632
- debug@4.4.3:
1633
- resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
1634
- engines: {node: '>=6.0'}
1635
- peerDependencies:
1636
- supports-color: '*'
1637
- peerDependenciesMeta:
1638
- supports-color:
1639
- optional: true
1640
-
1641
- decimal.js-light@2.5.1:
1642
- resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
1643
-
1644
- decode-named-character-reference@1.3.0:
1645
- resolution: {integrity: sha512-GtpQYB283KrPp6nRw50q3U9/VfOutZOe103qlN7BPP6Ad27xYnOIWv4lPzo8HCAL+mMZofJ9KEy30fq6MfaK6Q==}
1646
-
1647
- dequal@2.0.3:
1648
- resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
1649
- engines: {node: '>=6'}
1650
-
1651
- detect-libc@2.1.2:
1652
- resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
1653
- engines: {node: '>=8'}
1654
-
1655
- detect-node-es@1.1.0:
1656
- resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
1657
-
1658
- devlop@1.1.0:
1659
- resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
1660
-
1661
- dompurify@3.2.7:
1662
- resolution: {integrity: sha512-WhL/YuveyGXJaerVlMYGWhvQswa7myDG17P7Vu65EWC05o8vfeNbvNf4d/BOvH99+ZW+LlQsc1GDKMa1vNK6dw==}
1663
-
1664
- electron-to-chromium@1.5.302:
1665
- resolution: {integrity: sha512-sM6HAN2LyK82IyPBpznDRqlTQAtuSaO+ShzFiWTvoMJLHyZ+Y39r8VMfHzwbU8MVBzQ4Wdn85+wlZl2TLGIlwg==}
1666
-
1667
- enhanced-resolve@5.19.0:
1668
- resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==}
1669
- engines: {node: '>=10.13.0'}
1670
-
1671
- es-toolkit@1.44.0:
1672
- resolution: {integrity: sha512-6penXeZalaV88MM3cGkFZZfOoLGWshWWfdy0tWw/RlVVyhvMaWSBTOvXNeiW3e5FwdS5ePW0LGEu17zT139ktg==}
1673
-
1674
- esbuild@0.27.3:
1675
- resolution: {integrity: sha512-8VwMnyGCONIs6cWue2IdpHxHnAjzxnw2Zr7MkVxB2vjmQ2ivqGFb4LEG3SMnv0Gb2F/G/2yA8zUaiL1gywDCCg==}
1676
- engines: {node: '>=18'}
1677
- hasBin: true
1678
-
1679
- escalade@3.2.0:
1680
- resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
1681
- engines: {node: '>=6'}
1682
-
1683
- escape-string-regexp@5.0.0:
1684
- resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
1685
- engines: {node: '>=12'}
1686
-
1687
- estree-util-is-identifier-name@3.0.0:
1688
- resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
1689
-
1690
- eventemitter3@5.0.4:
1691
- resolution: {integrity: sha512-mlsTRyGaPBjPedk6Bvw+aqbsXDtoAyAzm5MO7JgU+yVRyMQ5O8bD4Kcci7BS85f93veegeCPkL8R4GLClnjLFw==}
1692
-
1693
- extend@3.0.2:
1694
- resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
1695
-
1696
- fdir@6.5.0:
1697
- resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
1698
- engines: {node: '>=12.0.0'}
1699
- peerDependencies:
1700
- picomatch: ^3 || ^4
1701
- peerDependenciesMeta:
1702
- picomatch:
1703
- optional: true
1704
-
1705
- fsevents@2.3.3:
1706
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
1707
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
1708
- os: [darwin]
1709
-
1710
- gensync@1.0.0-beta.2:
1711
- resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
1712
- engines: {node: '>=6.9.0'}
1713
-
1714
- get-nonce@1.0.1:
1715
- resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
1716
- engines: {node: '>=6'}
1717
-
1718
- graceful-fs@4.2.11:
1719
- resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
1720
-
1721
- graphlib@2.1.8:
1722
- resolution: {integrity: sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==}
1723
-
1724
- hast-util-to-jsx-runtime@2.3.6:
1725
- resolution: {integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==}
1726
-
1727
- hast-util-whitespace@3.0.0:
1728
- resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
1729
-
1730
- html-url-attributes@3.0.1:
1731
- resolution: {integrity: sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==}
1732
-
1733
- immer@10.2.0:
1734
- resolution: {integrity: sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==}
1735
-
1736
- immer@11.1.4:
1737
- resolution: {integrity: sha512-XREFCPo6ksxVzP4E0ekD5aMdf8WMwmdNaz6vuvxgI40UaEiu6q3p8X52aU6GdyvLY3XXX/8R7JOTXStz/nBbRw==}
1738
-
1739
- inline-style-parser@0.2.7:
1740
- resolution: {integrity: sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==}
1741
-
1742
- internmap@2.0.3:
1743
- resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
1744
- engines: {node: '>=12'}
1745
-
1746
- is-alphabetical@2.0.1:
1747
- resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
1748
-
1749
- is-alphanumerical@2.0.1:
1750
- resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
1751
-
1752
- is-decimal@2.0.1:
1753
- resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
1754
-
1755
- is-hexadecimal@2.0.1:
1756
- resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
1757
-
1758
- is-plain-obj@4.1.0:
1759
- resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
1760
- engines: {node: '>=12'}
1761
-
1762
- jiti@2.6.1:
1763
- resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
1764
- hasBin: true
1765
-
1766
- js-tokens@4.0.0:
1767
- resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1768
-
1769
- jsesc@3.1.0:
1770
- resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
1771
- engines: {node: '>=6'}
1772
- hasBin: true
1773
-
1774
- json5@2.2.3:
1775
- resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1776
- engines: {node: '>=6'}
1777
- hasBin: true
1778
-
1779
- lightningcss-android-arm64@1.31.1:
1780
- resolution: {integrity: sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==}
1781
- engines: {node: '>= 12.0.0'}
1782
- cpu: [arm64]
1783
- os: [android]
1784
-
1785
- lightningcss-darwin-arm64@1.31.1:
1786
- resolution: {integrity: sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==}
1787
- engines: {node: '>= 12.0.0'}
1788
- cpu: [arm64]
1789
- os: [darwin]
1790
-
1791
- lightningcss-darwin-x64@1.31.1:
1792
- resolution: {integrity: sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==}
1793
- engines: {node: '>= 12.0.0'}
1794
- cpu: [x64]
1795
- os: [darwin]
1796
-
1797
- lightningcss-freebsd-x64@1.31.1:
1798
- resolution: {integrity: sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==}
1799
- engines: {node: '>= 12.0.0'}
1800
- cpu: [x64]
1801
- os: [freebsd]
1802
-
1803
- lightningcss-linux-arm-gnueabihf@1.31.1:
1804
- resolution: {integrity: sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==}
1805
- engines: {node: '>= 12.0.0'}
1806
- cpu: [arm]
1807
- os: [linux]
1808
-
1809
- lightningcss-linux-arm64-gnu@1.31.1:
1810
- resolution: {integrity: sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==}
1811
- engines: {node: '>= 12.0.0'}
1812
- cpu: [arm64]
1813
- os: [linux]
1814
-
1815
- lightningcss-linux-arm64-musl@1.31.1:
1816
- resolution: {integrity: sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==}
1817
- engines: {node: '>= 12.0.0'}
1818
- cpu: [arm64]
1819
- os: [linux]
1820
-
1821
- lightningcss-linux-x64-gnu@1.31.1:
1822
- resolution: {integrity: sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==}
1823
- engines: {node: '>= 12.0.0'}
1824
- cpu: [x64]
1825
- os: [linux]
1826
-
1827
- lightningcss-linux-x64-musl@1.31.1:
1828
- resolution: {integrity: sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==}
1829
- engines: {node: '>= 12.0.0'}
1830
- cpu: [x64]
1831
- os: [linux]
1832
-
1833
- lightningcss-win32-arm64-msvc@1.31.1:
1834
- resolution: {integrity: sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==}
1835
- engines: {node: '>= 12.0.0'}
1836
- cpu: [arm64]
1837
- os: [win32]
1838
-
1839
- lightningcss-win32-x64-msvc@1.31.1:
1840
- resolution: {integrity: sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==}
1841
- engines: {node: '>= 12.0.0'}
1842
- cpu: [x64]
1843
- os: [win32]
1844
-
1845
- lightningcss@1.31.1:
1846
- resolution: {integrity: sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==}
1847
- engines: {node: '>= 12.0.0'}
1848
-
1849
- lodash@4.17.23:
1850
- resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
1851
-
1852
- longest-streak@3.1.0:
1853
- resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
1854
-
1855
- loose-envify@1.4.0:
1856
- resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1857
- hasBin: true
1858
-
1859
- lru-cache@5.1.1:
1860
- resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
1861
-
1862
- lucide-react@0.575.0:
1863
- resolution: {integrity: sha512-VuXgKZrk0uiDlWjGGXmKV6MSk9Yy4l10qgVvzGn2AWBx1Ylt0iBexKOAoA6I7JO3m+M9oeovJd3yYENfkUbOeg==}
1864
- peerDependencies:
1865
- react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
1866
-
1867
- magic-string@0.30.21:
1868
- resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
1869
-
1870
- markdown-table@3.0.4:
1871
- resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
1872
-
1873
- marked@14.0.0:
1874
- resolution: {integrity: sha512-uIj4+faQ+MgHgwUW1l2PsPglZLOLOT1uErt06dAPtx2kjteLAkbsd/0FiYg/MGS+i7ZKLb7w2WClxHkzOOuryQ==}
1875
- engines: {node: '>= 18'}
1876
- hasBin: true
1877
-
1878
- mdast-util-find-and-replace@3.0.2:
1879
- resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
1880
-
1881
- mdast-util-from-markdown@2.0.3:
1882
- resolution: {integrity: sha512-W4mAWTvSlKvf8L6J+VN9yLSqQ9AOAAvHuoDAmPkz4dHf553m5gVj2ejadHJhoJmcmxEnOv6Pa8XJhpxE93kb8Q==}
1883
-
1884
- mdast-util-gfm-autolink-literal@2.0.1:
1885
- resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
1886
-
1887
- mdast-util-gfm-footnote@2.1.0:
1888
- resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==}
1889
-
1890
- mdast-util-gfm-strikethrough@2.0.0:
1891
- resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
1892
-
1893
- mdast-util-gfm-table@2.0.0:
1894
- resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
1895
-
1896
- mdast-util-gfm-task-list-item@2.0.0:
1897
- resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
1898
-
1899
- mdast-util-gfm@3.1.0:
1900
- resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
1901
-
1902
- mdast-util-mdx-expression@2.0.1:
1903
- resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
1904
-
1905
- mdast-util-mdx-jsx@3.2.0:
1906
- resolution: {integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==}
1907
-
1908
- mdast-util-mdxjs-esm@2.0.1:
1909
- resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
1910
-
1911
- mdast-util-phrasing@4.1.0:
1912
- resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
1913
-
1914
- mdast-util-to-hast@13.2.1:
1915
- resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
1916
-
1917
- mdast-util-to-markdown@2.1.2:
1918
- resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
1919
-
1920
- mdast-util-to-string@4.0.0:
1921
- resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
1922
-
1923
- micromark-core-commonmark@2.0.3:
1924
- resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==}
1925
-
1926
- micromark-extension-gfm-autolink-literal@2.1.0:
1927
- resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
1928
-
1929
- micromark-extension-gfm-footnote@2.1.0:
1930
- resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
1931
-
1932
- micromark-extension-gfm-strikethrough@2.1.0:
1933
- resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
1934
-
1935
- micromark-extension-gfm-table@2.1.1:
1936
- resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==}
1937
-
1938
- micromark-extension-gfm-tagfilter@2.0.0:
1939
- resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
1940
-
1941
- micromark-extension-gfm-task-list-item@2.1.0:
1942
- resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
1943
-
1944
- micromark-extension-gfm@3.0.0:
1945
- resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
1946
-
1947
- micromark-factory-destination@2.0.1:
1948
- resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
1949
-
1950
- micromark-factory-label@2.0.1:
1951
- resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
1952
-
1953
- micromark-factory-space@2.0.1:
1954
- resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
1955
-
1956
- micromark-factory-title@2.0.1:
1957
- resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
1958
-
1959
- micromark-factory-whitespace@2.0.1:
1960
- resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
1961
-
1962
- micromark-util-character@2.1.1:
1963
- resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
1964
-
1965
- micromark-util-chunked@2.0.1:
1966
- resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
1967
-
1968
- micromark-util-classify-character@2.0.1:
1969
- resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
1970
-
1971
- micromark-util-combine-extensions@2.0.1:
1972
- resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
1973
-
1974
- micromark-util-decode-numeric-character-reference@2.0.2:
1975
- resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
1976
-
1977
- micromark-util-decode-string@2.0.1:
1978
- resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
1979
-
1980
- micromark-util-encode@2.0.1:
1981
- resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
1982
-
1983
- micromark-util-html-tag-name@2.0.1:
1984
- resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
1985
-
1986
- micromark-util-normalize-identifier@2.0.1:
1987
- resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
1988
-
1989
- micromark-util-resolve-all@2.0.1:
1990
- resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
1991
-
1992
- micromark-util-sanitize-uri@2.0.1:
1993
- resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
1994
-
1995
- micromark-util-subtokenize@2.1.0:
1996
- resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==}
1997
-
1998
- micromark-util-symbol@2.0.1:
1999
- resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
2000
-
2001
- micromark-util-types@2.0.2:
2002
- resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
2003
-
2004
- micromark@4.0.2:
2005
- resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==}
2006
-
2007
- monaco-editor@0.55.1:
2008
- resolution: {integrity: sha512-jz4x+TJNFHwHtwuV9vA9rMujcZRb0CEilTEwG2rRSpe/A7Jdkuj8xPKttCgOh+v/lkHy7HsZ64oj+q3xoAFl9A==}
2009
-
2010
- ms@2.1.3:
2011
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
2012
-
2013
- nanoid@3.3.11:
2014
- resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
2015
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
2016
- hasBin: true
2017
-
2018
- next-themes@0.4.6:
2019
- resolution: {integrity: sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==}
2020
- peerDependencies:
2021
- react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
2022
- react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
2023
-
2024
- node-releases@2.0.27:
2025
- resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
2026
-
2027
- object-assign@4.1.1:
2028
- resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
2029
- engines: {node: '>=0.10.0'}
2030
-
2031
- parse-entities@4.0.2:
2032
- resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==}
2033
-
2034
- picocolors@1.1.1:
2035
- resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
2036
-
2037
- picomatch@4.0.3:
2038
- resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
2039
- engines: {node: '>=12'}
2040
-
2041
- postcss@8.5.6:
2042
- resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
2043
- engines: {node: ^10 || ^12 || >=14}
2044
-
2045
- prop-types@15.8.1:
2046
- resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
2047
-
2048
- property-information@7.1.0:
2049
- resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
2050
-
2051
- radix-ui@1.4.3:
2052
- resolution: {integrity: sha512-aWizCQiyeAenIdUbqEpXgRA1ya65P13NKn/W8rWkcN0OPkRDxdBVLWnIEDsS2RpwCK2nobI7oMUSmexzTDyAmA==}
2053
- peerDependencies:
2054
- '@types/react': '*'
2055
- '@types/react-dom': '*'
2056
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
2057
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
2058
- peerDependenciesMeta:
2059
- '@types/react':
2060
- optional: true
2061
- '@types/react-dom':
2062
- optional: true
2063
-
2064
- react-dom@19.2.4:
2065
- resolution: {integrity: sha512-AXJdLo8kgMbimY95O2aKQqsz2iWi9jMgKJhRBAxECE4IFxfcazB2LmzloIoibJI3C12IlY20+KFaLv+71bUJeQ==}
2066
- peerDependencies:
2067
- react: ^19.2.4
2068
-
2069
- react-is@16.13.1:
2070
- resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
2071
-
2072
- react-markdown@10.1.0:
2073
- resolution: {integrity: sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==}
2074
- peerDependencies:
2075
- '@types/react': '>=18'
2076
- react: '>=18'
2077
-
2078
- react-redux@9.2.0:
2079
- resolution: {integrity: sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==}
2080
- peerDependencies:
2081
- '@types/react': ^18.2.25 || ^19
2082
- react: ^18.0 || ^19
2083
- redux: ^5.0.0
2084
- peerDependenciesMeta:
2085
- '@types/react':
2086
- optional: true
2087
- redux:
2088
- optional: true
2089
-
2090
- react-refresh@0.18.0:
2091
- resolution: {integrity: sha512-QgT5//D3jfjJb6Gsjxv0Slpj23ip+HtOpnNgnb2S5zU3CB26G/IDPGoy4RJB42wzFE46DRsstbW6tKHoKbhAxw==}
2092
- engines: {node: '>=0.10.0'}
2093
-
2094
- react-remove-scroll-bar@2.3.8:
2095
- resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
2096
- engines: {node: '>=10'}
2097
- peerDependencies:
2098
- '@types/react': '*'
2099
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2100
- peerDependenciesMeta:
2101
- '@types/react':
2102
- optional: true
2103
-
2104
- react-remove-scroll@2.7.2:
2105
- resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
2106
- engines: {node: '>=10'}
2107
- peerDependencies:
2108
- '@types/react': '*'
2109
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2110
- peerDependenciesMeta:
2111
- '@types/react':
2112
- optional: true
2113
-
2114
- react-router-dom@7.13.1:
2115
- resolution: {integrity: sha512-UJnV3Rxc5TgUPJt2KJpo1Jpy0OKQr0AjgbZzBFjaPJcFOb2Y8jA5H3LT8HUJAiRLlWrEXWHbF1Z4SCZaQjWDHw==}
2116
- engines: {node: '>=20.0.0'}
2117
- peerDependencies:
2118
- react: '>=18'
2119
- react-dom: '>=18'
2120
-
2121
- react-router@7.13.1:
2122
- resolution: {integrity: sha512-td+xP4X2/6BJvZoX6xw++A2DdEi++YypA69bJUV5oVvqf6/9/9nNlD70YO1e9d3MyamJEBQFEzk6mbfDYbqrSA==}
2123
- engines: {node: '>=20.0.0'}
2124
- peerDependencies:
2125
- react: '>=18'
2126
- react-dom: '>=18'
2127
- peerDependenciesMeta:
2128
- react-dom:
2129
- optional: true
2130
-
2131
- react-style-singleton@2.2.3:
2132
- resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
2133
- engines: {node: '>=10'}
2134
- peerDependencies:
2135
- '@types/react': '*'
2136
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2137
- peerDependenciesMeta:
2138
- '@types/react':
2139
- optional: true
2140
-
2141
- react@19.2.4:
2142
- resolution: {integrity: sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==}
2143
- engines: {node: '>=0.10.0'}
2144
-
2145
- recharts@3.7.0:
2146
- resolution: {integrity: sha512-l2VCsy3XXeraxIID9fx23eCb6iCBsxUQDnE8tWm6DFdszVAO7WVY/ChAD9wVit01y6B2PMupYiMmQwhgPHc9Ew==}
2147
- engines: {node: '>=18'}
2148
- peerDependencies:
2149
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2150
- react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2151
- react-is: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2152
-
2153
- redux-thunk@3.1.0:
2154
- resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==}
2155
- peerDependencies:
2156
- redux: ^5.0.0
2157
-
2158
- redux@5.0.1:
2159
- resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==}
2160
-
2161
- remark-gfm@4.0.1:
2162
- resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
2163
-
2164
- remark-parse@11.0.0:
2165
- resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
2166
-
2167
- remark-rehype@11.1.2:
2168
- resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==}
2169
-
2170
- remark-stringify@11.0.0:
2171
- resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
2172
-
2173
- reselect@5.1.1:
2174
- resolution: {integrity: sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==}
2175
-
2176
- rollup@4.59.0:
2177
- resolution: {integrity: sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==}
2178
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
2179
- hasBin: true
2180
-
2181
- scheduler@0.27.0:
2182
- resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
2183
-
2184
- semver@6.3.1:
2185
- resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
2186
- hasBin: true
2187
-
2188
- set-cookie-parser@2.7.2:
2189
- resolution: {integrity: sha512-oeM1lpU/UvhTxw+g3cIfxXHyJRc/uidd3yK1P242gzHds0udQBYzs3y8j4gCCW+ZJ7ad0yctld8RYO+bdurlvw==}
2190
-
2191
- sonner@2.0.7:
2192
- resolution: {integrity: sha512-W6ZN4p58k8aDKA4XPcx2hpIQXBRAgyiWVkYhT7CvK6D3iAu7xjvVyhQHg2/iaKJZ1XVJ4r7XuwGL+WGEK37i9w==}
2193
- peerDependencies:
2194
- react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2195
- react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2196
-
2197
- source-map-js@1.2.1:
2198
- resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
2199
- engines: {node: '>=0.10.0'}
2200
-
2201
- space-separated-tokens@2.0.2:
2202
- resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
2203
-
2204
- state-local@1.0.7:
2205
- resolution: {integrity: sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==}
2206
-
2207
- stringify-entities@4.0.4:
2208
- resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
2209
-
2210
- style-to-js@1.1.21:
2211
- resolution: {integrity: sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==}
2212
-
2213
- style-to-object@1.0.14:
2214
- resolution: {integrity: sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==}
2215
-
2216
- tailwind-merge@3.5.0:
2217
- resolution: {integrity: sha512-I8K9wewnVDkL1NTGoqWmVEIlUcB9gFriAEkXkfCjX5ib8ezGxtR3xD7iZIxrfArjEsH7F1CHD4RFUtxefdqV/A==}
2218
-
2219
- tailwindcss@4.2.1:
2220
- resolution: {integrity: sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==}
2221
-
2222
- tapable@2.3.0:
2223
- resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
2224
- engines: {node: '>=6'}
2225
-
2226
- tiny-invariant@1.3.3:
2227
- resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
2228
-
2229
- tinyglobby@0.2.15:
2230
- resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
2231
- engines: {node: '>=12.0.0'}
2232
-
2233
- trim-lines@3.0.1:
2234
- resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
2235
-
2236
- trough@2.2.0:
2237
- resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
2238
-
2239
- tslib@2.8.1:
2240
- resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
2241
-
2242
- tw-animate-css@1.4.0:
2243
- resolution: {integrity: sha512-7bziOlRqH0hJx80h/3mbicLW7o8qLsH5+RaLR2t+OHM3D0JlWGODQKQ4cxbK7WlvmUxpcj6Kgu6EKqjrGFe3QQ==}
2244
-
2245
- typescript@5.9.3:
2246
- resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
2247
- engines: {node: '>=14.17'}
2248
- hasBin: true
2249
-
2250
- undici-types@7.16.0:
2251
- resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
2252
-
2253
- unified@11.0.5:
2254
- resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
2255
-
2256
- unist-util-is@6.0.1:
2257
- resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==}
2258
-
2259
- unist-util-position@5.0.0:
2260
- resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
2261
-
2262
- unist-util-stringify-position@4.0.0:
2263
- resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
2264
-
2265
- unist-util-visit-parents@6.0.2:
2266
- resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
2267
-
2268
- unist-util-visit@5.1.0:
2269
- resolution: {integrity: sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==}
2270
-
2271
- update-browserslist-db@1.2.3:
2272
- resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
2273
- hasBin: true
2274
- peerDependencies:
2275
- browserslist: '>= 4.21.0'
2276
-
2277
- use-callback-ref@1.3.3:
2278
- resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
2279
- engines: {node: '>=10'}
2280
- peerDependencies:
2281
- '@types/react': '*'
2282
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2283
- peerDependenciesMeta:
2284
- '@types/react':
2285
- optional: true
2286
-
2287
- use-sidecar@1.1.3:
2288
- resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
2289
- engines: {node: '>=10'}
2290
- peerDependencies:
2291
- '@types/react': '*'
2292
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
2293
- peerDependenciesMeta:
2294
- '@types/react':
2295
- optional: true
2296
-
2297
- use-sync-external-store@1.6.0:
2298
- resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
2299
- peerDependencies:
2300
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
2301
-
2302
- vfile-message@4.0.3:
2303
- resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
2304
-
2305
- vfile@6.0.3:
2306
- resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
2307
-
2308
- victory-vendor@37.3.6:
2309
- resolution: {integrity: sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==}
2310
-
2311
- vite@7.3.1:
2312
- resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
2313
- engines: {node: ^20.19.0 || >=22.12.0}
2314
- hasBin: true
2315
- peerDependencies:
2316
- '@types/node': ^20.19.0 || >=22.12.0
2317
- jiti: '>=1.21.0'
2318
- less: ^4.0.0
2319
- lightningcss: ^1.21.0
2320
- sass: ^1.70.0
2321
- sass-embedded: ^1.70.0
2322
- stylus: '>=0.54.8'
2323
- sugarss: ^5.0.0
2324
- terser: ^5.16.0
2325
- tsx: ^4.8.1
2326
- yaml: ^2.4.2
2327
- peerDependenciesMeta:
2328
- '@types/node':
2329
- optional: true
2330
- jiti:
2331
- optional: true
2332
- less:
2333
- optional: true
2334
- lightningcss:
2335
- optional: true
2336
- sass:
2337
- optional: true
2338
- sass-embedded:
2339
- optional: true
2340
- stylus:
2341
- optional: true
2342
- sugarss:
2343
- optional: true
2344
- terser:
2345
- optional: true
2346
- tsx:
2347
- optional: true
2348
- yaml:
2349
- optional: true
2350
-
2351
- yallist@3.1.1:
2352
- resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
2353
-
2354
- zustand@4.5.7:
2355
- resolution: {integrity: sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==}
2356
- engines: {node: '>=12.7.0'}
2357
- peerDependencies:
2358
- '@types/react': '>=16.8'
2359
- immer: '>=9.0.6'
2360
- react: '>=16.8'
2361
- peerDependenciesMeta:
2362
- '@types/react':
2363
- optional: true
2364
- immer:
2365
- optional: true
2366
- react:
2367
- optional: true
2368
-
2369
- zwitch@2.0.4:
2370
- resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
2371
-
2372
- snapshots:
2373
-
2374
- '@babel/code-frame@7.29.0':
2375
- dependencies:
2376
- '@babel/helper-validator-identifier': 7.28.5
2377
- js-tokens: 4.0.0
2378
- picocolors: 1.1.1
2379
-
2380
- '@babel/compat-data@7.29.0': {}
2381
-
2382
- '@babel/core@7.29.0':
2383
- dependencies:
2384
- '@babel/code-frame': 7.29.0
2385
- '@babel/generator': 7.29.1
2386
- '@babel/helper-compilation-targets': 7.28.6
2387
- '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0)
2388
- '@babel/helpers': 7.28.6
2389
- '@babel/parser': 7.29.0
2390
- '@babel/template': 7.28.6
2391
- '@babel/traverse': 7.29.0
2392
- '@babel/types': 7.29.0
2393
- '@jridgewell/remapping': 2.3.5
2394
- convert-source-map: 2.0.0
2395
- debug: 4.4.3
2396
- gensync: 1.0.0-beta.2
2397
- json5: 2.2.3
2398
- semver: 6.3.1
2399
- transitivePeerDependencies:
2400
- - supports-color
2401
-
2402
- '@babel/generator@7.29.1':
2403
- dependencies:
2404
- '@babel/parser': 7.29.0
2405
- '@babel/types': 7.29.0
2406
- '@jridgewell/gen-mapping': 0.3.13
2407
- '@jridgewell/trace-mapping': 0.3.31
2408
- jsesc: 3.1.0
2409
-
2410
- '@babel/helper-compilation-targets@7.28.6':
2411
- dependencies:
2412
- '@babel/compat-data': 7.29.0
2413
- '@babel/helper-validator-option': 7.27.1
2414
- browserslist: 4.28.1
2415
- lru-cache: 5.1.1
2416
- semver: 6.3.1
2417
-
2418
- '@babel/helper-globals@7.28.0': {}
2419
-
2420
- '@babel/helper-module-imports@7.28.6':
2421
- dependencies:
2422
- '@babel/traverse': 7.29.0
2423
- '@babel/types': 7.29.0
2424
- transitivePeerDependencies:
2425
- - supports-color
2426
-
2427
- '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)':
2428
- dependencies:
2429
- '@babel/core': 7.29.0
2430
- '@babel/helper-module-imports': 7.28.6
2431
- '@babel/helper-validator-identifier': 7.28.5
2432
- '@babel/traverse': 7.29.0
2433
- transitivePeerDependencies:
2434
- - supports-color
2435
-
2436
- '@babel/helper-plugin-utils@7.28.6': {}
2437
-
2438
- '@babel/helper-string-parser@7.27.1': {}
2439
-
2440
- '@babel/helper-validator-identifier@7.28.5': {}
2441
-
2442
- '@babel/helper-validator-option@7.27.1': {}
2443
-
2444
- '@babel/helpers@7.28.6':
2445
- dependencies:
2446
- '@babel/template': 7.28.6
2447
- '@babel/types': 7.29.0
2448
-
2449
- '@babel/parser@7.29.0':
2450
- dependencies:
2451
- '@babel/types': 7.29.0
2452
-
2453
- '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.29.0)':
2454
- dependencies:
2455
- '@babel/core': 7.29.0
2456
- '@babel/helper-plugin-utils': 7.28.6
2457
-
2458
- '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.29.0)':
2459
- dependencies:
2460
- '@babel/core': 7.29.0
2461
- '@babel/helper-plugin-utils': 7.28.6
2462
-
2463
- '@babel/template@7.28.6':
2464
- dependencies:
2465
- '@babel/code-frame': 7.29.0
2466
- '@babel/parser': 7.29.0
2467
- '@babel/types': 7.29.0
2468
-
2469
- '@babel/traverse@7.29.0':
2470
- dependencies:
2471
- '@babel/code-frame': 7.29.0
2472
- '@babel/generator': 7.29.1
2473
- '@babel/helper-globals': 7.28.0
2474
- '@babel/parser': 7.29.0
2475
- '@babel/template': 7.28.6
2476
- '@babel/types': 7.29.0
2477
- debug: 4.4.3
2478
- transitivePeerDependencies:
2479
- - supports-color
2480
-
2481
- '@babel/types@7.29.0':
2482
- dependencies:
2483
- '@babel/helper-string-parser': 7.27.1
2484
- '@babel/helper-validator-identifier': 7.28.5
2485
-
2486
- '@biomejs/biome@2.4.5':
2487
- optionalDependencies:
2488
- '@biomejs/cli-darwin-arm64': 2.4.5
2489
- '@biomejs/cli-darwin-x64': 2.4.5
2490
- '@biomejs/cli-linux-arm64': 2.4.5
2491
- '@biomejs/cli-linux-arm64-musl': 2.4.5
2492
- '@biomejs/cli-linux-x64': 2.4.5
2493
- '@biomejs/cli-linux-x64-musl': 2.4.5
2494
- '@biomejs/cli-win32-arm64': 2.4.5
2495
- '@biomejs/cli-win32-x64': 2.4.5
2496
-
2497
- '@biomejs/cli-darwin-arm64@2.4.5':
2498
- optional: true
2499
-
2500
- '@biomejs/cli-darwin-x64@2.4.5':
2501
- optional: true
2502
-
2503
- '@biomejs/cli-linux-arm64-musl@2.4.5':
2504
- optional: true
2505
-
2506
- '@biomejs/cli-linux-arm64@2.4.5':
2507
- optional: true
2508
-
2509
- '@biomejs/cli-linux-x64-musl@2.4.5':
2510
- optional: true
2511
-
2512
- '@biomejs/cli-linux-x64@2.4.5':
2513
- optional: true
2514
-
2515
- '@biomejs/cli-win32-arm64@2.4.5':
2516
- optional: true
2517
-
2518
- '@biomejs/cli-win32-x64@2.4.5':
2519
- optional: true
2520
-
2521
- '@esbuild/aix-ppc64@0.27.3':
2522
- optional: true
2523
-
2524
- '@esbuild/android-arm64@0.27.3':
2525
- optional: true
2526
-
2527
- '@esbuild/android-arm@0.27.3':
2528
- optional: true
2529
-
2530
- '@esbuild/android-x64@0.27.3':
2531
- optional: true
2532
-
2533
- '@esbuild/darwin-arm64@0.27.3':
2534
- optional: true
2535
-
2536
- '@esbuild/darwin-x64@0.27.3':
2537
- optional: true
2538
-
2539
- '@esbuild/freebsd-arm64@0.27.3':
2540
- optional: true
2541
-
2542
- '@esbuild/freebsd-x64@0.27.3':
2543
- optional: true
2544
-
2545
- '@esbuild/linux-arm64@0.27.3':
2546
- optional: true
2547
-
2548
- '@esbuild/linux-arm@0.27.3':
2549
- optional: true
2550
-
2551
- '@esbuild/linux-ia32@0.27.3':
2552
- optional: true
2553
-
2554
- '@esbuild/linux-loong64@0.27.3':
2555
- optional: true
2556
-
2557
- '@esbuild/linux-mips64el@0.27.3':
2558
- optional: true
2559
-
2560
- '@esbuild/linux-ppc64@0.27.3':
2561
- optional: true
2562
-
2563
- '@esbuild/linux-riscv64@0.27.3':
2564
- optional: true
2565
-
2566
- '@esbuild/linux-s390x@0.27.3':
2567
- optional: true
2568
-
2569
- '@esbuild/linux-x64@0.27.3':
2570
- optional: true
2571
-
2572
- '@esbuild/netbsd-arm64@0.27.3':
2573
- optional: true
2574
-
2575
- '@esbuild/netbsd-x64@0.27.3':
2576
- optional: true
2577
-
2578
- '@esbuild/openbsd-arm64@0.27.3':
2579
- optional: true
2580
-
2581
- '@esbuild/openbsd-x64@0.27.3':
2582
- optional: true
2583
-
2584
- '@esbuild/openharmony-arm64@0.27.3':
2585
- optional: true
2586
-
2587
- '@esbuild/sunos-x64@0.27.3':
2588
- optional: true
2589
-
2590
- '@esbuild/win32-arm64@0.27.3':
2591
- optional: true
2592
-
2593
- '@esbuild/win32-ia32@0.27.3':
2594
- optional: true
2595
-
2596
- '@esbuild/win32-x64@0.27.3':
2597
- optional: true
2598
-
2599
- '@floating-ui/core@1.7.4':
2600
- dependencies:
2601
- '@floating-ui/utils': 0.2.10
2602
-
2603
- '@floating-ui/dom@1.7.5':
2604
- dependencies:
2605
- '@floating-ui/core': 1.7.4
2606
- '@floating-ui/utils': 0.2.10
2607
-
2608
- '@floating-ui/react-dom@2.1.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2609
- dependencies:
2610
- '@floating-ui/dom': 1.7.5
2611
- react: 19.2.4
2612
- react-dom: 19.2.4(react@19.2.4)
2613
-
2614
- '@floating-ui/utils@0.2.10': {}
2615
-
2616
- '@jridgewell/gen-mapping@0.3.13':
2617
- dependencies:
2618
- '@jridgewell/sourcemap-codec': 1.5.5
2619
- '@jridgewell/trace-mapping': 0.3.31
2620
-
2621
- '@jridgewell/remapping@2.3.5':
2622
- dependencies:
2623
- '@jridgewell/gen-mapping': 0.3.13
2624
- '@jridgewell/trace-mapping': 0.3.31
2625
-
2626
- '@jridgewell/resolve-uri@3.1.2': {}
2627
-
2628
- '@jridgewell/sourcemap-codec@1.5.5': {}
2629
-
2630
- '@jridgewell/trace-mapping@0.3.31':
2631
- dependencies:
2632
- '@jridgewell/resolve-uri': 3.1.2
2633
- '@jridgewell/sourcemap-codec': 1.5.5
2634
-
2635
- '@monaco-editor/loader@1.7.0':
2636
- dependencies:
2637
- state-local: 1.0.7
2638
-
2639
- '@monaco-editor/react@4.7.0(monaco-editor@0.55.1)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2640
- dependencies:
2641
- '@monaco-editor/loader': 1.7.0
2642
- monaco-editor: 0.55.1
2643
- react: 19.2.4
2644
- react-dom: 19.2.4(react@19.2.4)
2645
-
2646
- '@radix-ui/number@1.1.1': {}
2647
-
2648
- '@radix-ui/primitive@1.1.3': {}
2649
-
2650
- '@radix-ui/react-accessible-icon@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2651
- dependencies:
2652
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2653
- react: 19.2.4
2654
- react-dom: 19.2.4(react@19.2.4)
2655
- optionalDependencies:
2656
- '@types/react': 19.2.14
2657
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2658
-
2659
- '@radix-ui/react-accordion@1.2.12(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2660
- dependencies:
2661
- '@radix-ui/primitive': 1.1.3
2662
- '@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2663
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2664
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2665
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2666
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2667
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2668
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2669
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
2670
- react: 19.2.4
2671
- react-dom: 19.2.4(react@19.2.4)
2672
- optionalDependencies:
2673
- '@types/react': 19.2.14
2674
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2675
-
2676
- '@radix-ui/react-alert-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2677
- dependencies:
2678
- '@radix-ui/primitive': 1.1.3
2679
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2680
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2681
- '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2682
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2683
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
2684
- react: 19.2.4
2685
- react-dom: 19.2.4(react@19.2.4)
2686
- optionalDependencies:
2687
- '@types/react': 19.2.14
2688
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2689
-
2690
- '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2691
- dependencies:
2692
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2693
- react: 19.2.4
2694
- react-dom: 19.2.4(react@19.2.4)
2695
- optionalDependencies:
2696
- '@types/react': 19.2.14
2697
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2698
-
2699
- '@radix-ui/react-aspect-ratio@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2700
- dependencies:
2701
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2702
- react: 19.2.4
2703
- react-dom: 19.2.4(react@19.2.4)
2704
- optionalDependencies:
2705
- '@types/react': 19.2.14
2706
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2707
-
2708
- '@radix-ui/react-avatar@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2709
- dependencies:
2710
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2711
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2712
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2713
- '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.14)(react@19.2.4)
2714
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2715
- react: 19.2.4
2716
- react-dom: 19.2.4(react@19.2.4)
2717
- optionalDependencies:
2718
- '@types/react': 19.2.14
2719
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2720
-
2721
- '@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2722
- dependencies:
2723
- '@radix-ui/primitive': 1.1.3
2724
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2725
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2726
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2727
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2728
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
2729
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2730
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2731
- react: 19.2.4
2732
- react-dom: 19.2.4(react@19.2.4)
2733
- optionalDependencies:
2734
- '@types/react': 19.2.14
2735
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2736
-
2737
- '@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2738
- dependencies:
2739
- '@radix-ui/primitive': 1.1.3
2740
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2741
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2742
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2743
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2744
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2745
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
2746
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2747
- react: 19.2.4
2748
- react-dom: 19.2.4(react@19.2.4)
2749
- optionalDependencies:
2750
- '@types/react': 19.2.14
2751
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2752
-
2753
- '@radix-ui/react-collection@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2754
- dependencies:
2755
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2756
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2757
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2758
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
2759
- react: 19.2.4
2760
- react-dom: 19.2.4(react@19.2.4)
2761
- optionalDependencies:
2762
- '@types/react': 19.2.14
2763
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2764
-
2765
- '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.14)(react@19.2.4)':
2766
- dependencies:
2767
- react: 19.2.4
2768
- optionalDependencies:
2769
- '@types/react': 19.2.14
2770
-
2771
- '@radix-ui/react-context-menu@2.2.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2772
- dependencies:
2773
- '@radix-ui/primitive': 1.1.3
2774
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2775
- '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2776
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2777
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2778
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
2779
- react: 19.2.4
2780
- react-dom: 19.2.4(react@19.2.4)
2781
- optionalDependencies:
2782
- '@types/react': 19.2.14
2783
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2784
-
2785
- '@radix-ui/react-context@1.1.2(@types/react@19.2.14)(react@19.2.4)':
2786
- dependencies:
2787
- react: 19.2.4
2788
- optionalDependencies:
2789
- '@types/react': 19.2.14
2790
-
2791
- '@radix-ui/react-dialog@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2792
- dependencies:
2793
- '@radix-ui/primitive': 1.1.3
2794
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2795
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2796
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2797
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.14)(react@19.2.4)
2798
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2799
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2800
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2801
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2802
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2803
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
2804
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
2805
- aria-hidden: 1.2.6
2806
- react: 19.2.4
2807
- react-dom: 19.2.4(react@19.2.4)
2808
- react-remove-scroll: 2.7.2(@types/react@19.2.14)(react@19.2.4)
2809
- optionalDependencies:
2810
- '@types/react': 19.2.14
2811
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2812
-
2813
- '@radix-ui/react-direction@1.1.1(@types/react@19.2.14)(react@19.2.4)':
2814
- dependencies:
2815
- react: 19.2.4
2816
- optionalDependencies:
2817
- '@types/react': 19.2.14
2818
-
2819
- '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2820
- dependencies:
2821
- '@radix-ui/primitive': 1.1.3
2822
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2823
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2824
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2825
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2826
- react: 19.2.4
2827
- react-dom: 19.2.4(react@19.2.4)
2828
- optionalDependencies:
2829
- '@types/react': 19.2.14
2830
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2831
-
2832
- '@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2833
- dependencies:
2834
- '@radix-ui/primitive': 1.1.3
2835
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2836
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2837
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2838
- '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2839
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2840
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
2841
- react: 19.2.4
2842
- react-dom: 19.2.4(react@19.2.4)
2843
- optionalDependencies:
2844
- '@types/react': 19.2.14
2845
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2846
-
2847
- '@radix-ui/react-focus-guards@1.1.3(@types/react@19.2.14)(react@19.2.4)':
2848
- dependencies:
2849
- react: 19.2.4
2850
- optionalDependencies:
2851
- '@types/react': 19.2.14
2852
-
2853
- '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2854
- dependencies:
2855
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2856
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2857
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2858
- react: 19.2.4
2859
- react-dom: 19.2.4(react@19.2.4)
2860
- optionalDependencies:
2861
- '@types/react': 19.2.14
2862
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2863
-
2864
- '@radix-ui/react-form@0.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2865
- dependencies:
2866
- '@radix-ui/primitive': 1.1.3
2867
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2868
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2869
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2870
- '@radix-ui/react-label': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2871
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2872
- react: 19.2.4
2873
- react-dom: 19.2.4(react@19.2.4)
2874
- optionalDependencies:
2875
- '@types/react': 19.2.14
2876
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2877
-
2878
- '@radix-ui/react-hover-card@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2879
- dependencies:
2880
- '@radix-ui/primitive': 1.1.3
2881
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2882
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2883
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2884
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2885
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2886
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2887
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2888
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
2889
- react: 19.2.4
2890
- react-dom: 19.2.4(react@19.2.4)
2891
- optionalDependencies:
2892
- '@types/react': 19.2.14
2893
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2894
-
2895
- '@radix-ui/react-id@1.1.1(@types/react@19.2.14)(react@19.2.4)':
2896
- dependencies:
2897
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2898
- react: 19.2.4
2899
- optionalDependencies:
2900
- '@types/react': 19.2.14
2901
-
2902
- '@radix-ui/react-label@2.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2903
- dependencies:
2904
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2905
- react: 19.2.4
2906
- react-dom: 19.2.4(react@19.2.4)
2907
- optionalDependencies:
2908
- '@types/react': 19.2.14
2909
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2910
-
2911
- '@radix-ui/react-menu@2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2912
- dependencies:
2913
- '@radix-ui/primitive': 1.1.3
2914
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2915
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2916
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2917
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2918
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2919
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.14)(react@19.2.4)
2920
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2921
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2922
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2923
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2924
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2925
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2926
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2927
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
2928
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2929
- aria-hidden: 1.2.6
2930
- react: 19.2.4
2931
- react-dom: 19.2.4(react@19.2.4)
2932
- react-remove-scroll: 2.7.2(@types/react@19.2.14)(react@19.2.4)
2933
- optionalDependencies:
2934
- '@types/react': 19.2.14
2935
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2936
-
2937
- '@radix-ui/react-menubar@1.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2938
- dependencies:
2939
- '@radix-ui/primitive': 1.1.3
2940
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2941
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2942
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2943
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2944
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2945
- '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2946
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2947
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2948
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
2949
- react: 19.2.4
2950
- react-dom: 19.2.4(react@19.2.4)
2951
- optionalDependencies:
2952
- '@types/react': 19.2.14
2953
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2954
-
2955
- '@radix-ui/react-navigation-menu@1.2.14(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2956
- dependencies:
2957
- '@radix-ui/primitive': 1.1.3
2958
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2959
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2960
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2961
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2962
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2963
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2964
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2965
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2966
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2967
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
2968
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2969
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2970
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2971
- react: 19.2.4
2972
- react-dom: 19.2.4(react@19.2.4)
2973
- optionalDependencies:
2974
- '@types/react': 19.2.14
2975
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2976
-
2977
- '@radix-ui/react-one-time-password-field@0.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2978
- dependencies:
2979
- '@radix-ui/number': 1.1.1
2980
- '@radix-ui/primitive': 1.1.3
2981
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2982
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2983
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
2984
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2985
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2986
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
2987
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
2988
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.4)
2989
- '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.14)(react@19.2.4)
2990
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
2991
- react: 19.2.4
2992
- react-dom: 19.2.4(react@19.2.4)
2993
- optionalDependencies:
2994
- '@types/react': 19.2.14
2995
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
2996
-
2997
- '@radix-ui/react-password-toggle-field@0.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
2998
- dependencies:
2999
- '@radix-ui/primitive': 1.1.3
3000
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3001
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3002
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3003
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3004
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3005
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.4)
3006
- '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.14)(react@19.2.4)
3007
- react: 19.2.4
3008
- react-dom: 19.2.4(react@19.2.4)
3009
- optionalDependencies:
3010
- '@types/react': 19.2.14
3011
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3012
-
3013
- '@radix-ui/react-popover@1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3014
- dependencies:
3015
- '@radix-ui/primitive': 1.1.3
3016
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3017
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3018
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3019
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.14)(react@19.2.4)
3020
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3021
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3022
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3023
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3024
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3025
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3026
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
3027
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3028
- aria-hidden: 1.2.6
3029
- react: 19.2.4
3030
- react-dom: 19.2.4(react@19.2.4)
3031
- react-remove-scroll: 2.7.2(@types/react@19.2.14)(react@19.2.4)
3032
- optionalDependencies:
3033
- '@types/react': 19.2.14
3034
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3035
-
3036
- '@radix-ui/react-popper@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3037
- dependencies:
3038
- '@floating-ui/react-dom': 2.1.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3039
- '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3040
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3041
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3042
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3043
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3044
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3045
- '@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3046
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3047
- '@radix-ui/rect': 1.1.1
3048
- react: 19.2.4
3049
- react-dom: 19.2.4(react@19.2.4)
3050
- optionalDependencies:
3051
- '@types/react': 19.2.14
3052
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3053
-
3054
- '@radix-ui/react-portal@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3055
- dependencies:
3056
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3057
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3058
- react: 19.2.4
3059
- react-dom: 19.2.4(react@19.2.4)
3060
- optionalDependencies:
3061
- '@types/react': 19.2.14
3062
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3063
-
3064
- '@radix-ui/react-presence@1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3065
- dependencies:
3066
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3067
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3068
- react: 19.2.4
3069
- react-dom: 19.2.4(react@19.2.4)
3070
- optionalDependencies:
3071
- '@types/react': 19.2.14
3072
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3073
-
3074
- '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3075
- dependencies:
3076
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
3077
- react: 19.2.4
3078
- react-dom: 19.2.4(react@19.2.4)
3079
- optionalDependencies:
3080
- '@types/react': 19.2.14
3081
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3082
-
3083
- '@radix-ui/react-progress@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3084
- dependencies:
3085
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3086
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3087
- react: 19.2.4
3088
- react-dom: 19.2.4(react@19.2.4)
3089
- optionalDependencies:
3090
- '@types/react': 19.2.14
3091
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3092
-
3093
- '@radix-ui/react-radio-group@1.3.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3094
- dependencies:
3095
- '@radix-ui/primitive': 1.1.3
3096
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3097
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3098
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3099
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3100
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3101
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3102
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3103
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3104
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3105
- react: 19.2.4
3106
- react-dom: 19.2.4(react@19.2.4)
3107
- optionalDependencies:
3108
- '@types/react': 19.2.14
3109
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3110
-
3111
- '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3112
- dependencies:
3113
- '@radix-ui/primitive': 1.1.3
3114
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3115
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3116
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3117
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3118
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3119
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3120
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3121
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3122
- react: 19.2.4
3123
- react-dom: 19.2.4(react@19.2.4)
3124
- optionalDependencies:
3125
- '@types/react': 19.2.14
3126
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3127
-
3128
- '@radix-ui/react-scroll-area@1.2.10(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3129
- dependencies:
3130
- '@radix-ui/number': 1.1.1
3131
- '@radix-ui/primitive': 1.1.3
3132
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3133
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3134
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3135
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3136
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3137
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3138
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3139
- react: 19.2.4
3140
- react-dom: 19.2.4(react@19.2.4)
3141
- optionalDependencies:
3142
- '@types/react': 19.2.14
3143
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3144
-
3145
- '@radix-ui/react-select@2.2.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3146
- dependencies:
3147
- '@radix-ui/number': 1.1.1
3148
- '@radix-ui/primitive': 1.1.3
3149
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3150
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3151
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3152
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3153
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3154
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.14)(react@19.2.4)
3155
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3156
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3157
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3158
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3159
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3160
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
3161
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3162
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3163
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3164
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3165
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3166
- aria-hidden: 1.2.6
3167
- react: 19.2.4
3168
- react-dom: 19.2.4(react@19.2.4)
3169
- react-remove-scroll: 2.7.2(@types/react@19.2.14)(react@19.2.4)
3170
- optionalDependencies:
3171
- '@types/react': 19.2.14
3172
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3173
-
3174
- '@radix-ui/react-separator@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3175
- dependencies:
3176
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3177
- react: 19.2.4
3178
- react-dom: 19.2.4(react@19.2.4)
3179
- optionalDependencies:
3180
- '@types/react': 19.2.14
3181
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3182
-
3183
- '@radix-ui/react-slider@1.3.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3184
- dependencies:
3185
- '@radix-ui/number': 1.1.1
3186
- '@radix-ui/primitive': 1.1.3
3187
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3188
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3189
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3190
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3191
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3192
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3193
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3194
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3195
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3196
- react: 19.2.4
3197
- react-dom: 19.2.4(react@19.2.4)
3198
- optionalDependencies:
3199
- '@types/react': 19.2.14
3200
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3201
-
3202
- '@radix-ui/react-slot@1.2.3(@types/react@19.2.14)(react@19.2.4)':
3203
- dependencies:
3204
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3205
- react: 19.2.4
3206
- optionalDependencies:
3207
- '@types/react': 19.2.14
3208
-
3209
- '@radix-ui/react-switch@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3210
- dependencies:
3211
- '@radix-ui/primitive': 1.1.3
3212
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3213
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3214
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3215
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3216
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3217
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3218
- react: 19.2.4
3219
- react-dom: 19.2.4(react@19.2.4)
3220
- optionalDependencies:
3221
- '@types/react': 19.2.14
3222
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3223
-
3224
- '@radix-ui/react-tabs@1.1.13(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3225
- dependencies:
3226
- '@radix-ui/primitive': 1.1.3
3227
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3228
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3229
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3230
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3231
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3232
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3233
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3234
- react: 19.2.4
3235
- react-dom: 19.2.4(react@19.2.4)
3236
- optionalDependencies:
3237
- '@types/react': 19.2.14
3238
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3239
-
3240
- '@radix-ui/react-toast@1.2.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3241
- dependencies:
3242
- '@radix-ui/primitive': 1.1.3
3243
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3244
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3245
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3246
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3247
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3248
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3249
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3250
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3251
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3252
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3253
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3254
- react: 19.2.4
3255
- react-dom: 19.2.4(react@19.2.4)
3256
- optionalDependencies:
3257
- '@types/react': 19.2.14
3258
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3259
-
3260
- '@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3261
- dependencies:
3262
- '@radix-ui/primitive': 1.1.3
3263
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3264
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3265
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3266
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3267
- '@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3268
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3269
- react: 19.2.4
3270
- react-dom: 19.2.4(react@19.2.4)
3271
- optionalDependencies:
3272
- '@types/react': 19.2.14
3273
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3274
-
3275
- '@radix-ui/react-toggle@1.1.10(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3276
- dependencies:
3277
- '@radix-ui/primitive': 1.1.3
3278
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3279
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3280
- react: 19.2.4
3281
- react-dom: 19.2.4(react@19.2.4)
3282
- optionalDependencies:
3283
- '@types/react': 19.2.14
3284
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3285
-
3286
- '@radix-ui/react-toolbar@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3287
- dependencies:
3288
- '@radix-ui/primitive': 1.1.3
3289
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3290
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3291
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3292
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3293
- '@radix-ui/react-separator': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3294
- '@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3295
- react: 19.2.4
3296
- react-dom: 19.2.4(react@19.2.4)
3297
- optionalDependencies:
3298
- '@types/react': 19.2.14
3299
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3300
-
3301
- '@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3302
- dependencies:
3303
- '@radix-ui/primitive': 1.1.3
3304
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3305
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3306
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3307
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3308
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3309
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3310
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3311
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3312
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
3313
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
3314
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3315
- react: 19.2.4
3316
- react-dom: 19.2.4(react@19.2.4)
3317
- optionalDependencies:
3318
- '@types/react': 19.2.14
3319
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3320
-
3321
- '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.14)(react@19.2.4)':
3322
- dependencies:
3323
- react: 19.2.4
3324
- optionalDependencies:
3325
- '@types/react': 19.2.14
3326
-
3327
- '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.14)(react@19.2.4)':
3328
- dependencies:
3329
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.4)
3330
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3331
- react: 19.2.4
3332
- optionalDependencies:
3333
- '@types/react': 19.2.14
3334
-
3335
- '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.14)(react@19.2.4)':
3336
- dependencies:
3337
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3338
- react: 19.2.4
3339
- optionalDependencies:
3340
- '@types/react': 19.2.14
3341
-
3342
- '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.14)(react@19.2.4)':
3343
- dependencies:
3344
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3345
- react: 19.2.4
3346
- optionalDependencies:
3347
- '@types/react': 19.2.14
3348
-
3349
- '@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.2.14)(react@19.2.4)':
3350
- dependencies:
3351
- react: 19.2.4
3352
- use-sync-external-store: 1.6.0(react@19.2.4)
3353
- optionalDependencies:
3354
- '@types/react': 19.2.14
3355
-
3356
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.14)(react@19.2.4)':
3357
- dependencies:
3358
- react: 19.2.4
3359
- optionalDependencies:
3360
- '@types/react': 19.2.14
3361
-
3362
- '@radix-ui/react-use-previous@1.1.1(@types/react@19.2.14)(react@19.2.4)':
3363
- dependencies:
3364
- react: 19.2.4
3365
- optionalDependencies:
3366
- '@types/react': 19.2.14
3367
-
3368
- '@radix-ui/react-use-rect@1.1.1(@types/react@19.2.14)(react@19.2.4)':
3369
- dependencies:
3370
- '@radix-ui/rect': 1.1.1
3371
- react: 19.2.4
3372
- optionalDependencies:
3373
- '@types/react': 19.2.14
3374
-
3375
- '@radix-ui/react-use-size@1.1.1(@types/react@19.2.14)(react@19.2.4)':
3376
- dependencies:
3377
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3378
- react: 19.2.4
3379
- optionalDependencies:
3380
- '@types/react': 19.2.14
3381
-
3382
- '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3383
- dependencies:
3384
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3385
- react: 19.2.4
3386
- react-dom: 19.2.4(react@19.2.4)
3387
- optionalDependencies:
3388
- '@types/react': 19.2.14
3389
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
3390
-
3391
- '@radix-ui/rect@1.1.1': {}
3392
-
3393
- '@reduxjs/toolkit@2.11.2(react-redux@9.2.0(@types/react@19.2.14)(react@19.2.4)(redux@5.0.1))(react@19.2.4)':
3394
- dependencies:
3395
- '@standard-schema/spec': 1.1.0
3396
- '@standard-schema/utils': 0.3.0
3397
- immer: 11.1.4
3398
- redux: 5.0.1
3399
- redux-thunk: 3.1.0(redux@5.0.1)
3400
- reselect: 5.1.1
3401
- optionalDependencies:
3402
- react: 19.2.4
3403
- react-redux: 9.2.0(@types/react@19.2.14)(react@19.2.4)(redux@5.0.1)
3404
-
3405
- '@rolldown/pluginutils@1.0.0-rc.3': {}
3406
-
3407
- '@rollup/rollup-android-arm-eabi@4.59.0':
3408
- optional: true
3409
-
3410
- '@rollup/rollup-android-arm64@4.59.0':
3411
- optional: true
3412
-
3413
- '@rollup/rollup-darwin-arm64@4.59.0':
3414
- optional: true
3415
-
3416
- '@rollup/rollup-darwin-x64@4.59.0':
3417
- optional: true
3418
-
3419
- '@rollup/rollup-freebsd-arm64@4.59.0':
3420
- optional: true
3421
-
3422
- '@rollup/rollup-freebsd-x64@4.59.0':
3423
- optional: true
3424
-
3425
- '@rollup/rollup-linux-arm-gnueabihf@4.59.0':
3426
- optional: true
3427
-
3428
- '@rollup/rollup-linux-arm-musleabihf@4.59.0':
3429
- optional: true
3430
-
3431
- '@rollup/rollup-linux-arm64-gnu@4.59.0':
3432
- optional: true
3433
-
3434
- '@rollup/rollup-linux-arm64-musl@4.59.0':
3435
- optional: true
3436
-
3437
- '@rollup/rollup-linux-loong64-gnu@4.59.0':
3438
- optional: true
3439
-
3440
- '@rollup/rollup-linux-loong64-musl@4.59.0':
3441
- optional: true
3442
-
3443
- '@rollup/rollup-linux-ppc64-gnu@4.59.0':
3444
- optional: true
3445
-
3446
- '@rollup/rollup-linux-ppc64-musl@4.59.0':
3447
- optional: true
3448
-
3449
- '@rollup/rollup-linux-riscv64-gnu@4.59.0':
3450
- optional: true
3451
-
3452
- '@rollup/rollup-linux-riscv64-musl@4.59.0':
3453
- optional: true
3454
-
3455
- '@rollup/rollup-linux-s390x-gnu@4.59.0':
3456
- optional: true
3457
-
3458
- '@rollup/rollup-linux-x64-gnu@4.59.0':
3459
- optional: true
3460
-
3461
- '@rollup/rollup-linux-x64-musl@4.59.0':
3462
- optional: true
3463
-
3464
- '@rollup/rollup-openbsd-x64@4.59.0':
3465
- optional: true
3466
-
3467
- '@rollup/rollup-openharmony-arm64@4.59.0':
3468
- optional: true
3469
-
3470
- '@rollup/rollup-win32-arm64-msvc@4.59.0':
3471
- optional: true
3472
-
3473
- '@rollup/rollup-win32-ia32-msvc@4.59.0':
3474
- optional: true
3475
-
3476
- '@rollup/rollup-win32-x64-gnu@4.59.0':
3477
- optional: true
3478
-
3479
- '@rollup/rollup-win32-x64-msvc@4.59.0':
3480
- optional: true
3481
-
3482
- '@standard-schema/spec@1.1.0': {}
3483
-
3484
- '@standard-schema/utils@0.3.0': {}
3485
-
3486
- '@tailwindcss/node@4.2.1':
3487
- dependencies:
3488
- '@jridgewell/remapping': 2.3.5
3489
- enhanced-resolve: 5.19.0
3490
- jiti: 2.6.1
3491
- lightningcss: 1.31.1
3492
- magic-string: 0.30.21
3493
- source-map-js: 1.2.1
3494
- tailwindcss: 4.2.1
3495
-
3496
- '@tailwindcss/oxide-android-arm64@4.2.1':
3497
- optional: true
3498
-
3499
- '@tailwindcss/oxide-darwin-arm64@4.2.1':
3500
- optional: true
3501
-
3502
- '@tailwindcss/oxide-darwin-x64@4.2.1':
3503
- optional: true
3504
-
3505
- '@tailwindcss/oxide-freebsd-x64@4.2.1':
3506
- optional: true
3507
-
3508
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.2.1':
3509
- optional: true
3510
-
3511
- '@tailwindcss/oxide-linux-arm64-gnu@4.2.1':
3512
- optional: true
3513
-
3514
- '@tailwindcss/oxide-linux-arm64-musl@4.2.1':
3515
- optional: true
3516
-
3517
- '@tailwindcss/oxide-linux-x64-gnu@4.2.1':
3518
- optional: true
3519
-
3520
- '@tailwindcss/oxide-linux-x64-musl@4.2.1':
3521
- optional: true
3522
-
3523
- '@tailwindcss/oxide-wasm32-wasi@4.2.1':
3524
- optional: true
3525
-
3526
- '@tailwindcss/oxide-win32-arm64-msvc@4.2.1':
3527
- optional: true
3528
-
3529
- '@tailwindcss/oxide-win32-x64-msvc@4.2.1':
3530
- optional: true
3531
-
3532
- '@tailwindcss/oxide@4.2.1':
3533
- optionalDependencies:
3534
- '@tailwindcss/oxide-android-arm64': 4.2.1
3535
- '@tailwindcss/oxide-darwin-arm64': 4.2.1
3536
- '@tailwindcss/oxide-darwin-x64': 4.2.1
3537
- '@tailwindcss/oxide-freebsd-x64': 4.2.1
3538
- '@tailwindcss/oxide-linux-arm-gnueabihf': 4.2.1
3539
- '@tailwindcss/oxide-linux-arm64-gnu': 4.2.1
3540
- '@tailwindcss/oxide-linux-arm64-musl': 4.2.1
3541
- '@tailwindcss/oxide-linux-x64-gnu': 4.2.1
3542
- '@tailwindcss/oxide-linux-x64-musl': 4.2.1
3543
- '@tailwindcss/oxide-wasm32-wasi': 4.2.1
3544
- '@tailwindcss/oxide-win32-arm64-msvc': 4.2.1
3545
- '@tailwindcss/oxide-win32-x64-msvc': 4.2.1
3546
-
3547
- '@tailwindcss/vite@4.2.1(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(lightningcss@1.31.1))':
3548
- dependencies:
3549
- '@tailwindcss/node': 4.2.1
3550
- '@tailwindcss/oxide': 4.2.1
3551
- tailwindcss: 4.2.1
3552
- vite: 7.3.1(@types/node@24.10.13)(jiti@2.6.1)(lightningcss@1.31.1)
3553
-
3554
- '@tanstack/query-core@5.90.20': {}
3555
-
3556
- '@tanstack/react-query@5.90.21(react@19.2.4)':
3557
- dependencies:
3558
- '@tanstack/query-core': 5.90.20
3559
- react: 19.2.4
3560
-
3561
- '@types/babel__core@7.20.5':
3562
- dependencies:
3563
- '@babel/parser': 7.29.0
3564
- '@babel/types': 7.29.0
3565
- '@types/babel__generator': 7.27.0
3566
- '@types/babel__template': 7.4.4
3567
- '@types/babel__traverse': 7.28.0
3568
-
3569
- '@types/babel__generator@7.27.0':
3570
- dependencies:
3571
- '@babel/types': 7.29.0
3572
-
3573
- '@types/babel__template@7.4.4':
3574
- dependencies:
3575
- '@babel/parser': 7.29.0
3576
- '@babel/types': 7.29.0
3577
-
3578
- '@types/babel__traverse@7.28.0':
3579
- dependencies:
3580
- '@babel/types': 7.29.0
3581
-
3582
- '@types/d3-array@3.2.2': {}
3583
-
3584
- '@types/d3-color@3.1.3': {}
3585
-
3586
- '@types/d3-drag@3.0.7':
3587
- dependencies:
3588
- '@types/d3-selection': 3.0.11
3589
-
3590
- '@types/d3-ease@3.0.2': {}
3591
-
3592
- '@types/d3-interpolate@3.0.4':
3593
- dependencies:
3594
- '@types/d3-color': 3.1.3
3595
-
3596
- '@types/d3-path@3.1.1': {}
3597
-
3598
- '@types/d3-scale@4.0.9':
3599
- dependencies:
3600
- '@types/d3-time': 3.0.4
3601
-
3602
- '@types/d3-selection@3.0.11': {}
3603
-
3604
- '@types/d3-shape@3.1.8':
3605
- dependencies:
3606
- '@types/d3-path': 3.1.1
3607
-
3608
- '@types/d3-time@3.0.4': {}
3609
-
3610
- '@types/d3-timer@3.0.2': {}
3611
-
3612
- '@types/d3-transition@3.0.9':
3613
- dependencies:
3614
- '@types/d3-selection': 3.0.11
3615
-
3616
- '@types/d3-zoom@3.0.8':
3617
- dependencies:
3618
- '@types/d3-interpolate': 3.0.4
3619
- '@types/d3-selection': 3.0.11
3620
-
3621
- '@types/dagre@0.7.54': {}
3622
-
3623
- '@types/debug@4.1.12':
3624
- dependencies:
3625
- '@types/ms': 2.1.0
3626
-
3627
- '@types/estree-jsx@1.0.5':
3628
- dependencies:
3629
- '@types/estree': 1.0.8
3630
-
3631
- '@types/estree@1.0.8': {}
3632
-
3633
- '@types/hast@3.0.4':
3634
- dependencies:
3635
- '@types/unist': 3.0.3
3636
-
3637
- '@types/mdast@4.0.4':
3638
- dependencies:
3639
- '@types/unist': 3.0.3
3640
-
3641
- '@types/ms@2.1.0': {}
3642
-
3643
- '@types/node@24.10.13':
3644
- dependencies:
3645
- undici-types: 7.16.0
3646
-
3647
- '@types/react-dom@19.2.3(@types/react@19.2.14)':
3648
- dependencies:
3649
- '@types/react': 19.2.14
3650
-
3651
- '@types/react@19.2.14':
3652
- dependencies:
3653
- csstype: 3.2.3
3654
-
3655
- '@types/trusted-types@2.0.7':
3656
- optional: true
3657
-
3658
- '@types/unist@2.0.11': {}
3659
-
3660
- '@types/unist@3.0.3': {}
3661
-
3662
- '@types/use-sync-external-store@0.0.6': {}
3663
-
3664
- '@ungap/structured-clone@1.3.0': {}
3665
-
3666
- '@vitejs/plugin-react@5.1.4(vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(lightningcss@1.31.1))':
3667
- dependencies:
3668
- '@babel/core': 7.29.0
3669
- '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.29.0)
3670
- '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.29.0)
3671
- '@rolldown/pluginutils': 1.0.0-rc.3
3672
- '@types/babel__core': 7.20.5
3673
- react-refresh: 0.18.0
3674
- vite: 7.3.1(@types/node@24.10.13)(jiti@2.6.1)(lightningcss@1.31.1)
3675
- transitivePeerDependencies:
3676
- - supports-color
3677
-
3678
- '@xyflow/react@12.10.1(@types/react@19.2.14)(immer@11.1.4)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)':
3679
- dependencies:
3680
- '@xyflow/system': 0.0.75
3681
- classcat: 5.0.5
3682
- react: 19.2.4
3683
- react-dom: 19.2.4(react@19.2.4)
3684
- zustand: 4.5.7(@types/react@19.2.14)(immer@11.1.4)(react@19.2.4)
3685
- transitivePeerDependencies:
3686
- - '@types/react'
3687
- - immer
3688
-
3689
- '@xyflow/system@0.0.75':
3690
- dependencies:
3691
- '@types/d3-drag': 3.0.7
3692
- '@types/d3-interpolate': 3.0.4
3693
- '@types/d3-selection': 3.0.11
3694
- '@types/d3-transition': 3.0.9
3695
- '@types/d3-zoom': 3.0.8
3696
- d3-drag: 3.0.0
3697
- d3-interpolate: 3.0.1
3698
- d3-selection: 3.0.0
3699
- d3-zoom: 3.0.0
3700
-
3701
- ag-charts-types@13.1.0: {}
3702
-
3703
- ag-grid-community@35.1.0:
3704
- dependencies:
3705
- ag-charts-types: 13.1.0
3706
-
3707
- ag-grid-react@35.1.0(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
3708
- dependencies:
3709
- ag-grid-community: 35.1.0
3710
- prop-types: 15.8.1
3711
- react: 19.2.4
3712
- react-dom: 19.2.4(react@19.2.4)
3713
-
3714
- aria-hidden@1.2.6:
3715
- dependencies:
3716
- tslib: 2.8.1
3717
-
3718
- bail@2.0.2: {}
3719
-
3720
- baseline-browser-mapping@2.10.0: {}
3721
-
3722
- browserslist@4.28.1:
3723
- dependencies:
3724
- baseline-browser-mapping: 2.10.0
3725
- caniuse-lite: 1.0.30001774
3726
- electron-to-chromium: 1.5.302
3727
- node-releases: 2.0.27
3728
- update-browserslist-db: 1.2.3(browserslist@4.28.1)
3729
-
3730
- caniuse-lite@1.0.30001774: {}
3731
-
3732
- ccount@2.0.1: {}
3733
-
3734
- character-entities-html4@2.1.0: {}
3735
-
3736
- character-entities-legacy@3.0.0: {}
3737
-
3738
- character-entities@2.0.2: {}
3739
-
3740
- character-reference-invalid@2.0.1: {}
3741
-
3742
- class-variance-authority@0.7.1:
3743
- dependencies:
3744
- clsx: 2.1.1
3745
-
3746
- classcat@5.0.5: {}
3747
-
3748
- clsx@2.1.1: {}
3749
-
3750
- cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
3751
- dependencies:
3752
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
3753
- '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3754
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.14)(react@19.2.4)
3755
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
3756
- react: 19.2.4
3757
- react-dom: 19.2.4(react@19.2.4)
3758
- transitivePeerDependencies:
3759
- - '@types/react'
3760
- - '@types/react-dom'
3761
-
3762
- comma-separated-tokens@2.0.3: {}
3763
-
3764
- convert-source-map@2.0.0: {}
3765
-
3766
- cookie@1.1.1: {}
3767
-
3768
- csstype@3.2.3: {}
3769
-
3770
- d3-array@3.2.4:
3771
- dependencies:
3772
- internmap: 2.0.3
3773
-
3774
- d3-color@3.1.0: {}
3775
-
3776
- d3-dispatch@3.0.1: {}
3777
-
3778
- d3-drag@3.0.0:
3779
- dependencies:
3780
- d3-dispatch: 3.0.1
3781
- d3-selection: 3.0.0
3782
-
3783
- d3-ease@3.0.1: {}
3784
-
3785
- d3-format@3.1.2: {}
3786
-
3787
- d3-interpolate@3.0.1:
3788
- dependencies:
3789
- d3-color: 3.1.0
3790
-
3791
- d3-path@3.1.0: {}
3792
-
3793
- d3-scale@4.0.2:
3794
- dependencies:
3795
- d3-array: 3.2.4
3796
- d3-format: 3.1.2
3797
- d3-interpolate: 3.0.1
3798
- d3-time: 3.1.0
3799
- d3-time-format: 4.1.0
3800
-
3801
- d3-selection@3.0.0: {}
3802
-
3803
- d3-shape@3.2.0:
3804
- dependencies:
3805
- d3-path: 3.1.0
3806
-
3807
- d3-time-format@4.1.0:
3808
- dependencies:
3809
- d3-time: 3.1.0
3810
-
3811
- d3-time@3.1.0:
3812
- dependencies:
3813
- d3-array: 3.2.4
3814
-
3815
- d3-timer@3.0.1: {}
3816
-
3817
- d3-transition@3.0.1(d3-selection@3.0.0):
3818
- dependencies:
3819
- d3-color: 3.1.0
3820
- d3-dispatch: 3.0.1
3821
- d3-ease: 3.0.1
3822
- d3-interpolate: 3.0.1
3823
- d3-selection: 3.0.0
3824
- d3-timer: 3.0.1
3825
-
3826
- d3-zoom@3.0.0:
3827
- dependencies:
3828
- d3-dispatch: 3.0.1
3829
- d3-drag: 3.0.0
3830
- d3-interpolate: 3.0.1
3831
- d3-selection: 3.0.0
3832
- d3-transition: 3.0.1(d3-selection@3.0.0)
3833
-
3834
- dagre@0.8.5:
3835
- dependencies:
3836
- graphlib: 2.1.8
3837
- lodash: 4.17.23
3838
-
3839
- debug@4.4.3:
3840
- dependencies:
3841
- ms: 2.1.3
3842
-
3843
- decimal.js-light@2.5.1: {}
3844
-
3845
- decode-named-character-reference@1.3.0:
3846
- dependencies:
3847
- character-entities: 2.0.2
3848
-
3849
- dequal@2.0.3: {}
3850
-
3851
- detect-libc@2.1.2: {}
3852
-
3853
- detect-node-es@1.1.0: {}
3854
-
3855
- devlop@1.1.0:
3856
- dependencies:
3857
- dequal: 2.0.3
3858
-
3859
- dompurify@3.2.7:
3860
- optionalDependencies:
3861
- '@types/trusted-types': 2.0.7
3862
-
3863
- electron-to-chromium@1.5.302: {}
3864
-
3865
- enhanced-resolve@5.19.0:
3866
- dependencies:
3867
- graceful-fs: 4.2.11
3868
- tapable: 2.3.0
3869
-
3870
- es-toolkit@1.44.0: {}
3871
-
3872
- esbuild@0.27.3:
3873
- optionalDependencies:
3874
- '@esbuild/aix-ppc64': 0.27.3
3875
- '@esbuild/android-arm': 0.27.3
3876
- '@esbuild/android-arm64': 0.27.3
3877
- '@esbuild/android-x64': 0.27.3
3878
- '@esbuild/darwin-arm64': 0.27.3
3879
- '@esbuild/darwin-x64': 0.27.3
3880
- '@esbuild/freebsd-arm64': 0.27.3
3881
- '@esbuild/freebsd-x64': 0.27.3
3882
- '@esbuild/linux-arm': 0.27.3
3883
- '@esbuild/linux-arm64': 0.27.3
3884
- '@esbuild/linux-ia32': 0.27.3
3885
- '@esbuild/linux-loong64': 0.27.3
3886
- '@esbuild/linux-mips64el': 0.27.3
3887
- '@esbuild/linux-ppc64': 0.27.3
3888
- '@esbuild/linux-riscv64': 0.27.3
3889
- '@esbuild/linux-s390x': 0.27.3
3890
- '@esbuild/linux-x64': 0.27.3
3891
- '@esbuild/netbsd-arm64': 0.27.3
3892
- '@esbuild/netbsd-x64': 0.27.3
3893
- '@esbuild/openbsd-arm64': 0.27.3
3894
- '@esbuild/openbsd-x64': 0.27.3
3895
- '@esbuild/openharmony-arm64': 0.27.3
3896
- '@esbuild/sunos-x64': 0.27.3
3897
- '@esbuild/win32-arm64': 0.27.3
3898
- '@esbuild/win32-ia32': 0.27.3
3899
- '@esbuild/win32-x64': 0.27.3
3900
-
3901
- escalade@3.2.0: {}
3902
-
3903
- escape-string-regexp@5.0.0: {}
3904
-
3905
- estree-util-is-identifier-name@3.0.0: {}
3906
-
3907
- eventemitter3@5.0.4: {}
3908
-
3909
- extend@3.0.2: {}
3910
-
3911
- fdir@6.5.0(picomatch@4.0.3):
3912
- optionalDependencies:
3913
- picomatch: 4.0.3
3914
-
3915
- fsevents@2.3.3:
3916
- optional: true
3917
-
3918
- gensync@1.0.0-beta.2: {}
3919
-
3920
- get-nonce@1.0.1: {}
3921
-
3922
- graceful-fs@4.2.11: {}
3923
-
3924
- graphlib@2.1.8:
3925
- dependencies:
3926
- lodash: 4.17.23
3927
-
3928
- hast-util-to-jsx-runtime@2.3.6:
3929
- dependencies:
3930
- '@types/estree': 1.0.8
3931
- '@types/hast': 3.0.4
3932
- '@types/unist': 3.0.3
3933
- comma-separated-tokens: 2.0.3
3934
- devlop: 1.1.0
3935
- estree-util-is-identifier-name: 3.0.0
3936
- hast-util-whitespace: 3.0.0
3937
- mdast-util-mdx-expression: 2.0.1
3938
- mdast-util-mdx-jsx: 3.2.0
3939
- mdast-util-mdxjs-esm: 2.0.1
3940
- property-information: 7.1.0
3941
- space-separated-tokens: 2.0.2
3942
- style-to-js: 1.1.21
3943
- unist-util-position: 5.0.0
3944
- vfile-message: 4.0.3
3945
- transitivePeerDependencies:
3946
- - supports-color
3947
-
3948
- hast-util-whitespace@3.0.0:
3949
- dependencies:
3950
- '@types/hast': 3.0.4
3951
-
3952
- html-url-attributes@3.0.1: {}
3953
-
3954
- immer@10.2.0: {}
3955
-
3956
- immer@11.1.4: {}
3957
-
3958
- inline-style-parser@0.2.7: {}
3959
-
3960
- internmap@2.0.3: {}
3961
-
3962
- is-alphabetical@2.0.1: {}
3963
-
3964
- is-alphanumerical@2.0.1:
3965
- dependencies:
3966
- is-alphabetical: 2.0.1
3967
- is-decimal: 2.0.1
3968
-
3969
- is-decimal@2.0.1: {}
3970
-
3971
- is-hexadecimal@2.0.1: {}
3972
-
3973
- is-plain-obj@4.1.0: {}
3974
-
3975
- jiti@2.6.1: {}
3976
-
3977
- js-tokens@4.0.0: {}
3978
-
3979
- jsesc@3.1.0: {}
3980
-
3981
- json5@2.2.3: {}
3982
-
3983
- lightningcss-android-arm64@1.31.1:
3984
- optional: true
3985
-
3986
- lightningcss-darwin-arm64@1.31.1:
3987
- optional: true
3988
-
3989
- lightningcss-darwin-x64@1.31.1:
3990
- optional: true
3991
-
3992
- lightningcss-freebsd-x64@1.31.1:
3993
- optional: true
3994
-
3995
- lightningcss-linux-arm-gnueabihf@1.31.1:
3996
- optional: true
3997
-
3998
- lightningcss-linux-arm64-gnu@1.31.1:
3999
- optional: true
4000
-
4001
- lightningcss-linux-arm64-musl@1.31.1:
4002
- optional: true
4003
-
4004
- lightningcss-linux-x64-gnu@1.31.1:
4005
- optional: true
4006
-
4007
- lightningcss-linux-x64-musl@1.31.1:
4008
- optional: true
4009
-
4010
- lightningcss-win32-arm64-msvc@1.31.1:
4011
- optional: true
4012
-
4013
- lightningcss-win32-x64-msvc@1.31.1:
4014
- optional: true
4015
-
4016
- lightningcss@1.31.1:
4017
- dependencies:
4018
- detect-libc: 2.1.2
4019
- optionalDependencies:
4020
- lightningcss-android-arm64: 1.31.1
4021
- lightningcss-darwin-arm64: 1.31.1
4022
- lightningcss-darwin-x64: 1.31.1
4023
- lightningcss-freebsd-x64: 1.31.1
4024
- lightningcss-linux-arm-gnueabihf: 1.31.1
4025
- lightningcss-linux-arm64-gnu: 1.31.1
4026
- lightningcss-linux-arm64-musl: 1.31.1
4027
- lightningcss-linux-x64-gnu: 1.31.1
4028
- lightningcss-linux-x64-musl: 1.31.1
4029
- lightningcss-win32-arm64-msvc: 1.31.1
4030
- lightningcss-win32-x64-msvc: 1.31.1
4031
-
4032
- lodash@4.17.23: {}
4033
-
4034
- longest-streak@3.1.0: {}
4035
-
4036
- loose-envify@1.4.0:
4037
- dependencies:
4038
- js-tokens: 4.0.0
4039
-
4040
- lru-cache@5.1.1:
4041
- dependencies:
4042
- yallist: 3.1.1
4043
-
4044
- lucide-react@0.575.0(react@19.2.4):
4045
- dependencies:
4046
- react: 19.2.4
4047
-
4048
- magic-string@0.30.21:
4049
- dependencies:
4050
- '@jridgewell/sourcemap-codec': 1.5.5
4051
-
4052
- markdown-table@3.0.4: {}
4053
-
4054
- marked@14.0.0: {}
4055
-
4056
- mdast-util-find-and-replace@3.0.2:
4057
- dependencies:
4058
- '@types/mdast': 4.0.4
4059
- escape-string-regexp: 5.0.0
4060
- unist-util-is: 6.0.1
4061
- unist-util-visit-parents: 6.0.2
4062
-
4063
- mdast-util-from-markdown@2.0.3:
4064
- dependencies:
4065
- '@types/mdast': 4.0.4
4066
- '@types/unist': 3.0.3
4067
- decode-named-character-reference: 1.3.0
4068
- devlop: 1.1.0
4069
- mdast-util-to-string: 4.0.0
4070
- micromark: 4.0.2
4071
- micromark-util-decode-numeric-character-reference: 2.0.2
4072
- micromark-util-decode-string: 2.0.1
4073
- micromark-util-normalize-identifier: 2.0.1
4074
- micromark-util-symbol: 2.0.1
4075
- micromark-util-types: 2.0.2
4076
- unist-util-stringify-position: 4.0.0
4077
- transitivePeerDependencies:
4078
- - supports-color
4079
-
4080
- mdast-util-gfm-autolink-literal@2.0.1:
4081
- dependencies:
4082
- '@types/mdast': 4.0.4
4083
- ccount: 2.0.1
4084
- devlop: 1.1.0
4085
- mdast-util-find-and-replace: 3.0.2
4086
- micromark-util-character: 2.1.1
4087
-
4088
- mdast-util-gfm-footnote@2.1.0:
4089
- dependencies:
4090
- '@types/mdast': 4.0.4
4091
- devlop: 1.1.0
4092
- mdast-util-from-markdown: 2.0.3
4093
- mdast-util-to-markdown: 2.1.2
4094
- micromark-util-normalize-identifier: 2.0.1
4095
- transitivePeerDependencies:
4096
- - supports-color
4097
-
4098
- mdast-util-gfm-strikethrough@2.0.0:
4099
- dependencies:
4100
- '@types/mdast': 4.0.4
4101
- mdast-util-from-markdown: 2.0.3
4102
- mdast-util-to-markdown: 2.1.2
4103
- transitivePeerDependencies:
4104
- - supports-color
4105
-
4106
- mdast-util-gfm-table@2.0.0:
4107
- dependencies:
4108
- '@types/mdast': 4.0.4
4109
- devlop: 1.1.0
4110
- markdown-table: 3.0.4
4111
- mdast-util-from-markdown: 2.0.3
4112
- mdast-util-to-markdown: 2.1.2
4113
- transitivePeerDependencies:
4114
- - supports-color
4115
-
4116
- mdast-util-gfm-task-list-item@2.0.0:
4117
- dependencies:
4118
- '@types/mdast': 4.0.4
4119
- devlop: 1.1.0
4120
- mdast-util-from-markdown: 2.0.3
4121
- mdast-util-to-markdown: 2.1.2
4122
- transitivePeerDependencies:
4123
- - supports-color
4124
-
4125
- mdast-util-gfm@3.1.0:
4126
- dependencies:
4127
- mdast-util-from-markdown: 2.0.3
4128
- mdast-util-gfm-autolink-literal: 2.0.1
4129
- mdast-util-gfm-footnote: 2.1.0
4130
- mdast-util-gfm-strikethrough: 2.0.0
4131
- mdast-util-gfm-table: 2.0.0
4132
- mdast-util-gfm-task-list-item: 2.0.0
4133
- mdast-util-to-markdown: 2.1.2
4134
- transitivePeerDependencies:
4135
- - supports-color
4136
-
4137
- mdast-util-mdx-expression@2.0.1:
4138
- dependencies:
4139
- '@types/estree-jsx': 1.0.5
4140
- '@types/hast': 3.0.4
4141
- '@types/mdast': 4.0.4
4142
- devlop: 1.1.0
4143
- mdast-util-from-markdown: 2.0.3
4144
- mdast-util-to-markdown: 2.1.2
4145
- transitivePeerDependencies:
4146
- - supports-color
4147
-
4148
- mdast-util-mdx-jsx@3.2.0:
4149
- dependencies:
4150
- '@types/estree-jsx': 1.0.5
4151
- '@types/hast': 3.0.4
4152
- '@types/mdast': 4.0.4
4153
- '@types/unist': 3.0.3
4154
- ccount: 2.0.1
4155
- devlop: 1.1.0
4156
- mdast-util-from-markdown: 2.0.3
4157
- mdast-util-to-markdown: 2.1.2
4158
- parse-entities: 4.0.2
4159
- stringify-entities: 4.0.4
4160
- unist-util-stringify-position: 4.0.0
4161
- vfile-message: 4.0.3
4162
- transitivePeerDependencies:
4163
- - supports-color
4164
-
4165
- mdast-util-mdxjs-esm@2.0.1:
4166
- dependencies:
4167
- '@types/estree-jsx': 1.0.5
4168
- '@types/hast': 3.0.4
4169
- '@types/mdast': 4.0.4
4170
- devlop: 1.1.0
4171
- mdast-util-from-markdown: 2.0.3
4172
- mdast-util-to-markdown: 2.1.2
4173
- transitivePeerDependencies:
4174
- - supports-color
4175
-
4176
- mdast-util-phrasing@4.1.0:
4177
- dependencies:
4178
- '@types/mdast': 4.0.4
4179
- unist-util-is: 6.0.1
4180
-
4181
- mdast-util-to-hast@13.2.1:
4182
- dependencies:
4183
- '@types/hast': 3.0.4
4184
- '@types/mdast': 4.0.4
4185
- '@ungap/structured-clone': 1.3.0
4186
- devlop: 1.1.0
4187
- micromark-util-sanitize-uri: 2.0.1
4188
- trim-lines: 3.0.1
4189
- unist-util-position: 5.0.0
4190
- unist-util-visit: 5.1.0
4191
- vfile: 6.0.3
4192
-
4193
- mdast-util-to-markdown@2.1.2:
4194
- dependencies:
4195
- '@types/mdast': 4.0.4
4196
- '@types/unist': 3.0.3
4197
- longest-streak: 3.1.0
4198
- mdast-util-phrasing: 4.1.0
4199
- mdast-util-to-string: 4.0.0
4200
- micromark-util-classify-character: 2.0.1
4201
- micromark-util-decode-string: 2.0.1
4202
- unist-util-visit: 5.1.0
4203
- zwitch: 2.0.4
4204
-
4205
- mdast-util-to-string@4.0.0:
4206
- dependencies:
4207
- '@types/mdast': 4.0.4
4208
-
4209
- micromark-core-commonmark@2.0.3:
4210
- dependencies:
4211
- decode-named-character-reference: 1.3.0
4212
- devlop: 1.1.0
4213
- micromark-factory-destination: 2.0.1
4214
- micromark-factory-label: 2.0.1
4215
- micromark-factory-space: 2.0.1
4216
- micromark-factory-title: 2.0.1
4217
- micromark-factory-whitespace: 2.0.1
4218
- micromark-util-character: 2.1.1
4219
- micromark-util-chunked: 2.0.1
4220
- micromark-util-classify-character: 2.0.1
4221
- micromark-util-html-tag-name: 2.0.1
4222
- micromark-util-normalize-identifier: 2.0.1
4223
- micromark-util-resolve-all: 2.0.1
4224
- micromark-util-subtokenize: 2.1.0
4225
- micromark-util-symbol: 2.0.1
4226
- micromark-util-types: 2.0.2
4227
-
4228
- micromark-extension-gfm-autolink-literal@2.1.0:
4229
- dependencies:
4230
- micromark-util-character: 2.1.1
4231
- micromark-util-sanitize-uri: 2.0.1
4232
- micromark-util-symbol: 2.0.1
4233
- micromark-util-types: 2.0.2
4234
-
4235
- micromark-extension-gfm-footnote@2.1.0:
4236
- dependencies:
4237
- devlop: 1.1.0
4238
- micromark-core-commonmark: 2.0.3
4239
- micromark-factory-space: 2.0.1
4240
- micromark-util-character: 2.1.1
4241
- micromark-util-normalize-identifier: 2.0.1
4242
- micromark-util-sanitize-uri: 2.0.1
4243
- micromark-util-symbol: 2.0.1
4244
- micromark-util-types: 2.0.2
4245
-
4246
- micromark-extension-gfm-strikethrough@2.1.0:
4247
- dependencies:
4248
- devlop: 1.1.0
4249
- micromark-util-chunked: 2.0.1
4250
- micromark-util-classify-character: 2.0.1
4251
- micromark-util-resolve-all: 2.0.1
4252
- micromark-util-symbol: 2.0.1
4253
- micromark-util-types: 2.0.2
4254
-
4255
- micromark-extension-gfm-table@2.1.1:
4256
- dependencies:
4257
- devlop: 1.1.0
4258
- micromark-factory-space: 2.0.1
4259
- micromark-util-character: 2.1.1
4260
- micromark-util-symbol: 2.0.1
4261
- micromark-util-types: 2.0.2
4262
-
4263
- micromark-extension-gfm-tagfilter@2.0.0:
4264
- dependencies:
4265
- micromark-util-types: 2.0.2
4266
-
4267
- micromark-extension-gfm-task-list-item@2.1.0:
4268
- dependencies:
4269
- devlop: 1.1.0
4270
- micromark-factory-space: 2.0.1
4271
- micromark-util-character: 2.1.1
4272
- micromark-util-symbol: 2.0.1
4273
- micromark-util-types: 2.0.2
4274
-
4275
- micromark-extension-gfm@3.0.0:
4276
- dependencies:
4277
- micromark-extension-gfm-autolink-literal: 2.1.0
4278
- micromark-extension-gfm-footnote: 2.1.0
4279
- micromark-extension-gfm-strikethrough: 2.1.0
4280
- micromark-extension-gfm-table: 2.1.1
4281
- micromark-extension-gfm-tagfilter: 2.0.0
4282
- micromark-extension-gfm-task-list-item: 2.1.0
4283
- micromark-util-combine-extensions: 2.0.1
4284
- micromark-util-types: 2.0.2
4285
-
4286
- micromark-factory-destination@2.0.1:
4287
- dependencies:
4288
- micromark-util-character: 2.1.1
4289
- micromark-util-symbol: 2.0.1
4290
- micromark-util-types: 2.0.2
4291
-
4292
- micromark-factory-label@2.0.1:
4293
- dependencies:
4294
- devlop: 1.1.0
4295
- micromark-util-character: 2.1.1
4296
- micromark-util-symbol: 2.0.1
4297
- micromark-util-types: 2.0.2
4298
-
4299
- micromark-factory-space@2.0.1:
4300
- dependencies:
4301
- micromark-util-character: 2.1.1
4302
- micromark-util-types: 2.0.2
4303
-
4304
- micromark-factory-title@2.0.1:
4305
- dependencies:
4306
- micromark-factory-space: 2.0.1
4307
- micromark-util-character: 2.1.1
4308
- micromark-util-symbol: 2.0.1
4309
- micromark-util-types: 2.0.2
4310
-
4311
- micromark-factory-whitespace@2.0.1:
4312
- dependencies:
4313
- micromark-factory-space: 2.0.1
4314
- micromark-util-character: 2.1.1
4315
- micromark-util-symbol: 2.0.1
4316
- micromark-util-types: 2.0.2
4317
-
4318
- micromark-util-character@2.1.1:
4319
- dependencies:
4320
- micromark-util-symbol: 2.0.1
4321
- micromark-util-types: 2.0.2
4322
-
4323
- micromark-util-chunked@2.0.1:
4324
- dependencies:
4325
- micromark-util-symbol: 2.0.1
4326
-
4327
- micromark-util-classify-character@2.0.1:
4328
- dependencies:
4329
- micromark-util-character: 2.1.1
4330
- micromark-util-symbol: 2.0.1
4331
- micromark-util-types: 2.0.2
4332
-
4333
- micromark-util-combine-extensions@2.0.1:
4334
- dependencies:
4335
- micromark-util-chunked: 2.0.1
4336
- micromark-util-types: 2.0.2
4337
-
4338
- micromark-util-decode-numeric-character-reference@2.0.2:
4339
- dependencies:
4340
- micromark-util-symbol: 2.0.1
4341
-
4342
- micromark-util-decode-string@2.0.1:
4343
- dependencies:
4344
- decode-named-character-reference: 1.3.0
4345
- micromark-util-character: 2.1.1
4346
- micromark-util-decode-numeric-character-reference: 2.0.2
4347
- micromark-util-symbol: 2.0.1
4348
-
4349
- micromark-util-encode@2.0.1: {}
4350
-
4351
- micromark-util-html-tag-name@2.0.1: {}
4352
-
4353
- micromark-util-normalize-identifier@2.0.1:
4354
- dependencies:
4355
- micromark-util-symbol: 2.0.1
4356
-
4357
- micromark-util-resolve-all@2.0.1:
4358
- dependencies:
4359
- micromark-util-types: 2.0.2
4360
-
4361
- micromark-util-sanitize-uri@2.0.1:
4362
- dependencies:
4363
- micromark-util-character: 2.1.1
4364
- micromark-util-encode: 2.0.1
4365
- micromark-util-symbol: 2.0.1
4366
-
4367
- micromark-util-subtokenize@2.1.0:
4368
- dependencies:
4369
- devlop: 1.1.0
4370
- micromark-util-chunked: 2.0.1
4371
- micromark-util-symbol: 2.0.1
4372
- micromark-util-types: 2.0.2
4373
-
4374
- micromark-util-symbol@2.0.1: {}
4375
-
4376
- micromark-util-types@2.0.2: {}
4377
-
4378
- micromark@4.0.2:
4379
- dependencies:
4380
- '@types/debug': 4.1.12
4381
- debug: 4.4.3
4382
- decode-named-character-reference: 1.3.0
4383
- devlop: 1.1.0
4384
- micromark-core-commonmark: 2.0.3
4385
- micromark-factory-space: 2.0.1
4386
- micromark-util-character: 2.1.1
4387
- micromark-util-chunked: 2.0.1
4388
- micromark-util-combine-extensions: 2.0.1
4389
- micromark-util-decode-numeric-character-reference: 2.0.2
4390
- micromark-util-encode: 2.0.1
4391
- micromark-util-normalize-identifier: 2.0.1
4392
- micromark-util-resolve-all: 2.0.1
4393
- micromark-util-sanitize-uri: 2.0.1
4394
- micromark-util-subtokenize: 2.1.0
4395
- micromark-util-symbol: 2.0.1
4396
- micromark-util-types: 2.0.2
4397
- transitivePeerDependencies:
4398
- - supports-color
4399
-
4400
- monaco-editor@0.55.1:
4401
- dependencies:
4402
- dompurify: 3.2.7
4403
- marked: 14.0.0
4404
-
4405
- ms@2.1.3: {}
4406
-
4407
- nanoid@3.3.11: {}
4408
-
4409
- next-themes@0.4.6(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
4410
- dependencies:
4411
- react: 19.2.4
4412
- react-dom: 19.2.4(react@19.2.4)
4413
-
4414
- node-releases@2.0.27: {}
4415
-
4416
- object-assign@4.1.1: {}
4417
-
4418
- parse-entities@4.0.2:
4419
- dependencies:
4420
- '@types/unist': 2.0.11
4421
- character-entities-legacy: 3.0.0
4422
- character-reference-invalid: 2.0.1
4423
- decode-named-character-reference: 1.3.0
4424
- is-alphanumerical: 2.0.1
4425
- is-decimal: 2.0.1
4426
- is-hexadecimal: 2.0.1
4427
-
4428
- picocolors@1.1.1: {}
4429
-
4430
- picomatch@4.0.3: {}
4431
-
4432
- postcss@8.5.6:
4433
- dependencies:
4434
- nanoid: 3.3.11
4435
- picocolors: 1.1.1
4436
- source-map-js: 1.2.1
4437
-
4438
- prop-types@15.8.1:
4439
- dependencies:
4440
- loose-envify: 1.4.0
4441
- object-assign: 4.1.1
4442
- react-is: 16.13.1
4443
-
4444
- property-information@7.1.0: {}
4445
-
4446
- radix-ui@1.4.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
4447
- dependencies:
4448
- '@radix-ui/primitive': 1.1.3
4449
- '@radix-ui/react-accessible-icon': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4450
- '@radix-ui/react-accordion': 1.2.12(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4451
- '@radix-ui/react-alert-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4452
- '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4453
- '@radix-ui/react-aspect-ratio': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4454
- '@radix-ui/react-avatar': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4455
- '@radix-ui/react-checkbox': 1.3.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4456
- '@radix-ui/react-collapsible': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4457
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4458
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.14)(react@19.2.4)
4459
- '@radix-ui/react-context': 1.1.2(@types/react@19.2.14)(react@19.2.4)
4460
- '@radix-ui/react-context-menu': 2.2.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4461
- '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4462
- '@radix-ui/react-direction': 1.1.1(@types/react@19.2.14)(react@19.2.4)
4463
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4464
- '@radix-ui/react-dropdown-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4465
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.2.14)(react@19.2.4)
4466
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4467
- '@radix-ui/react-form': 0.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4468
- '@radix-ui/react-hover-card': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4469
- '@radix-ui/react-label': 2.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4470
- '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4471
- '@radix-ui/react-menubar': 1.1.16(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4472
- '@radix-ui/react-navigation-menu': 1.2.14(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4473
- '@radix-ui/react-one-time-password-field': 0.1.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4474
- '@radix-ui/react-password-toggle-field': 0.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4475
- '@radix-ui/react-popover': 1.1.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4476
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4477
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4478
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4479
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4480
- '@radix-ui/react-progress': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4481
- '@radix-ui/react-radio-group': 1.3.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4482
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4483
- '@radix-ui/react-scroll-area': 1.2.10(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4484
- '@radix-ui/react-select': 2.2.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4485
- '@radix-ui/react-separator': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4486
- '@radix-ui/react-slider': 1.3.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4487
- '@radix-ui/react-slot': 1.2.3(@types/react@19.2.14)(react@19.2.4)
4488
- '@radix-ui/react-switch': 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4489
- '@radix-ui/react-tabs': 1.1.13(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4490
- '@radix-ui/react-toast': 1.2.15(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4491
- '@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4492
- '@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4493
- '@radix-ui/react-toolbar': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4494
- '@radix-ui/react-tooltip': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4495
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.14)(react@19.2.4)
4496
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.14)(react@19.2.4)
4497
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.14)(react@19.2.4)
4498
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.14)(react@19.2.4)
4499
- '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.14)(react@19.2.4)
4500
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.14)(react@19.2.4)
4501
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.14)(react@19.2.4)
4502
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.14))(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4503
- react: 19.2.4
4504
- react-dom: 19.2.4(react@19.2.4)
4505
- optionalDependencies:
4506
- '@types/react': 19.2.14
4507
- '@types/react-dom': 19.2.3(@types/react@19.2.14)
4508
-
4509
- react-dom@19.2.4(react@19.2.4):
4510
- dependencies:
4511
- react: 19.2.4
4512
- scheduler: 0.27.0
4513
-
4514
- react-is@16.13.1: {}
4515
-
4516
- react-markdown@10.1.0(@types/react@19.2.14)(react@19.2.4):
4517
- dependencies:
4518
- '@types/hast': 3.0.4
4519
- '@types/mdast': 4.0.4
4520
- '@types/react': 19.2.14
4521
- devlop: 1.1.0
4522
- hast-util-to-jsx-runtime: 2.3.6
4523
- html-url-attributes: 3.0.1
4524
- mdast-util-to-hast: 13.2.1
4525
- react: 19.2.4
4526
- remark-parse: 11.0.0
4527
- remark-rehype: 11.1.2
4528
- unified: 11.0.5
4529
- unist-util-visit: 5.1.0
4530
- vfile: 6.0.3
4531
- transitivePeerDependencies:
4532
- - supports-color
4533
-
4534
- react-redux@9.2.0(@types/react@19.2.14)(react@19.2.4)(redux@5.0.1):
4535
- dependencies:
4536
- '@types/use-sync-external-store': 0.0.6
4537
- react: 19.2.4
4538
- use-sync-external-store: 1.6.0(react@19.2.4)
4539
- optionalDependencies:
4540
- '@types/react': 19.2.14
4541
- redux: 5.0.1
4542
-
4543
- react-refresh@0.18.0: {}
4544
-
4545
- react-remove-scroll-bar@2.3.8(@types/react@19.2.14)(react@19.2.4):
4546
- dependencies:
4547
- react: 19.2.4
4548
- react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.4)
4549
- tslib: 2.8.1
4550
- optionalDependencies:
4551
- '@types/react': 19.2.14
4552
-
4553
- react-remove-scroll@2.7.2(@types/react@19.2.14)(react@19.2.4):
4554
- dependencies:
4555
- react: 19.2.4
4556
- react-remove-scroll-bar: 2.3.8(@types/react@19.2.14)(react@19.2.4)
4557
- react-style-singleton: 2.2.3(@types/react@19.2.14)(react@19.2.4)
4558
- tslib: 2.8.1
4559
- use-callback-ref: 1.3.3(@types/react@19.2.14)(react@19.2.4)
4560
- use-sidecar: 1.1.3(@types/react@19.2.14)(react@19.2.4)
4561
- optionalDependencies:
4562
- '@types/react': 19.2.14
4563
-
4564
- react-router-dom@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
4565
- dependencies:
4566
- react: 19.2.4
4567
- react-dom: 19.2.4(react@19.2.4)
4568
- react-router: 7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4)
4569
-
4570
- react-router@7.13.1(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
4571
- dependencies:
4572
- cookie: 1.1.1
4573
- react: 19.2.4
4574
- set-cookie-parser: 2.7.2
4575
- optionalDependencies:
4576
- react-dom: 19.2.4(react@19.2.4)
4577
-
4578
- react-style-singleton@2.2.3(@types/react@19.2.14)(react@19.2.4):
4579
- dependencies:
4580
- get-nonce: 1.0.1
4581
- react: 19.2.4
4582
- tslib: 2.8.1
4583
- optionalDependencies:
4584
- '@types/react': 19.2.14
4585
-
4586
- react@19.2.4: {}
4587
-
4588
- recharts@3.7.0(@types/react@19.2.14)(react-dom@19.2.4(react@19.2.4))(react-is@16.13.1)(react@19.2.4)(redux@5.0.1):
4589
- dependencies:
4590
- '@reduxjs/toolkit': 2.11.2(react-redux@9.2.0(@types/react@19.2.14)(react@19.2.4)(redux@5.0.1))(react@19.2.4)
4591
- clsx: 2.1.1
4592
- decimal.js-light: 2.5.1
4593
- es-toolkit: 1.44.0
4594
- eventemitter3: 5.0.4
4595
- immer: 10.2.0
4596
- react: 19.2.4
4597
- react-dom: 19.2.4(react@19.2.4)
4598
- react-is: 16.13.1
4599
- react-redux: 9.2.0(@types/react@19.2.14)(react@19.2.4)(redux@5.0.1)
4600
- reselect: 5.1.1
4601
- tiny-invariant: 1.3.3
4602
- use-sync-external-store: 1.6.0(react@19.2.4)
4603
- victory-vendor: 37.3.6
4604
- transitivePeerDependencies:
4605
- - '@types/react'
4606
- - redux
4607
-
4608
- redux-thunk@3.1.0(redux@5.0.1):
4609
- dependencies:
4610
- redux: 5.0.1
4611
-
4612
- redux@5.0.1: {}
4613
-
4614
- remark-gfm@4.0.1:
4615
- dependencies:
4616
- '@types/mdast': 4.0.4
4617
- mdast-util-gfm: 3.1.0
4618
- micromark-extension-gfm: 3.0.0
4619
- remark-parse: 11.0.0
4620
- remark-stringify: 11.0.0
4621
- unified: 11.0.5
4622
- transitivePeerDependencies:
4623
- - supports-color
4624
-
4625
- remark-parse@11.0.0:
4626
- dependencies:
4627
- '@types/mdast': 4.0.4
4628
- mdast-util-from-markdown: 2.0.3
4629
- micromark-util-types: 2.0.2
4630
- unified: 11.0.5
4631
- transitivePeerDependencies:
4632
- - supports-color
4633
-
4634
- remark-rehype@11.1.2:
4635
- dependencies:
4636
- '@types/hast': 3.0.4
4637
- '@types/mdast': 4.0.4
4638
- mdast-util-to-hast: 13.2.1
4639
- unified: 11.0.5
4640
- vfile: 6.0.3
4641
-
4642
- remark-stringify@11.0.0:
4643
- dependencies:
4644
- '@types/mdast': 4.0.4
4645
- mdast-util-to-markdown: 2.1.2
4646
- unified: 11.0.5
4647
-
4648
- reselect@5.1.1: {}
4649
-
4650
- rollup@4.59.0:
4651
- dependencies:
4652
- '@types/estree': 1.0.8
4653
- optionalDependencies:
4654
- '@rollup/rollup-android-arm-eabi': 4.59.0
4655
- '@rollup/rollup-android-arm64': 4.59.0
4656
- '@rollup/rollup-darwin-arm64': 4.59.0
4657
- '@rollup/rollup-darwin-x64': 4.59.0
4658
- '@rollup/rollup-freebsd-arm64': 4.59.0
4659
- '@rollup/rollup-freebsd-x64': 4.59.0
4660
- '@rollup/rollup-linux-arm-gnueabihf': 4.59.0
4661
- '@rollup/rollup-linux-arm-musleabihf': 4.59.0
4662
- '@rollup/rollup-linux-arm64-gnu': 4.59.0
4663
- '@rollup/rollup-linux-arm64-musl': 4.59.0
4664
- '@rollup/rollup-linux-loong64-gnu': 4.59.0
4665
- '@rollup/rollup-linux-loong64-musl': 4.59.0
4666
- '@rollup/rollup-linux-ppc64-gnu': 4.59.0
4667
- '@rollup/rollup-linux-ppc64-musl': 4.59.0
4668
- '@rollup/rollup-linux-riscv64-gnu': 4.59.0
4669
- '@rollup/rollup-linux-riscv64-musl': 4.59.0
4670
- '@rollup/rollup-linux-s390x-gnu': 4.59.0
4671
- '@rollup/rollup-linux-x64-gnu': 4.59.0
4672
- '@rollup/rollup-linux-x64-musl': 4.59.0
4673
- '@rollup/rollup-openbsd-x64': 4.59.0
4674
- '@rollup/rollup-openharmony-arm64': 4.59.0
4675
- '@rollup/rollup-win32-arm64-msvc': 4.59.0
4676
- '@rollup/rollup-win32-ia32-msvc': 4.59.0
4677
- '@rollup/rollup-win32-x64-gnu': 4.59.0
4678
- '@rollup/rollup-win32-x64-msvc': 4.59.0
4679
- fsevents: 2.3.3
4680
-
4681
- scheduler@0.27.0: {}
4682
-
4683
- semver@6.3.1: {}
4684
-
4685
- set-cookie-parser@2.7.2: {}
4686
-
4687
- sonner@2.0.7(react-dom@19.2.4(react@19.2.4))(react@19.2.4):
4688
- dependencies:
4689
- react: 19.2.4
4690
- react-dom: 19.2.4(react@19.2.4)
4691
-
4692
- source-map-js@1.2.1: {}
4693
-
4694
- space-separated-tokens@2.0.2: {}
4695
-
4696
- state-local@1.0.7: {}
4697
-
4698
- stringify-entities@4.0.4:
4699
- dependencies:
4700
- character-entities-html4: 2.1.0
4701
- character-entities-legacy: 3.0.0
4702
-
4703
- style-to-js@1.1.21:
4704
- dependencies:
4705
- style-to-object: 1.0.14
4706
-
4707
- style-to-object@1.0.14:
4708
- dependencies:
4709
- inline-style-parser: 0.2.7
4710
-
4711
- tailwind-merge@3.5.0: {}
4712
-
4713
- tailwindcss@4.2.1: {}
4714
-
4715
- tapable@2.3.0: {}
4716
-
4717
- tiny-invariant@1.3.3: {}
4718
-
4719
- tinyglobby@0.2.15:
4720
- dependencies:
4721
- fdir: 6.5.0(picomatch@4.0.3)
4722
- picomatch: 4.0.3
4723
-
4724
- trim-lines@3.0.1: {}
4725
-
4726
- trough@2.2.0: {}
4727
-
4728
- tslib@2.8.1: {}
4729
-
4730
- tw-animate-css@1.4.0: {}
4731
-
4732
- typescript@5.9.3: {}
4733
-
4734
- undici-types@7.16.0: {}
4735
-
4736
- unified@11.0.5:
4737
- dependencies:
4738
- '@types/unist': 3.0.3
4739
- bail: 2.0.2
4740
- devlop: 1.1.0
4741
- extend: 3.0.2
4742
- is-plain-obj: 4.1.0
4743
- trough: 2.2.0
4744
- vfile: 6.0.3
4745
-
4746
- unist-util-is@6.0.1:
4747
- dependencies:
4748
- '@types/unist': 3.0.3
4749
-
4750
- unist-util-position@5.0.0:
4751
- dependencies:
4752
- '@types/unist': 3.0.3
4753
-
4754
- unist-util-stringify-position@4.0.0:
4755
- dependencies:
4756
- '@types/unist': 3.0.3
4757
-
4758
- unist-util-visit-parents@6.0.2:
4759
- dependencies:
4760
- '@types/unist': 3.0.3
4761
- unist-util-is: 6.0.1
4762
-
4763
- unist-util-visit@5.1.0:
4764
- dependencies:
4765
- '@types/unist': 3.0.3
4766
- unist-util-is: 6.0.1
4767
- unist-util-visit-parents: 6.0.2
4768
-
4769
- update-browserslist-db@1.2.3(browserslist@4.28.1):
4770
- dependencies:
4771
- browserslist: 4.28.1
4772
- escalade: 3.2.0
4773
- picocolors: 1.1.1
4774
-
4775
- use-callback-ref@1.3.3(@types/react@19.2.14)(react@19.2.4):
4776
- dependencies:
4777
- react: 19.2.4
4778
- tslib: 2.8.1
4779
- optionalDependencies:
4780
- '@types/react': 19.2.14
4781
-
4782
- use-sidecar@1.1.3(@types/react@19.2.14)(react@19.2.4):
4783
- dependencies:
4784
- detect-node-es: 1.1.0
4785
- react: 19.2.4
4786
- tslib: 2.8.1
4787
- optionalDependencies:
4788
- '@types/react': 19.2.14
4789
-
4790
- use-sync-external-store@1.6.0(react@19.2.4):
4791
- dependencies:
4792
- react: 19.2.4
4793
-
4794
- vfile-message@4.0.3:
4795
- dependencies:
4796
- '@types/unist': 3.0.3
4797
- unist-util-stringify-position: 4.0.0
4798
-
4799
- vfile@6.0.3:
4800
- dependencies:
4801
- '@types/unist': 3.0.3
4802
- vfile-message: 4.0.3
4803
-
4804
- victory-vendor@37.3.6:
4805
- dependencies:
4806
- '@types/d3-array': 3.2.2
4807
- '@types/d3-ease': 3.0.2
4808
- '@types/d3-interpolate': 3.0.4
4809
- '@types/d3-scale': 4.0.9
4810
- '@types/d3-shape': 3.1.8
4811
- '@types/d3-time': 3.0.4
4812
- '@types/d3-timer': 3.0.2
4813
- d3-array: 3.2.4
4814
- d3-ease: 3.0.1
4815
- d3-interpolate: 3.0.1
4816
- d3-scale: 4.0.2
4817
- d3-shape: 3.2.0
4818
- d3-time: 3.1.0
4819
- d3-timer: 3.0.1
4820
-
4821
- vite@7.3.1(@types/node@24.10.13)(jiti@2.6.1)(lightningcss@1.31.1):
4822
- dependencies:
4823
- esbuild: 0.27.3
4824
- fdir: 6.5.0(picomatch@4.0.3)
4825
- picomatch: 4.0.3
4826
- postcss: 8.5.6
4827
- rollup: 4.59.0
4828
- tinyglobby: 0.2.15
4829
- optionalDependencies:
4830
- '@types/node': 24.10.13
4831
- fsevents: 2.3.3
4832
- jiti: 2.6.1
4833
- lightningcss: 1.31.1
4834
-
4835
- yallist@3.1.1: {}
4836
-
4837
- zustand@4.5.7(@types/react@19.2.14)(immer@11.1.4)(react@19.2.4):
4838
- dependencies:
4839
- use-sync-external-store: 1.6.0(react@19.2.4)
4840
- optionalDependencies:
4841
- '@types/react': 19.2.14
4842
- immer: 11.1.4
4843
- react: 19.2.4
4844
-
4845
- zwitch@2.0.4: {}