@desplega.ai/agent-swarm 1.20.0 → 1.49.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 (810) hide show
  1. package/.claude/settings.json +84 -0
  2. package/.claude/settings.local.json +3 -1
  3. package/.entire/settings.json +4 -0
  4. package/.env.docker.example +40 -23
  5. package/.env.example +39 -1
  6. package/.github/ISSUE_TEMPLATE/bug_report.yml +78 -0
  7. package/.github/ISSUE_TEMPLATE/community-template.yml +77 -0
  8. package/.github/ISSUE_TEMPLATE/config.yml +8 -0
  9. package/.github/ISSUE_TEMPLATE/feature_request.yml +60 -0
  10. package/.github/PULL_REQUEST_TEMPLATE/community-template.md +29 -0
  11. package/.github/workflows/ci.yml +3 -27
  12. package/.github/workflows/docker-and-deploy.yml +20 -5
  13. package/.github/workflows/merge-gate.yml +233 -0
  14. package/.opencode/plugins/entire.ts +133 -0
  15. package/.superset/config.json +6 -0
  16. package/.wts-setup.ts +103 -34
  17. package/CHANGELOG.md +447 -0
  18. package/CLAUDE.md +422 -5
  19. package/CONTRIBUTING.md +46 -1
  20. package/DEPLOYMENT.md +26 -9
  21. package/Dockerfile +15 -7
  22. package/Dockerfile.worker +99 -67
  23. package/MCP.md +452 -17
  24. package/README.md +271 -169
  25. package/api-entrypoint.sh +56 -0
  26. package/depot.json +1 -0
  27. package/docker-compose.example.yml +194 -3
  28. package/docker-compose.local.yml +119 -0
  29. package/docker-entrypoint.sh +393 -113
  30. package/docs-site/app/api/search/route.ts +4 -0
  31. package/docs-site/app/docs/[[...slug]]/page.tsx +87 -0
  32. package/docs-site/app/docs/layout.tsx +12 -0
  33. package/docs-site/app/globals.css +24 -0
  34. package/docs-site/app/layout.config.tsx +34 -0
  35. package/docs-site/app/layout.tsx +119 -0
  36. package/docs-site/app/llms-full.txt/route.ts +11 -0
  37. package/docs-site/app/llms.mdx/docs/[[...slug]]/route.ts +24 -0
  38. package/docs-site/app/llms.txt/route.ts +8 -0
  39. package/docs-site/app/page.tsx +5 -0
  40. package/docs-site/app/robots.ts +13 -0
  41. package/docs-site/app/sitemap.ts +37 -0
  42. package/docs-site/components/api-page.client.tsx +4 -0
  43. package/docs-site/components/api-page.tsx +7 -0
  44. package/docs-site/components/mdx/mermaid.tsx +55 -0
  45. package/docs-site/content/docs/(documentation)/architecture/agents.mdx +117 -0
  46. package/docs-site/content/docs/(documentation)/architecture/hooks.mdx +77 -0
  47. package/docs-site/content/docs/(documentation)/architecture/memory.mdx +96 -0
  48. package/docs-site/content/docs/(documentation)/architecture/meta.json +4 -0
  49. package/docs-site/content/docs/(documentation)/architecture/overview.mdx +172 -0
  50. package/docs-site/content/docs/(documentation)/concepts/epics.mdx +98 -0
  51. package/docs-site/content/docs/(documentation)/concepts/meta.json +4 -0
  52. package/docs-site/content/docs/(documentation)/concepts/scheduling.mdx +136 -0
  53. package/docs-site/content/docs/(documentation)/concepts/services.mdx +104 -0
  54. package/docs-site/content/docs/(documentation)/concepts/task-lifecycle.mdx +148 -0
  55. package/docs-site/content/docs/(documentation)/concepts/workflows.mdx +209 -0
  56. package/docs-site/content/docs/(documentation)/contributing.mdx +158 -0
  57. package/docs-site/content/docs/(documentation)/getting-started.mdx +157 -0
  58. package/docs-site/content/docs/(documentation)/guides/agentmail-integration.mdx +79 -0
  59. package/docs-site/content/docs/(documentation)/guides/deployment.mdx +171 -0
  60. package/docs-site/content/docs/(documentation)/guides/github-integration.mdx +81 -0
  61. package/docs-site/content/docs/(documentation)/guides/gitlab-integration.mdx +93 -0
  62. package/docs-site/content/docs/(documentation)/guides/linear-integration.mdx +98 -0
  63. package/docs-site/content/docs/(documentation)/guides/meta.json +13 -0
  64. package/docs-site/content/docs/(documentation)/guides/sentry-integration.mdx +52 -0
  65. package/docs-site/content/docs/(documentation)/guides/slack-integration.mdx +179 -0
  66. package/docs-site/content/docs/(documentation)/guides/x402-payments.mdx +154 -0
  67. package/docs-site/content/docs/(documentation)/index.mdx +65 -0
  68. package/docs-site/content/docs/(documentation)/meta.json +19 -0
  69. package/docs-site/content/docs/(documentation)/reference/cli.mdx +241 -0
  70. package/docs-site/content/docs/(documentation)/reference/environment-variables.mdx +205 -0
  71. package/docs-site/content/docs/(documentation)/reference/mcp-tools.mdx +449 -0
  72. package/docs-site/content/docs/(documentation)/reference/meta.json +4 -0
  73. package/docs-site/content/docs/api-reference/active-sessions.mdx +9 -0
  74. package/docs-site/content/docs/api-reference/agents.mdx +9 -0
  75. package/docs-site/content/docs/api-reference/channels.mdx +9 -0
  76. package/docs-site/content/docs/api-reference/config.mdx +9 -0
  77. package/docs-site/content/docs/api-reference/debug.mdx +9 -0
  78. package/docs-site/content/docs/api-reference/ecosystem.mdx +9 -0
  79. package/docs-site/content/docs/api-reference/epics.mdx +9 -0
  80. package/docs-site/content/docs/api-reference/index.mdx +32 -0
  81. package/docs-site/content/docs/api-reference/memory.mdx +9 -0
  82. package/docs-site/content/docs/api-reference/meta.json +25 -0
  83. package/docs-site/content/docs/api-reference/poll.mdx +9 -0
  84. package/docs-site/content/docs/api-reference/repos.mdx +9 -0
  85. package/docs-site/content/docs/api-reference/schedules.mdx +9 -0
  86. package/docs-site/content/docs/api-reference/session-data.mdx +9 -0
  87. package/docs-site/content/docs/api-reference/stats.mdx +9 -0
  88. package/docs-site/content/docs/api-reference/tasks.mdx +9 -0
  89. package/docs-site/content/docs/api-reference/trackers.mdx +9 -0
  90. package/docs-site/content/docs/api-reference/webhooks.mdx +9 -0
  91. package/docs-site/content/docs/api-reference/workflows.mdx +9 -0
  92. package/docs-site/content/docs/meta.json +3 -0
  93. package/docs-site/lib/get-llm-text.ts +10 -0
  94. package/docs-site/lib/openapi.ts +23 -0
  95. package/docs-site/lib/source.ts +8 -0
  96. package/docs-site/mdx-components.tsx +13 -0
  97. package/docs-site/next.config.mjs +29 -0
  98. package/docs-site/package.json +35 -0
  99. package/docs-site/pnpm-lock.yaml +5407 -0
  100. package/docs-site/postcss.config.mjs +8 -0
  101. package/docs-site/scripts/generate-docs.ts +171 -0
  102. package/docs-site/source.config.ts +17 -0
  103. package/docs-site/tsconfig.json +46 -0
  104. package/ecosystem.config.cjs +4 -4
  105. package/landing/next.config.ts +14 -0
  106. package/landing/package.json +31 -0
  107. package/landing/pnpm-lock.yaml +1091 -0
  108. package/landing/postcss.config.mjs +8 -0
  109. package/landing/public/apple-touch-icon.png +0 -0
  110. package/landing/public/favicon.ico +0 -0
  111. package/landing/public/logo.png +0 -0
  112. package/landing/public/og-image.png +0 -0
  113. package/landing/public/omghost-desplega.svg +30 -0
  114. package/landing/public/omghost-openfort.svg +9 -0
  115. package/landing/src/app/actions/waitlist.ts +25 -0
  116. package/landing/src/app/blog/openfort-hackathon/page.tsx +863 -0
  117. package/landing/src/app/blog/page.tsx +162 -0
  118. package/landing/src/app/blog/swarm-metrics/page.tsx +685 -0
  119. package/landing/src/app/examples/page.tsx +174 -0
  120. package/landing/src/app/examples/x402/page.tsx +456 -0
  121. package/landing/src/app/globals.css +122 -0
  122. package/landing/src/app/layout.tsx +134 -0
  123. package/landing/src/app/page.tsx +27 -0
  124. package/landing/src/app/robots.ts +13 -0
  125. package/landing/src/app/sitemap.ts +44 -0
  126. package/landing/src/components/architecture.tsx +163 -0
  127. package/landing/src/components/cta.tsx +52 -0
  128. package/landing/src/components/features.tsx +160 -0
  129. package/landing/src/components/footer.tsx +100 -0
  130. package/landing/src/components/hero.tsx +217 -0
  131. package/landing/src/components/how-it-works.tsx +165 -0
  132. package/landing/src/components/navbar.tsx +147 -0
  133. package/landing/src/components/waitlist.tsx +110 -0
  134. package/landing/src/components/why-choose.tsx +149 -0
  135. package/landing/src/components/workshops.tsx +328 -0
  136. package/landing/src/lib/utils.ts +6 -0
  137. package/landing/tsconfig.json +41 -0
  138. package/misc/transcripts/2026-03-09-pi-mono-e2e-verification.md +154 -0
  139. package/new-ui/CLAUDE.md +92 -0
  140. package/new-ui/README.md +73 -0
  141. package/new-ui/biome.json +42 -0
  142. package/new-ui/components.json +21 -0
  143. package/new-ui/index.html +25 -0
  144. package/new-ui/package.json +49 -0
  145. package/new-ui/pnpm-lock.yaml +4845 -0
  146. package/new-ui/public/logo.png +0 -0
  147. package/new-ui/src/api/client.ts +814 -0
  148. package/new-ui/src/api/hooks/index.ts +64 -0
  149. package/new-ui/src/api/hooks/use-agents.ts +58 -0
  150. package/new-ui/src/api/hooks/use-channels.ts +115 -0
  151. package/new-ui/src/api/hooks/use-config-api.ts +46 -0
  152. package/new-ui/src/api/hooks/use-costs.ts +122 -0
  153. package/new-ui/src/api/hooks/use-db-query.ts +29 -0
  154. package/new-ui/src/api/hooks/use-epics.ts +75 -0
  155. package/new-ui/src/api/hooks/use-repos.ts +61 -0
  156. package/new-ui/src/api/hooks/use-schedules.ts +81 -0
  157. package/new-ui/src/api/hooks/use-services.ts +16 -0
  158. package/new-ui/src/api/hooks/use-stats.ts +27 -0
  159. package/new-ui/src/api/hooks/use-tasks.ts +89 -0
  160. package/new-ui/src/api/hooks/use-workflows.ts +109 -0
  161. package/{ui/src/types/api.ts → new-ui/src/api/types.ts} +236 -10
  162. package/new-ui/src/app/App.tsx +13 -0
  163. package/new-ui/src/app/providers.tsx +32 -0
  164. package/new-ui/src/app/router.tsx +52 -0
  165. package/new-ui/src/components/layout/app-header.tsx +47 -0
  166. package/new-ui/src/components/layout/app-sidebar.tsx +128 -0
  167. package/new-ui/src/components/layout/breadcrumbs.tsx +57 -0
  168. package/new-ui/src/components/layout/config-guard.tsx +22 -0
  169. package/new-ui/src/components/layout/root-layout.tsx +40 -0
  170. package/new-ui/src/components/layout/swarm-switcher.tsx +85 -0
  171. package/new-ui/src/components/shared/command-menu.tsx +131 -0
  172. package/new-ui/src/components/shared/data-grid.tsx +141 -0
  173. package/new-ui/src/components/shared/empty-state.tsx +24 -0
  174. package/new-ui/src/components/shared/error-boundary.tsx +72 -0
  175. package/new-ui/src/components/shared/json-viewer.tsx +47 -0
  176. package/new-ui/src/components/shared/name-connection-modal.tsx +99 -0
  177. package/new-ui/src/components/shared/page-skeleton.tsx +16 -0
  178. package/new-ui/src/components/shared/session-log-viewer.tsx +364 -0
  179. package/new-ui/src/components/shared/stats-bar.tsx +132 -0
  180. package/new-ui/src/components/shared/status-badge.tsx +131 -0
  181. package/new-ui/src/components/shared/usage-summary.tsx +179 -0
  182. package/new-ui/src/components/ui/alert-dialog.tsx +176 -0
  183. package/new-ui/src/components/ui/alert.tsx +60 -0
  184. package/new-ui/src/components/ui/avatar.tsx +96 -0
  185. package/new-ui/src/components/ui/badge.tsx +46 -0
  186. package/new-ui/src/components/ui/button.tsx +62 -0
  187. package/new-ui/src/components/ui/card.tsx +75 -0
  188. package/new-ui/src/components/ui/command.tsx +160 -0
  189. package/new-ui/src/components/ui/dialog.tsx +143 -0
  190. package/new-ui/src/components/ui/dropdown-menu.tsx +226 -0
  191. package/new-ui/src/components/ui/input.tsx +21 -0
  192. package/new-ui/src/components/ui/label.tsx +19 -0
  193. package/new-ui/src/components/ui/progress.tsx +26 -0
  194. package/new-ui/src/components/ui/scroll-area.tsx +54 -0
  195. package/new-ui/src/components/ui/select.tsx +175 -0
  196. package/new-ui/src/components/ui/separator.tsx +28 -0
  197. package/new-ui/src/components/ui/sheet.tsx +132 -0
  198. package/new-ui/src/components/ui/sidebar.tsx +691 -0
  199. package/new-ui/src/components/ui/skeleton.tsx +13 -0
  200. package/new-ui/src/components/ui/sonner.tsx +35 -0
  201. package/new-ui/src/components/ui/switch.tsx +33 -0
  202. package/new-ui/src/components/ui/table.tsx +92 -0
  203. package/new-ui/src/components/ui/tabs.tsx +79 -0
  204. package/new-ui/src/components/ui/textarea.tsx +18 -0
  205. package/new-ui/src/components/ui/tooltip.tsx +51 -0
  206. package/new-ui/src/components/workflows/action-node.tsx +53 -0
  207. package/new-ui/src/components/workflows/condition-node.tsx +50 -0
  208. package/new-ui/src/components/workflows/graph-utils.ts +124 -0
  209. package/new-ui/src/components/workflows/json-tree.tsx +189 -0
  210. package/new-ui/src/components/workflows/node-styles.ts +10 -0
  211. package/new-ui/src/components/workflows/step-detail-sheet.tsx +87 -0
  212. package/new-ui/src/components/workflows/trigger-node.tsx +41 -0
  213. package/new-ui/src/components/workflows/workflow-graph.tsx +65 -0
  214. package/{ui/src/hooks/useAutoScroll.ts → new-ui/src/hooks/use-auto-scroll.ts} +0 -1
  215. package/new-ui/src/hooks/use-config.ts +203 -0
  216. package/new-ui/src/hooks/use-keyboard-shortcuts.ts +41 -0
  217. package/new-ui/src/hooks/use-mobile.ts +19 -0
  218. package/new-ui/src/hooks/use-theme.ts +60 -0
  219. package/new-ui/src/lib/config.ts +188 -0
  220. package/new-ui/src/lib/slugs.ts +71 -0
  221. package/{ui → new-ui}/src/lib/utils.ts +32 -0
  222. package/new-ui/src/main.tsx +11 -0
  223. package/new-ui/src/pages/agents/[id]/page.tsx +492 -0
  224. package/new-ui/src/pages/agents/page.tsx +134 -0
  225. package/new-ui/src/pages/chat/page.tsx +674 -0
  226. package/new-ui/src/pages/config/page.tsx +1109 -0
  227. package/new-ui/src/pages/dashboard/page.tsx +454 -0
  228. package/new-ui/src/pages/debug/page.tsx +275 -0
  229. package/new-ui/src/pages/epics/[id]/page.tsx +809 -0
  230. package/new-ui/src/pages/epics/page.tsx +321 -0
  231. package/new-ui/src/pages/not-found/page.tsx +18 -0
  232. package/new-ui/src/pages/repos/page.tsx +369 -0
  233. package/new-ui/src/pages/schedules/[id]/page.tsx +664 -0
  234. package/new-ui/src/pages/schedules/page.tsx +477 -0
  235. package/new-ui/src/pages/services/page.tsx +128 -0
  236. package/new-ui/src/pages/tasks/[id]/page.tsx +670 -0
  237. package/new-ui/src/pages/tasks/page.tsx +592 -0
  238. package/new-ui/src/pages/usage/page.tsx +195 -0
  239. package/new-ui/src/pages/workflow-runs/[id]/page.tsx +363 -0
  240. package/new-ui/src/pages/workflows/[id]/page.tsx +417 -0
  241. package/new-ui/src/pages/workflows/page.tsx +266 -0
  242. package/new-ui/src/styles/ag-grid.css +36 -0
  243. package/new-ui/src/styles/globals.css +213 -0
  244. package/new-ui/test-results/.last-run.json +4 -0
  245. package/{ui/tsconfig.json → new-ui/tsconfig.app.json} +7 -4
  246. package/new-ui/tsconfig.json +4 -0
  247. package/new-ui/tsconfig.node.json +26 -0
  248. package/new-ui/vercel.json +4 -0
  249. package/new-ui/vite.config.ts +28 -0
  250. package/openapi.json +4436 -0
  251. package/package.json +31 -7
  252. package/plugin/build-pi-skills.ts +233 -0
  253. package/plugin/commands/close-issue.md +7 -3
  254. package/plugin/commands/create-pr.md +18 -12
  255. package/plugin/commands/implement-issue.md +7 -3
  256. package/plugin/commands/respond-github.md +8 -4
  257. package/plugin/commands/review-pr.md +44 -10
  258. package/plugin/commands/start-leader.md +1 -3
  259. package/plugin/commands/start-worker.md +1 -3
  260. package/plugin/commands/work-on-task.md +22 -3
  261. package/plugin/pi-skills/close-issue/SKILL.md +90 -0
  262. package/plugin/pi-skills/create-pr/SKILL.md +99 -0
  263. package/plugin/pi-skills/implement-issue/SKILL.md +135 -0
  264. package/plugin/pi-skills/investigate-sentry-issue/SKILL.md +138 -0
  265. package/plugin/pi-skills/respond-github/SKILL.md +98 -0
  266. package/plugin/pi-skills/review-offered-task/SKILL.md +45 -0
  267. package/plugin/pi-skills/review-pr/SKILL.md +261 -0
  268. package/plugin/pi-skills/start-leader/SKILL.md +121 -0
  269. package/plugin/pi-skills/start-worker/SKILL.md +60 -0
  270. package/plugin/pi-skills/swarm-chat/SKILL.md +82 -0
  271. package/plugin/pi-skills/todos/SKILL.md +66 -0
  272. package/plugin/pi-skills/work-on-task/SKILL.md +65 -0
  273. package/plugin/skills/artifacts/examples/approval-flow.ts +34 -0
  274. package/plugin/skills/artifacts/examples/hono-dashboard.ts +31 -0
  275. package/plugin/skills/artifacts/examples/multi-artifact.ts +20 -0
  276. package/plugin/skills/artifacts/examples/static-report.sh +17 -0
  277. package/plugin/skills/artifacts/skill.md +71 -0
  278. package/prek.toml +75 -0
  279. package/scripts/check-db-boundary.sh +60 -0
  280. package/scripts/e2e-docker-provider.ts +820 -0
  281. package/scripts/e2e-io-schemas-test.ts +807 -0
  282. package/scripts/e2e-provider-test.ts +220 -0
  283. package/scripts/e2e-workflow-redesign.sh +229 -0
  284. package/scripts/e2e-workflow-test.sh +285 -0
  285. package/scripts/e2e-workflow-test.ts +857 -0
  286. package/scripts/generate-openapi.ts +26 -0
  287. package/scripts/measure-tool-tokens.ts +118 -0
  288. package/scripts/x402-e2e-test.ts +195 -0
  289. package/scripts/x402-test-server.ts +236 -0
  290. package/scripts/x402-testnet-e2e.ts +668 -0
  291. package/slack-manifest.json +17 -0
  292. package/src/agentmail/app.ts +65 -0
  293. package/src/agentmail/handlers.ts +207 -0
  294. package/src/agentmail/index.ts +9 -0
  295. package/src/agentmail/types.ts +51 -0
  296. package/src/artifact-sdk/browser-sdk.ts +30 -0
  297. package/src/artifact-sdk/index.ts +2 -0
  298. package/src/artifact-sdk/localtunnel.d.ts +20 -0
  299. package/src/artifact-sdk/port.ts +12 -0
  300. package/src/artifact-sdk/server.ts +156 -0
  301. package/src/artifact-sdk/tunnel.ts +19 -0
  302. package/src/be/chunking.ts +193 -0
  303. package/src/be/db-queries/oauth.ts +90 -0
  304. package/src/be/db-queries/tracker.ts +182 -0
  305. package/src/be/db.ts +2729 -770
  306. package/src/be/embedding.ts +80 -0
  307. package/src/be/migrations/001_initial.sql +409 -0
  308. package/src/be/migrations/002_one_time_schedules.sql +59 -0
  309. package/src/be/migrations/003_workflows.sql +51 -0
  310. package/src/be/migrations/004_workflow_source.sql +81 -0
  311. package/src/be/migrations/005_epic_next_steps.sql +2 -0
  312. package/src/be/migrations/006_vcs_provider.sql +94 -0
  313. package/src/be/migrations/007_task_dir.sql +2 -0
  314. package/src/be/migrations/008_workflow_redesign.sql +85 -0
  315. package/src/be/migrations/009_tracker_integration.sql +144 -0
  316. package/src/be/migrations/010_step_diagnostics.sql +1 -0
  317. package/src/be/migrations/011_step_next_port.sql +1 -0
  318. package/src/be/migrations/012_trigger_schema.sql +1 -0
  319. package/src/be/migrations/013_task_output_schema.sql +2 -0
  320. package/src/be/migrations/runner.ts +188 -0
  321. package/src/cli.tsx +231 -299
  322. package/src/commands/artifact.ts +241 -0
  323. package/src/commands/onboard/compose-generator.ts +169 -0
  324. package/src/commands/onboard/env-generator.ts +79 -0
  325. package/src/commands/onboard/manifest.ts +37 -0
  326. package/src/commands/onboard/presets.ts +85 -0
  327. package/src/commands/onboard/service-names.ts +47 -0
  328. package/src/commands/onboard/steps/core-credentials.tsx +111 -0
  329. package/src/commands/onboard/steps/custom-templates.tsx +168 -0
  330. package/src/commands/onboard/steps/generate.tsx +154 -0
  331. package/src/commands/onboard/steps/harness-credentials.tsx +195 -0
  332. package/src/commands/onboard/steps/harness.tsx +21 -0
  333. package/src/commands/onboard/steps/health-check.tsx +171 -0
  334. package/src/commands/onboard/steps/integration-github.tsx +105 -0
  335. package/src/commands/onboard/steps/integration-gitlab.tsx +79 -0
  336. package/src/commands/onboard/steps/integration-menu.tsx +58 -0
  337. package/src/commands/onboard/steps/integration-sentry.tsx +79 -0
  338. package/src/commands/onboard/steps/integration-slack.tsx +165 -0
  339. package/src/commands/onboard/steps/post-connect.tsx +145 -0
  340. package/src/commands/onboard/steps/post-dashboard.tsx +34 -0
  341. package/src/commands/onboard/steps/post-task.tsx +103 -0
  342. package/src/commands/onboard/steps/prereq-check.tsx +178 -0
  343. package/src/commands/onboard/steps/review.tsx +82 -0
  344. package/src/commands/onboard/steps/start.tsx +97 -0
  345. package/src/commands/onboard/templates.ts +34 -0
  346. package/src/commands/onboard/types.ts +259 -0
  347. package/src/commands/onboard.tsx +425 -0
  348. package/src/commands/runner.ts +1376 -559
  349. package/src/commands/setup.tsx +23 -38
  350. package/src/commands/shared/client-config.ts +41 -0
  351. package/src/github/app.ts +8 -0
  352. package/src/github/handlers.ts +93 -75
  353. package/src/github/index.ts +1 -0
  354. package/src/github/types.ts +1 -0
  355. package/src/gitlab/auth.ts +63 -0
  356. package/src/gitlab/handlers.ts +327 -0
  357. package/src/gitlab/index.ts +19 -0
  358. package/src/gitlab/reactions.ts +104 -0
  359. package/src/gitlab/types.ts +130 -0
  360. package/src/heartbeat/heartbeat.ts +425 -0
  361. package/src/heartbeat/index.ts +1 -0
  362. package/src/hooks/hook.ts +555 -4
  363. package/src/hooks/tool-loop-detection.test.ts +158 -0
  364. package/src/hooks/tool-loop-detection.ts +167 -0
  365. package/src/http/active-sessions.ts +172 -0
  366. package/src/http/agents.ts +328 -0
  367. package/src/http/config.ts +191 -0
  368. package/src/http/core.ts +309 -0
  369. package/src/http/db-query.ts +91 -0
  370. package/src/http/ecosystem.ts +63 -0
  371. package/src/http/epics.ts +460 -0
  372. package/src/http/index.ts +213 -0
  373. package/src/http/mcp.ts +77 -0
  374. package/src/http/memory.ts +168 -0
  375. package/src/http/openapi.ts +109 -0
  376. package/src/http/poll.ts +178 -0
  377. package/src/http/repos.ts +195 -0
  378. package/src/http/route-def.ts +123 -0
  379. package/src/http/schedules.ts +391 -0
  380. package/src/http/session-data.ts +241 -0
  381. package/src/http/stats.ts +174 -0
  382. package/src/http/tasks.ts +468 -0
  383. package/src/http/trackers/index.ts +10 -0
  384. package/src/http/trackers/linear.ts +187 -0
  385. package/src/http/types.ts +12 -0
  386. package/src/http/utils.ts +87 -0
  387. package/src/http/webhooks.ts +432 -0
  388. package/src/http/workflows.ts +522 -0
  389. package/src/http.ts +1 -1890
  390. package/src/linear/README.md +65 -0
  391. package/src/linear/app.ts +48 -0
  392. package/src/linear/client.ts +18 -0
  393. package/src/linear/index.ts +1 -0
  394. package/src/linear/oauth.ts +35 -0
  395. package/src/linear/outbound.ts +212 -0
  396. package/src/linear/sync.ts +543 -0
  397. package/src/linear/types.ts +7 -0
  398. package/src/linear/webhook.ts +104 -0
  399. package/src/oauth/README.md +66 -0
  400. package/src/oauth/index.ts +6 -0
  401. package/src/oauth/wrapper.ts +204 -0
  402. package/src/prompts/base-prompt.ts +366 -24
  403. package/src/prompts/defaults.ts +196 -0
  404. package/src/providers/claude-adapter.ts +429 -0
  405. package/src/providers/index.ts +24 -0
  406. package/src/providers/pi-mono-adapter.ts +442 -0
  407. package/src/providers/pi-mono-extension.ts +620 -0
  408. package/src/providers/pi-mono-mcp-client.ts +124 -0
  409. package/src/providers/types.ts +75 -0
  410. package/src/scheduler/scheduler.test.ts +2 -0
  411. package/src/scheduler/scheduler.ts +186 -29
  412. package/src/server.ts +82 -6
  413. package/src/slack/HEURISTICS.md +105 -0
  414. package/src/slack/actions.ts +133 -0
  415. package/src/slack/app.ts +7 -0
  416. package/src/slack/assistant.ts +115 -0
  417. package/src/slack/blocks.ts +233 -0
  418. package/src/slack/commands.ts +31 -17
  419. package/src/slack/files.ts +1 -1
  420. package/src/slack/handlers.test.ts +114 -1
  421. package/src/slack/handlers.ts +212 -52
  422. package/src/slack/responses.ts +120 -67
  423. package/src/slack/router.ts +17 -99
  424. package/src/slack/thread-buffer.ts +213 -0
  425. package/src/slack/watcher.ts +119 -4
  426. package/src/tests/agent-activity.test.ts +247 -0
  427. package/src/tests/agentmail-filters.test.ts +97 -0
  428. package/src/tests/artifact-sdk.test.ts +800 -0
  429. package/src/tests/base-prompt.test.ts +264 -0
  430. package/src/tests/build-pi-skills.test.ts +127 -0
  431. package/src/tests/claude-adapter.test.ts +126 -0
  432. package/src/tests/context-versioning.test.ts +425 -0
  433. package/src/tests/db-queries-oauth.test.ts +197 -0
  434. package/src/tests/db-queries-tracker.test.ts +230 -0
  435. package/src/tests/epics.test.ts +3 -3
  436. package/src/tests/error-tracker.test.ts +368 -0
  437. package/src/tests/fetch-resolved-env.test.ts +167 -0
  438. package/src/tests/generate-default-claude-md.test.ts +9 -1
  439. package/src/tests/generate-identity-templates.test.ts +124 -0
  440. package/src/tests/gitlab-auth.test.ts +109 -0
  441. package/src/tests/gitlab-handlers.test.ts +691 -0
  442. package/src/tests/gitlab-vcs-db.test.ts +177 -0
  443. package/src/tests/heartbeat.test.ts +363 -0
  444. package/src/tests/http-api-integration.test.ts +1698 -0
  445. package/src/tests/linear-outbound-sync.test.ts +200 -0
  446. package/src/tests/linear-webhook.test.ts +402 -0
  447. package/src/tests/match-route.test.ts +187 -0
  448. package/src/tests/memory.test.ts +737 -0
  449. package/src/tests/migration-runner-regressions.test.ts +86 -0
  450. package/src/tests/model-control.test.ts +338 -0
  451. package/src/tests/oauth-wrapper.test.ts +147 -0
  452. package/src/tests/onboard-compose.test.ts +138 -0
  453. package/src/tests/onboard-env.test.ts +174 -0
  454. package/src/tests/onboard-manifest.test.ts +137 -0
  455. package/src/tests/pi-mono-adapter.test.ts +234 -0
  456. package/src/tests/progress-dedup.test.ts +98 -0
  457. package/src/tests/provider-adapter.test.ts +122 -0
  458. package/src/tests/provider-command-format.test.ts +98 -0
  459. package/src/tests/reload-config.test.ts +170 -0
  460. package/src/tests/runner-polling-api.test.ts +25 -20
  461. package/src/tests/scheduled-tasks.test.ts +104 -0
  462. package/src/tests/scheduler-backoff.test.ts +166 -0
  463. package/src/tests/self-improvement.test.ts +540 -0
  464. package/src/tests/session-attach.test.ts +536 -0
  465. package/src/tests/session-costs.test.ts +267 -1
  466. package/src/tests/slack-actions.test.ts +133 -0
  467. package/src/tests/slack-assistant.test.ts +136 -0
  468. package/src/tests/slack-blocks.test.ts +246 -0
  469. package/src/tests/slack-metadata-inheritance.test.ts +243 -0
  470. package/src/tests/slack-queue-offline.test.ts +174 -0
  471. package/src/tests/slack-router.test.ts +181 -0
  472. package/src/tests/slack-thread-buffer.test.ts +305 -0
  473. package/src/tests/slack-thread-followups.test.ts +298 -0
  474. package/src/tests/slack-watcher.test.ts +101 -0
  475. package/src/tests/structured-output.test.ts +311 -0
  476. package/src/tests/swarm-repos.test.ts +198 -0
  477. package/src/tests/task-cancellation.test.ts +6 -4
  478. package/src/tests/task-working-dir.test.ts +176 -0
  479. package/src/tests/template-fetch.test.ts +490 -0
  480. package/src/tests/tool-annotations.test.ts +371 -0
  481. package/src/tests/tracker-tools.test.ts +184 -0
  482. package/src/tests/update-profile-api.test.ts +143 -3
  483. package/src/tests/validation-adapters.test.ts +86 -0
  484. package/src/tests/vcs-provider.test.ts +27 -0
  485. package/src/tests/workflow-agent-task.test.ts +196 -0
  486. package/src/tests/workflow-async-v2.test.ts +386 -0
  487. package/src/tests/workflow-convergence.test.ts +541 -0
  488. package/src/tests/workflow-definition-validation.test.ts +290 -0
  489. package/src/tests/workflow-engine-v2.test.ts +691 -0
  490. package/src/tests/workflow-executors.test.ts +736 -0
  491. package/src/tests/workflow-http-v2.test.ts +599 -0
  492. package/src/tests/workflow-integration-io.test.ts +902 -0
  493. package/src/tests/workflow-io-schemas.test.ts +624 -0
  494. package/src/tests/workflow-registry.test.ts +592 -0
  495. package/src/tests/workflow-retry-v2.test.ts +401 -0
  496. package/src/tests/workflow-retry-validation.test.ts +282 -0
  497. package/src/tests/workflow-template.test.ts +288 -0
  498. package/src/tests/workflow-trigger-schema.test.ts +359 -0
  499. package/src/tests/workflow-triggers-v2.test.ts +264 -0
  500. package/src/tests/workflow-versions.test.ts +208 -0
  501. package/src/tests/x402-client.test.ts +117 -0
  502. package/src/tests/x402-config.test.ts +182 -0
  503. package/src/tests/x402-spending-tracker.test.ts +185 -0
  504. package/src/tools/cancel-task.ts +2 -0
  505. package/src/tools/context-diff.ts +171 -0
  506. package/src/tools/context-history.ts +138 -0
  507. package/src/tools/create-channel.ts +1 -0
  508. package/src/tools/db-query.ts +78 -0
  509. package/src/tools/delete-channel.ts +132 -0
  510. package/src/tools/epics/assign-task-to-epic.ts +1 -0
  511. package/src/tools/epics/create-epic.ts +3 -2
  512. package/src/tools/epics/delete-epic.ts +2 -0
  513. package/src/tools/epics/get-epic-details.ts +2 -0
  514. package/src/tools/epics/list-epics.ts +2 -0
  515. package/src/tools/epics/unassign-task-from-epic.ts +1 -0
  516. package/src/tools/epics/update-epic.ts +7 -4
  517. package/src/tools/get-swarm.ts +2 -0
  518. package/src/tools/get-task-details.ts +2 -0
  519. package/src/tools/get-tasks.ts +27 -1
  520. package/src/tools/inject-learning.ts +106 -0
  521. package/src/tools/join-swarm.ts +17 -7
  522. package/src/tools/list-channels.ts +2 -0
  523. package/src/tools/list-services.ts +2 -0
  524. package/src/tools/memory-get.ts +56 -0
  525. package/src/tools/memory-search.ts +131 -0
  526. package/src/tools/my-agent-info.ts +2 -0
  527. package/src/tools/poll-task.ts +2 -20
  528. package/src/tools/post-message.ts +1 -0
  529. package/src/tools/read-messages.ts +2 -0
  530. package/src/tools/register-agentmail-inbox.ts +166 -0
  531. package/src/tools/register-service.ts +2 -0
  532. package/src/tools/schedules/create-schedule.ts +134 -24
  533. package/src/tools/schedules/delete-schedule.ts +2 -0
  534. package/src/tools/schedules/list-schedules.ts +20 -4
  535. package/src/tools/schedules/run-schedule-now.ts +1 -0
  536. package/src/tools/schedules/update-schedule.ts +49 -17
  537. package/src/tools/send-task.ts +132 -10
  538. package/src/tools/slack-download-file.ts +4 -2
  539. package/src/tools/slack-list-channels.ts +2 -0
  540. package/src/tools/slack-post.ts +2 -0
  541. package/src/tools/slack-read.ts +2 -0
  542. package/src/tools/slack-reply.ts +2 -0
  543. package/src/tools/slack-upload-file.ts +2 -0
  544. package/src/tools/store-progress.ts +187 -4
  545. package/src/tools/swarm-config/delete-config.ts +87 -0
  546. package/src/tools/swarm-config/get-config.ts +108 -0
  547. package/src/tools/swarm-config/index.ts +4 -0
  548. package/src/tools/swarm-config/list-config.ts +99 -0
  549. package/src/tools/swarm-config/set-config.ts +118 -0
  550. package/src/tools/task-action.ts +30 -5
  551. package/src/tools/task-dedup.ts +97 -0
  552. package/src/tools/tool-config.ts +117 -0
  553. package/src/tools/tracker/index.ts +6 -0
  554. package/src/tools/tracker/tracker-link-epic.ts +64 -0
  555. package/src/tools/tracker/tracker-link-task.ts +64 -0
  556. package/src/tools/tracker/tracker-map-agent.ts +57 -0
  557. package/src/tools/tracker/tracker-status.ts +56 -0
  558. package/src/tools/tracker/tracker-sync-status.ts +42 -0
  559. package/src/tools/tracker/tracker-unlink.ts +41 -0
  560. package/src/tools/unregister-service.ts +2 -0
  561. package/src/tools/update-profile.ts +93 -10
  562. package/src/tools/update-service-status.ts +2 -0
  563. package/src/tools/utils.ts +10 -1
  564. package/src/tools/workflows/create-workflow.ts +111 -0
  565. package/src/tools/workflows/delete-workflow.ts +42 -0
  566. package/src/tools/workflows/get-workflow-run.ts +59 -0
  567. package/src/tools/workflows/get-workflow.ts +53 -0
  568. package/src/tools/workflows/index.ts +9 -0
  569. package/src/tools/workflows/list-workflow-runs.ts +48 -0
  570. package/src/tools/workflows/list-workflows.ts +42 -0
  571. package/src/tools/workflows/retry-workflow-run.ts +40 -0
  572. package/src/tools/workflows/trigger-workflow.ts +96 -0
  573. package/src/tools/workflows/update-workflow.ts +118 -0
  574. package/src/tracker/types.ts +51 -0
  575. package/src/types.ts +477 -14
  576. package/src/utils/credentials.test.ts +156 -0
  577. package/src/utils/credentials.ts +50 -0
  578. package/src/utils/error-tracker.ts +190 -0
  579. package/src/vcs/index.ts +15 -0
  580. package/src/vcs/types.ts +5 -0
  581. package/src/workflows/checkpoint.ts +121 -0
  582. package/src/workflows/cooldown.ts +28 -0
  583. package/src/workflows/definition.ts +217 -0
  584. package/src/workflows/engine.ts +554 -0
  585. package/src/workflows/event-bus.ts +29 -0
  586. package/src/workflows/executors/agent-task.ts +92 -0
  587. package/src/workflows/executors/base.ts +86 -0
  588. package/src/workflows/executors/code-match.ts +88 -0
  589. package/src/workflows/executors/index.ts +16 -0
  590. package/src/workflows/executors/notify.ts +93 -0
  591. package/src/workflows/executors/property-match.ts +104 -0
  592. package/src/workflows/executors/raw-llm.ts +83 -0
  593. package/src/workflows/executors/registry.ts +76 -0
  594. package/src/workflows/executors/script.ts +103 -0
  595. package/src/workflows/executors/validate.ts +215 -0
  596. package/src/workflows/executors/vcs.ts +58 -0
  597. package/src/workflows/index.ts +61 -0
  598. package/src/workflows/input.ts +46 -0
  599. package/src/workflows/json-schema-validator.ts +118 -0
  600. package/src/workflows/recovery.ts +139 -0
  601. package/src/workflows/resume.ts +143 -0
  602. package/src/workflows/retry-poller.ts +216 -0
  603. package/src/workflows/template.ts +74 -0
  604. package/src/workflows/templates.ts +86 -0
  605. package/src/workflows/triggers.ts +95 -0
  606. package/src/workflows/validation.ts +104 -0
  607. package/src/workflows/version.ts +42 -0
  608. package/src/x402/cli.ts +140 -0
  609. package/src/x402/client.ts +192 -0
  610. package/src/x402/config.ts +131 -0
  611. package/src/x402/index.ts +37 -0
  612. package/src/x402/openfort-signer.ts +83 -0
  613. package/src/x402/spending-tracker.ts +109 -0
  614. package/templates/community/.gitkeep +0 -0
  615. package/templates/official/coder/CLAUDE.md +49 -0
  616. package/templates/official/coder/IDENTITY.md +28 -0
  617. package/templates/official/coder/SOUL.md +43 -0
  618. package/templates/official/coder/TOOLS.md +40 -0
  619. package/templates/official/coder/config.json +23 -0
  620. package/templates/official/coder/start-up.sh +23 -0
  621. package/templates/official/content-reviewer/CLAUDE.md +68 -0
  622. package/templates/official/content-reviewer/IDENTITY.md +28 -0
  623. package/templates/official/content-reviewer/SOUL.md +44 -0
  624. package/templates/official/content-reviewer/TOOLS.md +37 -0
  625. package/templates/official/content-reviewer/config.json +23 -0
  626. package/templates/official/content-reviewer/start-up.sh +23 -0
  627. package/templates/official/content-strategist/CLAUDE.md +63 -0
  628. package/templates/official/content-strategist/IDENTITY.md +33 -0
  629. package/templates/official/content-strategist/SOUL.md +48 -0
  630. package/templates/official/content-strategist/TOOLS.md +47 -0
  631. package/templates/official/content-strategist/config.json +23 -0
  632. package/templates/official/content-strategist/start-up.sh +23 -0
  633. package/templates/official/content-writer/CLAUDE.md +72 -0
  634. package/templates/official/content-writer/IDENTITY.md +30 -0
  635. package/templates/official/content-writer/SOUL.md +46 -0
  636. package/templates/official/content-writer/TOOLS.md +44 -0
  637. package/templates/official/content-writer/config.json +23 -0
  638. package/templates/official/content-writer/start-up.sh +23 -0
  639. package/templates/official/forward-deployed-engineer/CLAUDE.md +54 -0
  640. package/templates/official/forward-deployed-engineer/IDENTITY.md +37 -0
  641. package/templates/official/forward-deployed-engineer/SOUL.md +55 -0
  642. package/templates/official/forward-deployed-engineer/config.json +21 -0
  643. package/templates/official/lead/CLAUDE.md +33 -0
  644. package/templates/official/lead/IDENTITY.md +36 -0
  645. package/templates/official/lead/SOUL.md +51 -0
  646. package/templates/official/lead/config.json +22 -0
  647. package/templates/official/researcher/CLAUDE.md +46 -0
  648. package/templates/official/researcher/IDENTITY.md +28 -0
  649. package/templates/official/researcher/SOUL.md +43 -0
  650. package/templates/official/researcher/config.json +21 -0
  651. package/templates/official/reviewer/CLAUDE.md +63 -0
  652. package/templates/official/reviewer/IDENTITY.md +28 -0
  653. package/templates/official/reviewer/SOUL.md +45 -0
  654. package/templates/official/reviewer/config.json +21 -0
  655. package/templates/official/tester/CLAUDE.md +53 -0
  656. package/templates/official/tester/IDENTITY.md +28 -0
  657. package/templates/official/tester/SOUL.md +55 -0
  658. package/templates/official/tester/config.json +21 -0
  659. package/templates/schema.ts +35 -0
  660. package/templates-ui/README.md +46 -0
  661. package/templates-ui/components.json +17 -0
  662. package/templates-ui/eslint.config.mjs +18 -0
  663. package/templates-ui/next.config.ts +7 -0
  664. package/templates-ui/package.json +35 -0
  665. package/templates-ui/pnpm-lock.yaml +4571 -0
  666. package/templates-ui/postcss.config.mjs +7 -0
  667. package/templates-ui/public/file.svg +1 -0
  668. package/templates-ui/public/globe.svg +1 -0
  669. package/templates-ui/public/logo.png +0 -0
  670. package/templates-ui/public/next.svg +1 -0
  671. package/templates-ui/public/vercel.svg +1 -0
  672. package/templates-ui/public/window.svg +1 -0
  673. package/templates-ui/src/app/[category]/[name]/page.tsx +89 -0
  674. package/templates-ui/src/app/api/templates/[...slug]/route.ts +52 -0
  675. package/templates-ui/src/app/api/templates/route.ts +18 -0
  676. package/templates-ui/src/app/builder/page.tsx +37 -0
  677. package/templates-ui/src/app/globals.css +94 -0
  678. package/templates-ui/src/app/layout.tsx +79 -0
  679. package/templates-ui/src/app/page.tsx +38 -0
  680. package/templates-ui/src/app/robots.ts +11 -0
  681. package/templates-ui/src/app/sitemap.ts +31 -0
  682. package/templates-ui/src/components/compose-builder.tsx +442 -0
  683. package/templates-ui/src/components/compose-preview.tsx +117 -0
  684. package/templates-ui/src/components/file-preview.tsx +77 -0
  685. package/templates-ui/src/components/footer.tsx +40 -0
  686. package/templates-ui/src/components/header.tsx +41 -0
  687. package/templates-ui/src/components/template-card.tsx +87 -0
  688. package/templates-ui/src/components/template-detail.tsx +125 -0
  689. package/templates-ui/src/components/template-gallery.tsx +263 -0
  690. package/templates-ui/src/components/ui/badge.tsx +36 -0
  691. package/templates-ui/src/components/ui/button.tsx +57 -0
  692. package/templates-ui/src/components/ui/card.tsx +76 -0
  693. package/templates-ui/src/components/ui/separator.tsx +31 -0
  694. package/templates-ui/src/components/ui/tooltip.tsx +32 -0
  695. package/templates-ui/src/lib/compose-generator.ts +241 -0
  696. package/templates-ui/src/lib/templates.ts +137 -0
  697. package/templates-ui/src/lib/utils.ts +6 -0
  698. package/templates-ui/tsconfig.json +34 -0
  699. package/thoughts/research/2026-02-28-openfort-viem-x402-research.md +679 -0
  700. package/thoughts/research/2026-02-28-x402-payments-research.md +686 -0
  701. package/thoughts/researcher/plans/2026-02-20-agent-self-improvement-plan.md +282 -0
  702. package/thoughts/researcher/research/2026-02-20-agent-self-improvement.md +492 -0
  703. package/thoughts/shared/plans/2026-02-26-mcp-tool-context-reduction.md +282 -0
  704. package/thoughts/shared/plans/2026-03-02-claude-context-mode-integration.md +328 -0
  705. package/thoughts/shared/plans/2026-03-02-code-level-heartbeat.md +224 -0
  706. package/thoughts/shared/research/2026-02-26-cliffy-mcp-tools.md +159 -0
  707. package/thoughts/shared/research/2026-03-03-database-migration-system-refactor.md +337 -0
  708. package/thoughts/swarm-researcher/plans/2026-02-23-openclaw-improvements-plan.md +778 -0
  709. package/thoughts/swarm-researcher/plans/2026-02-26-artifacts-localtunnel-plan.md +1269 -0
  710. package/thoughts/swarm-researcher/research/2026-02-23-openclaw-vs-agent-swarm-comparison.md +411 -0
  711. package/thoughts/swarm-researcher/research/2026-02-26-artifacts-localtunnel.md +724 -0
  712. package/thoughts/taras/brainstorms/2026-03-20-prompt-template-registry.md +443 -0
  713. package/thoughts/taras/brainstorms/2026-03-20-setup-cli-onboarding.md +307 -0
  714. package/thoughts/taras/plans/2026-02-20-auto-improvement.md +803 -0
  715. package/thoughts/taras/plans/2026-02-20-env-management.md +538 -0
  716. package/thoughts/taras/plans/2026-02-20-memory-system.md +882 -0
  717. package/thoughts/taras/plans/2026-02-20-repos-knowledge.md +806 -0
  718. package/thoughts/taras/plans/2026-02-20-session-attach.md +647 -0
  719. package/thoughts/taras/plans/2026-02-20-worker-identity.md +820 -0
  720. package/thoughts/taras/plans/2026-02-25-feat-new-ui-visual-redesign-plan.md +768 -0
  721. package/thoughts/taras/plans/2026-03-04-fix-buildSystemPrompt-missing-fields.md +77 -0
  722. package/thoughts/taras/plans/2026-03-04-new-ui-missing-actions.md +543 -0
  723. package/thoughts/taras/plans/2026-03-06-one-time-scheduled-tasks.md +373 -0
  724. package/thoughts/taras/plans/2026-03-08-memory-self-improvement-enhancements.md +512 -0
  725. package/thoughts/taras/plans/2026-03-08-pi-mono-provider-implementation.md +919 -0
  726. package/thoughts/taras/plans/2026-03-09-templates-registry.md +723 -0
  727. package/thoughts/taras/plans/2026-03-10-task-working-directory.md +371 -0
  728. package/thoughts/taras/plans/2026-03-11-archil-per-agent-write-strategy.md +621 -0
  729. package/thoughts/taras/plans/2026-03-12-eliminate-inbox-route-to-tasks.md +61 -0
  730. package/thoughts/taras/plans/2026-03-12-slack-thread-followup-additive.md +488 -0
  731. package/thoughts/taras/plans/2026-03-13-slack-ai-improvements.md +644 -0
  732. package/thoughts/taras/plans/2026-03-16-route-wrapper-openapi.md +636 -0
  733. package/thoughts/taras/plans/2026-03-17-multi-api-config.md +444 -0
  734. package/thoughts/taras/plans/2026-03-18-agent-fs-integration.md +591 -0
  735. package/thoughts/taras/plans/2026-03-18-debug-db-explorer.md +446 -0
  736. package/thoughts/taras/plans/2026-03-18-workflow-redesign.md +987 -0
  737. package/thoughts/taras/plans/2026-03-19-compound-learnings.md +403 -0
  738. package/thoughts/taras/plans/2026-03-19-ticket-tracker-linear-integration.md +860 -0
  739. package/thoughts/taras/plans/2026-03-19-workflow-io-schemas-and-bugs.md +899 -0
  740. package/thoughts/taras/plans/2026-03-20-setup-cli-onboarding.md +874 -0
  741. package/thoughts/taras/plans/2026-03-20-workflow-structured-output-validation-workspace.md +723 -0
  742. package/thoughts/taras/research/2026-02-19-agent-native-swarm-architecture.md +390 -0
  743. package/thoughts/taras/research/2026-02-19-swarm-gaps-implementation.md +594 -0
  744. package/thoughts/taras/research/2026-02-25-dashboard-ui-design-best-practices.md +825 -0
  745. package/thoughts/taras/research/2026-02-26-task-detail-page-redesign.md +393 -0
  746. package/thoughts/taras/research/2026-03-03-new-ui-missing-actions.md +168 -0
  747. package/thoughts/taras/research/2026-03-05-pi-mono-provider-research.md +230 -0
  748. package/thoughts/taras/research/2026-03-06-workflow-engine-design.md +445 -0
  749. package/thoughts/taras/research/2026-03-08-drive-loop-concept.md +375 -0
  750. package/thoughts/taras/research/2026-03-08-pi-mono-deep-dive.md +869 -0
  751. package/thoughts/taras/research/2026-03-09-templates-registry.md +373 -0
  752. package/thoughts/taras/research/2026-03-10-agent-working-directory.md +223 -0
  753. package/thoughts/taras/research/2026-03-10-configurable-event-prompts.md +339 -0
  754. package/thoughts/taras/research/2026-03-11-archil-production-setup.md +181 -0
  755. package/thoughts/taras/research/2026-03-11-archil-shared-disk-write-strategies.md +437 -0
  756. package/thoughts/taras/research/2026-03-13-slack-ai-features.md +258 -0
  757. package/thoughts/taras/research/2026-03-16-openapi-docs-generation.md +335 -0
  758. package/thoughts/taras/research/2026-03-16-route-wrapper-openapi.md +670 -0
  759. package/thoughts/taras/research/2026-03-16-slack-thread-followups-e2e.md +54 -0
  760. package/thoughts/taras/research/2026-03-18-agent-fs-integration.md +558 -0
  761. package/thoughts/taras/research/2026-03-18-linear-integration-finalization.md +526 -0
  762. package/thoughts/taras/research/2026-03-18-workflow-redesign.md +797 -0
  763. package/thoughts/taras/research/2026-03-19-workflow-node-io-schemas-and-bugs.md +563 -0
  764. package/thoughts/taras/research/2026-03-19-workflow-structured-output-validation-workspace.md +486 -0
  765. package/thoughts/taras/research/2026-03-20-prompt-template-registry.md +469 -0
  766. package/tsconfig.json +1 -1
  767. package/FAQ.md +0 -19
  768. package/src/tests/get-inbox-message.test.ts +0 -145
  769. package/src/tools/get-inbox-message.ts +0 -89
  770. package/src/tools/inbox-delegate.ts +0 -113
  771. package/ui/CLAUDE.md +0 -49
  772. package/ui/bun.lock +0 -771
  773. package/ui/index.html +0 -22
  774. package/ui/package-lock.json +0 -5290
  775. package/ui/package.json +0 -33
  776. package/ui/pnpm-lock.yaml +0 -3341
  777. package/ui/postcss.config.js +0 -6
  778. package/ui/src/App.tsx +0 -63
  779. package/ui/src/components/ActivityFeed.tsx +0 -440
  780. package/ui/src/components/AgentDetailPanel.tsx +0 -733
  781. package/ui/src/components/AgentsPanel.tsx +0 -815
  782. package/ui/src/components/ChatPanel.tsx +0 -1920
  783. package/ui/src/components/ConfigModal.tsx +0 -253
  784. package/ui/src/components/Dashboard.tsx +0 -832
  785. package/ui/src/components/EditAgentProfileModal.tsx +0 -433
  786. package/ui/src/components/EpicDetailPage.tsx +0 -741
  787. package/ui/src/components/EpicsPanel.tsx +0 -566
  788. package/ui/src/components/Header.tsx +0 -160
  789. package/ui/src/components/JsonViewer.tsx +0 -171
  790. package/ui/src/components/ScheduledTaskDetailPanel.tsx +0 -517
  791. package/ui/src/components/ScheduledTasksPanel.tsx +0 -639
  792. package/ui/src/components/ServicesPanel.tsx +0 -622
  793. package/ui/src/components/SessionLogPanel.tsx +0 -1219
  794. package/ui/src/components/StatsBar.tsx +0 -321
  795. package/ui/src/components/StatusBadge.tsx +0 -168
  796. package/ui/src/components/TaskDetailPanel.tsx +0 -903
  797. package/ui/src/components/TasksPanel.tsx +0 -614
  798. package/ui/src/components/UsageCharts.tsx +0 -216
  799. package/ui/src/components/UsageTab.tsx +0 -394
  800. package/ui/src/hooks/queries.ts +0 -353
  801. package/ui/src/index.css +0 -257
  802. package/ui/src/lib/api.ts +0 -268
  803. package/ui/src/lib/config.ts +0 -35
  804. package/ui/src/lib/contentPreview.ts +0 -208
  805. package/ui/src/lib/theme.ts +0 -214
  806. package/ui/src/main.tsx +0 -28
  807. package/ui/src/vite-env.d.ts +0 -1
  808. package/ui/tailwind.config.js +0 -37
  809. package/ui/vite.config.ts +0 -35
  810. /package/{ui → docs-site}/public/logo.png +0 -0
package/ui/pnpm-lock.yaml DELETED
@@ -1,3341 +0,0 @@
1
- lockfileVersion: '9.0'
2
-
3
- settings:
4
- autoInstallPeers: true
5
- excludeLinksFromLockfile: false
6
-
7
- importers:
8
-
9
- .:
10
- dependencies:
11
- '@emotion/react':
12
- specifier: ^11.14.0
13
- version: 11.14.0(@types/react@19.2.7)(react@19.2.3)
14
- '@emotion/styled':
15
- specifier: ^11.14.0
16
- version: 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3)
17
- '@mui/joy':
18
- specifier: ^5.0.0-beta.51
19
- version: 5.0.0-beta.52(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
20
- '@tanstack/react-query':
21
- specifier: ^5.62.0
22
- version: 5.90.12(react@19.2.3)
23
- react:
24
- specifier: ^19.0.0
25
- version: 19.2.3
26
- react-dom:
27
- specifier: ^19.0.0
28
- version: 19.2.3(react@19.2.3)
29
- react-markdown:
30
- specifier: ^10.1.0
31
- version: 10.1.0(@types/react@19.2.7)(react@19.2.3)
32
- recharts:
33
- specifier: ^3.6.0
34
- version: 3.6.0(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react-is@19.2.3)(react@19.2.3)(redux@5.0.1)
35
- remark-gfm:
36
- specifier: ^4.0.1
37
- version: 4.0.1
38
- devDependencies:
39
- '@types/react':
40
- specifier: ^19.0.0
41
- version: 19.2.7
42
- '@types/react-dom':
43
- specifier: ^19.0.0
44
- version: 19.2.3(@types/react@19.2.7)
45
- '@vitejs/plugin-react':
46
- specifier: ^4.3.4
47
- version: 4.7.0(vite@6.4.1(jiti@1.21.7))
48
- autoprefixer:
49
- specifier: ^10.4.20
50
- version: 10.4.23(postcss@8.5.6)
51
- postcss:
52
- specifier: ^8.4.49
53
- version: 8.5.6
54
- tailwindcss:
55
- specifier: ^3.4.17
56
- version: 3.4.19
57
- typescript:
58
- specifier: ^5.7.2
59
- version: 5.9.3
60
- vite:
61
- specifier: ^6.0.3
62
- version: 6.4.1(jiti@1.21.7)
63
-
64
- packages:
65
-
66
- '@alloc/quick-lru@5.2.0':
67
- resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
68
- engines: {node: '>=10'}
69
-
70
- '@babel/code-frame@7.27.1':
71
- resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
72
- engines: {node: '>=6.9.0'}
73
-
74
- '@babel/compat-data@7.28.5':
75
- resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
76
- engines: {node: '>=6.9.0'}
77
-
78
- '@babel/core@7.28.5':
79
- resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
80
- engines: {node: '>=6.9.0'}
81
-
82
- '@babel/generator@7.28.5':
83
- resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
84
- engines: {node: '>=6.9.0'}
85
-
86
- '@babel/helper-compilation-targets@7.27.2':
87
- resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
88
- engines: {node: '>=6.9.0'}
89
-
90
- '@babel/helper-globals@7.28.0':
91
- resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
92
- engines: {node: '>=6.9.0'}
93
-
94
- '@babel/helper-module-imports@7.27.1':
95
- resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
96
- engines: {node: '>=6.9.0'}
97
-
98
- '@babel/helper-module-transforms@7.28.3':
99
- resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==}
100
- engines: {node: '>=6.9.0'}
101
- peerDependencies:
102
- '@babel/core': ^7.0.0
103
-
104
- '@babel/helper-plugin-utils@7.27.1':
105
- resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
106
- engines: {node: '>=6.9.0'}
107
-
108
- '@babel/helper-string-parser@7.27.1':
109
- resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
110
- engines: {node: '>=6.9.0'}
111
-
112
- '@babel/helper-validator-identifier@7.28.5':
113
- resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
114
- engines: {node: '>=6.9.0'}
115
-
116
- '@babel/helper-validator-option@7.27.1':
117
- resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==}
118
- engines: {node: '>=6.9.0'}
119
-
120
- '@babel/helpers@7.28.4':
121
- resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
122
- engines: {node: '>=6.9.0'}
123
-
124
- '@babel/parser@7.28.5':
125
- resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
126
- engines: {node: '>=6.0.0'}
127
- hasBin: true
128
-
129
- '@babel/plugin-transform-react-jsx-self@7.27.1':
130
- resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
131
- engines: {node: '>=6.9.0'}
132
- peerDependencies:
133
- '@babel/core': ^7.0.0-0
134
-
135
- '@babel/plugin-transform-react-jsx-source@7.27.1':
136
- resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
137
- engines: {node: '>=6.9.0'}
138
- peerDependencies:
139
- '@babel/core': ^7.0.0-0
140
-
141
- '@babel/runtime@7.28.4':
142
- resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
143
- engines: {node: '>=6.9.0'}
144
-
145
- '@babel/template@7.27.2':
146
- resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
147
- engines: {node: '>=6.9.0'}
148
-
149
- '@babel/traverse@7.28.5':
150
- resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
151
- engines: {node: '>=6.9.0'}
152
-
153
- '@babel/types@7.28.5':
154
- resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
155
- engines: {node: '>=6.9.0'}
156
-
157
- '@emotion/babel-plugin@11.13.5':
158
- resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==}
159
-
160
- '@emotion/cache@11.14.0':
161
- resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==}
162
-
163
- '@emotion/hash@0.9.2':
164
- resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
165
-
166
- '@emotion/is-prop-valid@1.4.0':
167
- resolution: {integrity: sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==}
168
-
169
- '@emotion/memoize@0.9.0':
170
- resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
171
-
172
- '@emotion/react@11.14.0':
173
- resolution: {integrity: sha512-O000MLDBDdk/EohJPFUqvnp4qnHeYkVP5B0xEG0D/L7cOKP9kefu2DXn8dj74cQfsEzUqh+sr1RzFqiL1o+PpA==}
174
- peerDependencies:
175
- '@types/react': '*'
176
- react: '>=16.8.0'
177
- peerDependenciesMeta:
178
- '@types/react':
179
- optional: true
180
-
181
- '@emotion/serialize@1.3.3':
182
- resolution: {integrity: sha512-EISGqt7sSNWHGI76hC7x1CksiXPahbxEOrC5RjmFRJTqLyEK9/9hZvBbiYn70dw4wuwMKiEMCUlR6ZXTSWQqxA==}
183
-
184
- '@emotion/sheet@1.4.0':
185
- resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
186
-
187
- '@emotion/styled@11.14.1':
188
- resolution: {integrity: sha512-qEEJt42DuToa3gurlH4Qqc1kVpNq8wO8cJtDzU46TjlzWjDlsVyevtYCRijVq3SrHsROS+gVQ8Fnea108GnKzw==}
189
- peerDependencies:
190
- '@emotion/react': ^11.0.0-rc.0
191
- '@types/react': '*'
192
- react: '>=16.8.0'
193
- peerDependenciesMeta:
194
- '@types/react':
195
- optional: true
196
-
197
- '@emotion/unitless@0.10.0':
198
- resolution: {integrity: sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==}
199
-
200
- '@emotion/use-insertion-effect-with-fallbacks@1.2.0':
201
- resolution: {integrity: sha512-yJMtVdH59sxi/aVJBpk9FQq+OR8ll5GT8oWd57UpeaKEVGab41JWaCFA7FRLoMLloOZF/c/wsPoe+bfGmRKgDg==}
202
- peerDependencies:
203
- react: '>=16.8.0'
204
-
205
- '@emotion/utils@1.4.2':
206
- resolution: {integrity: sha512-3vLclRofFziIa3J2wDh9jjbkUz9qk5Vi3IZ/FSTKViB0k+ef0fPV7dYrUIugbgupYDx7v9ud/SjrtEP8Y4xLoA==}
207
-
208
- '@emotion/weak-memoize@0.4.0':
209
- resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
210
-
211
- '@esbuild/aix-ppc64@0.25.12':
212
- resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
213
- engines: {node: '>=18'}
214
- cpu: [ppc64]
215
- os: [aix]
216
-
217
- '@esbuild/android-arm64@0.25.12':
218
- resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
219
- engines: {node: '>=18'}
220
- cpu: [arm64]
221
- os: [android]
222
-
223
- '@esbuild/android-arm@0.25.12':
224
- resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
225
- engines: {node: '>=18'}
226
- cpu: [arm]
227
- os: [android]
228
-
229
- '@esbuild/android-x64@0.25.12':
230
- resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
231
- engines: {node: '>=18'}
232
- cpu: [x64]
233
- os: [android]
234
-
235
- '@esbuild/darwin-arm64@0.25.12':
236
- resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
237
- engines: {node: '>=18'}
238
- cpu: [arm64]
239
- os: [darwin]
240
-
241
- '@esbuild/darwin-x64@0.25.12':
242
- resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
243
- engines: {node: '>=18'}
244
- cpu: [x64]
245
- os: [darwin]
246
-
247
- '@esbuild/freebsd-arm64@0.25.12':
248
- resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
249
- engines: {node: '>=18'}
250
- cpu: [arm64]
251
- os: [freebsd]
252
-
253
- '@esbuild/freebsd-x64@0.25.12':
254
- resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
255
- engines: {node: '>=18'}
256
- cpu: [x64]
257
- os: [freebsd]
258
-
259
- '@esbuild/linux-arm64@0.25.12':
260
- resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
261
- engines: {node: '>=18'}
262
- cpu: [arm64]
263
- os: [linux]
264
-
265
- '@esbuild/linux-arm@0.25.12':
266
- resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
267
- engines: {node: '>=18'}
268
- cpu: [arm]
269
- os: [linux]
270
-
271
- '@esbuild/linux-ia32@0.25.12':
272
- resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
273
- engines: {node: '>=18'}
274
- cpu: [ia32]
275
- os: [linux]
276
-
277
- '@esbuild/linux-loong64@0.25.12':
278
- resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
279
- engines: {node: '>=18'}
280
- cpu: [loong64]
281
- os: [linux]
282
-
283
- '@esbuild/linux-mips64el@0.25.12':
284
- resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
285
- engines: {node: '>=18'}
286
- cpu: [mips64el]
287
- os: [linux]
288
-
289
- '@esbuild/linux-ppc64@0.25.12':
290
- resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
291
- engines: {node: '>=18'}
292
- cpu: [ppc64]
293
- os: [linux]
294
-
295
- '@esbuild/linux-riscv64@0.25.12':
296
- resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
297
- engines: {node: '>=18'}
298
- cpu: [riscv64]
299
- os: [linux]
300
-
301
- '@esbuild/linux-s390x@0.25.12':
302
- resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
303
- engines: {node: '>=18'}
304
- cpu: [s390x]
305
- os: [linux]
306
-
307
- '@esbuild/linux-x64@0.25.12':
308
- resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
309
- engines: {node: '>=18'}
310
- cpu: [x64]
311
- os: [linux]
312
-
313
- '@esbuild/netbsd-arm64@0.25.12':
314
- resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
315
- engines: {node: '>=18'}
316
- cpu: [arm64]
317
- os: [netbsd]
318
-
319
- '@esbuild/netbsd-x64@0.25.12':
320
- resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
321
- engines: {node: '>=18'}
322
- cpu: [x64]
323
- os: [netbsd]
324
-
325
- '@esbuild/openbsd-arm64@0.25.12':
326
- resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
327
- engines: {node: '>=18'}
328
- cpu: [arm64]
329
- os: [openbsd]
330
-
331
- '@esbuild/openbsd-x64@0.25.12':
332
- resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
333
- engines: {node: '>=18'}
334
- cpu: [x64]
335
- os: [openbsd]
336
-
337
- '@esbuild/openharmony-arm64@0.25.12':
338
- resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
339
- engines: {node: '>=18'}
340
- cpu: [arm64]
341
- os: [openharmony]
342
-
343
- '@esbuild/sunos-x64@0.25.12':
344
- resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
345
- engines: {node: '>=18'}
346
- cpu: [x64]
347
- os: [sunos]
348
-
349
- '@esbuild/win32-arm64@0.25.12':
350
- resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
351
- engines: {node: '>=18'}
352
- cpu: [arm64]
353
- os: [win32]
354
-
355
- '@esbuild/win32-ia32@0.25.12':
356
- resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
357
- engines: {node: '>=18'}
358
- cpu: [ia32]
359
- os: [win32]
360
-
361
- '@esbuild/win32-x64@0.25.12':
362
- resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
363
- engines: {node: '>=18'}
364
- cpu: [x64]
365
- os: [win32]
366
-
367
- '@floating-ui/core@1.7.3':
368
- resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
369
-
370
- '@floating-ui/dom@1.7.4':
371
- resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
372
-
373
- '@floating-ui/react-dom@2.1.6':
374
- resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==}
375
- peerDependencies:
376
- react: '>=16.8.0'
377
- react-dom: '>=16.8.0'
378
-
379
- '@floating-ui/utils@0.2.10':
380
- resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
381
-
382
- '@jridgewell/gen-mapping@0.3.13':
383
- resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
384
-
385
- '@jridgewell/remapping@2.3.5':
386
- resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
387
-
388
- '@jridgewell/resolve-uri@3.1.2':
389
- resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
390
- engines: {node: '>=6.0.0'}
391
-
392
- '@jridgewell/sourcemap-codec@1.5.5':
393
- resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
394
-
395
- '@jridgewell/trace-mapping@0.3.31':
396
- resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
397
-
398
- '@mui/base@5.0.0-beta.40-1':
399
- resolution: {integrity: sha512-agKXuNNy0bHUmeU7pNmoZwNFr7Hiyhojkb9+2PVyDG5+6RafYuyMgbrav8CndsB7KUc/U51JAw9vKNDLYBzaUA==}
400
- engines: {node: '>=12.0.0'}
401
- deprecated: This package has been replaced by @base-ui-components/react
402
- peerDependencies:
403
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
404
- react: ^17.0.0 || ^18.0.0 || ^19.0.0
405
- react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
406
- peerDependenciesMeta:
407
- '@types/react':
408
- optional: true
409
-
410
- '@mui/core-downloads-tracker@5.18.0':
411
- resolution: {integrity: sha512-jbhwoQ1AY200PSSOrNXmrFCaSDSJWP7qk6urkTmIirvRXDROkqe+QwcLlUiw/PrREwsIF/vm3/dAXvjlMHF0RA==}
412
-
413
- '@mui/joy@5.0.0-beta.52':
414
- resolution: {integrity: sha512-e8jQanA5M1f/X52mJrw0UIW8Er7EAHuLuigmGFw7yIsAgIluhIP4rZ7JcbVrUi6z5Gk0weC9QWUUtjLejAbO8g==}
415
- engines: {node: '>=12.0.0'}
416
- peerDependencies:
417
- '@emotion/react': ^11.5.0
418
- '@emotion/styled': ^11.3.0
419
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
420
- react: ^17.0.0 || ^18.0.0 || ^19.0.0
421
- react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
422
- peerDependenciesMeta:
423
- '@emotion/react':
424
- optional: true
425
- '@emotion/styled':
426
- optional: true
427
- '@types/react':
428
- optional: true
429
-
430
- '@mui/private-theming@5.17.1':
431
- resolution: {integrity: sha512-XMxU0NTYcKqdsG8LRmSoxERPXwMbp16sIXPcLVgLGII/bVNagX0xaheWAwFv8+zDK7tI3ajllkuD3GZZE++ICQ==}
432
- engines: {node: '>=12.0.0'}
433
- peerDependencies:
434
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
435
- react: ^17.0.0 || ^18.0.0 || ^19.0.0
436
- peerDependenciesMeta:
437
- '@types/react':
438
- optional: true
439
-
440
- '@mui/styled-engine@5.18.0':
441
- resolution: {integrity: sha512-BN/vKV/O6uaQh2z5rXV+MBlVrEkwoS/TK75rFQ2mjxA7+NBo8qtTAOA4UaM0XeJfn7kh2wZ+xQw2HAx0u+TiBg==}
442
- engines: {node: '>=12.0.0'}
443
- peerDependencies:
444
- '@emotion/react': ^11.4.1
445
- '@emotion/styled': ^11.3.0
446
- react: ^17.0.0 || ^18.0.0 || ^19.0.0
447
- peerDependenciesMeta:
448
- '@emotion/react':
449
- optional: true
450
- '@emotion/styled':
451
- optional: true
452
-
453
- '@mui/system@5.18.0':
454
- resolution: {integrity: sha512-ojZGVcRWqWhu557cdO3pWHloIGJdzVtxs3rk0F9L+x55LsUjcMUVkEhiF7E4TMxZoF9MmIHGGs0ZX3FDLAf0Xw==}
455
- engines: {node: '>=12.0.0'}
456
- peerDependencies:
457
- '@emotion/react': ^11.5.0
458
- '@emotion/styled': ^11.3.0
459
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
460
- react: ^17.0.0 || ^18.0.0 || ^19.0.0
461
- peerDependenciesMeta:
462
- '@emotion/react':
463
- optional: true
464
- '@emotion/styled':
465
- optional: true
466
- '@types/react':
467
- optional: true
468
-
469
- '@mui/types@7.2.24':
470
- resolution: {integrity: sha512-3c8tRt/CbWZ+pEg7QpSwbdxOk36EfmhbKf6AGZsD1EcLDLTSZoxxJ86FVtcjxvjuhdyBiWKSTGZFaXCnidO2kw==}
471
- peerDependencies:
472
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
473
- peerDependenciesMeta:
474
- '@types/react':
475
- optional: true
476
-
477
- '@mui/utils@5.17.1':
478
- resolution: {integrity: sha512-jEZ8FTqInt2WzxDV8bhImWBqeQRD99c/id/fq83H0ER9tFl+sfZlaAoCdznGvbSQQ9ividMxqSV2c7cC1vBcQg==}
479
- engines: {node: '>=12.0.0'}
480
- peerDependencies:
481
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
482
- react: ^17.0.0 || ^18.0.0 || ^19.0.0
483
- peerDependenciesMeta:
484
- '@types/react':
485
- optional: true
486
-
487
- '@nodelib/fs.scandir@2.1.5':
488
- resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
489
- engines: {node: '>= 8'}
490
-
491
- '@nodelib/fs.stat@2.0.5':
492
- resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==}
493
- engines: {node: '>= 8'}
494
-
495
- '@nodelib/fs.walk@1.2.8':
496
- resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
497
- engines: {node: '>= 8'}
498
-
499
- '@popperjs/core@2.11.8':
500
- resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
501
-
502
- '@reduxjs/toolkit@2.11.2':
503
- resolution: {integrity: sha512-Kd6kAHTA6/nUpp8mySPqj3en3dm0tdMIgbttnQ1xFMVpufoj+ADi8pXLBsd4xzTRHQa7t/Jv8W5UnCuW4kuWMQ==}
504
- peerDependencies:
505
- react: ^16.9.0 || ^17.0.0 || ^18 || ^19
506
- react-redux: ^7.2.1 || ^8.1.3 || ^9.0.0
507
- peerDependenciesMeta:
508
- react:
509
- optional: true
510
- react-redux:
511
- optional: true
512
-
513
- '@rolldown/pluginutils@1.0.0-beta.27':
514
- resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
515
-
516
- '@rollup/rollup-android-arm-eabi@4.53.5':
517
- resolution: {integrity: sha512-iDGS/h7D8t7tvZ1t6+WPK04KD0MwzLZrG0se1hzBjSi5fyxlsiggoJHwh18PCFNn7tG43OWb6pdZ6Y+rMlmyNQ==}
518
- cpu: [arm]
519
- os: [android]
520
-
521
- '@rollup/rollup-android-arm64@4.53.5':
522
- resolution: {integrity: sha512-wrSAViWvZHBMMlWk6EJhvg8/rjxzyEhEdgfMMjREHEq11EtJ6IP6yfcCH57YAEca2Oe3FNCE9DSTgU70EIGmVw==}
523
- cpu: [arm64]
524
- os: [android]
525
-
526
- '@rollup/rollup-darwin-arm64@4.53.5':
527
- resolution: {integrity: sha512-S87zZPBmRO6u1YXQLwpveZm4JfPpAa6oHBX7/ghSiGH3rz/KDgAu1rKdGutV+WUI6tKDMbaBJomhnT30Y2t4VQ==}
528
- cpu: [arm64]
529
- os: [darwin]
530
-
531
- '@rollup/rollup-darwin-x64@4.53.5':
532
- resolution: {integrity: sha512-YTbnsAaHo6VrAczISxgpTva8EkfQus0VPEVJCEaboHtZRIb6h6j0BNxRBOwnDciFTZLDPW5r+ZBmhL/+YpTZgA==}
533
- cpu: [x64]
534
- os: [darwin]
535
-
536
- '@rollup/rollup-freebsd-arm64@4.53.5':
537
- resolution: {integrity: sha512-1T8eY2J8rKJWzaznV7zedfdhD1BqVs1iqILhmHDq/bqCUZsrMt+j8VCTHhP0vdfbHK3e1IQ7VYx3jlKqwlf+vw==}
538
- cpu: [arm64]
539
- os: [freebsd]
540
-
541
- '@rollup/rollup-freebsd-x64@4.53.5':
542
- resolution: {integrity: sha512-sHTiuXyBJApxRn+VFMaw1U+Qsz4kcNlxQ742snICYPrY+DDL8/ZbaC4DVIB7vgZmp3jiDaKA0WpBdP0aqPJoBQ==}
543
- cpu: [x64]
544
- os: [freebsd]
545
-
546
- '@rollup/rollup-linux-arm-gnueabihf@4.53.5':
547
- resolution: {integrity: sha512-dV3T9MyAf0w8zPVLVBptVlzaXxka6xg1f16VAQmjg+4KMSTWDvhimI/Y6mp8oHwNrmnmVl9XxJ/w/mO4uIQONA==}
548
- cpu: [arm]
549
- os: [linux]
550
-
551
- '@rollup/rollup-linux-arm-musleabihf@4.53.5':
552
- resolution: {integrity: sha512-wIGYC1x/hyjP+KAu9+ewDI+fi5XSNiUi9Bvg6KGAh2TsNMA3tSEs+Sh6jJ/r4BV/bx/CyWu2ue9kDnIdRyafcQ==}
553
- cpu: [arm]
554
- os: [linux]
555
-
556
- '@rollup/rollup-linux-arm64-gnu@4.53.5':
557
- resolution: {integrity: sha512-Y+qVA0D9d0y2FRNiG9oM3Hut/DgODZbU9I8pLLPwAsU0tUKZ49cyV1tzmB/qRbSzGvY8lpgGkJuMyuhH7Ma+Vg==}
558
- cpu: [arm64]
559
- os: [linux]
560
-
561
- '@rollup/rollup-linux-arm64-musl@4.53.5':
562
- resolution: {integrity: sha512-juaC4bEgJsyFVfqhtGLz8mbopaWD+WeSOYr5E16y+1of6KQjc0BpwZLuxkClqY1i8sco+MdyoXPNiCkQou09+g==}
563
- cpu: [arm64]
564
- os: [linux]
565
-
566
- '@rollup/rollup-linux-loong64-gnu@4.53.5':
567
- resolution: {integrity: sha512-rIEC0hZ17A42iXtHX+EPJVL/CakHo+tT7W0pbzdAGuWOt2jxDFh7A/lRhsNHBcqL4T36+UiAgwO8pbmn3dE8wA==}
568
- cpu: [loong64]
569
- os: [linux]
570
-
571
- '@rollup/rollup-linux-ppc64-gnu@4.53.5':
572
- resolution: {integrity: sha512-T7l409NhUE552RcAOcmJHj3xyZ2h7vMWzcwQI0hvn5tqHh3oSoclf9WgTl+0QqffWFG8MEVZZP1/OBglKZx52Q==}
573
- cpu: [ppc64]
574
- os: [linux]
575
-
576
- '@rollup/rollup-linux-riscv64-gnu@4.53.5':
577
- resolution: {integrity: sha512-7OK5/GhxbnrMcxIFoYfhV/TkknarkYC1hqUw1wU2xUN3TVRLNT5FmBv4KkheSG2xZ6IEbRAhTooTV2+R5Tk0lQ==}
578
- cpu: [riscv64]
579
- os: [linux]
580
-
581
- '@rollup/rollup-linux-riscv64-musl@4.53.5':
582
- resolution: {integrity: sha512-GwuDBE/PsXaTa76lO5eLJTyr2k8QkPipAyOrs4V/KJufHCZBJ495VCGJol35grx9xryk4V+2zd3Ri+3v7NPh+w==}
583
- cpu: [riscv64]
584
- os: [linux]
585
-
586
- '@rollup/rollup-linux-s390x-gnu@4.53.5':
587
- resolution: {integrity: sha512-IAE1Ziyr1qNfnmiQLHBURAD+eh/zH1pIeJjeShleII7Vj8kyEm2PF77o+lf3WTHDpNJcu4IXJxNO0Zluro8bOw==}
588
- cpu: [s390x]
589
- os: [linux]
590
-
591
- '@rollup/rollup-linux-x64-gnu@4.53.5':
592
- resolution: {integrity: sha512-Pg6E+oP7GvZ4XwgRJBuSXZjcqpIW3yCBhK4BcsANvb47qMvAbCjR6E+1a/U2WXz1JJxp9/4Dno3/iSJLcm5auw==}
593
- cpu: [x64]
594
- os: [linux]
595
-
596
- '@rollup/rollup-linux-x64-musl@4.53.5':
597
- resolution: {integrity: sha512-txGtluxDKTxaMDzUduGP0wdfng24y1rygUMnmlUJ88fzCCULCLn7oE5kb2+tRB+MWq1QDZT6ObT5RrR8HFRKqg==}
598
- cpu: [x64]
599
- os: [linux]
600
-
601
- '@rollup/rollup-openharmony-arm64@4.53.5':
602
- resolution: {integrity: sha512-3DFiLPnTxiOQV993fMc+KO8zXHTcIjgaInrqlG8zDp1TlhYl6WgrOHuJkJQ6M8zHEcntSJsUp1XFZSY8C1DYbg==}
603
- cpu: [arm64]
604
- os: [openharmony]
605
-
606
- '@rollup/rollup-win32-arm64-msvc@4.53.5':
607
- resolution: {integrity: sha512-nggc/wPpNTgjGg75hu+Q/3i32R00Lq1B6N1DO7MCU340MRKL3WZJMjA9U4K4gzy3dkZPXm9E1Nc81FItBVGRlA==}
608
- cpu: [arm64]
609
- os: [win32]
610
-
611
- '@rollup/rollup-win32-ia32-msvc@4.53.5':
612
- resolution: {integrity: sha512-U/54pTbdQpPLBdEzCT6NBCFAfSZMvmjr0twhnD9f4EIvlm9wy3jjQ38yQj1AGznrNO65EWQMgm/QUjuIVrYF9w==}
613
- cpu: [ia32]
614
- os: [win32]
615
-
616
- '@rollup/rollup-win32-x64-gnu@4.53.5':
617
- resolution: {integrity: sha512-2NqKgZSuLH9SXBBV2dWNRCZmocgSOx8OJSdpRaEcRlIfX8YrKxUT6z0F1NpvDVhOsl190UFTRh2F2WDWWCYp3A==}
618
- cpu: [x64]
619
- os: [win32]
620
-
621
- '@rollup/rollup-win32-x64-msvc@4.53.5':
622
- resolution: {integrity: sha512-JRpZUhCfhZ4keB5v0fe02gQJy05GqboPOaxvjugW04RLSYYoB/9t2lx2u/tMs/Na/1NXfY8QYjgRljRpN+MjTQ==}
623
- cpu: [x64]
624
- os: [win32]
625
-
626
- '@standard-schema/spec@1.1.0':
627
- resolution: {integrity: sha512-l2aFy5jALhniG5HgqrD6jXLi/rUWrKvqN/qJx6yoJsgKhblVd+iqqU4RCXavm/jPityDo5TCvKMnpjKnOriy0w==}
628
-
629
- '@standard-schema/utils@0.3.0':
630
- resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
631
-
632
- '@tanstack/query-core@5.90.12':
633
- resolution: {integrity: sha512-T1/8t5DhV/SisWjDnaiU2drl6ySvsHj1bHBCWNXd+/T+Hh1cf6JodyEYMd5sgwm+b/mETT4EV3H+zCVczCU5hg==}
634
-
635
- '@tanstack/react-query@5.90.12':
636
- resolution: {integrity: sha512-graRZspg7EoEaw0a8faiUASCyJrqjKPdqJ9EwuDRUF9mEYJ1YPczI9H+/agJ0mOJkPCJDk0lsz5QTrLZ/jQ2rg==}
637
- peerDependencies:
638
- react: ^18 || ^19
639
-
640
- '@types/babel__core@7.20.5':
641
- resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
642
-
643
- '@types/babel__generator@7.27.0':
644
- resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==}
645
-
646
- '@types/babel__template@7.4.4':
647
- resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==}
648
-
649
- '@types/babel__traverse@7.28.0':
650
- resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==}
651
-
652
- '@types/d3-array@3.2.2':
653
- resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
654
-
655
- '@types/d3-color@3.1.3':
656
- resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
657
-
658
- '@types/d3-ease@3.0.2':
659
- resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
660
-
661
- '@types/d3-interpolate@3.0.4':
662
- resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
663
-
664
- '@types/d3-path@3.1.1':
665
- resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
666
-
667
- '@types/d3-scale@4.0.9':
668
- resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
669
-
670
- '@types/d3-shape@3.1.8':
671
- resolution: {integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==}
672
-
673
- '@types/d3-time@3.0.4':
674
- resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
675
-
676
- '@types/d3-timer@3.0.2':
677
- resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
678
-
679
- '@types/debug@4.1.12':
680
- resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
681
-
682
- '@types/estree-jsx@1.0.5':
683
- resolution: {integrity: sha512-52CcUVNFyfb1A2ALocQw/Dd1BQFNmSdkuC3BkZ6iqhdMfQz7JWOFRuJFloOzjk+6WijU56m9oKXFAXc7o3Towg==}
684
-
685
- '@types/estree@1.0.8':
686
- resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
687
-
688
- '@types/hast@3.0.4':
689
- resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==}
690
-
691
- '@types/mdast@4.0.4':
692
- resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
693
-
694
- '@types/ms@2.1.0':
695
- resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
696
-
697
- '@types/parse-json@4.0.2':
698
- resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
699
-
700
- '@types/prop-types@15.7.15':
701
- resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}
702
-
703
- '@types/react-dom@19.2.3':
704
- resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
705
- peerDependencies:
706
- '@types/react': ^19.2.0
707
-
708
- '@types/react@19.2.7':
709
- resolution: {integrity: sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==}
710
-
711
- '@types/unist@2.0.11':
712
- resolution: {integrity: sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==}
713
-
714
- '@types/unist@3.0.3':
715
- resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
716
-
717
- '@types/use-sync-external-store@0.0.6':
718
- resolution: {integrity: sha512-zFDAD+tlpf2r4asuHEj0XH6pY6i0g5NeAHPn+15wk3BV6JA69eERFXC1gyGThDkVa1zCyKr5jox1+2LbV/AMLg==}
719
-
720
- '@ungap/structured-clone@1.3.0':
721
- resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==}
722
-
723
- '@vitejs/plugin-react@4.7.0':
724
- resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
725
- engines: {node: ^14.18.0 || >=16.0.0}
726
- peerDependencies:
727
- vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
728
-
729
- any-promise@1.3.0:
730
- resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
731
-
732
- anymatch@3.1.3:
733
- resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
734
- engines: {node: '>= 8'}
735
-
736
- arg@5.0.2:
737
- resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
738
-
739
- autoprefixer@10.4.23:
740
- resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==}
741
- engines: {node: ^10 || ^12 || >=14}
742
- hasBin: true
743
- peerDependencies:
744
- postcss: ^8.1.0
745
-
746
- babel-plugin-macros@3.1.0:
747
- resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
748
- engines: {node: '>=10', npm: '>=6'}
749
-
750
- bail@2.0.2:
751
- resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==}
752
-
753
- baseline-browser-mapping@2.9.9:
754
- resolution: {integrity: sha512-V8fbOCSeOFvlDj7LLChUcqbZrdKD9RU/VR260piF1790vT0mfLSwGc/Qzxv3IqiTukOpNtItePa0HBpMAj7MDg==}
755
- hasBin: true
756
-
757
- binary-extensions@2.3.0:
758
- resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
759
- engines: {node: '>=8'}
760
-
761
- braces@3.0.3:
762
- resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
763
- engines: {node: '>=8'}
764
-
765
- browserslist@4.28.1:
766
- resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
767
- engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
768
- hasBin: true
769
-
770
- callsites@3.1.0:
771
- resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
772
- engines: {node: '>=6'}
773
-
774
- camelcase-css@2.0.1:
775
- resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
776
- engines: {node: '>= 6'}
777
-
778
- caniuse-lite@1.0.30001760:
779
- resolution: {integrity: sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==}
780
-
781
- ccount@2.0.1:
782
- resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
783
-
784
- character-entities-html4@2.1.0:
785
- resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==}
786
-
787
- character-entities-legacy@3.0.0:
788
- resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==}
789
-
790
- character-entities@2.0.2:
791
- resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
792
-
793
- character-reference-invalid@2.0.1:
794
- resolution: {integrity: sha512-iBZ4F4wRbyORVsu0jPV7gXkOsGYjGHPmAyv+HiHG8gi5PtC9KI2j1+v8/tlibRvjoWX027ypmG/n0HtO5t7unw==}
795
-
796
- chokidar@3.6.0:
797
- resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
798
- engines: {node: '>= 8.10.0'}
799
-
800
- clsx@2.1.1:
801
- resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
802
- engines: {node: '>=6'}
803
-
804
- comma-separated-tokens@2.0.3:
805
- resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==}
806
-
807
- commander@4.1.1:
808
- resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
809
- engines: {node: '>= 6'}
810
-
811
- convert-source-map@1.9.0:
812
- resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
813
-
814
- convert-source-map@2.0.0:
815
- resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
816
-
817
- cosmiconfig@7.1.0:
818
- resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
819
- engines: {node: '>=10'}
820
-
821
- cssesc@3.0.0:
822
- resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
823
- engines: {node: '>=4'}
824
- hasBin: true
825
-
826
- csstype@3.2.3:
827
- resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
828
-
829
- d3-array@3.2.4:
830
- resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
831
- engines: {node: '>=12'}
832
-
833
- d3-color@3.1.0:
834
- resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
835
- engines: {node: '>=12'}
836
-
837
- d3-ease@3.0.1:
838
- resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
839
- engines: {node: '>=12'}
840
-
841
- d3-format@3.1.2:
842
- resolution: {integrity: sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==}
843
- engines: {node: '>=12'}
844
-
845
- d3-interpolate@3.0.1:
846
- resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
847
- engines: {node: '>=12'}
848
-
849
- d3-path@3.1.0:
850
- resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
851
- engines: {node: '>=12'}
852
-
853
- d3-scale@4.0.2:
854
- resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
855
- engines: {node: '>=12'}
856
-
857
- d3-shape@3.2.0:
858
- resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
859
- engines: {node: '>=12'}
860
-
861
- d3-time-format@4.1.0:
862
- resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
863
- engines: {node: '>=12'}
864
-
865
- d3-time@3.1.0:
866
- resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
867
- engines: {node: '>=12'}
868
-
869
- d3-timer@3.0.1:
870
- resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
871
- engines: {node: '>=12'}
872
-
873
- debug@4.4.3:
874
- resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
875
- engines: {node: '>=6.0'}
876
- peerDependencies:
877
- supports-color: '*'
878
- peerDependenciesMeta:
879
- supports-color:
880
- optional: true
881
-
882
- decimal.js-light@2.5.1:
883
- resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
884
-
885
- decode-named-character-reference@1.2.0:
886
- resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==}
887
-
888
- dequal@2.0.3:
889
- resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
890
- engines: {node: '>=6'}
891
-
892
- devlop@1.1.0:
893
- resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==}
894
-
895
- didyoumean@1.2.2:
896
- resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
897
-
898
- dlv@1.1.3:
899
- resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
900
-
901
- electron-to-chromium@1.5.267:
902
- resolution: {integrity: sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==}
903
-
904
- error-ex@1.3.4:
905
- resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
906
-
907
- es-toolkit@1.43.0:
908
- resolution: {integrity: sha512-SKCT8AsWvYzBBuUqMk4NPwFlSdqLpJwmy6AP322ERn8W2YLIB6JBXnwMI2Qsh2gfphT3q7EKAxKb23cvFHFwKA==}
909
-
910
- esbuild@0.25.12:
911
- resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
912
- engines: {node: '>=18'}
913
- hasBin: true
914
-
915
- escalade@3.2.0:
916
- resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
917
- engines: {node: '>=6'}
918
-
919
- escape-string-regexp@4.0.0:
920
- resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
921
- engines: {node: '>=10'}
922
-
923
- escape-string-regexp@5.0.0:
924
- resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==}
925
- engines: {node: '>=12'}
926
-
927
- estree-util-is-identifier-name@3.0.0:
928
- resolution: {integrity: sha512-hFtqIDZTIUZ9BXLb8y4pYGyk6+wekIivNVTcmvk8NoOh+VeRn5y6cEHzbURrWbfp1fIqdVipilzj+lfaadNZmg==}
929
-
930
- eventemitter3@5.0.1:
931
- resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==}
932
-
933
- extend@3.0.2:
934
- resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
935
-
936
- fast-glob@3.3.3:
937
- resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
938
- engines: {node: '>=8.6.0'}
939
-
940
- fastq@1.19.1:
941
- resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==}
942
-
943
- fdir@6.5.0:
944
- resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==}
945
- engines: {node: '>=12.0.0'}
946
- peerDependencies:
947
- picomatch: ^3 || ^4
948
- peerDependenciesMeta:
949
- picomatch:
950
- optional: true
951
-
952
- fill-range@7.1.1:
953
- resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
954
- engines: {node: '>=8'}
955
-
956
- find-root@1.1.0:
957
- resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
958
-
959
- fraction.js@5.3.4:
960
- resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
961
-
962
- fsevents@2.3.3:
963
- resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
964
- engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
965
- os: [darwin]
966
-
967
- function-bind@1.1.2:
968
- resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
969
-
970
- gensync@1.0.0-beta.2:
971
- resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
972
- engines: {node: '>=6.9.0'}
973
-
974
- glob-parent@5.1.2:
975
- resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
976
- engines: {node: '>= 6'}
977
-
978
- glob-parent@6.0.2:
979
- resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
980
- engines: {node: '>=10.13.0'}
981
-
982
- hasown@2.0.2:
983
- resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
984
- engines: {node: '>= 0.4'}
985
-
986
- hast-util-to-jsx-runtime@2.3.6:
987
- resolution: {integrity: sha512-zl6s8LwNyo1P9uw+XJGvZtdFF1GdAkOg8ujOw+4Pyb76874fLps4ueHXDhXWdk6YHQ6OgUtinliG7RsYvCbbBg==}
988
-
989
- hast-util-whitespace@3.0.0:
990
- resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==}
991
-
992
- hoist-non-react-statics@3.3.2:
993
- resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
994
-
995
- html-url-attributes@3.0.1:
996
- resolution: {integrity: sha512-ol6UPyBWqsrO6EJySPz2O7ZSr856WDrEzM5zMqp+FJJLGMW35cLYmmZnl0vztAZxRUoNZJFTCohfjuIJ8I4QBQ==}
997
-
998
- immer@10.2.0:
999
- resolution: {integrity: sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==}
1000
-
1001
- immer@11.1.3:
1002
- resolution: {integrity: sha512-6jQTc5z0KJFtr1UgFpIL3N9XSC3saRaI9PwWtzM2pSqkNGtiNkYY2OSwkOGDK2XcTRcLb1pi/aNkKZz0nxVH4Q==}
1003
-
1004
- import-fresh@3.3.1:
1005
- resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
1006
- engines: {node: '>=6'}
1007
-
1008
- inline-style-parser@0.2.7:
1009
- resolution: {integrity: sha512-Nb2ctOyNR8DqQoR0OwRG95uNWIC0C1lCgf5Naz5H6Ji72KZ8OcFZLz2P5sNgwlyoJ8Yif11oMuYs5pBQa86csA==}
1010
-
1011
- internmap@2.0.3:
1012
- resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
1013
- engines: {node: '>=12'}
1014
-
1015
- is-alphabetical@2.0.1:
1016
- resolution: {integrity: sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==}
1017
-
1018
- is-alphanumerical@2.0.1:
1019
- resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
1020
-
1021
- is-arrayish@0.2.1:
1022
- resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
1023
-
1024
- is-binary-path@2.1.0:
1025
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
1026
- engines: {node: '>=8'}
1027
-
1028
- is-core-module@2.16.1:
1029
- resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
1030
- engines: {node: '>= 0.4'}
1031
-
1032
- is-decimal@2.0.1:
1033
- resolution: {integrity: sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==}
1034
-
1035
- is-extglob@2.1.1:
1036
- resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
1037
- engines: {node: '>=0.10.0'}
1038
-
1039
- is-glob@4.0.3:
1040
- resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
1041
- engines: {node: '>=0.10.0'}
1042
-
1043
- is-hexadecimal@2.0.1:
1044
- resolution: {integrity: sha512-DgZQp241c8oO6cA1SbTEWiXeoxV42vlcJxgH+B3hi1AiqqKruZR3ZGF8In3fj4+/y/7rHvlOZLZtgJ/4ttYGZg==}
1045
-
1046
- is-number@7.0.0:
1047
- resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
1048
- engines: {node: '>=0.12.0'}
1049
-
1050
- is-plain-obj@4.1.0:
1051
- resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==}
1052
- engines: {node: '>=12'}
1053
-
1054
- jiti@1.21.7:
1055
- resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
1056
- hasBin: true
1057
-
1058
- js-tokens@4.0.0:
1059
- resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
1060
-
1061
- jsesc@3.1.0:
1062
- resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
1063
- engines: {node: '>=6'}
1064
- hasBin: true
1065
-
1066
- json-parse-even-better-errors@2.3.1:
1067
- resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
1068
-
1069
- json5@2.2.3:
1070
- resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==}
1071
- engines: {node: '>=6'}
1072
- hasBin: true
1073
-
1074
- lilconfig@3.1.3:
1075
- resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
1076
- engines: {node: '>=14'}
1077
-
1078
- lines-and-columns@1.2.4:
1079
- resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
1080
-
1081
- longest-streak@3.1.0:
1082
- resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
1083
-
1084
- loose-envify@1.4.0:
1085
- resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
1086
- hasBin: true
1087
-
1088
- lru-cache@5.1.1:
1089
- resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
1090
-
1091
- markdown-table@3.0.4:
1092
- resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==}
1093
-
1094
- mdast-util-find-and-replace@3.0.2:
1095
- resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==}
1096
-
1097
- mdast-util-from-markdown@2.0.2:
1098
- resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==}
1099
-
1100
- mdast-util-gfm-autolink-literal@2.0.1:
1101
- resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==}
1102
-
1103
- mdast-util-gfm-footnote@2.1.0:
1104
- resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==}
1105
-
1106
- mdast-util-gfm-strikethrough@2.0.0:
1107
- resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==}
1108
-
1109
- mdast-util-gfm-table@2.0.0:
1110
- resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==}
1111
-
1112
- mdast-util-gfm-task-list-item@2.0.0:
1113
- resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==}
1114
-
1115
- mdast-util-gfm@3.1.0:
1116
- resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==}
1117
-
1118
- mdast-util-mdx-expression@2.0.1:
1119
- resolution: {integrity: sha512-J6f+9hUp+ldTZqKRSg7Vw5V6MqjATc+3E4gf3CFNcuZNWD8XdyI6zQ8GqH7f8169MM6P7hMBRDVGnn7oHB9kXQ==}
1120
-
1121
- mdast-util-mdx-jsx@3.2.0:
1122
- resolution: {integrity: sha512-lj/z8v0r6ZtsN/cGNNtemmmfoLAFZnjMbNyLzBafjzikOM+glrjNHPlf6lQDOTccj9n5b0PPihEBbhneMyGs1Q==}
1123
-
1124
- mdast-util-mdxjs-esm@2.0.1:
1125
- resolution: {integrity: sha512-EcmOpxsZ96CvlP03NghtH1EsLtr0n9Tm4lPUJUBccV9RwUOneqSycg19n5HGzCf+10LozMRSObtVr3ee1WoHtg==}
1126
-
1127
- mdast-util-phrasing@4.1.0:
1128
- resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==}
1129
-
1130
- mdast-util-to-hast@13.2.1:
1131
- resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==}
1132
-
1133
- mdast-util-to-markdown@2.1.2:
1134
- resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==}
1135
-
1136
- mdast-util-to-string@4.0.0:
1137
- resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==}
1138
-
1139
- merge2@1.4.1:
1140
- resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
1141
- engines: {node: '>= 8'}
1142
-
1143
- micromark-core-commonmark@2.0.3:
1144
- resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==}
1145
-
1146
- micromark-extension-gfm-autolink-literal@2.1.0:
1147
- resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==}
1148
-
1149
- micromark-extension-gfm-footnote@2.1.0:
1150
- resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==}
1151
-
1152
- micromark-extension-gfm-strikethrough@2.1.0:
1153
- resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==}
1154
-
1155
- micromark-extension-gfm-table@2.1.1:
1156
- resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==}
1157
-
1158
- micromark-extension-gfm-tagfilter@2.0.0:
1159
- resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==}
1160
-
1161
- micromark-extension-gfm-task-list-item@2.1.0:
1162
- resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==}
1163
-
1164
- micromark-extension-gfm@3.0.0:
1165
- resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==}
1166
-
1167
- micromark-factory-destination@2.0.1:
1168
- resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==}
1169
-
1170
- micromark-factory-label@2.0.1:
1171
- resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==}
1172
-
1173
- micromark-factory-space@2.0.1:
1174
- resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==}
1175
-
1176
- micromark-factory-title@2.0.1:
1177
- resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==}
1178
-
1179
- micromark-factory-whitespace@2.0.1:
1180
- resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==}
1181
-
1182
- micromark-util-character@2.1.1:
1183
- resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==}
1184
-
1185
- micromark-util-chunked@2.0.1:
1186
- resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==}
1187
-
1188
- micromark-util-classify-character@2.0.1:
1189
- resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==}
1190
-
1191
- micromark-util-combine-extensions@2.0.1:
1192
- resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==}
1193
-
1194
- micromark-util-decode-numeric-character-reference@2.0.2:
1195
- resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==}
1196
-
1197
- micromark-util-decode-string@2.0.1:
1198
- resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==}
1199
-
1200
- micromark-util-encode@2.0.1:
1201
- resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==}
1202
-
1203
- micromark-util-html-tag-name@2.0.1:
1204
- resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==}
1205
-
1206
- micromark-util-normalize-identifier@2.0.1:
1207
- resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==}
1208
-
1209
- micromark-util-resolve-all@2.0.1:
1210
- resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==}
1211
-
1212
- micromark-util-sanitize-uri@2.0.1:
1213
- resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==}
1214
-
1215
- micromark-util-subtokenize@2.1.0:
1216
- resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==}
1217
-
1218
- micromark-util-symbol@2.0.1:
1219
- resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==}
1220
-
1221
- micromark-util-types@2.0.2:
1222
- resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==}
1223
-
1224
- micromark@4.0.2:
1225
- resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==}
1226
-
1227
- micromatch@4.0.8:
1228
- resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
1229
- engines: {node: '>=8.6'}
1230
-
1231
- ms@2.1.3:
1232
- resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
1233
-
1234
- mz@2.7.0:
1235
- resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
1236
-
1237
- nanoid@3.3.11:
1238
- resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
1239
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
1240
- hasBin: true
1241
-
1242
- node-releases@2.0.27:
1243
- resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
1244
-
1245
- normalize-path@3.0.0:
1246
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
1247
- engines: {node: '>=0.10.0'}
1248
-
1249
- object-assign@4.1.1:
1250
- resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
1251
- engines: {node: '>=0.10.0'}
1252
-
1253
- object-hash@3.0.0:
1254
- resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
1255
- engines: {node: '>= 6'}
1256
-
1257
- parent-module@1.0.1:
1258
- resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
1259
- engines: {node: '>=6'}
1260
-
1261
- parse-entities@4.0.2:
1262
- resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==}
1263
-
1264
- parse-json@5.2.0:
1265
- resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
1266
- engines: {node: '>=8'}
1267
-
1268
- path-parse@1.0.7:
1269
- resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
1270
-
1271
- path-type@4.0.0:
1272
- resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
1273
- engines: {node: '>=8'}
1274
-
1275
- picocolors@1.1.1:
1276
- resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
1277
-
1278
- picomatch@2.3.1:
1279
- resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
1280
- engines: {node: '>=8.6'}
1281
-
1282
- picomatch@4.0.3:
1283
- resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==}
1284
- engines: {node: '>=12'}
1285
-
1286
- pify@2.3.0:
1287
- resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
1288
- engines: {node: '>=0.10.0'}
1289
-
1290
- pirates@4.0.7:
1291
- resolution: {integrity: sha512-TfySrs/5nm8fQJDcBDuUng3VOUKsd7S+zqvbOTiGXHfxX4wK31ard+hoNuvkicM/2YFzlpDgABOevKSsB4G/FA==}
1292
- engines: {node: '>= 6'}
1293
-
1294
- postcss-import@15.1.0:
1295
- resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
1296
- engines: {node: '>=14.0.0'}
1297
- peerDependencies:
1298
- postcss: ^8.0.0
1299
-
1300
- postcss-js@4.1.0:
1301
- resolution: {integrity: sha512-oIAOTqgIo7q2EOwbhb8UalYePMvYoIeRY2YKntdpFQXNosSu3vLrniGgmH9OKs/qAkfoj5oB3le/7mINW1LCfw==}
1302
- engines: {node: ^12 || ^14 || >= 16}
1303
- peerDependencies:
1304
- postcss: ^8.4.21
1305
-
1306
- postcss-load-config@6.0.1:
1307
- resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
1308
- engines: {node: '>= 18'}
1309
- peerDependencies:
1310
- jiti: '>=1.21.0'
1311
- postcss: '>=8.0.9'
1312
- tsx: ^4.8.1
1313
- yaml: ^2.4.2
1314
- peerDependenciesMeta:
1315
- jiti:
1316
- optional: true
1317
- postcss:
1318
- optional: true
1319
- tsx:
1320
- optional: true
1321
- yaml:
1322
- optional: true
1323
-
1324
- postcss-nested@6.2.0:
1325
- resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
1326
- engines: {node: '>=12.0'}
1327
- peerDependencies:
1328
- postcss: ^8.2.14
1329
-
1330
- postcss-selector-parser@6.1.2:
1331
- resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
1332
- engines: {node: '>=4'}
1333
-
1334
- postcss-value-parser@4.2.0:
1335
- resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
1336
-
1337
- postcss@8.5.6:
1338
- resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
1339
- engines: {node: ^10 || ^12 || >=14}
1340
-
1341
- prop-types@15.8.1:
1342
- resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
1343
-
1344
- property-information@7.1.0:
1345
- resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==}
1346
-
1347
- queue-microtask@1.2.3:
1348
- resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
1349
-
1350
- react-dom@19.2.3:
1351
- resolution: {integrity: sha512-yELu4WmLPw5Mr/lmeEpox5rw3RETacE++JgHqQzd2dg+YbJuat3jH4ingc+WPZhxaoFzdv9y33G+F7Nl5O0GBg==}
1352
- peerDependencies:
1353
- react: ^19.2.3
1354
-
1355
- react-is@16.13.1:
1356
- resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
1357
-
1358
- react-is@19.2.3:
1359
- resolution: {integrity: sha512-qJNJfu81ByyabuG7hPFEbXqNcWSU3+eVus+KJs+0ncpGfMyYdvSmxiJxbWR65lYi1I+/0HBcliO029gc4F+PnA==}
1360
-
1361
- react-markdown@10.1.0:
1362
- resolution: {integrity: sha512-qKxVopLT/TyA6BX3Ue5NwabOsAzm0Q7kAPwq6L+wWDwisYs7R8vZ0nRXqq6rkueboxpkjvLGU9fWifiX/ZZFxQ==}
1363
- peerDependencies:
1364
- '@types/react': '>=18'
1365
- react: '>=18'
1366
-
1367
- react-redux@9.2.0:
1368
- resolution: {integrity: sha512-ROY9fvHhwOD9ySfrF0wmvu//bKCQ6AeZZq1nJNtbDC+kk5DuSuNX/n6YWYF/SYy7bSba4D4FSz8DJeKY/S/r+g==}
1369
- peerDependencies:
1370
- '@types/react': ^18.2.25 || ^19
1371
- react: ^18.0 || ^19
1372
- redux: ^5.0.0
1373
- peerDependenciesMeta:
1374
- '@types/react':
1375
- optional: true
1376
- redux:
1377
- optional: true
1378
-
1379
- react-refresh@0.17.0:
1380
- resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
1381
- engines: {node: '>=0.10.0'}
1382
-
1383
- react@19.2.3:
1384
- resolution: {integrity: sha512-Ku/hhYbVjOQnXDZFv2+RibmLFGwFdeeKHFcOTlrt7xplBnya5OGn/hIRDsqDiSUcfORsDC7MPxwork8jBwsIWA==}
1385
- engines: {node: '>=0.10.0'}
1386
-
1387
- read-cache@1.0.0:
1388
- resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
1389
-
1390
- readdirp@3.6.0:
1391
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
1392
- engines: {node: '>=8.10.0'}
1393
-
1394
- recharts@3.6.0:
1395
- resolution: {integrity: sha512-L5bjxvQRAe26RlToBAziKUB7whaGKEwD3znoM6fz3DrTowCIC/FnJYnuq1GEzB8Zv2kdTfaxQfi5GoH0tBinyg==}
1396
- engines: {node: '>=18'}
1397
- peerDependencies:
1398
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1399
- react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1400
- react-is: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1401
-
1402
- redux-thunk@3.1.0:
1403
- resolution: {integrity: sha512-NW2r5T6ksUKXCabzhL9z+h206HQw/NJkcLm1GPImRQ8IzfXwRGqjVhKJGauHirT0DAuyy6hjdnMZaRoAcy0Klw==}
1404
- peerDependencies:
1405
- redux: ^5.0.0
1406
-
1407
- redux@5.0.1:
1408
- resolution: {integrity: sha512-M9/ELqF6fy8FwmkpnF0S3YKOqMyoWJ4+CS5Efg2ct3oY9daQvd/Pc71FpGZsVsbl3Cpb+IIcjBDUnnyBdQbq4w==}
1409
-
1410
- remark-gfm@4.0.1:
1411
- resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==}
1412
-
1413
- remark-parse@11.0.0:
1414
- resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==}
1415
-
1416
- remark-rehype@11.1.2:
1417
- resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==}
1418
-
1419
- remark-stringify@11.0.0:
1420
- resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==}
1421
-
1422
- reselect@5.1.1:
1423
- resolution: {integrity: sha512-K/BG6eIky/SBpzfHZv/dd+9JBFiS4SWV7FIujVyJRux6e45+73RaUHXLmIR1f7WOMaQ0U1km6qwklRQxpJJY0w==}
1424
-
1425
- resolve-from@4.0.0:
1426
- resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
1427
- engines: {node: '>=4'}
1428
-
1429
- resolve@1.22.11:
1430
- resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
1431
- engines: {node: '>= 0.4'}
1432
- hasBin: true
1433
-
1434
- reusify@1.1.0:
1435
- resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
1436
- engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
1437
-
1438
- rollup@4.53.5:
1439
- resolution: {integrity: sha512-iTNAbFSlRpcHeeWu73ywU/8KuU/LZmNCSxp6fjQkJBD3ivUb8tpDrXhIxEzA05HlYMEwmtaUnb3RP+YNv162OQ==}
1440
- engines: {node: '>=18.0.0', npm: '>=8.0.0'}
1441
- hasBin: true
1442
-
1443
- run-parallel@1.2.0:
1444
- resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
1445
-
1446
- scheduler@0.27.0:
1447
- resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
1448
-
1449
- semver@6.3.1:
1450
- resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
1451
- hasBin: true
1452
-
1453
- source-map-js@1.2.1:
1454
- resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
1455
- engines: {node: '>=0.10.0'}
1456
-
1457
- source-map@0.5.7:
1458
- resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
1459
- engines: {node: '>=0.10.0'}
1460
-
1461
- space-separated-tokens@2.0.2:
1462
- resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==}
1463
-
1464
- stringify-entities@4.0.4:
1465
- resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==}
1466
-
1467
- style-to-js@1.1.21:
1468
- resolution: {integrity: sha512-RjQetxJrrUJLQPHbLku6U/ocGtzyjbJMP9lCNK7Ag0CNh690nSH8woqWH9u16nMjYBAok+i7JO1NP2pOy8IsPQ==}
1469
-
1470
- style-to-object@1.0.14:
1471
- resolution: {integrity: sha512-LIN7rULI0jBscWQYaSswptyderlarFkjQ+t79nzty8tcIAceVomEVlLzH5VP4Cmsv6MtKhs7qaAiwlcp+Mgaxw==}
1472
-
1473
- stylis@4.2.0:
1474
- resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
1475
-
1476
- sucrase@3.35.1:
1477
- resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
1478
- engines: {node: '>=16 || 14 >=14.17'}
1479
- hasBin: true
1480
-
1481
- supports-preserve-symlinks-flag@1.0.0:
1482
- resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
1483
- engines: {node: '>= 0.4'}
1484
-
1485
- tailwindcss@3.4.19:
1486
- resolution: {integrity: sha512-3ofp+LL8E+pK/JuPLPggVAIaEuhvIz4qNcf3nA1Xn2o/7fb7s/TYpHhwGDv1ZU3PkBluUVaF8PyCHcm48cKLWQ==}
1487
- engines: {node: '>=14.0.0'}
1488
- hasBin: true
1489
-
1490
- thenify-all@1.6.0:
1491
- resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
1492
- engines: {node: '>=0.8'}
1493
-
1494
- thenify@3.3.1:
1495
- resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
1496
-
1497
- tiny-invariant@1.3.3:
1498
- resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
1499
-
1500
- tinyglobby@0.2.15:
1501
- resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
1502
- engines: {node: '>=12.0.0'}
1503
-
1504
- to-regex-range@5.0.1:
1505
- resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
1506
- engines: {node: '>=8.0'}
1507
-
1508
- trim-lines@3.0.1:
1509
- resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==}
1510
-
1511
- trough@2.2.0:
1512
- resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==}
1513
-
1514
- ts-interface-checker@0.1.13:
1515
- resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
1516
-
1517
- typescript@5.9.3:
1518
- resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
1519
- engines: {node: '>=14.17'}
1520
- hasBin: true
1521
-
1522
- unified@11.0.5:
1523
- resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
1524
-
1525
- unist-util-is@6.0.1:
1526
- resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==}
1527
-
1528
- unist-util-position@5.0.0:
1529
- resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==}
1530
-
1531
- unist-util-stringify-position@4.0.0:
1532
- resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
1533
-
1534
- unist-util-visit-parents@6.0.2:
1535
- resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
1536
-
1537
- unist-util-visit@5.0.0:
1538
- resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
1539
-
1540
- update-browserslist-db@1.2.3:
1541
- resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
1542
- hasBin: true
1543
- peerDependencies:
1544
- browserslist: '>= 4.21.0'
1545
-
1546
- use-sync-external-store@1.6.0:
1547
- resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
1548
- peerDependencies:
1549
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1550
-
1551
- util-deprecate@1.0.2:
1552
- resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
1553
-
1554
- vfile-message@4.0.3:
1555
- resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==}
1556
-
1557
- vfile@6.0.3:
1558
- resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==}
1559
-
1560
- victory-vendor@37.3.6:
1561
- resolution: {integrity: sha512-SbPDPdDBYp+5MJHhBCAyI7wKM3d5ivekigc2Dk2s7pgbZ9wIgIBYGVw4zGHBml/qTFbexrofXW6Gu4noGxrOwQ==}
1562
-
1563
- vite@6.4.1:
1564
- resolution: {integrity: sha512-+Oxm7q9hDoLMyJOYfUYBuHQo+dkAloi33apOPP56pzj+vsdJDzr+j1NISE5pyaAuKL4A3UD34qd0lx5+kfKp2g==}
1565
- engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
1566
- hasBin: true
1567
- peerDependencies:
1568
- '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
1569
- jiti: '>=1.21.0'
1570
- less: '*'
1571
- lightningcss: ^1.21.0
1572
- sass: '*'
1573
- sass-embedded: '*'
1574
- stylus: '*'
1575
- sugarss: '*'
1576
- terser: ^5.16.0
1577
- tsx: ^4.8.1
1578
- yaml: ^2.4.2
1579
- peerDependenciesMeta:
1580
- '@types/node':
1581
- optional: true
1582
- jiti:
1583
- optional: true
1584
- less:
1585
- optional: true
1586
- lightningcss:
1587
- optional: true
1588
- sass:
1589
- optional: true
1590
- sass-embedded:
1591
- optional: true
1592
- stylus:
1593
- optional: true
1594
- sugarss:
1595
- optional: true
1596
- terser:
1597
- optional: true
1598
- tsx:
1599
- optional: true
1600
- yaml:
1601
- optional: true
1602
-
1603
- yallist@3.1.1:
1604
- resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
1605
-
1606
- yaml@1.10.2:
1607
- resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
1608
- engines: {node: '>= 6'}
1609
-
1610
- zwitch@2.0.4:
1611
- resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==}
1612
-
1613
- snapshots:
1614
-
1615
- '@alloc/quick-lru@5.2.0': {}
1616
-
1617
- '@babel/code-frame@7.27.1':
1618
- dependencies:
1619
- '@babel/helper-validator-identifier': 7.28.5
1620
- js-tokens: 4.0.0
1621
- picocolors: 1.1.1
1622
-
1623
- '@babel/compat-data@7.28.5': {}
1624
-
1625
- '@babel/core@7.28.5':
1626
- dependencies:
1627
- '@babel/code-frame': 7.27.1
1628
- '@babel/generator': 7.28.5
1629
- '@babel/helper-compilation-targets': 7.27.2
1630
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.5)
1631
- '@babel/helpers': 7.28.4
1632
- '@babel/parser': 7.28.5
1633
- '@babel/template': 7.27.2
1634
- '@babel/traverse': 7.28.5
1635
- '@babel/types': 7.28.5
1636
- '@jridgewell/remapping': 2.3.5
1637
- convert-source-map: 2.0.0
1638
- debug: 4.4.3
1639
- gensync: 1.0.0-beta.2
1640
- json5: 2.2.3
1641
- semver: 6.3.1
1642
- transitivePeerDependencies:
1643
- - supports-color
1644
-
1645
- '@babel/generator@7.28.5':
1646
- dependencies:
1647
- '@babel/parser': 7.28.5
1648
- '@babel/types': 7.28.5
1649
- '@jridgewell/gen-mapping': 0.3.13
1650
- '@jridgewell/trace-mapping': 0.3.31
1651
- jsesc: 3.1.0
1652
-
1653
- '@babel/helper-compilation-targets@7.27.2':
1654
- dependencies:
1655
- '@babel/compat-data': 7.28.5
1656
- '@babel/helper-validator-option': 7.27.1
1657
- browserslist: 4.28.1
1658
- lru-cache: 5.1.1
1659
- semver: 6.3.1
1660
-
1661
- '@babel/helper-globals@7.28.0': {}
1662
-
1663
- '@babel/helper-module-imports@7.27.1':
1664
- dependencies:
1665
- '@babel/traverse': 7.28.5
1666
- '@babel/types': 7.28.5
1667
- transitivePeerDependencies:
1668
- - supports-color
1669
-
1670
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
1671
- dependencies:
1672
- '@babel/core': 7.28.5
1673
- '@babel/helper-module-imports': 7.27.1
1674
- '@babel/helper-validator-identifier': 7.28.5
1675
- '@babel/traverse': 7.28.5
1676
- transitivePeerDependencies:
1677
- - supports-color
1678
-
1679
- '@babel/helper-plugin-utils@7.27.1': {}
1680
-
1681
- '@babel/helper-string-parser@7.27.1': {}
1682
-
1683
- '@babel/helper-validator-identifier@7.28.5': {}
1684
-
1685
- '@babel/helper-validator-option@7.27.1': {}
1686
-
1687
- '@babel/helpers@7.28.4':
1688
- dependencies:
1689
- '@babel/template': 7.27.2
1690
- '@babel/types': 7.28.5
1691
-
1692
- '@babel/parser@7.28.5':
1693
- dependencies:
1694
- '@babel/types': 7.28.5
1695
-
1696
- '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5)':
1697
- dependencies:
1698
- '@babel/core': 7.28.5
1699
- '@babel/helper-plugin-utils': 7.27.1
1700
-
1701
- '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5)':
1702
- dependencies:
1703
- '@babel/core': 7.28.5
1704
- '@babel/helper-plugin-utils': 7.27.1
1705
-
1706
- '@babel/runtime@7.28.4': {}
1707
-
1708
- '@babel/template@7.27.2':
1709
- dependencies:
1710
- '@babel/code-frame': 7.27.1
1711
- '@babel/parser': 7.28.5
1712
- '@babel/types': 7.28.5
1713
-
1714
- '@babel/traverse@7.28.5':
1715
- dependencies:
1716
- '@babel/code-frame': 7.27.1
1717
- '@babel/generator': 7.28.5
1718
- '@babel/helper-globals': 7.28.0
1719
- '@babel/parser': 7.28.5
1720
- '@babel/template': 7.27.2
1721
- '@babel/types': 7.28.5
1722
- debug: 4.4.3
1723
- transitivePeerDependencies:
1724
- - supports-color
1725
-
1726
- '@babel/types@7.28.5':
1727
- dependencies:
1728
- '@babel/helper-string-parser': 7.27.1
1729
- '@babel/helper-validator-identifier': 7.28.5
1730
-
1731
- '@emotion/babel-plugin@11.13.5':
1732
- dependencies:
1733
- '@babel/helper-module-imports': 7.27.1
1734
- '@babel/runtime': 7.28.4
1735
- '@emotion/hash': 0.9.2
1736
- '@emotion/memoize': 0.9.0
1737
- '@emotion/serialize': 1.3.3
1738
- babel-plugin-macros: 3.1.0
1739
- convert-source-map: 1.9.0
1740
- escape-string-regexp: 4.0.0
1741
- find-root: 1.1.0
1742
- source-map: 0.5.7
1743
- stylis: 4.2.0
1744
- transitivePeerDependencies:
1745
- - supports-color
1746
-
1747
- '@emotion/cache@11.14.0':
1748
- dependencies:
1749
- '@emotion/memoize': 0.9.0
1750
- '@emotion/sheet': 1.4.0
1751
- '@emotion/utils': 1.4.2
1752
- '@emotion/weak-memoize': 0.4.0
1753
- stylis: 4.2.0
1754
-
1755
- '@emotion/hash@0.9.2': {}
1756
-
1757
- '@emotion/is-prop-valid@1.4.0':
1758
- dependencies:
1759
- '@emotion/memoize': 0.9.0
1760
-
1761
- '@emotion/memoize@0.9.0': {}
1762
-
1763
- '@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3)':
1764
- dependencies:
1765
- '@babel/runtime': 7.28.4
1766
- '@emotion/babel-plugin': 11.13.5
1767
- '@emotion/cache': 11.14.0
1768
- '@emotion/serialize': 1.3.3
1769
- '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.2.3)
1770
- '@emotion/utils': 1.4.2
1771
- '@emotion/weak-memoize': 0.4.0
1772
- hoist-non-react-statics: 3.3.2
1773
- react: 19.2.3
1774
- optionalDependencies:
1775
- '@types/react': 19.2.7
1776
- transitivePeerDependencies:
1777
- - supports-color
1778
-
1779
- '@emotion/serialize@1.3.3':
1780
- dependencies:
1781
- '@emotion/hash': 0.9.2
1782
- '@emotion/memoize': 0.9.0
1783
- '@emotion/unitless': 0.10.0
1784
- '@emotion/utils': 1.4.2
1785
- csstype: 3.2.3
1786
-
1787
- '@emotion/sheet@1.4.0': {}
1788
-
1789
- '@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3)':
1790
- dependencies:
1791
- '@babel/runtime': 7.28.4
1792
- '@emotion/babel-plugin': 11.13.5
1793
- '@emotion/is-prop-valid': 1.4.0
1794
- '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.3)
1795
- '@emotion/serialize': 1.3.3
1796
- '@emotion/use-insertion-effect-with-fallbacks': 1.2.0(react@19.2.3)
1797
- '@emotion/utils': 1.4.2
1798
- react: 19.2.3
1799
- optionalDependencies:
1800
- '@types/react': 19.2.7
1801
- transitivePeerDependencies:
1802
- - supports-color
1803
-
1804
- '@emotion/unitless@0.10.0': {}
1805
-
1806
- '@emotion/use-insertion-effect-with-fallbacks@1.2.0(react@19.2.3)':
1807
- dependencies:
1808
- react: 19.2.3
1809
-
1810
- '@emotion/utils@1.4.2': {}
1811
-
1812
- '@emotion/weak-memoize@0.4.0': {}
1813
-
1814
- '@esbuild/aix-ppc64@0.25.12':
1815
- optional: true
1816
-
1817
- '@esbuild/android-arm64@0.25.12':
1818
- optional: true
1819
-
1820
- '@esbuild/android-arm@0.25.12':
1821
- optional: true
1822
-
1823
- '@esbuild/android-x64@0.25.12':
1824
- optional: true
1825
-
1826
- '@esbuild/darwin-arm64@0.25.12':
1827
- optional: true
1828
-
1829
- '@esbuild/darwin-x64@0.25.12':
1830
- optional: true
1831
-
1832
- '@esbuild/freebsd-arm64@0.25.12':
1833
- optional: true
1834
-
1835
- '@esbuild/freebsd-x64@0.25.12':
1836
- optional: true
1837
-
1838
- '@esbuild/linux-arm64@0.25.12':
1839
- optional: true
1840
-
1841
- '@esbuild/linux-arm@0.25.12':
1842
- optional: true
1843
-
1844
- '@esbuild/linux-ia32@0.25.12':
1845
- optional: true
1846
-
1847
- '@esbuild/linux-loong64@0.25.12':
1848
- optional: true
1849
-
1850
- '@esbuild/linux-mips64el@0.25.12':
1851
- optional: true
1852
-
1853
- '@esbuild/linux-ppc64@0.25.12':
1854
- optional: true
1855
-
1856
- '@esbuild/linux-riscv64@0.25.12':
1857
- optional: true
1858
-
1859
- '@esbuild/linux-s390x@0.25.12':
1860
- optional: true
1861
-
1862
- '@esbuild/linux-x64@0.25.12':
1863
- optional: true
1864
-
1865
- '@esbuild/netbsd-arm64@0.25.12':
1866
- optional: true
1867
-
1868
- '@esbuild/netbsd-x64@0.25.12':
1869
- optional: true
1870
-
1871
- '@esbuild/openbsd-arm64@0.25.12':
1872
- optional: true
1873
-
1874
- '@esbuild/openbsd-x64@0.25.12':
1875
- optional: true
1876
-
1877
- '@esbuild/openharmony-arm64@0.25.12':
1878
- optional: true
1879
-
1880
- '@esbuild/sunos-x64@0.25.12':
1881
- optional: true
1882
-
1883
- '@esbuild/win32-arm64@0.25.12':
1884
- optional: true
1885
-
1886
- '@esbuild/win32-ia32@0.25.12':
1887
- optional: true
1888
-
1889
- '@esbuild/win32-x64@0.25.12':
1890
- optional: true
1891
-
1892
- '@floating-ui/core@1.7.3':
1893
- dependencies:
1894
- '@floating-ui/utils': 0.2.10
1895
-
1896
- '@floating-ui/dom@1.7.4':
1897
- dependencies:
1898
- '@floating-ui/core': 1.7.3
1899
- '@floating-ui/utils': 0.2.10
1900
-
1901
- '@floating-ui/react-dom@2.1.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
1902
- dependencies:
1903
- '@floating-ui/dom': 1.7.4
1904
- react: 19.2.3
1905
- react-dom: 19.2.3(react@19.2.3)
1906
-
1907
- '@floating-ui/utils@0.2.10': {}
1908
-
1909
- '@jridgewell/gen-mapping@0.3.13':
1910
- dependencies:
1911
- '@jridgewell/sourcemap-codec': 1.5.5
1912
- '@jridgewell/trace-mapping': 0.3.31
1913
-
1914
- '@jridgewell/remapping@2.3.5':
1915
- dependencies:
1916
- '@jridgewell/gen-mapping': 0.3.13
1917
- '@jridgewell/trace-mapping': 0.3.31
1918
-
1919
- '@jridgewell/resolve-uri@3.1.2': {}
1920
-
1921
- '@jridgewell/sourcemap-codec@1.5.5': {}
1922
-
1923
- '@jridgewell/trace-mapping@0.3.31':
1924
- dependencies:
1925
- '@jridgewell/resolve-uri': 3.1.2
1926
- '@jridgewell/sourcemap-codec': 1.5.5
1927
-
1928
- '@mui/base@5.0.0-beta.40-1(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
1929
- dependencies:
1930
- '@babel/runtime': 7.28.4
1931
- '@floating-ui/react-dom': 2.1.6(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
1932
- '@mui/types': 7.2.24(@types/react@19.2.7)
1933
- '@mui/utils': 5.17.1(@types/react@19.2.7)(react@19.2.3)
1934
- '@popperjs/core': 2.11.8
1935
- clsx: 2.1.1
1936
- prop-types: 15.8.1
1937
- react: 19.2.3
1938
- react-dom: 19.2.3(react@19.2.3)
1939
- optionalDependencies:
1940
- '@types/react': 19.2.7
1941
-
1942
- '@mui/core-downloads-tracker@5.18.0': {}
1943
-
1944
- '@mui/joy@5.0.0-beta.52(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)':
1945
- dependencies:
1946
- '@babel/runtime': 7.28.4
1947
- '@mui/base': 5.0.0-beta.40-1(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react@19.2.3)
1948
- '@mui/core-downloads-tracker': 5.18.0
1949
- '@mui/system': 5.18.0(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3)
1950
- '@mui/types': 7.2.24(@types/react@19.2.7)
1951
- '@mui/utils': 5.17.1(@types/react@19.2.7)(react@19.2.3)
1952
- clsx: 2.1.1
1953
- prop-types: 15.8.1
1954
- react: 19.2.3
1955
- react-dom: 19.2.3(react@19.2.3)
1956
- optionalDependencies:
1957
- '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.3)
1958
- '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3)
1959
- '@types/react': 19.2.7
1960
-
1961
- '@mui/private-theming@5.17.1(@types/react@19.2.7)(react@19.2.3)':
1962
- dependencies:
1963
- '@babel/runtime': 7.28.4
1964
- '@mui/utils': 5.17.1(@types/react@19.2.7)(react@19.2.3)
1965
- prop-types: 15.8.1
1966
- react: 19.2.3
1967
- optionalDependencies:
1968
- '@types/react': 19.2.7
1969
-
1970
- '@mui/styled-engine@5.18.0(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3))(react@19.2.3)':
1971
- dependencies:
1972
- '@babel/runtime': 7.28.4
1973
- '@emotion/cache': 11.14.0
1974
- '@emotion/serialize': 1.3.3
1975
- csstype: 3.2.3
1976
- prop-types: 15.8.1
1977
- react: 19.2.3
1978
- optionalDependencies:
1979
- '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.3)
1980
- '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3)
1981
-
1982
- '@mui/system@5.18.0(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3)':
1983
- dependencies:
1984
- '@babel/runtime': 7.28.4
1985
- '@mui/private-theming': 5.17.1(@types/react@19.2.7)(react@19.2.3)
1986
- '@mui/styled-engine': 5.18.0(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@emotion/styled@11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3))(react@19.2.3)
1987
- '@mui/types': 7.2.24(@types/react@19.2.7)
1988
- '@mui/utils': 5.17.1(@types/react@19.2.7)(react@19.2.3)
1989
- clsx: 2.1.1
1990
- csstype: 3.2.3
1991
- prop-types: 15.8.1
1992
- react: 19.2.3
1993
- optionalDependencies:
1994
- '@emotion/react': 11.14.0(@types/react@19.2.7)(react@19.2.3)
1995
- '@emotion/styled': 11.14.1(@emotion/react@11.14.0(@types/react@19.2.7)(react@19.2.3))(@types/react@19.2.7)(react@19.2.3)
1996
- '@types/react': 19.2.7
1997
-
1998
- '@mui/types@7.2.24(@types/react@19.2.7)':
1999
- optionalDependencies:
2000
- '@types/react': 19.2.7
2001
-
2002
- '@mui/utils@5.17.1(@types/react@19.2.7)(react@19.2.3)':
2003
- dependencies:
2004
- '@babel/runtime': 7.28.4
2005
- '@mui/types': 7.2.24(@types/react@19.2.7)
2006
- '@types/prop-types': 15.7.15
2007
- clsx: 2.1.1
2008
- prop-types: 15.8.1
2009
- react: 19.2.3
2010
- react-is: 19.2.3
2011
- optionalDependencies:
2012
- '@types/react': 19.2.7
2013
-
2014
- '@nodelib/fs.scandir@2.1.5':
2015
- dependencies:
2016
- '@nodelib/fs.stat': 2.0.5
2017
- run-parallel: 1.2.0
2018
-
2019
- '@nodelib/fs.stat@2.0.5': {}
2020
-
2021
- '@nodelib/fs.walk@1.2.8':
2022
- dependencies:
2023
- '@nodelib/fs.scandir': 2.1.5
2024
- fastq: 1.19.1
2025
-
2026
- '@popperjs/core@2.11.8': {}
2027
-
2028
- '@reduxjs/toolkit@2.11.2(react-redux@9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1))(react@19.2.3)':
2029
- dependencies:
2030
- '@standard-schema/spec': 1.1.0
2031
- '@standard-schema/utils': 0.3.0
2032
- immer: 11.1.3
2033
- redux: 5.0.1
2034
- redux-thunk: 3.1.0(redux@5.0.1)
2035
- reselect: 5.1.1
2036
- optionalDependencies:
2037
- react: 19.2.3
2038
- react-redux: 9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1)
2039
-
2040
- '@rolldown/pluginutils@1.0.0-beta.27': {}
2041
-
2042
- '@rollup/rollup-android-arm-eabi@4.53.5':
2043
- optional: true
2044
-
2045
- '@rollup/rollup-android-arm64@4.53.5':
2046
- optional: true
2047
-
2048
- '@rollup/rollup-darwin-arm64@4.53.5':
2049
- optional: true
2050
-
2051
- '@rollup/rollup-darwin-x64@4.53.5':
2052
- optional: true
2053
-
2054
- '@rollup/rollup-freebsd-arm64@4.53.5':
2055
- optional: true
2056
-
2057
- '@rollup/rollup-freebsd-x64@4.53.5':
2058
- optional: true
2059
-
2060
- '@rollup/rollup-linux-arm-gnueabihf@4.53.5':
2061
- optional: true
2062
-
2063
- '@rollup/rollup-linux-arm-musleabihf@4.53.5':
2064
- optional: true
2065
-
2066
- '@rollup/rollup-linux-arm64-gnu@4.53.5':
2067
- optional: true
2068
-
2069
- '@rollup/rollup-linux-arm64-musl@4.53.5':
2070
- optional: true
2071
-
2072
- '@rollup/rollup-linux-loong64-gnu@4.53.5':
2073
- optional: true
2074
-
2075
- '@rollup/rollup-linux-ppc64-gnu@4.53.5':
2076
- optional: true
2077
-
2078
- '@rollup/rollup-linux-riscv64-gnu@4.53.5':
2079
- optional: true
2080
-
2081
- '@rollup/rollup-linux-riscv64-musl@4.53.5':
2082
- optional: true
2083
-
2084
- '@rollup/rollup-linux-s390x-gnu@4.53.5':
2085
- optional: true
2086
-
2087
- '@rollup/rollup-linux-x64-gnu@4.53.5':
2088
- optional: true
2089
-
2090
- '@rollup/rollup-linux-x64-musl@4.53.5':
2091
- optional: true
2092
-
2093
- '@rollup/rollup-openharmony-arm64@4.53.5':
2094
- optional: true
2095
-
2096
- '@rollup/rollup-win32-arm64-msvc@4.53.5':
2097
- optional: true
2098
-
2099
- '@rollup/rollup-win32-ia32-msvc@4.53.5':
2100
- optional: true
2101
-
2102
- '@rollup/rollup-win32-x64-gnu@4.53.5':
2103
- optional: true
2104
-
2105
- '@rollup/rollup-win32-x64-msvc@4.53.5':
2106
- optional: true
2107
-
2108
- '@standard-schema/spec@1.1.0': {}
2109
-
2110
- '@standard-schema/utils@0.3.0': {}
2111
-
2112
- '@tanstack/query-core@5.90.12': {}
2113
-
2114
- '@tanstack/react-query@5.90.12(react@19.2.3)':
2115
- dependencies:
2116
- '@tanstack/query-core': 5.90.12
2117
- react: 19.2.3
2118
-
2119
- '@types/babel__core@7.20.5':
2120
- dependencies:
2121
- '@babel/parser': 7.28.5
2122
- '@babel/types': 7.28.5
2123
- '@types/babel__generator': 7.27.0
2124
- '@types/babel__template': 7.4.4
2125
- '@types/babel__traverse': 7.28.0
2126
-
2127
- '@types/babel__generator@7.27.0':
2128
- dependencies:
2129
- '@babel/types': 7.28.5
2130
-
2131
- '@types/babel__template@7.4.4':
2132
- dependencies:
2133
- '@babel/parser': 7.28.5
2134
- '@babel/types': 7.28.5
2135
-
2136
- '@types/babel__traverse@7.28.0':
2137
- dependencies:
2138
- '@babel/types': 7.28.5
2139
-
2140
- '@types/d3-array@3.2.2': {}
2141
-
2142
- '@types/d3-color@3.1.3': {}
2143
-
2144
- '@types/d3-ease@3.0.2': {}
2145
-
2146
- '@types/d3-interpolate@3.0.4':
2147
- dependencies:
2148
- '@types/d3-color': 3.1.3
2149
-
2150
- '@types/d3-path@3.1.1': {}
2151
-
2152
- '@types/d3-scale@4.0.9':
2153
- dependencies:
2154
- '@types/d3-time': 3.0.4
2155
-
2156
- '@types/d3-shape@3.1.8':
2157
- dependencies:
2158
- '@types/d3-path': 3.1.1
2159
-
2160
- '@types/d3-time@3.0.4': {}
2161
-
2162
- '@types/d3-timer@3.0.2': {}
2163
-
2164
- '@types/debug@4.1.12':
2165
- dependencies:
2166
- '@types/ms': 2.1.0
2167
-
2168
- '@types/estree-jsx@1.0.5':
2169
- dependencies:
2170
- '@types/estree': 1.0.8
2171
-
2172
- '@types/estree@1.0.8': {}
2173
-
2174
- '@types/hast@3.0.4':
2175
- dependencies:
2176
- '@types/unist': 3.0.3
2177
-
2178
- '@types/mdast@4.0.4':
2179
- dependencies:
2180
- '@types/unist': 3.0.3
2181
-
2182
- '@types/ms@2.1.0': {}
2183
-
2184
- '@types/parse-json@4.0.2': {}
2185
-
2186
- '@types/prop-types@15.7.15': {}
2187
-
2188
- '@types/react-dom@19.2.3(@types/react@19.2.7)':
2189
- dependencies:
2190
- '@types/react': 19.2.7
2191
-
2192
- '@types/react@19.2.7':
2193
- dependencies:
2194
- csstype: 3.2.3
2195
-
2196
- '@types/unist@2.0.11': {}
2197
-
2198
- '@types/unist@3.0.3': {}
2199
-
2200
- '@types/use-sync-external-store@0.0.6': {}
2201
-
2202
- '@ungap/structured-clone@1.3.0': {}
2203
-
2204
- '@vitejs/plugin-react@4.7.0(vite@6.4.1(jiti@1.21.7))':
2205
- dependencies:
2206
- '@babel/core': 7.28.5
2207
- '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
2208
- '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5)
2209
- '@rolldown/pluginutils': 1.0.0-beta.27
2210
- '@types/babel__core': 7.20.5
2211
- react-refresh: 0.17.0
2212
- vite: 6.4.1(jiti@1.21.7)
2213
- transitivePeerDependencies:
2214
- - supports-color
2215
-
2216
- any-promise@1.3.0: {}
2217
-
2218
- anymatch@3.1.3:
2219
- dependencies:
2220
- normalize-path: 3.0.0
2221
- picomatch: 2.3.1
2222
-
2223
- arg@5.0.2: {}
2224
-
2225
- autoprefixer@10.4.23(postcss@8.5.6):
2226
- dependencies:
2227
- browserslist: 4.28.1
2228
- caniuse-lite: 1.0.30001760
2229
- fraction.js: 5.3.4
2230
- picocolors: 1.1.1
2231
- postcss: 8.5.6
2232
- postcss-value-parser: 4.2.0
2233
-
2234
- babel-plugin-macros@3.1.0:
2235
- dependencies:
2236
- '@babel/runtime': 7.28.4
2237
- cosmiconfig: 7.1.0
2238
- resolve: 1.22.11
2239
-
2240
- bail@2.0.2: {}
2241
-
2242
- baseline-browser-mapping@2.9.9: {}
2243
-
2244
- binary-extensions@2.3.0: {}
2245
-
2246
- braces@3.0.3:
2247
- dependencies:
2248
- fill-range: 7.1.1
2249
-
2250
- browserslist@4.28.1:
2251
- dependencies:
2252
- baseline-browser-mapping: 2.9.9
2253
- caniuse-lite: 1.0.30001760
2254
- electron-to-chromium: 1.5.267
2255
- node-releases: 2.0.27
2256
- update-browserslist-db: 1.2.3(browserslist@4.28.1)
2257
-
2258
- callsites@3.1.0: {}
2259
-
2260
- camelcase-css@2.0.1: {}
2261
-
2262
- caniuse-lite@1.0.30001760: {}
2263
-
2264
- ccount@2.0.1: {}
2265
-
2266
- character-entities-html4@2.1.0: {}
2267
-
2268
- character-entities-legacy@3.0.0: {}
2269
-
2270
- character-entities@2.0.2: {}
2271
-
2272
- character-reference-invalid@2.0.1: {}
2273
-
2274
- chokidar@3.6.0:
2275
- dependencies:
2276
- anymatch: 3.1.3
2277
- braces: 3.0.3
2278
- glob-parent: 5.1.2
2279
- is-binary-path: 2.1.0
2280
- is-glob: 4.0.3
2281
- normalize-path: 3.0.0
2282
- readdirp: 3.6.0
2283
- optionalDependencies:
2284
- fsevents: 2.3.3
2285
-
2286
- clsx@2.1.1: {}
2287
-
2288
- comma-separated-tokens@2.0.3: {}
2289
-
2290
- commander@4.1.1: {}
2291
-
2292
- convert-source-map@1.9.0: {}
2293
-
2294
- convert-source-map@2.0.0: {}
2295
-
2296
- cosmiconfig@7.1.0:
2297
- dependencies:
2298
- '@types/parse-json': 4.0.2
2299
- import-fresh: 3.3.1
2300
- parse-json: 5.2.0
2301
- path-type: 4.0.0
2302
- yaml: 1.10.2
2303
-
2304
- cssesc@3.0.0: {}
2305
-
2306
- csstype@3.2.3: {}
2307
-
2308
- d3-array@3.2.4:
2309
- dependencies:
2310
- internmap: 2.0.3
2311
-
2312
- d3-color@3.1.0: {}
2313
-
2314
- d3-ease@3.0.1: {}
2315
-
2316
- d3-format@3.1.2: {}
2317
-
2318
- d3-interpolate@3.0.1:
2319
- dependencies:
2320
- d3-color: 3.1.0
2321
-
2322
- d3-path@3.1.0: {}
2323
-
2324
- d3-scale@4.0.2:
2325
- dependencies:
2326
- d3-array: 3.2.4
2327
- d3-format: 3.1.2
2328
- d3-interpolate: 3.0.1
2329
- d3-time: 3.1.0
2330
- d3-time-format: 4.1.0
2331
-
2332
- d3-shape@3.2.0:
2333
- dependencies:
2334
- d3-path: 3.1.0
2335
-
2336
- d3-time-format@4.1.0:
2337
- dependencies:
2338
- d3-time: 3.1.0
2339
-
2340
- d3-time@3.1.0:
2341
- dependencies:
2342
- d3-array: 3.2.4
2343
-
2344
- d3-timer@3.0.1: {}
2345
-
2346
- debug@4.4.3:
2347
- dependencies:
2348
- ms: 2.1.3
2349
-
2350
- decimal.js-light@2.5.1: {}
2351
-
2352
- decode-named-character-reference@1.2.0:
2353
- dependencies:
2354
- character-entities: 2.0.2
2355
-
2356
- dequal@2.0.3: {}
2357
-
2358
- devlop@1.1.0:
2359
- dependencies:
2360
- dequal: 2.0.3
2361
-
2362
- didyoumean@1.2.2: {}
2363
-
2364
- dlv@1.1.3: {}
2365
-
2366
- electron-to-chromium@1.5.267: {}
2367
-
2368
- error-ex@1.3.4:
2369
- dependencies:
2370
- is-arrayish: 0.2.1
2371
-
2372
- es-toolkit@1.43.0: {}
2373
-
2374
- esbuild@0.25.12:
2375
- optionalDependencies:
2376
- '@esbuild/aix-ppc64': 0.25.12
2377
- '@esbuild/android-arm': 0.25.12
2378
- '@esbuild/android-arm64': 0.25.12
2379
- '@esbuild/android-x64': 0.25.12
2380
- '@esbuild/darwin-arm64': 0.25.12
2381
- '@esbuild/darwin-x64': 0.25.12
2382
- '@esbuild/freebsd-arm64': 0.25.12
2383
- '@esbuild/freebsd-x64': 0.25.12
2384
- '@esbuild/linux-arm': 0.25.12
2385
- '@esbuild/linux-arm64': 0.25.12
2386
- '@esbuild/linux-ia32': 0.25.12
2387
- '@esbuild/linux-loong64': 0.25.12
2388
- '@esbuild/linux-mips64el': 0.25.12
2389
- '@esbuild/linux-ppc64': 0.25.12
2390
- '@esbuild/linux-riscv64': 0.25.12
2391
- '@esbuild/linux-s390x': 0.25.12
2392
- '@esbuild/linux-x64': 0.25.12
2393
- '@esbuild/netbsd-arm64': 0.25.12
2394
- '@esbuild/netbsd-x64': 0.25.12
2395
- '@esbuild/openbsd-arm64': 0.25.12
2396
- '@esbuild/openbsd-x64': 0.25.12
2397
- '@esbuild/openharmony-arm64': 0.25.12
2398
- '@esbuild/sunos-x64': 0.25.12
2399
- '@esbuild/win32-arm64': 0.25.12
2400
- '@esbuild/win32-ia32': 0.25.12
2401
- '@esbuild/win32-x64': 0.25.12
2402
-
2403
- escalade@3.2.0: {}
2404
-
2405
- escape-string-regexp@4.0.0: {}
2406
-
2407
- escape-string-regexp@5.0.0: {}
2408
-
2409
- estree-util-is-identifier-name@3.0.0: {}
2410
-
2411
- eventemitter3@5.0.1: {}
2412
-
2413
- extend@3.0.2: {}
2414
-
2415
- fast-glob@3.3.3:
2416
- dependencies:
2417
- '@nodelib/fs.stat': 2.0.5
2418
- '@nodelib/fs.walk': 1.2.8
2419
- glob-parent: 5.1.2
2420
- merge2: 1.4.1
2421
- micromatch: 4.0.8
2422
-
2423
- fastq@1.19.1:
2424
- dependencies:
2425
- reusify: 1.1.0
2426
-
2427
- fdir@6.5.0(picomatch@4.0.3):
2428
- optionalDependencies:
2429
- picomatch: 4.0.3
2430
-
2431
- fill-range@7.1.1:
2432
- dependencies:
2433
- to-regex-range: 5.0.1
2434
-
2435
- find-root@1.1.0: {}
2436
-
2437
- fraction.js@5.3.4: {}
2438
-
2439
- fsevents@2.3.3:
2440
- optional: true
2441
-
2442
- function-bind@1.1.2: {}
2443
-
2444
- gensync@1.0.0-beta.2: {}
2445
-
2446
- glob-parent@5.1.2:
2447
- dependencies:
2448
- is-glob: 4.0.3
2449
-
2450
- glob-parent@6.0.2:
2451
- dependencies:
2452
- is-glob: 4.0.3
2453
-
2454
- hasown@2.0.2:
2455
- dependencies:
2456
- function-bind: 1.1.2
2457
-
2458
- hast-util-to-jsx-runtime@2.3.6:
2459
- dependencies:
2460
- '@types/estree': 1.0.8
2461
- '@types/hast': 3.0.4
2462
- '@types/unist': 3.0.3
2463
- comma-separated-tokens: 2.0.3
2464
- devlop: 1.1.0
2465
- estree-util-is-identifier-name: 3.0.0
2466
- hast-util-whitespace: 3.0.0
2467
- mdast-util-mdx-expression: 2.0.1
2468
- mdast-util-mdx-jsx: 3.2.0
2469
- mdast-util-mdxjs-esm: 2.0.1
2470
- property-information: 7.1.0
2471
- space-separated-tokens: 2.0.2
2472
- style-to-js: 1.1.21
2473
- unist-util-position: 5.0.0
2474
- vfile-message: 4.0.3
2475
- transitivePeerDependencies:
2476
- - supports-color
2477
-
2478
- hast-util-whitespace@3.0.0:
2479
- dependencies:
2480
- '@types/hast': 3.0.4
2481
-
2482
- hoist-non-react-statics@3.3.2:
2483
- dependencies:
2484
- react-is: 16.13.1
2485
-
2486
- html-url-attributes@3.0.1: {}
2487
-
2488
- immer@10.2.0: {}
2489
-
2490
- immer@11.1.3: {}
2491
-
2492
- import-fresh@3.3.1:
2493
- dependencies:
2494
- parent-module: 1.0.1
2495
- resolve-from: 4.0.0
2496
-
2497
- inline-style-parser@0.2.7: {}
2498
-
2499
- internmap@2.0.3: {}
2500
-
2501
- is-alphabetical@2.0.1: {}
2502
-
2503
- is-alphanumerical@2.0.1:
2504
- dependencies:
2505
- is-alphabetical: 2.0.1
2506
- is-decimal: 2.0.1
2507
-
2508
- is-arrayish@0.2.1: {}
2509
-
2510
- is-binary-path@2.1.0:
2511
- dependencies:
2512
- binary-extensions: 2.3.0
2513
-
2514
- is-core-module@2.16.1:
2515
- dependencies:
2516
- hasown: 2.0.2
2517
-
2518
- is-decimal@2.0.1: {}
2519
-
2520
- is-extglob@2.1.1: {}
2521
-
2522
- is-glob@4.0.3:
2523
- dependencies:
2524
- is-extglob: 2.1.1
2525
-
2526
- is-hexadecimal@2.0.1: {}
2527
-
2528
- is-number@7.0.0: {}
2529
-
2530
- is-plain-obj@4.1.0: {}
2531
-
2532
- jiti@1.21.7: {}
2533
-
2534
- js-tokens@4.0.0: {}
2535
-
2536
- jsesc@3.1.0: {}
2537
-
2538
- json-parse-even-better-errors@2.3.1: {}
2539
-
2540
- json5@2.2.3: {}
2541
-
2542
- lilconfig@3.1.3: {}
2543
-
2544
- lines-and-columns@1.2.4: {}
2545
-
2546
- longest-streak@3.1.0: {}
2547
-
2548
- loose-envify@1.4.0:
2549
- dependencies:
2550
- js-tokens: 4.0.0
2551
-
2552
- lru-cache@5.1.1:
2553
- dependencies:
2554
- yallist: 3.1.1
2555
-
2556
- markdown-table@3.0.4: {}
2557
-
2558
- mdast-util-find-and-replace@3.0.2:
2559
- dependencies:
2560
- '@types/mdast': 4.0.4
2561
- escape-string-regexp: 5.0.0
2562
- unist-util-is: 6.0.1
2563
- unist-util-visit-parents: 6.0.2
2564
-
2565
- mdast-util-from-markdown@2.0.2:
2566
- dependencies:
2567
- '@types/mdast': 4.0.4
2568
- '@types/unist': 3.0.3
2569
- decode-named-character-reference: 1.2.0
2570
- devlop: 1.1.0
2571
- mdast-util-to-string: 4.0.0
2572
- micromark: 4.0.2
2573
- micromark-util-decode-numeric-character-reference: 2.0.2
2574
- micromark-util-decode-string: 2.0.1
2575
- micromark-util-normalize-identifier: 2.0.1
2576
- micromark-util-symbol: 2.0.1
2577
- micromark-util-types: 2.0.2
2578
- unist-util-stringify-position: 4.0.0
2579
- transitivePeerDependencies:
2580
- - supports-color
2581
-
2582
- mdast-util-gfm-autolink-literal@2.0.1:
2583
- dependencies:
2584
- '@types/mdast': 4.0.4
2585
- ccount: 2.0.1
2586
- devlop: 1.1.0
2587
- mdast-util-find-and-replace: 3.0.2
2588
- micromark-util-character: 2.1.1
2589
-
2590
- mdast-util-gfm-footnote@2.1.0:
2591
- dependencies:
2592
- '@types/mdast': 4.0.4
2593
- devlop: 1.1.0
2594
- mdast-util-from-markdown: 2.0.2
2595
- mdast-util-to-markdown: 2.1.2
2596
- micromark-util-normalize-identifier: 2.0.1
2597
- transitivePeerDependencies:
2598
- - supports-color
2599
-
2600
- mdast-util-gfm-strikethrough@2.0.0:
2601
- dependencies:
2602
- '@types/mdast': 4.0.4
2603
- mdast-util-from-markdown: 2.0.2
2604
- mdast-util-to-markdown: 2.1.2
2605
- transitivePeerDependencies:
2606
- - supports-color
2607
-
2608
- mdast-util-gfm-table@2.0.0:
2609
- dependencies:
2610
- '@types/mdast': 4.0.4
2611
- devlop: 1.1.0
2612
- markdown-table: 3.0.4
2613
- mdast-util-from-markdown: 2.0.2
2614
- mdast-util-to-markdown: 2.1.2
2615
- transitivePeerDependencies:
2616
- - supports-color
2617
-
2618
- mdast-util-gfm-task-list-item@2.0.0:
2619
- dependencies:
2620
- '@types/mdast': 4.0.4
2621
- devlop: 1.1.0
2622
- mdast-util-from-markdown: 2.0.2
2623
- mdast-util-to-markdown: 2.1.2
2624
- transitivePeerDependencies:
2625
- - supports-color
2626
-
2627
- mdast-util-gfm@3.1.0:
2628
- dependencies:
2629
- mdast-util-from-markdown: 2.0.2
2630
- mdast-util-gfm-autolink-literal: 2.0.1
2631
- mdast-util-gfm-footnote: 2.1.0
2632
- mdast-util-gfm-strikethrough: 2.0.0
2633
- mdast-util-gfm-table: 2.0.0
2634
- mdast-util-gfm-task-list-item: 2.0.0
2635
- mdast-util-to-markdown: 2.1.2
2636
- transitivePeerDependencies:
2637
- - supports-color
2638
-
2639
- mdast-util-mdx-expression@2.0.1:
2640
- dependencies:
2641
- '@types/estree-jsx': 1.0.5
2642
- '@types/hast': 3.0.4
2643
- '@types/mdast': 4.0.4
2644
- devlop: 1.1.0
2645
- mdast-util-from-markdown: 2.0.2
2646
- mdast-util-to-markdown: 2.1.2
2647
- transitivePeerDependencies:
2648
- - supports-color
2649
-
2650
- mdast-util-mdx-jsx@3.2.0:
2651
- dependencies:
2652
- '@types/estree-jsx': 1.0.5
2653
- '@types/hast': 3.0.4
2654
- '@types/mdast': 4.0.4
2655
- '@types/unist': 3.0.3
2656
- ccount: 2.0.1
2657
- devlop: 1.1.0
2658
- mdast-util-from-markdown: 2.0.2
2659
- mdast-util-to-markdown: 2.1.2
2660
- parse-entities: 4.0.2
2661
- stringify-entities: 4.0.4
2662
- unist-util-stringify-position: 4.0.0
2663
- vfile-message: 4.0.3
2664
- transitivePeerDependencies:
2665
- - supports-color
2666
-
2667
- mdast-util-mdxjs-esm@2.0.1:
2668
- dependencies:
2669
- '@types/estree-jsx': 1.0.5
2670
- '@types/hast': 3.0.4
2671
- '@types/mdast': 4.0.4
2672
- devlop: 1.1.0
2673
- mdast-util-from-markdown: 2.0.2
2674
- mdast-util-to-markdown: 2.1.2
2675
- transitivePeerDependencies:
2676
- - supports-color
2677
-
2678
- mdast-util-phrasing@4.1.0:
2679
- dependencies:
2680
- '@types/mdast': 4.0.4
2681
- unist-util-is: 6.0.1
2682
-
2683
- mdast-util-to-hast@13.2.1:
2684
- dependencies:
2685
- '@types/hast': 3.0.4
2686
- '@types/mdast': 4.0.4
2687
- '@ungap/structured-clone': 1.3.0
2688
- devlop: 1.1.0
2689
- micromark-util-sanitize-uri: 2.0.1
2690
- trim-lines: 3.0.1
2691
- unist-util-position: 5.0.0
2692
- unist-util-visit: 5.0.0
2693
- vfile: 6.0.3
2694
-
2695
- mdast-util-to-markdown@2.1.2:
2696
- dependencies:
2697
- '@types/mdast': 4.0.4
2698
- '@types/unist': 3.0.3
2699
- longest-streak: 3.1.0
2700
- mdast-util-phrasing: 4.1.0
2701
- mdast-util-to-string: 4.0.0
2702
- micromark-util-classify-character: 2.0.1
2703
- micromark-util-decode-string: 2.0.1
2704
- unist-util-visit: 5.0.0
2705
- zwitch: 2.0.4
2706
-
2707
- mdast-util-to-string@4.0.0:
2708
- dependencies:
2709
- '@types/mdast': 4.0.4
2710
-
2711
- merge2@1.4.1: {}
2712
-
2713
- micromark-core-commonmark@2.0.3:
2714
- dependencies:
2715
- decode-named-character-reference: 1.2.0
2716
- devlop: 1.1.0
2717
- micromark-factory-destination: 2.0.1
2718
- micromark-factory-label: 2.0.1
2719
- micromark-factory-space: 2.0.1
2720
- micromark-factory-title: 2.0.1
2721
- micromark-factory-whitespace: 2.0.1
2722
- micromark-util-character: 2.1.1
2723
- micromark-util-chunked: 2.0.1
2724
- micromark-util-classify-character: 2.0.1
2725
- micromark-util-html-tag-name: 2.0.1
2726
- micromark-util-normalize-identifier: 2.0.1
2727
- micromark-util-resolve-all: 2.0.1
2728
- micromark-util-subtokenize: 2.1.0
2729
- micromark-util-symbol: 2.0.1
2730
- micromark-util-types: 2.0.2
2731
-
2732
- micromark-extension-gfm-autolink-literal@2.1.0:
2733
- dependencies:
2734
- micromark-util-character: 2.1.1
2735
- micromark-util-sanitize-uri: 2.0.1
2736
- micromark-util-symbol: 2.0.1
2737
- micromark-util-types: 2.0.2
2738
-
2739
- micromark-extension-gfm-footnote@2.1.0:
2740
- dependencies:
2741
- devlop: 1.1.0
2742
- micromark-core-commonmark: 2.0.3
2743
- micromark-factory-space: 2.0.1
2744
- micromark-util-character: 2.1.1
2745
- micromark-util-normalize-identifier: 2.0.1
2746
- micromark-util-sanitize-uri: 2.0.1
2747
- micromark-util-symbol: 2.0.1
2748
- micromark-util-types: 2.0.2
2749
-
2750
- micromark-extension-gfm-strikethrough@2.1.0:
2751
- dependencies:
2752
- devlop: 1.1.0
2753
- micromark-util-chunked: 2.0.1
2754
- micromark-util-classify-character: 2.0.1
2755
- micromark-util-resolve-all: 2.0.1
2756
- micromark-util-symbol: 2.0.1
2757
- micromark-util-types: 2.0.2
2758
-
2759
- micromark-extension-gfm-table@2.1.1:
2760
- dependencies:
2761
- devlop: 1.1.0
2762
- micromark-factory-space: 2.0.1
2763
- micromark-util-character: 2.1.1
2764
- micromark-util-symbol: 2.0.1
2765
- micromark-util-types: 2.0.2
2766
-
2767
- micromark-extension-gfm-tagfilter@2.0.0:
2768
- dependencies:
2769
- micromark-util-types: 2.0.2
2770
-
2771
- micromark-extension-gfm-task-list-item@2.1.0:
2772
- dependencies:
2773
- devlop: 1.1.0
2774
- micromark-factory-space: 2.0.1
2775
- micromark-util-character: 2.1.1
2776
- micromark-util-symbol: 2.0.1
2777
- micromark-util-types: 2.0.2
2778
-
2779
- micromark-extension-gfm@3.0.0:
2780
- dependencies:
2781
- micromark-extension-gfm-autolink-literal: 2.1.0
2782
- micromark-extension-gfm-footnote: 2.1.0
2783
- micromark-extension-gfm-strikethrough: 2.1.0
2784
- micromark-extension-gfm-table: 2.1.1
2785
- micromark-extension-gfm-tagfilter: 2.0.0
2786
- micromark-extension-gfm-task-list-item: 2.1.0
2787
- micromark-util-combine-extensions: 2.0.1
2788
- micromark-util-types: 2.0.2
2789
-
2790
- micromark-factory-destination@2.0.1:
2791
- dependencies:
2792
- micromark-util-character: 2.1.1
2793
- micromark-util-symbol: 2.0.1
2794
- micromark-util-types: 2.0.2
2795
-
2796
- micromark-factory-label@2.0.1:
2797
- dependencies:
2798
- devlop: 1.1.0
2799
- micromark-util-character: 2.1.1
2800
- micromark-util-symbol: 2.0.1
2801
- micromark-util-types: 2.0.2
2802
-
2803
- micromark-factory-space@2.0.1:
2804
- dependencies:
2805
- micromark-util-character: 2.1.1
2806
- micromark-util-types: 2.0.2
2807
-
2808
- micromark-factory-title@2.0.1:
2809
- dependencies:
2810
- micromark-factory-space: 2.0.1
2811
- micromark-util-character: 2.1.1
2812
- micromark-util-symbol: 2.0.1
2813
- micromark-util-types: 2.0.2
2814
-
2815
- micromark-factory-whitespace@2.0.1:
2816
- dependencies:
2817
- micromark-factory-space: 2.0.1
2818
- micromark-util-character: 2.1.1
2819
- micromark-util-symbol: 2.0.1
2820
- micromark-util-types: 2.0.2
2821
-
2822
- micromark-util-character@2.1.1:
2823
- dependencies:
2824
- micromark-util-symbol: 2.0.1
2825
- micromark-util-types: 2.0.2
2826
-
2827
- micromark-util-chunked@2.0.1:
2828
- dependencies:
2829
- micromark-util-symbol: 2.0.1
2830
-
2831
- micromark-util-classify-character@2.0.1:
2832
- dependencies:
2833
- micromark-util-character: 2.1.1
2834
- micromark-util-symbol: 2.0.1
2835
- micromark-util-types: 2.0.2
2836
-
2837
- micromark-util-combine-extensions@2.0.1:
2838
- dependencies:
2839
- micromark-util-chunked: 2.0.1
2840
- micromark-util-types: 2.0.2
2841
-
2842
- micromark-util-decode-numeric-character-reference@2.0.2:
2843
- dependencies:
2844
- micromark-util-symbol: 2.0.1
2845
-
2846
- micromark-util-decode-string@2.0.1:
2847
- dependencies:
2848
- decode-named-character-reference: 1.2.0
2849
- micromark-util-character: 2.1.1
2850
- micromark-util-decode-numeric-character-reference: 2.0.2
2851
- micromark-util-symbol: 2.0.1
2852
-
2853
- micromark-util-encode@2.0.1: {}
2854
-
2855
- micromark-util-html-tag-name@2.0.1: {}
2856
-
2857
- micromark-util-normalize-identifier@2.0.1:
2858
- dependencies:
2859
- micromark-util-symbol: 2.0.1
2860
-
2861
- micromark-util-resolve-all@2.0.1:
2862
- dependencies:
2863
- micromark-util-types: 2.0.2
2864
-
2865
- micromark-util-sanitize-uri@2.0.1:
2866
- dependencies:
2867
- micromark-util-character: 2.1.1
2868
- micromark-util-encode: 2.0.1
2869
- micromark-util-symbol: 2.0.1
2870
-
2871
- micromark-util-subtokenize@2.1.0:
2872
- dependencies:
2873
- devlop: 1.1.0
2874
- micromark-util-chunked: 2.0.1
2875
- micromark-util-symbol: 2.0.1
2876
- micromark-util-types: 2.0.2
2877
-
2878
- micromark-util-symbol@2.0.1: {}
2879
-
2880
- micromark-util-types@2.0.2: {}
2881
-
2882
- micromark@4.0.2:
2883
- dependencies:
2884
- '@types/debug': 4.1.12
2885
- debug: 4.4.3
2886
- decode-named-character-reference: 1.2.0
2887
- devlop: 1.1.0
2888
- micromark-core-commonmark: 2.0.3
2889
- micromark-factory-space: 2.0.1
2890
- micromark-util-character: 2.1.1
2891
- micromark-util-chunked: 2.0.1
2892
- micromark-util-combine-extensions: 2.0.1
2893
- micromark-util-decode-numeric-character-reference: 2.0.2
2894
- micromark-util-encode: 2.0.1
2895
- micromark-util-normalize-identifier: 2.0.1
2896
- micromark-util-resolve-all: 2.0.1
2897
- micromark-util-sanitize-uri: 2.0.1
2898
- micromark-util-subtokenize: 2.1.0
2899
- micromark-util-symbol: 2.0.1
2900
- micromark-util-types: 2.0.2
2901
- transitivePeerDependencies:
2902
- - supports-color
2903
-
2904
- micromatch@4.0.8:
2905
- dependencies:
2906
- braces: 3.0.3
2907
- picomatch: 2.3.1
2908
-
2909
- ms@2.1.3: {}
2910
-
2911
- mz@2.7.0:
2912
- dependencies:
2913
- any-promise: 1.3.0
2914
- object-assign: 4.1.1
2915
- thenify-all: 1.6.0
2916
-
2917
- nanoid@3.3.11: {}
2918
-
2919
- node-releases@2.0.27: {}
2920
-
2921
- normalize-path@3.0.0: {}
2922
-
2923
- object-assign@4.1.1: {}
2924
-
2925
- object-hash@3.0.0: {}
2926
-
2927
- parent-module@1.0.1:
2928
- dependencies:
2929
- callsites: 3.1.0
2930
-
2931
- parse-entities@4.0.2:
2932
- dependencies:
2933
- '@types/unist': 2.0.11
2934
- character-entities-legacy: 3.0.0
2935
- character-reference-invalid: 2.0.1
2936
- decode-named-character-reference: 1.2.0
2937
- is-alphanumerical: 2.0.1
2938
- is-decimal: 2.0.1
2939
- is-hexadecimal: 2.0.1
2940
-
2941
- parse-json@5.2.0:
2942
- dependencies:
2943
- '@babel/code-frame': 7.27.1
2944
- error-ex: 1.3.4
2945
- json-parse-even-better-errors: 2.3.1
2946
- lines-and-columns: 1.2.4
2947
-
2948
- path-parse@1.0.7: {}
2949
-
2950
- path-type@4.0.0: {}
2951
-
2952
- picocolors@1.1.1: {}
2953
-
2954
- picomatch@2.3.1: {}
2955
-
2956
- picomatch@4.0.3: {}
2957
-
2958
- pify@2.3.0: {}
2959
-
2960
- pirates@4.0.7: {}
2961
-
2962
- postcss-import@15.1.0(postcss@8.5.6):
2963
- dependencies:
2964
- postcss: 8.5.6
2965
- postcss-value-parser: 4.2.0
2966
- read-cache: 1.0.0
2967
- resolve: 1.22.11
2968
-
2969
- postcss-js@4.1.0(postcss@8.5.6):
2970
- dependencies:
2971
- camelcase-css: 2.0.1
2972
- postcss: 8.5.6
2973
-
2974
- postcss-load-config@6.0.1(jiti@1.21.7)(postcss@8.5.6):
2975
- dependencies:
2976
- lilconfig: 3.1.3
2977
- optionalDependencies:
2978
- jiti: 1.21.7
2979
- postcss: 8.5.6
2980
-
2981
- postcss-nested@6.2.0(postcss@8.5.6):
2982
- dependencies:
2983
- postcss: 8.5.6
2984
- postcss-selector-parser: 6.1.2
2985
-
2986
- postcss-selector-parser@6.1.2:
2987
- dependencies:
2988
- cssesc: 3.0.0
2989
- util-deprecate: 1.0.2
2990
-
2991
- postcss-value-parser@4.2.0: {}
2992
-
2993
- postcss@8.5.6:
2994
- dependencies:
2995
- nanoid: 3.3.11
2996
- picocolors: 1.1.1
2997
- source-map-js: 1.2.1
2998
-
2999
- prop-types@15.8.1:
3000
- dependencies:
3001
- loose-envify: 1.4.0
3002
- object-assign: 4.1.1
3003
- react-is: 16.13.1
3004
-
3005
- property-information@7.1.0: {}
3006
-
3007
- queue-microtask@1.2.3: {}
3008
-
3009
- react-dom@19.2.3(react@19.2.3):
3010
- dependencies:
3011
- react: 19.2.3
3012
- scheduler: 0.27.0
3013
-
3014
- react-is@16.13.1: {}
3015
-
3016
- react-is@19.2.3: {}
3017
-
3018
- react-markdown@10.1.0(@types/react@19.2.7)(react@19.2.3):
3019
- dependencies:
3020
- '@types/hast': 3.0.4
3021
- '@types/mdast': 4.0.4
3022
- '@types/react': 19.2.7
3023
- devlop: 1.1.0
3024
- hast-util-to-jsx-runtime: 2.3.6
3025
- html-url-attributes: 3.0.1
3026
- mdast-util-to-hast: 13.2.1
3027
- react: 19.2.3
3028
- remark-parse: 11.0.0
3029
- remark-rehype: 11.1.2
3030
- unified: 11.0.5
3031
- unist-util-visit: 5.0.0
3032
- vfile: 6.0.3
3033
- transitivePeerDependencies:
3034
- - supports-color
3035
-
3036
- react-redux@9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1):
3037
- dependencies:
3038
- '@types/use-sync-external-store': 0.0.6
3039
- react: 19.2.3
3040
- use-sync-external-store: 1.6.0(react@19.2.3)
3041
- optionalDependencies:
3042
- '@types/react': 19.2.7
3043
- redux: 5.0.1
3044
-
3045
- react-refresh@0.17.0: {}
3046
-
3047
- react@19.2.3: {}
3048
-
3049
- read-cache@1.0.0:
3050
- dependencies:
3051
- pify: 2.3.0
3052
-
3053
- readdirp@3.6.0:
3054
- dependencies:
3055
- picomatch: 2.3.1
3056
-
3057
- recharts@3.6.0(@types/react@19.2.7)(react-dom@19.2.3(react@19.2.3))(react-is@19.2.3)(react@19.2.3)(redux@5.0.1):
3058
- dependencies:
3059
- '@reduxjs/toolkit': 2.11.2(react-redux@9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1))(react@19.2.3)
3060
- clsx: 2.1.1
3061
- decimal.js-light: 2.5.1
3062
- es-toolkit: 1.43.0
3063
- eventemitter3: 5.0.1
3064
- immer: 10.2.0
3065
- react: 19.2.3
3066
- react-dom: 19.2.3(react@19.2.3)
3067
- react-is: 19.2.3
3068
- react-redux: 9.2.0(@types/react@19.2.7)(react@19.2.3)(redux@5.0.1)
3069
- reselect: 5.1.1
3070
- tiny-invariant: 1.3.3
3071
- use-sync-external-store: 1.6.0(react@19.2.3)
3072
- victory-vendor: 37.3.6
3073
- transitivePeerDependencies:
3074
- - '@types/react'
3075
- - redux
3076
-
3077
- redux-thunk@3.1.0(redux@5.0.1):
3078
- dependencies:
3079
- redux: 5.0.1
3080
-
3081
- redux@5.0.1: {}
3082
-
3083
- remark-gfm@4.0.1:
3084
- dependencies:
3085
- '@types/mdast': 4.0.4
3086
- mdast-util-gfm: 3.1.0
3087
- micromark-extension-gfm: 3.0.0
3088
- remark-parse: 11.0.0
3089
- remark-stringify: 11.0.0
3090
- unified: 11.0.5
3091
- transitivePeerDependencies:
3092
- - supports-color
3093
-
3094
- remark-parse@11.0.0:
3095
- dependencies:
3096
- '@types/mdast': 4.0.4
3097
- mdast-util-from-markdown: 2.0.2
3098
- micromark-util-types: 2.0.2
3099
- unified: 11.0.5
3100
- transitivePeerDependencies:
3101
- - supports-color
3102
-
3103
- remark-rehype@11.1.2:
3104
- dependencies:
3105
- '@types/hast': 3.0.4
3106
- '@types/mdast': 4.0.4
3107
- mdast-util-to-hast: 13.2.1
3108
- unified: 11.0.5
3109
- vfile: 6.0.3
3110
-
3111
- remark-stringify@11.0.0:
3112
- dependencies:
3113
- '@types/mdast': 4.0.4
3114
- mdast-util-to-markdown: 2.1.2
3115
- unified: 11.0.5
3116
-
3117
- reselect@5.1.1: {}
3118
-
3119
- resolve-from@4.0.0: {}
3120
-
3121
- resolve@1.22.11:
3122
- dependencies:
3123
- is-core-module: 2.16.1
3124
- path-parse: 1.0.7
3125
- supports-preserve-symlinks-flag: 1.0.0
3126
-
3127
- reusify@1.1.0: {}
3128
-
3129
- rollup@4.53.5:
3130
- dependencies:
3131
- '@types/estree': 1.0.8
3132
- optionalDependencies:
3133
- '@rollup/rollup-android-arm-eabi': 4.53.5
3134
- '@rollup/rollup-android-arm64': 4.53.5
3135
- '@rollup/rollup-darwin-arm64': 4.53.5
3136
- '@rollup/rollup-darwin-x64': 4.53.5
3137
- '@rollup/rollup-freebsd-arm64': 4.53.5
3138
- '@rollup/rollup-freebsd-x64': 4.53.5
3139
- '@rollup/rollup-linux-arm-gnueabihf': 4.53.5
3140
- '@rollup/rollup-linux-arm-musleabihf': 4.53.5
3141
- '@rollup/rollup-linux-arm64-gnu': 4.53.5
3142
- '@rollup/rollup-linux-arm64-musl': 4.53.5
3143
- '@rollup/rollup-linux-loong64-gnu': 4.53.5
3144
- '@rollup/rollup-linux-ppc64-gnu': 4.53.5
3145
- '@rollup/rollup-linux-riscv64-gnu': 4.53.5
3146
- '@rollup/rollup-linux-riscv64-musl': 4.53.5
3147
- '@rollup/rollup-linux-s390x-gnu': 4.53.5
3148
- '@rollup/rollup-linux-x64-gnu': 4.53.5
3149
- '@rollup/rollup-linux-x64-musl': 4.53.5
3150
- '@rollup/rollup-openharmony-arm64': 4.53.5
3151
- '@rollup/rollup-win32-arm64-msvc': 4.53.5
3152
- '@rollup/rollup-win32-ia32-msvc': 4.53.5
3153
- '@rollup/rollup-win32-x64-gnu': 4.53.5
3154
- '@rollup/rollup-win32-x64-msvc': 4.53.5
3155
- fsevents: 2.3.3
3156
-
3157
- run-parallel@1.2.0:
3158
- dependencies:
3159
- queue-microtask: 1.2.3
3160
-
3161
- scheduler@0.27.0: {}
3162
-
3163
- semver@6.3.1: {}
3164
-
3165
- source-map-js@1.2.1: {}
3166
-
3167
- source-map@0.5.7: {}
3168
-
3169
- space-separated-tokens@2.0.2: {}
3170
-
3171
- stringify-entities@4.0.4:
3172
- dependencies:
3173
- character-entities-html4: 2.1.0
3174
- character-entities-legacy: 3.0.0
3175
-
3176
- style-to-js@1.1.21:
3177
- dependencies:
3178
- style-to-object: 1.0.14
3179
-
3180
- style-to-object@1.0.14:
3181
- dependencies:
3182
- inline-style-parser: 0.2.7
3183
-
3184
- stylis@4.2.0: {}
3185
-
3186
- sucrase@3.35.1:
3187
- dependencies:
3188
- '@jridgewell/gen-mapping': 0.3.13
3189
- commander: 4.1.1
3190
- lines-and-columns: 1.2.4
3191
- mz: 2.7.0
3192
- pirates: 4.0.7
3193
- tinyglobby: 0.2.15
3194
- ts-interface-checker: 0.1.13
3195
-
3196
- supports-preserve-symlinks-flag@1.0.0: {}
3197
-
3198
- tailwindcss@3.4.19:
3199
- dependencies:
3200
- '@alloc/quick-lru': 5.2.0
3201
- arg: 5.0.2
3202
- chokidar: 3.6.0
3203
- didyoumean: 1.2.2
3204
- dlv: 1.1.3
3205
- fast-glob: 3.3.3
3206
- glob-parent: 6.0.2
3207
- is-glob: 4.0.3
3208
- jiti: 1.21.7
3209
- lilconfig: 3.1.3
3210
- micromatch: 4.0.8
3211
- normalize-path: 3.0.0
3212
- object-hash: 3.0.0
3213
- picocolors: 1.1.1
3214
- postcss: 8.5.6
3215
- postcss-import: 15.1.0(postcss@8.5.6)
3216
- postcss-js: 4.1.0(postcss@8.5.6)
3217
- postcss-load-config: 6.0.1(jiti@1.21.7)(postcss@8.5.6)
3218
- postcss-nested: 6.2.0(postcss@8.5.6)
3219
- postcss-selector-parser: 6.1.2
3220
- resolve: 1.22.11
3221
- sucrase: 3.35.1
3222
- transitivePeerDependencies:
3223
- - tsx
3224
- - yaml
3225
-
3226
- thenify-all@1.6.0:
3227
- dependencies:
3228
- thenify: 3.3.1
3229
-
3230
- thenify@3.3.1:
3231
- dependencies:
3232
- any-promise: 1.3.0
3233
-
3234
- tiny-invariant@1.3.3: {}
3235
-
3236
- tinyglobby@0.2.15:
3237
- dependencies:
3238
- fdir: 6.5.0(picomatch@4.0.3)
3239
- picomatch: 4.0.3
3240
-
3241
- to-regex-range@5.0.1:
3242
- dependencies:
3243
- is-number: 7.0.0
3244
-
3245
- trim-lines@3.0.1: {}
3246
-
3247
- trough@2.2.0: {}
3248
-
3249
- ts-interface-checker@0.1.13: {}
3250
-
3251
- typescript@5.9.3: {}
3252
-
3253
- unified@11.0.5:
3254
- dependencies:
3255
- '@types/unist': 3.0.3
3256
- bail: 2.0.2
3257
- devlop: 1.1.0
3258
- extend: 3.0.2
3259
- is-plain-obj: 4.1.0
3260
- trough: 2.2.0
3261
- vfile: 6.0.3
3262
-
3263
- unist-util-is@6.0.1:
3264
- dependencies:
3265
- '@types/unist': 3.0.3
3266
-
3267
- unist-util-position@5.0.0:
3268
- dependencies:
3269
- '@types/unist': 3.0.3
3270
-
3271
- unist-util-stringify-position@4.0.0:
3272
- dependencies:
3273
- '@types/unist': 3.0.3
3274
-
3275
- unist-util-visit-parents@6.0.2:
3276
- dependencies:
3277
- '@types/unist': 3.0.3
3278
- unist-util-is: 6.0.1
3279
-
3280
- unist-util-visit@5.0.0:
3281
- dependencies:
3282
- '@types/unist': 3.0.3
3283
- unist-util-is: 6.0.1
3284
- unist-util-visit-parents: 6.0.2
3285
-
3286
- update-browserslist-db@1.2.3(browserslist@4.28.1):
3287
- dependencies:
3288
- browserslist: 4.28.1
3289
- escalade: 3.2.0
3290
- picocolors: 1.1.1
3291
-
3292
- use-sync-external-store@1.6.0(react@19.2.3):
3293
- dependencies:
3294
- react: 19.2.3
3295
-
3296
- util-deprecate@1.0.2: {}
3297
-
3298
- vfile-message@4.0.3:
3299
- dependencies:
3300
- '@types/unist': 3.0.3
3301
- unist-util-stringify-position: 4.0.0
3302
-
3303
- vfile@6.0.3:
3304
- dependencies:
3305
- '@types/unist': 3.0.3
3306
- vfile-message: 4.0.3
3307
-
3308
- victory-vendor@37.3.6:
3309
- dependencies:
3310
- '@types/d3-array': 3.2.2
3311
- '@types/d3-ease': 3.0.2
3312
- '@types/d3-interpolate': 3.0.4
3313
- '@types/d3-scale': 4.0.9
3314
- '@types/d3-shape': 3.1.8
3315
- '@types/d3-time': 3.0.4
3316
- '@types/d3-timer': 3.0.2
3317
- d3-array: 3.2.4
3318
- d3-ease: 3.0.1
3319
- d3-interpolate: 3.0.1
3320
- d3-scale: 4.0.2
3321
- d3-shape: 3.2.0
3322
- d3-time: 3.1.0
3323
- d3-timer: 3.0.1
3324
-
3325
- vite@6.4.1(jiti@1.21.7):
3326
- dependencies:
3327
- esbuild: 0.25.12
3328
- fdir: 6.5.0(picomatch@4.0.3)
3329
- picomatch: 4.0.3
3330
- postcss: 8.5.6
3331
- rollup: 4.53.5
3332
- tinyglobby: 0.2.15
3333
- optionalDependencies:
3334
- fsevents: 2.3.3
3335
- jiti: 1.21.7
3336
-
3337
- yallist@3.1.1: {}
3338
-
3339
- yaml@1.10.2: {}
3340
-
3341
- zwitch@2.0.4: {}