@assistkick/create 1.6.0 → 1.8.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 (214) hide show
  1. package/package.json +2 -2
  2. package/templates/assistkick-product-system/.env.example +1 -0
  3. package/templates/assistkick-product-system/local.db +0 -0
  4. package/templates/assistkick-product-system/package.json +4 -2
  5. package/templates/assistkick-product-system/packages/backend/package.json +2 -0
  6. package/templates/assistkick-product-system/packages/backend/src/routes/agents.ts +165 -0
  7. package/templates/assistkick-product-system/packages/backend/src/routes/files.test.ts +358 -0
  8. package/templates/assistkick-product-system/packages/backend/src/routes/files.ts +356 -0
  9. package/templates/assistkick-product-system/packages/backend/src/routes/git.ts +96 -1
  10. package/templates/assistkick-product-system/packages/backend/src/routes/graph.ts +1 -0
  11. package/templates/assistkick-product-system/packages/backend/src/routes/kanban.ts +43 -4
  12. package/templates/assistkick-product-system/packages/backend/src/routes/pipeline.ts +200 -84
  13. package/templates/assistkick-product-system/packages/backend/src/routes/projects.ts +6 -3
  14. package/templates/assistkick-product-system/packages/backend/src/routes/terminal.ts +53 -17
  15. package/templates/assistkick-product-system/packages/backend/src/routes/video.ts +218 -0
  16. package/templates/assistkick-product-system/packages/backend/src/routes/workflow_groups.ts +119 -0
  17. package/templates/assistkick-product-system/packages/backend/src/routes/workflows.ts +154 -0
  18. package/templates/assistkick-product-system/packages/backend/src/server.ts +81 -9
  19. package/templates/assistkick-product-system/packages/backend/src/services/agent_service.test.ts +489 -0
  20. package/templates/assistkick-product-system/packages/backend/src/services/agent_service.ts +416 -0
  21. package/templates/assistkick-product-system/packages/backend/src/services/bundle_service.test.ts +189 -0
  22. package/templates/assistkick-product-system/packages/backend/src/services/bundle_service.ts +182 -0
  23. package/templates/assistkick-product-system/packages/backend/src/services/init.ts +28 -78
  24. package/templates/assistkick-product-system/packages/backend/src/services/project_service.test.ts +16 -0
  25. package/templates/assistkick-product-system/packages/backend/src/services/project_service.ts +73 -2
  26. package/templates/assistkick-product-system/packages/backend/src/services/project_workspace_service.test.ts +4 -4
  27. package/templates/assistkick-product-system/packages/backend/src/services/project_workspace_service.ts +87 -11
  28. package/templates/assistkick-product-system/packages/backend/src/services/pty_session_manager.test.ts +210 -69
  29. package/templates/assistkick-product-system/packages/backend/src/services/pty_session_manager.ts +210 -215
  30. package/templates/assistkick-product-system/packages/backend/src/services/ssh_key_service.test.ts +162 -0
  31. package/templates/assistkick-product-system/packages/backend/src/services/ssh_key_service.ts +148 -0
  32. package/templates/assistkick-product-system/packages/backend/src/services/terminal_ws_handler.ts +11 -5
  33. package/templates/assistkick-product-system/packages/backend/src/services/tts_service.test.ts +64 -0
  34. package/templates/assistkick-product-system/packages/backend/src/services/tts_service.ts +134 -0
  35. package/templates/assistkick-product-system/packages/backend/src/services/video_render_service.test.ts +256 -0
  36. package/templates/assistkick-product-system/packages/backend/src/services/video_render_service.ts +258 -0
  37. package/templates/assistkick-product-system/packages/backend/src/services/workflow_group_service.ts +106 -0
  38. package/templates/assistkick-product-system/packages/backend/src/services/workflow_service.test.ts +275 -0
  39. package/templates/assistkick-product-system/packages/backend/src/services/workflow_service.ts +222 -0
  40. package/templates/assistkick-product-system/packages/frontend/index.html +3 -0
  41. package/templates/assistkick-product-system/packages/frontend/package-lock.json +800 -11
  42. package/templates/assistkick-product-system/packages/frontend/package.json +11 -1
  43. package/templates/assistkick-product-system/packages/frontend/src/App.tsx +24 -7
  44. package/templates/assistkick-product-system/packages/frontend/src/api/client.ts +456 -16
  45. package/templates/assistkick-product-system/packages/frontend/src/api/client_files.test.ts +172 -0
  46. package/templates/assistkick-product-system/packages/frontend/src/api/client_video.test.ts +238 -0
  47. package/templates/assistkick-product-system/packages/frontend/src/components/AgentsView.tsx +307 -0
  48. package/templates/assistkick-product-system/packages/frontend/src/components/CoherenceView.tsx +82 -66
  49. package/templates/assistkick-product-system/packages/frontend/src/components/CompositionPlaceholder.tsx +97 -0
  50. package/templates/assistkick-product-system/packages/frontend/src/components/DesignSystemView.tsx +383 -0
  51. package/templates/assistkick-product-system/packages/frontend/src/components/EditorTabBar.tsx +57 -0
  52. package/templates/assistkick-product-system/packages/frontend/src/components/FileTree.tsx +313 -0
  53. package/templates/assistkick-product-system/packages/frontend/src/components/FileTreeContextMenu.tsx +61 -0
  54. package/templates/assistkick-product-system/packages/frontend/src/components/FileTreeInlineInput.tsx +73 -0
  55. package/templates/assistkick-product-system/packages/frontend/src/components/FilesView.tsx +404 -0
  56. package/templates/assistkick-product-system/packages/frontend/src/components/GitRepoModal.tsx +193 -64
  57. package/templates/assistkick-product-system/packages/frontend/src/components/GraphLegend.tsx +71 -73
  58. package/templates/assistkick-product-system/packages/frontend/src/components/GraphSettings.tsx +8 -8
  59. package/templates/assistkick-product-system/packages/frontend/src/components/GraphView.tsx +1 -1
  60. package/templates/assistkick-product-system/packages/frontend/src/components/InviteUserDialog.tsx +15 -11
  61. package/templates/assistkick-product-system/packages/frontend/src/components/KanbanView.tsx +226 -291
  62. package/templates/assistkick-product-system/packages/frontend/src/components/LoginPage.tsx +14 -14
  63. package/templates/assistkick-product-system/packages/frontend/src/components/ProjectSelector.tsx +54 -33
  64. package/templates/assistkick-product-system/packages/frontend/src/components/QaIssueSheet.tsx +40 -66
  65. package/templates/assistkick-product-system/packages/frontend/src/components/SidePanel.tsx +55 -115
  66. package/templates/assistkick-product-system/packages/frontend/src/components/TerminalView.tsx +121 -52
  67. package/templates/assistkick-product-system/packages/frontend/src/components/Toolbar.tsx +155 -77
  68. package/templates/assistkick-product-system/packages/frontend/src/components/UsersView.tsx +52 -52
  69. package/templates/assistkick-product-system/packages/frontend/src/components/VideoGallery.tsx +313 -0
  70. package/templates/assistkick-product-system/packages/frontend/src/components/VideographyView.tsx +250 -0
  71. package/templates/assistkick-product-system/packages/frontend/src/components/WorkflowsView.tsx +474 -0
  72. package/templates/assistkick-product-system/packages/frontend/src/components/ds/AccentBorderList.tsx +53 -0
  73. package/templates/assistkick-product-system/packages/frontend/src/components/ds/Button.tsx +87 -0
  74. package/templates/assistkick-product-system/packages/frontend/src/components/ds/ButtonGroup.tsx +29 -0
  75. package/templates/assistkick-product-system/packages/frontend/src/components/ds/ButtonShowcase.tsx +221 -0
  76. package/templates/assistkick-product-system/packages/frontend/src/components/ds/CardGlass.tsx +141 -0
  77. package/templates/assistkick-product-system/packages/frontend/src/components/ds/CompletionRing.tsx +30 -0
  78. package/templates/assistkick-product-system/packages/frontend/src/components/ds/ContentCard.tsx +34 -0
  79. package/templates/assistkick-product-system/packages/frontend/src/components/ds/IconButton.tsx +74 -0
  80. package/templates/assistkick-product-system/packages/frontend/src/components/ds/KanbanCard.tsx +270 -0
  81. package/templates/assistkick-product-system/packages/frontend/src/components/ds/KanbanCardShowcase.tsx +37 -0
  82. package/templates/assistkick-product-system/packages/frontend/src/components/ds/Kbd.tsx +11 -0
  83. package/templates/assistkick-product-system/packages/frontend/src/components/ds/KindBadge.tsx +21 -0
  84. package/templates/assistkick-product-system/packages/frontend/src/components/ds/NavBarSidekick.tsx +207 -0
  85. package/templates/assistkick-product-system/packages/frontend/src/components/ds/SidePanelShowcase.tsx +370 -0
  86. package/templates/assistkick-product-system/packages/frontend/src/components/ds/SideSheet.tsx +64 -0
  87. package/templates/assistkick-product-system/packages/frontend/src/components/ds/StatusDot.tsx +18 -0
  88. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/CheckCardPositionNode.tsx +36 -0
  89. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/CheckCycleCountNode.tsx +60 -0
  90. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/EndNode.tsx +42 -0
  91. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/GroupNode.tsx +189 -0
  92. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/NodePalette.tsx +123 -0
  93. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/RunAgentNode.tsx +51 -0
  94. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/SetCardMetadataNode.tsx +53 -0
  95. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/StartNode.tsx +18 -0
  96. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/TransitionCardNode.tsx +59 -0
  97. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/WorkflowCanvas.tsx +335 -0
  98. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/WorkflowMonitorModal.tsx +634 -0
  99. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/autoLayout.ts +103 -0
  100. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/edgeColors.ts +35 -0
  101. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/monitor_nodes.tsx +208 -0
  102. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/workflow_types.test.ts +119 -0
  103. package/templates/assistkick-product-system/packages/frontend/src/components/workflow/workflow_types.ts +107 -0
  104. package/templates/assistkick-product-system/packages/frontend/src/constants/graph.ts +13 -11
  105. package/templates/assistkick-product-system/packages/frontend/src/hooks/useAutoSave.ts +75 -0
  106. package/templates/assistkick-product-system/packages/frontend/src/hooks/useGraph.ts +6 -21
  107. package/templates/assistkick-product-system/packages/frontend/src/hooks/useProjects.ts +15 -80
  108. package/templates/assistkick-product-system/packages/frontend/src/hooks/useToast.tsx +16 -3
  109. package/templates/assistkick-product-system/packages/frontend/src/pages/accept_invitation_page.tsx +30 -27
  110. package/templates/assistkick-product-system/packages/frontend/src/pages/forgot_password_page.tsx +18 -15
  111. package/templates/assistkick-product-system/packages/frontend/src/pages/register_page.tsx +21 -18
  112. package/templates/assistkick-product-system/packages/frontend/src/pages/reset_password_page.tsx +28 -25
  113. package/templates/assistkick-product-system/packages/frontend/src/routes/AgentsRoute.tsx +6 -0
  114. package/templates/assistkick-product-system/packages/frontend/src/routes/CoherenceRoute.tsx +19 -0
  115. package/templates/assistkick-product-system/packages/frontend/src/routes/DashboardLayout.tsx +54 -0
  116. package/templates/assistkick-product-system/packages/frontend/src/routes/DesignSystemRoute.tsx +6 -0
  117. package/templates/assistkick-product-system/packages/frontend/src/routes/FilesRoute.tsx +13 -0
  118. package/templates/assistkick-product-system/packages/frontend/src/routes/GraphRoute.tsx +93 -0
  119. package/templates/assistkick-product-system/packages/frontend/src/routes/KanbanRoute.tsx +30 -0
  120. package/templates/assistkick-product-system/packages/frontend/src/routes/TerminalRoute.tsx +9 -0
  121. package/templates/assistkick-product-system/packages/frontend/src/routes/UsersRoute.tsx +6 -0
  122. package/templates/assistkick-product-system/packages/frontend/src/routes/VideographyRoute.tsx +13 -0
  123. package/templates/assistkick-product-system/packages/frontend/src/routes/WorkflowsRoute.tsx +6 -0
  124. package/templates/assistkick-product-system/packages/frontend/src/stores/useGitModalStore.ts +14 -0
  125. package/templates/assistkick-product-system/packages/frontend/src/stores/useGraphStore.ts +36 -0
  126. package/templates/assistkick-product-system/packages/frontend/src/stores/useGraphUIStore.ts +25 -0
  127. package/templates/assistkick-product-system/packages/frontend/src/stores/useProjectStore.ts +90 -0
  128. package/templates/assistkick-product-system/packages/frontend/src/stores/useQaSheetStore.ts +27 -0
  129. package/templates/assistkick-product-system/packages/frontend/src/stores/useSidePanelStore.ts +76 -0
  130. package/templates/assistkick-product-system/packages/frontend/src/styles/index.css +336 -3632
  131. package/templates/assistkick-product-system/packages/frontend/src/utils/auto_save_service.test.ts +167 -0
  132. package/templates/assistkick-product-system/packages/frontend/src/utils/auto_save_service.ts +101 -0
  133. package/templates/assistkick-product-system/packages/frontend/src/utils/composition_matcher.test.ts +42 -0
  134. package/templates/assistkick-product-system/packages/frontend/src/utils/composition_matcher.ts +17 -0
  135. package/templates/assistkick-product-system/packages/frontend/src/utils/file_utils.test.ts +145 -0
  136. package/templates/assistkick-product-system/packages/frontend/src/utils/file_utils.ts +42 -0
  137. package/templates/assistkick-product-system/packages/frontend/src/utils/task_status.test.ts +4 -10
  138. package/templates/assistkick-product-system/packages/frontend/src/utils/task_status.ts +19 -1
  139. package/templates/assistkick-product-system/packages/frontend/vite.config.ts +7 -1
  140. package/templates/assistkick-product-system/packages/shared/db/local.db +0 -0
  141. package/templates/assistkick-product-system/packages/shared/db/migrations/0004_tidy_matthew_murdock.sql +9 -0
  142. package/templates/assistkick-product-system/packages/shared/db/migrations/0005_mysterious_falcon.sql +692 -0
  143. package/templates/assistkick-product-system/packages/shared/db/migrations/0006_next_venom.sql +9 -0
  144. package/templates/assistkick-product-system/packages/shared/db/migrations/0007_deep_barracuda.sql +39 -0
  145. package/templates/assistkick-product-system/packages/shared/db/migrations/0008_puzzling_hannibal_king.sql +1 -0
  146. package/templates/assistkick-product-system/packages/shared/db/migrations/0009_amused_beast.sql +8 -0
  147. package/templates/assistkick-product-system/packages/shared/db/migrations/0010_spotty_moira_mactaggert.sql +9 -0
  148. package/templates/assistkick-product-system/packages/shared/db/migrations/0011_goofy_snowbird.sql +3 -0
  149. package/templates/assistkick-product-system/packages/shared/db/migrations/0011_supreme_doctor_octopus.sql +3 -0
  150. package/templates/assistkick-product-system/packages/shared/db/migrations/0013_reflective_prowler.sql +15 -0
  151. package/templates/assistkick-product-system/packages/shared/db/migrations/meta/0004_snapshot.json +921 -0
  152. package/templates/assistkick-product-system/packages/shared/db/migrations/meta/0005_snapshot.json +1042 -0
  153. package/templates/assistkick-product-system/packages/shared/db/migrations/meta/0006_snapshot.json +1101 -0
  154. package/templates/assistkick-product-system/packages/shared/db/migrations/meta/0007_snapshot.json +1336 -0
  155. package/templates/assistkick-product-system/packages/shared/db/migrations/meta/0008_snapshot.json +1275 -0
  156. package/templates/assistkick-product-system/packages/shared/db/migrations/meta/0009_snapshot.json +1327 -0
  157. package/templates/assistkick-product-system/packages/shared/db/migrations/meta/0010_snapshot.json +1393 -0
  158. package/templates/assistkick-product-system/packages/shared/db/migrations/meta/0011_snapshot.json +1436 -0
  159. package/templates/assistkick-product-system/packages/shared/db/migrations/meta/0013_snapshot.json +1538 -0
  160. package/templates/assistkick-product-system/packages/shared/db/migrations/meta/_journal.json +70 -0
  161. package/templates/assistkick-product-system/packages/shared/db/schema.ts +113 -0
  162. package/templates/assistkick-product-system/packages/shared/lib/claude-service.ts +32 -7
  163. package/templates/assistkick-product-system/packages/shared/lib/constants.ts +9 -0
  164. package/templates/assistkick-product-system/packages/shared/lib/git_workflow.ts +12 -4
  165. package/templates/assistkick-product-system/packages/shared/lib/graph.ts +16 -5
  166. package/templates/assistkick-product-system/packages/shared/lib/workflow_engine.test.ts +1753 -0
  167. package/templates/assistkick-product-system/packages/shared/lib/workflow_engine.ts +1281 -0
  168. package/templates/assistkick-product-system/packages/shared/lib/workflow_orchestrator.ts +211 -0
  169. package/templates/assistkick-product-system/packages/shared/tools/add_node.test.ts +43 -0
  170. package/templates/assistkick-product-system/packages/shared/tools/add_node.ts +13 -2
  171. package/templates/assistkick-product-system/packages/shared/tools/get_kanban.ts +1 -1
  172. package/templates/assistkick-product-system/packages/shared/tools/migrate_epics.test.ts +226 -0
  173. package/templates/assistkick-product-system/packages/shared/tools/migrate_epics.ts +251 -0
  174. package/templates/assistkick-product-system/packages/shared/tools/update_node.ts +2 -2
  175. package/templates/assistkick-product-system/packages/shared/utils/hello_workflow.test.ts +10 -0
  176. package/templates/assistkick-product-system/packages/shared/utils/hello_workflow.ts +6 -0
  177. package/templates/assistkick-product-system/packages/video/Root.tsx +85 -0
  178. package/templates/assistkick-product-system/packages/video/components/email_scene.tsx +231 -0
  179. package/templates/assistkick-product-system/packages/video/components/outro_scene.tsx +153 -0
  180. package/templates/assistkick-product-system/packages/video/components/part_divider.tsx +90 -0
  181. package/templates/assistkick-product-system/packages/video/components/scene.tsx +226 -0
  182. package/templates/assistkick-product-system/packages/video/components/theme.ts +22 -0
  183. package/templates/assistkick-product-system/packages/video/components/title_scene.tsx +169 -0
  184. package/templates/assistkick-product-system/packages/video/components/video_split_layout.tsx +84 -0
  185. package/templates/assistkick-product-system/packages/video/compositions/.gitkeep +0 -0
  186. package/templates/assistkick-product-system/packages/video/index.ts +4 -0
  187. package/templates/assistkick-product-system/packages/video/package.json +28 -0
  188. package/templates/assistkick-product-system/packages/video/remotion.config.ts +11 -0
  189. package/templates/assistkick-product-system/packages/video/scripts/process_script.test.ts +326 -0
  190. package/templates/assistkick-product-system/packages/video/scripts/process_script.ts +630 -0
  191. package/templates/assistkick-product-system/packages/video/style.css +1 -0
  192. package/templates/assistkick-product-system/packages/video/tsconfig.json +18 -0
  193. package/templates/assistkick-product-system/tests/graph_legend.test.ts +2 -1
  194. package/templates/assistkick-product-system/tests/video_render_service.test.ts +179 -0
  195. package/templates/assistkick-product-system/tests/web_terminal.test.ts +219 -455
  196. package/templates/assistkick-product-system/tests/workflow_integration.test.ts +341 -0
  197. package/templates/skills/assistkick-bootstrap/SKILL.md +3 -3
  198. package/templates/skills/assistkick-code-reviewer/SKILL.md +2 -2
  199. package/templates/skills/assistkick-debugger/SKILL.md +2 -2
  200. package/templates/skills/assistkick-developer/SKILL.md +6 -3
  201. package/templates/skills/assistkick-developer/references/react_development_guidelines.md +225 -0
  202. package/templates/skills/assistkick-interview/SKILL.md +2 -2
  203. package/templates/skills/product-system/graph.json +1890 -0
  204. package/templates/skills/product-system/kanban.json +304 -0
  205. package/templates/skills/product-system/nodes/comp_001.md +56 -0
  206. package/templates/skills/product-system/nodes/comp_002.md +57 -0
  207. package/templates/skills/product-system/nodes/data_001.md +51 -0
  208. package/templates/skills/product-system/nodes/data_002.md +40 -0
  209. package/templates/skills/product-system/nodes/data_004.md +38 -0
  210. package/templates/skills/product-system/nodes/dec_001.md +34 -0
  211. package/templates/skills/product-system/nodes/dec_016.md +32 -0
  212. package/templates/skills/product-system/nodes/feat_008.md +30 -0
  213. package/templates/skills/video-composition-agent/SKILL.md +232 -0
  214. package/templates/skills/video-script-writer/SKILL.md +136 -0
@@ -1,27 +1,33 @@
1
1
  {
2
- "name": "@interview-system/frontend",
2
+ "name": "@assistkick/frontend",
3
3
  "version": "1.0.0",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
- "name": "@interview-system/frontend",
8
+ "name": "@assistkick/frontend",
9
9
  "version": "1.0.0",
10
10
  "dependencies": {
11
+ "@monaco-editor/react": "^4.7.0",
11
12
  "@xterm/addon-fit": "^0.11.0",
12
13
  "@xterm/addon-web-links": "^0.12.0",
13
14
  "@xterm/xterm": "^6.0.0",
15
+ "@xyflow/react": "^12.10.1",
14
16
  "d3": "^7.9.0",
17
+ "lucide-react": "^0.577.0",
15
18
  "marked": "^15.0.0",
16
19
  "react": "^19.1.0",
17
20
  "react-dom": "^19.1.0",
18
- "react-router-dom": "^7.6.0"
21
+ "react-router-dom": "^7.6.0",
22
+ "zustand": "^5.0.11"
19
23
  },
20
24
  "devDependencies": {
25
+ "@tailwindcss/vite": "^4.2.1",
21
26
  "@types/d3": "^7.4.3",
22
27
  "@types/react": "^19.1.0",
23
28
  "@types/react-dom": "^19.1.0",
24
29
  "@vitejs/plugin-react": "^4.5.2",
30
+ "tailwindcss": "^4.2.1",
25
31
  "typescript": "^5.9.3",
26
32
  "vite": "^7.3.1"
27
33
  }
@@ -800,6 +806,29 @@
800
806
  "@jridgewell/sourcemap-codec": "^1.4.14"
801
807
  }
802
808
  },
809
+ "node_modules/@monaco-editor/loader": {
810
+ "version": "1.7.0",
811
+ "resolved": "https://registry.npmjs.org/@monaco-editor/loader/-/loader-1.7.0.tgz",
812
+ "integrity": "sha512-gIwR1HrJrrx+vfyOhYmCZ0/JcWqG5kbfG7+d3f/C1LXk2EvzAbHSg3MQ5lO2sMlo9izoAZ04shohfKLVT6crVA==",
813
+ "license": "MIT",
814
+ "dependencies": {
815
+ "state-local": "^1.0.6"
816
+ }
817
+ },
818
+ "node_modules/@monaco-editor/react": {
819
+ "version": "4.7.0",
820
+ "resolved": "https://registry.npmjs.org/@monaco-editor/react/-/react-4.7.0.tgz",
821
+ "integrity": "sha512-cyzXQCtO47ydzxpQtCGSQGOC8Gk3ZUeBXFAxD+CWXYFo5OqZyZUonFl0DwUlTyAfRHntBfw2p3w4s9R6oe1eCA==",
822
+ "license": "MIT",
823
+ "dependencies": {
824
+ "@monaco-editor/loader": "^1.5.0"
825
+ },
826
+ "peerDependencies": {
827
+ "monaco-editor": ">= 0.25.0 < 1",
828
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
829
+ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
830
+ }
831
+ },
803
832
  "node_modules/@rolldown/pluginutils": {
804
833
  "version": "1.0.0-beta.27",
805
834
  "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz",
@@ -1157,6 +1186,278 @@
1157
1186
  "win32"
1158
1187
  ]
1159
1188
  },
1189
+ "node_modules/@tailwindcss/node": {
1190
+ "version": "4.2.1",
1191
+ "resolved": "https://registry.npmjs.org/@tailwindcss/node/-/node-4.2.1.tgz",
1192
+ "integrity": "sha512-jlx6sLk4EOwO6hHe1oCGm1Q4AN/s0rSrTTPBGPM0/RQ6Uylwq17FuU8IeJJKEjtc6K6O07zsvP+gDO6MMWo7pg==",
1193
+ "dev": true,
1194
+ "license": "MIT",
1195
+ "dependencies": {
1196
+ "@jridgewell/remapping": "^2.3.5",
1197
+ "enhanced-resolve": "^5.19.0",
1198
+ "jiti": "^2.6.1",
1199
+ "lightningcss": "1.31.1",
1200
+ "magic-string": "^0.30.21",
1201
+ "source-map-js": "^1.2.1",
1202
+ "tailwindcss": "4.2.1"
1203
+ }
1204
+ },
1205
+ "node_modules/@tailwindcss/oxide": {
1206
+ "version": "4.2.1",
1207
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide/-/oxide-4.2.1.tgz",
1208
+ "integrity": "sha512-yv9jeEFWnjKCI6/T3Oq50yQEOqmpmpfzG1hcZsAOaXFQPfzWprWrlHSdGPEF3WQTi8zu8ohC9Mh9J470nT5pUw==",
1209
+ "dev": true,
1210
+ "license": "MIT",
1211
+ "engines": {
1212
+ "node": ">= 20"
1213
+ },
1214
+ "optionalDependencies": {
1215
+ "@tailwindcss/oxide-android-arm64": "4.2.1",
1216
+ "@tailwindcss/oxide-darwin-arm64": "4.2.1",
1217
+ "@tailwindcss/oxide-darwin-x64": "4.2.1",
1218
+ "@tailwindcss/oxide-freebsd-x64": "4.2.1",
1219
+ "@tailwindcss/oxide-linux-arm-gnueabihf": "4.2.1",
1220
+ "@tailwindcss/oxide-linux-arm64-gnu": "4.2.1",
1221
+ "@tailwindcss/oxide-linux-arm64-musl": "4.2.1",
1222
+ "@tailwindcss/oxide-linux-x64-gnu": "4.2.1",
1223
+ "@tailwindcss/oxide-linux-x64-musl": "4.2.1",
1224
+ "@tailwindcss/oxide-wasm32-wasi": "4.2.1",
1225
+ "@tailwindcss/oxide-win32-arm64-msvc": "4.2.1",
1226
+ "@tailwindcss/oxide-win32-x64-msvc": "4.2.1"
1227
+ }
1228
+ },
1229
+ "node_modules/@tailwindcss/oxide-android-arm64": {
1230
+ "version": "4.2.1",
1231
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-android-arm64/-/oxide-android-arm64-4.2.1.tgz",
1232
+ "integrity": "sha512-eZ7G1Zm5EC8OOKaesIKuw77jw++QJ2lL9N+dDpdQiAB/c/B2wDh0QPFHbkBVrXnwNugvrbJFk1gK2SsVjwWReg==",
1233
+ "cpu": [
1234
+ "arm64"
1235
+ ],
1236
+ "dev": true,
1237
+ "license": "MIT",
1238
+ "optional": true,
1239
+ "os": [
1240
+ "android"
1241
+ ],
1242
+ "engines": {
1243
+ "node": ">= 20"
1244
+ }
1245
+ },
1246
+ "node_modules/@tailwindcss/oxide-darwin-arm64": {
1247
+ "version": "4.2.1",
1248
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-arm64/-/oxide-darwin-arm64-4.2.1.tgz",
1249
+ "integrity": "sha512-q/LHkOstoJ7pI1J0q6djesLzRvQSIfEto148ppAd+BVQK0JYjQIFSK3JgYZJa+Yzi0DDa52ZsQx2rqytBnf8Hw==",
1250
+ "cpu": [
1251
+ "arm64"
1252
+ ],
1253
+ "dev": true,
1254
+ "license": "MIT",
1255
+ "optional": true,
1256
+ "os": [
1257
+ "darwin"
1258
+ ],
1259
+ "engines": {
1260
+ "node": ">= 20"
1261
+ }
1262
+ },
1263
+ "node_modules/@tailwindcss/oxide-darwin-x64": {
1264
+ "version": "4.2.1",
1265
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-darwin-x64/-/oxide-darwin-x64-4.2.1.tgz",
1266
+ "integrity": "sha512-/f/ozlaXGY6QLbpvd/kFTro2l18f7dHKpB+ieXz+Cijl4Mt9AI2rTrpq7V+t04nK+j9XBQHnSMdeQRhbGyt6fw==",
1267
+ "cpu": [
1268
+ "x64"
1269
+ ],
1270
+ "dev": true,
1271
+ "license": "MIT",
1272
+ "optional": true,
1273
+ "os": [
1274
+ "darwin"
1275
+ ],
1276
+ "engines": {
1277
+ "node": ">= 20"
1278
+ }
1279
+ },
1280
+ "node_modules/@tailwindcss/oxide-freebsd-x64": {
1281
+ "version": "4.2.1",
1282
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-freebsd-x64/-/oxide-freebsd-x64-4.2.1.tgz",
1283
+ "integrity": "sha512-5e/AkgYJT/cpbkys/OU2Ei2jdETCLlifwm7ogMC7/hksI2fC3iiq6OcXwjibcIjPung0kRtR3TxEITkqgn0TcA==",
1284
+ "cpu": [
1285
+ "x64"
1286
+ ],
1287
+ "dev": true,
1288
+ "license": "MIT",
1289
+ "optional": true,
1290
+ "os": [
1291
+ "freebsd"
1292
+ ],
1293
+ "engines": {
1294
+ "node": ">= 20"
1295
+ }
1296
+ },
1297
+ "node_modules/@tailwindcss/oxide-linux-arm-gnueabihf": {
1298
+ "version": "4.2.1",
1299
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm-gnueabihf/-/oxide-linux-arm-gnueabihf-4.2.1.tgz",
1300
+ "integrity": "sha512-Uny1EcVTTmerCKt/1ZuKTkb0x8ZaiuYucg2/kImO5A5Y/kBz41/+j0gxUZl+hTF3xkWpDmHX+TaWhOtba2Fyuw==",
1301
+ "cpu": [
1302
+ "arm"
1303
+ ],
1304
+ "dev": true,
1305
+ "license": "MIT",
1306
+ "optional": true,
1307
+ "os": [
1308
+ "linux"
1309
+ ],
1310
+ "engines": {
1311
+ "node": ">= 20"
1312
+ }
1313
+ },
1314
+ "node_modules/@tailwindcss/oxide-linux-arm64-gnu": {
1315
+ "version": "4.2.1",
1316
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-gnu/-/oxide-linux-arm64-gnu-4.2.1.tgz",
1317
+ "integrity": "sha512-CTrwomI+c7n6aSSQlsPL0roRiNMDQ/YzMD9EjcR+H4f0I1SQ8QqIuPnsVp7QgMkC1Qi8rtkekLkOFjo7OlEFRQ==",
1318
+ "cpu": [
1319
+ "arm64"
1320
+ ],
1321
+ "dev": true,
1322
+ "license": "MIT",
1323
+ "optional": true,
1324
+ "os": [
1325
+ "linux"
1326
+ ],
1327
+ "engines": {
1328
+ "node": ">= 20"
1329
+ }
1330
+ },
1331
+ "node_modules/@tailwindcss/oxide-linux-arm64-musl": {
1332
+ "version": "4.2.1",
1333
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-arm64-musl/-/oxide-linux-arm64-musl-4.2.1.tgz",
1334
+ "integrity": "sha512-WZA0CHRL/SP1TRbA5mp9htsppSEkWuQ4KsSUumYQnyl8ZdT39ntwqmz4IUHGN6p4XdSlYfJwM4rRzZLShHsGAQ==",
1335
+ "cpu": [
1336
+ "arm64"
1337
+ ],
1338
+ "dev": true,
1339
+ "license": "MIT",
1340
+ "optional": true,
1341
+ "os": [
1342
+ "linux"
1343
+ ],
1344
+ "engines": {
1345
+ "node": ">= 20"
1346
+ }
1347
+ },
1348
+ "node_modules/@tailwindcss/oxide-linux-x64-gnu": {
1349
+ "version": "4.2.1",
1350
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-gnu/-/oxide-linux-x64-gnu-4.2.1.tgz",
1351
+ "integrity": "sha512-qMFzxI2YlBOLW5PhblzuSWlWfwLHaneBE0xHzLrBgNtqN6mWfs+qYbhryGSXQjFYB1Dzf5w+LN5qbUTPhW7Y5g==",
1352
+ "cpu": [
1353
+ "x64"
1354
+ ],
1355
+ "dev": true,
1356
+ "license": "MIT",
1357
+ "optional": true,
1358
+ "os": [
1359
+ "linux"
1360
+ ],
1361
+ "engines": {
1362
+ "node": ">= 20"
1363
+ }
1364
+ },
1365
+ "node_modules/@tailwindcss/oxide-linux-x64-musl": {
1366
+ "version": "4.2.1",
1367
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-linux-x64-musl/-/oxide-linux-x64-musl-4.2.1.tgz",
1368
+ "integrity": "sha512-5r1X2FKnCMUPlXTWRYpHdPYUY6a1Ar/t7P24OuiEdEOmms5lyqjDRvVY1yy9Rmioh+AunQ0rWiOTPE8F9A3v5g==",
1369
+ "cpu": [
1370
+ "x64"
1371
+ ],
1372
+ "dev": true,
1373
+ "license": "MIT",
1374
+ "optional": true,
1375
+ "os": [
1376
+ "linux"
1377
+ ],
1378
+ "engines": {
1379
+ "node": ">= 20"
1380
+ }
1381
+ },
1382
+ "node_modules/@tailwindcss/oxide-wasm32-wasi": {
1383
+ "version": "4.2.1",
1384
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-wasm32-wasi/-/oxide-wasm32-wasi-4.2.1.tgz",
1385
+ "integrity": "sha512-MGFB5cVPvshR85MTJkEvqDUnuNoysrsRxd6vnk1Lf2tbiqNlXpHYZqkqOQalydienEWOHHFyyuTSYRsLfxFJ2Q==",
1386
+ "bundleDependencies": [
1387
+ "@napi-rs/wasm-runtime",
1388
+ "@emnapi/core",
1389
+ "@emnapi/runtime",
1390
+ "@tybys/wasm-util",
1391
+ "@emnapi/wasi-threads",
1392
+ "tslib"
1393
+ ],
1394
+ "cpu": [
1395
+ "wasm32"
1396
+ ],
1397
+ "dev": true,
1398
+ "license": "MIT",
1399
+ "optional": true,
1400
+ "dependencies": {
1401
+ "@emnapi/core": "^1.8.1",
1402
+ "@emnapi/runtime": "^1.8.1",
1403
+ "@emnapi/wasi-threads": "^1.1.0",
1404
+ "@napi-rs/wasm-runtime": "^1.1.1",
1405
+ "@tybys/wasm-util": "^0.10.1",
1406
+ "tslib": "^2.8.1"
1407
+ },
1408
+ "engines": {
1409
+ "node": ">=14.0.0"
1410
+ }
1411
+ },
1412
+ "node_modules/@tailwindcss/oxide-win32-arm64-msvc": {
1413
+ "version": "4.2.1",
1414
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-arm64-msvc/-/oxide-win32-arm64-msvc-4.2.1.tgz",
1415
+ "integrity": "sha512-YlUEHRHBGnCMh4Nj4GnqQyBtsshUPdiNroZj8VPkvTZSoHsilRCwXcVKnG9kyi0ZFAS/3u+qKHBdDc81SADTRA==",
1416
+ "cpu": [
1417
+ "arm64"
1418
+ ],
1419
+ "dev": true,
1420
+ "license": "MIT",
1421
+ "optional": true,
1422
+ "os": [
1423
+ "win32"
1424
+ ],
1425
+ "engines": {
1426
+ "node": ">= 20"
1427
+ }
1428
+ },
1429
+ "node_modules/@tailwindcss/oxide-win32-x64-msvc": {
1430
+ "version": "4.2.1",
1431
+ "resolved": "https://registry.npmjs.org/@tailwindcss/oxide-win32-x64-msvc/-/oxide-win32-x64-msvc-4.2.1.tgz",
1432
+ "integrity": "sha512-rbO34G5sMWWyrN/idLeVxAZgAKWrn5LiR3/I90Q9MkA67s6T1oB0xtTe+0heoBvHSpbU9Mk7i6uwJnpo4u21XQ==",
1433
+ "cpu": [
1434
+ "x64"
1435
+ ],
1436
+ "dev": true,
1437
+ "license": "MIT",
1438
+ "optional": true,
1439
+ "os": [
1440
+ "win32"
1441
+ ],
1442
+ "engines": {
1443
+ "node": ">= 20"
1444
+ }
1445
+ },
1446
+ "node_modules/@tailwindcss/vite": {
1447
+ "version": "4.2.1",
1448
+ "resolved": "https://registry.npmjs.org/@tailwindcss/vite/-/vite-4.2.1.tgz",
1449
+ "integrity": "sha512-TBf2sJjYeb28jD2U/OhwdW0bbOsxkWPwQ7SrqGf9sVcoYwZj7rkXljroBO9wKBut9XnmQLXanuDUeqQK0lGg/w==",
1450
+ "dev": true,
1451
+ "license": "MIT",
1452
+ "dependencies": {
1453
+ "@tailwindcss/node": "4.2.1",
1454
+ "@tailwindcss/oxide": "4.2.1",
1455
+ "tailwindcss": "4.2.1"
1456
+ },
1457
+ "peerDependencies": {
1458
+ "vite": "^5.2.0 || ^6 || ^7"
1459
+ }
1460
+ },
1160
1461
  "node_modules/@types/babel__core": {
1161
1462
  "version": "7.20.5",
1162
1463
  "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz",
@@ -1279,7 +1580,6 @@
1279
1580
  "version": "3.1.3",
1280
1581
  "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz",
1281
1582
  "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==",
1282
- "dev": true,
1283
1583
  "license": "MIT"
1284
1584
  },
1285
1585
  "node_modules/@types/d3-contour": {
@@ -1311,7 +1611,6 @@
1311
1611
  "version": "3.0.7",
1312
1612
  "resolved": "https://registry.npmjs.org/@types/d3-drag/-/d3-drag-3.0.7.tgz",
1313
1613
  "integrity": "sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==",
1314
- "dev": true,
1315
1614
  "license": "MIT",
1316
1615
  "dependencies": {
1317
1616
  "@types/d3-selection": "*"
@@ -1376,7 +1675,6 @@
1376
1675
  "version": "3.0.4",
1377
1676
  "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz",
1378
1677
  "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==",
1379
- "dev": true,
1380
1678
  "license": "MIT",
1381
1679
  "dependencies": {
1382
1680
  "@types/d3-color": "*"
@@ -1431,7 +1729,6 @@
1431
1729
  "version": "3.0.11",
1432
1730
  "resolved": "https://registry.npmjs.org/@types/d3-selection/-/d3-selection-3.0.11.tgz",
1433
1731
  "integrity": "sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==",
1434
- "dev": true,
1435
1732
  "license": "MIT"
1436
1733
  },
1437
1734
  "node_modules/@types/d3-shape": {
@@ -1469,7 +1766,6 @@
1469
1766
  "version": "3.0.9",
1470
1767
  "resolved": "https://registry.npmjs.org/@types/d3-transition/-/d3-transition-3.0.9.tgz",
1471
1768
  "integrity": "sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==",
1472
- "dev": true,
1473
1769
  "license": "MIT",
1474
1770
  "dependencies": {
1475
1771
  "@types/d3-selection": "*"
@@ -1479,7 +1775,6 @@
1479
1775
  "version": "3.0.8",
1480
1776
  "resolved": "https://registry.npmjs.org/@types/d3-zoom/-/d3-zoom-3.0.8.tgz",
1481
1777
  "integrity": "sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==",
1482
- "dev": true,
1483
1778
  "license": "MIT",
1484
1779
  "dependencies": {
1485
1780
  "@types/d3-interpolate": "*",
@@ -1504,7 +1799,7 @@
1504
1799
  "version": "19.2.14",
1505
1800
  "resolved": "https://registry.npmjs.org/@types/react/-/react-19.2.14.tgz",
1506
1801
  "integrity": "sha512-ilcTH/UniCkMdtexkoCN0bI7pMcJDvmQFPvuPvmEaYA/NSfFTAgdUSLAoVjaRJm7+6PvcM+q1zYOwS4wTYMF9w==",
1507
- "dev": true,
1802
+ "devOptional": true,
1508
1803
  "license": "MIT",
1509
1804
  "dependencies": {
1510
1805
  "csstype": "^3.2.2"
@@ -1520,6 +1815,14 @@
1520
1815
  "@types/react": "^19.2.0"
1521
1816
  }
1522
1817
  },
1818
+ "node_modules/@types/trusted-types": {
1819
+ "version": "2.0.7",
1820
+ "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.7.tgz",
1821
+ "integrity": "sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==",
1822
+ "license": "MIT",
1823
+ "optional": true,
1824
+ "peer": true
1825
+ },
1523
1826
  "node_modules/@vitejs/plugin-react": {
1524
1827
  "version": "4.7.0",
1525
1828
  "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz",
@@ -1562,6 +1865,66 @@
1562
1865
  "addons/*"
1563
1866
  ]
1564
1867
  },
1868
+ "node_modules/@xyflow/react": {
1869
+ "version": "12.10.1",
1870
+ "resolved": "https://registry.npmjs.org/@xyflow/react/-/react-12.10.1.tgz",
1871
+ "integrity": "sha512-5eSWtIK/+rkldOuFbOOz44CRgQRjtS9v5nufk77DV+XBnfCGL9HAQ8PG00o2ZYKqkEU/Ak6wrKC95Tu+2zuK3Q==",
1872
+ "license": "MIT",
1873
+ "dependencies": {
1874
+ "@xyflow/system": "0.0.75",
1875
+ "classcat": "^5.0.3",
1876
+ "zustand": "^4.4.0"
1877
+ },
1878
+ "peerDependencies": {
1879
+ "react": ">=17",
1880
+ "react-dom": ">=17"
1881
+ }
1882
+ },
1883
+ "node_modules/@xyflow/react/node_modules/zustand": {
1884
+ "version": "4.5.7",
1885
+ "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.7.tgz",
1886
+ "integrity": "sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==",
1887
+ "license": "MIT",
1888
+ "dependencies": {
1889
+ "use-sync-external-store": "^1.2.2"
1890
+ },
1891
+ "engines": {
1892
+ "node": ">=12.7.0"
1893
+ },
1894
+ "peerDependencies": {
1895
+ "@types/react": ">=16.8",
1896
+ "immer": ">=9.0.6",
1897
+ "react": ">=16.8"
1898
+ },
1899
+ "peerDependenciesMeta": {
1900
+ "@types/react": {
1901
+ "optional": true
1902
+ },
1903
+ "immer": {
1904
+ "optional": true
1905
+ },
1906
+ "react": {
1907
+ "optional": true
1908
+ }
1909
+ }
1910
+ },
1911
+ "node_modules/@xyflow/system": {
1912
+ "version": "0.0.75",
1913
+ "resolved": "https://registry.npmjs.org/@xyflow/system/-/system-0.0.75.tgz",
1914
+ "integrity": "sha512-iXs+AGFLi8w/VlAoc/iSxk+CxfT6o64Uw/k0CKASOPqjqz6E0rb5jFZgJtXGZCpfQI6OQpu5EnumP5fGxQheaQ==",
1915
+ "license": "MIT",
1916
+ "dependencies": {
1917
+ "@types/d3-drag": "^3.0.7",
1918
+ "@types/d3-interpolate": "^3.0.4",
1919
+ "@types/d3-selection": "^3.0.10",
1920
+ "@types/d3-transition": "^3.0.8",
1921
+ "@types/d3-zoom": "^3.0.8",
1922
+ "d3-drag": "^3.0.0",
1923
+ "d3-interpolate": "^3.0.1",
1924
+ "d3-selection": "^3.0.0",
1925
+ "d3-zoom": "^3.0.0"
1926
+ }
1927
+ },
1565
1928
  "node_modules/baseline-browser-mapping": {
1566
1929
  "version": "2.10.0",
1567
1930
  "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.10.0.tgz",
@@ -1630,6 +1993,12 @@
1630
1993
  ],
1631
1994
  "license": "CC-BY-4.0"
1632
1995
  },
1996
+ "node_modules/classcat": {
1997
+ "version": "5.0.5",
1998
+ "resolved": "https://registry.npmjs.org/classcat/-/classcat-5.0.5.tgz",
1999
+ "integrity": "sha512-JhZUT7JFcQy/EzW605k/ktHtncoo9vnyW/2GspNYwFlN1C/WmjuV/xtS04e9SOkL2sTdw0VAZ2UGCcQ9lR6p6w==",
2000
+ "license": "MIT"
2001
+ },
1633
2002
  "node_modules/commander": {
1634
2003
  "version": "7.2.0",
1635
2004
  "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz",
@@ -1663,7 +2032,7 @@
1663
2032
  "version": "3.2.3",
1664
2033
  "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz",
1665
2034
  "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==",
1666
- "dev": true,
2035
+ "devOptional": true,
1667
2036
  "license": "MIT"
1668
2037
  },
1669
2038
  "node_modules/d3": {
@@ -2094,6 +2463,26 @@
2094
2463
  "robust-predicates": "^3.0.2"
2095
2464
  }
2096
2465
  },
2466
+ "node_modules/detect-libc": {
2467
+ "version": "2.1.2",
2468
+ "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.1.2.tgz",
2469
+ "integrity": "sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==",
2470
+ "dev": true,
2471
+ "license": "Apache-2.0",
2472
+ "engines": {
2473
+ "node": ">=8"
2474
+ }
2475
+ },
2476
+ "node_modules/dompurify": {
2477
+ "version": "3.2.7",
2478
+ "resolved": "https://registry.npmjs.org/dompurify/-/dompurify-3.2.7.tgz",
2479
+ "integrity": "sha512-WhL/YuveyGXJaerVlMYGWhvQswa7myDG17P7Vu65EWC05o8vfeNbvNf4d/BOvH99+ZW+LlQsc1GDKMa1vNK6dw==",
2480
+ "license": "(MPL-2.0 OR Apache-2.0)",
2481
+ "peer": true,
2482
+ "optionalDependencies": {
2483
+ "@types/trusted-types": "^2.0.7"
2484
+ }
2485
+ },
2097
2486
  "node_modules/electron-to-chromium": {
2098
2487
  "version": "1.5.307",
2099
2488
  "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.307.tgz",
@@ -2101,6 +2490,20 @@
2101
2490
  "dev": true,
2102
2491
  "license": "ISC"
2103
2492
  },
2493
+ "node_modules/enhanced-resolve": {
2494
+ "version": "5.20.0",
2495
+ "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.20.0.tgz",
2496
+ "integrity": "sha512-/ce7+jQ1PQ6rVXwe+jKEg5hW5ciicHwIQUagZkp6IufBoY3YDgdTTY1azVs0qoRgVmvsNB+rbjLJxDAeHHtwsQ==",
2497
+ "dev": true,
2498
+ "license": "MIT",
2499
+ "dependencies": {
2500
+ "graceful-fs": "^4.2.4",
2501
+ "tapable": "^2.3.0"
2502
+ },
2503
+ "engines": {
2504
+ "node": ">=10.13.0"
2505
+ }
2506
+ },
2104
2507
  "node_modules/esbuild": {
2105
2508
  "version": "0.27.3",
2106
2509
  "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.3.tgz",
@@ -2196,6 +2599,13 @@
2196
2599
  "node": ">=6.9.0"
2197
2600
  }
2198
2601
  },
2602
+ "node_modules/graceful-fs": {
2603
+ "version": "4.2.11",
2604
+ "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz",
2605
+ "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==",
2606
+ "dev": true,
2607
+ "license": "ISC"
2608
+ },
2199
2609
  "node_modules/iconv-lite": {
2200
2610
  "version": "0.6.3",
2201
2611
  "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz",
@@ -2217,6 +2627,16 @@
2217
2627
  "node": ">=12"
2218
2628
  }
2219
2629
  },
2630
+ "node_modules/jiti": {
2631
+ "version": "2.6.1",
2632
+ "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.6.1.tgz",
2633
+ "integrity": "sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==",
2634
+ "dev": true,
2635
+ "license": "MIT",
2636
+ "bin": {
2637
+ "jiti": "lib/jiti-cli.mjs"
2638
+ }
2639
+ },
2220
2640
  "node_modules/js-tokens": {
2221
2641
  "version": "4.0.0",
2222
2642
  "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
@@ -2250,6 +2670,267 @@
2250
2670
  "node": ">=6"
2251
2671
  }
2252
2672
  },
2673
+ "node_modules/lightningcss": {
2674
+ "version": "1.31.1",
2675
+ "resolved": "https://registry.npmjs.org/lightningcss/-/lightningcss-1.31.1.tgz",
2676
+ "integrity": "sha512-l51N2r93WmGUye3WuFoN5k10zyvrVs0qfKBhyC5ogUQ6Ew6JUSswh78mbSO+IU3nTWsyOArqPCcShdQSadghBQ==",
2677
+ "dev": true,
2678
+ "license": "MPL-2.0",
2679
+ "dependencies": {
2680
+ "detect-libc": "^2.0.3"
2681
+ },
2682
+ "engines": {
2683
+ "node": ">= 12.0.0"
2684
+ },
2685
+ "funding": {
2686
+ "type": "opencollective",
2687
+ "url": "https://opencollective.com/parcel"
2688
+ },
2689
+ "optionalDependencies": {
2690
+ "lightningcss-android-arm64": "1.31.1",
2691
+ "lightningcss-darwin-arm64": "1.31.1",
2692
+ "lightningcss-darwin-x64": "1.31.1",
2693
+ "lightningcss-freebsd-x64": "1.31.1",
2694
+ "lightningcss-linux-arm-gnueabihf": "1.31.1",
2695
+ "lightningcss-linux-arm64-gnu": "1.31.1",
2696
+ "lightningcss-linux-arm64-musl": "1.31.1",
2697
+ "lightningcss-linux-x64-gnu": "1.31.1",
2698
+ "lightningcss-linux-x64-musl": "1.31.1",
2699
+ "lightningcss-win32-arm64-msvc": "1.31.1",
2700
+ "lightningcss-win32-x64-msvc": "1.31.1"
2701
+ }
2702
+ },
2703
+ "node_modules/lightningcss-android-arm64": {
2704
+ "version": "1.31.1",
2705
+ "resolved": "https://registry.npmjs.org/lightningcss-android-arm64/-/lightningcss-android-arm64-1.31.1.tgz",
2706
+ "integrity": "sha512-HXJF3x8w9nQ4jbXRiNppBCqeZPIAfUo8zE/kOEGbW5NZvGc/K7nMxbhIr+YlFlHW5mpbg/YFPdbnCh1wAXCKFg==",
2707
+ "cpu": [
2708
+ "arm64"
2709
+ ],
2710
+ "dev": true,
2711
+ "license": "MPL-2.0",
2712
+ "optional": true,
2713
+ "os": [
2714
+ "android"
2715
+ ],
2716
+ "engines": {
2717
+ "node": ">= 12.0.0"
2718
+ },
2719
+ "funding": {
2720
+ "type": "opencollective",
2721
+ "url": "https://opencollective.com/parcel"
2722
+ }
2723
+ },
2724
+ "node_modules/lightningcss-darwin-arm64": {
2725
+ "version": "1.31.1",
2726
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-arm64/-/lightningcss-darwin-arm64-1.31.1.tgz",
2727
+ "integrity": "sha512-02uTEqf3vIfNMq3h/z2cJfcOXnQ0GRwQrkmPafhueLb2h7mqEidiCzkE4gBMEH65abHRiQvhdcQ+aP0D0g67sg==",
2728
+ "cpu": [
2729
+ "arm64"
2730
+ ],
2731
+ "dev": true,
2732
+ "license": "MPL-2.0",
2733
+ "optional": true,
2734
+ "os": [
2735
+ "darwin"
2736
+ ],
2737
+ "engines": {
2738
+ "node": ">= 12.0.0"
2739
+ },
2740
+ "funding": {
2741
+ "type": "opencollective",
2742
+ "url": "https://opencollective.com/parcel"
2743
+ }
2744
+ },
2745
+ "node_modules/lightningcss-darwin-x64": {
2746
+ "version": "1.31.1",
2747
+ "resolved": "https://registry.npmjs.org/lightningcss-darwin-x64/-/lightningcss-darwin-x64-1.31.1.tgz",
2748
+ "integrity": "sha512-1ObhyoCY+tGxtsz1lSx5NXCj3nirk0Y0kB/g8B8DT+sSx4G9djitg9ejFnjb3gJNWo7qXH4DIy2SUHvpoFwfTA==",
2749
+ "cpu": [
2750
+ "x64"
2751
+ ],
2752
+ "dev": true,
2753
+ "license": "MPL-2.0",
2754
+ "optional": true,
2755
+ "os": [
2756
+ "darwin"
2757
+ ],
2758
+ "engines": {
2759
+ "node": ">= 12.0.0"
2760
+ },
2761
+ "funding": {
2762
+ "type": "opencollective",
2763
+ "url": "https://opencollective.com/parcel"
2764
+ }
2765
+ },
2766
+ "node_modules/lightningcss-freebsd-x64": {
2767
+ "version": "1.31.1",
2768
+ "resolved": "https://registry.npmjs.org/lightningcss-freebsd-x64/-/lightningcss-freebsd-x64-1.31.1.tgz",
2769
+ "integrity": "sha512-1RINmQKAItO6ISxYgPwszQE1BrsVU5aB45ho6O42mu96UiZBxEXsuQ7cJW4zs4CEodPUioj/QrXW1r9pLUM74A==",
2770
+ "cpu": [
2771
+ "x64"
2772
+ ],
2773
+ "dev": true,
2774
+ "license": "MPL-2.0",
2775
+ "optional": true,
2776
+ "os": [
2777
+ "freebsd"
2778
+ ],
2779
+ "engines": {
2780
+ "node": ">= 12.0.0"
2781
+ },
2782
+ "funding": {
2783
+ "type": "opencollective",
2784
+ "url": "https://opencollective.com/parcel"
2785
+ }
2786
+ },
2787
+ "node_modules/lightningcss-linux-arm-gnueabihf": {
2788
+ "version": "1.31.1",
2789
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm-gnueabihf/-/lightningcss-linux-arm-gnueabihf-1.31.1.tgz",
2790
+ "integrity": "sha512-OOCm2//MZJ87CdDK62rZIu+aw9gBv4azMJuA8/KB74wmfS3lnC4yoPHm0uXZ/dvNNHmnZnB8XLAZzObeG0nS1g==",
2791
+ "cpu": [
2792
+ "arm"
2793
+ ],
2794
+ "dev": true,
2795
+ "license": "MPL-2.0",
2796
+ "optional": true,
2797
+ "os": [
2798
+ "linux"
2799
+ ],
2800
+ "engines": {
2801
+ "node": ">= 12.0.0"
2802
+ },
2803
+ "funding": {
2804
+ "type": "opencollective",
2805
+ "url": "https://opencollective.com/parcel"
2806
+ }
2807
+ },
2808
+ "node_modules/lightningcss-linux-arm64-gnu": {
2809
+ "version": "1.31.1",
2810
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-gnu/-/lightningcss-linux-arm64-gnu-1.31.1.tgz",
2811
+ "integrity": "sha512-WKyLWztD71rTnou4xAD5kQT+982wvca7E6QoLpoawZ1gP9JM0GJj4Tp5jMUh9B3AitHbRZ2/H3W5xQmdEOUlLg==",
2812
+ "cpu": [
2813
+ "arm64"
2814
+ ],
2815
+ "dev": true,
2816
+ "license": "MPL-2.0",
2817
+ "optional": true,
2818
+ "os": [
2819
+ "linux"
2820
+ ],
2821
+ "engines": {
2822
+ "node": ">= 12.0.0"
2823
+ },
2824
+ "funding": {
2825
+ "type": "opencollective",
2826
+ "url": "https://opencollective.com/parcel"
2827
+ }
2828
+ },
2829
+ "node_modules/lightningcss-linux-arm64-musl": {
2830
+ "version": "1.31.1",
2831
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-arm64-musl/-/lightningcss-linux-arm64-musl-1.31.1.tgz",
2832
+ "integrity": "sha512-mVZ7Pg2zIbe3XlNbZJdjs86YViQFoJSpc41CbVmKBPiGmC4YrfeOyz65ms2qpAobVd7WQsbW4PdsSJEMymyIMg==",
2833
+ "cpu": [
2834
+ "arm64"
2835
+ ],
2836
+ "dev": true,
2837
+ "license": "MPL-2.0",
2838
+ "optional": true,
2839
+ "os": [
2840
+ "linux"
2841
+ ],
2842
+ "engines": {
2843
+ "node": ">= 12.0.0"
2844
+ },
2845
+ "funding": {
2846
+ "type": "opencollective",
2847
+ "url": "https://opencollective.com/parcel"
2848
+ }
2849
+ },
2850
+ "node_modules/lightningcss-linux-x64-gnu": {
2851
+ "version": "1.31.1",
2852
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-gnu/-/lightningcss-linux-x64-gnu-1.31.1.tgz",
2853
+ "integrity": "sha512-xGlFWRMl+0KvUhgySdIaReQdB4FNudfUTARn7q0hh/V67PVGCs3ADFjw+6++kG1RNd0zdGRlEKa+T13/tQjPMA==",
2854
+ "cpu": [
2855
+ "x64"
2856
+ ],
2857
+ "dev": true,
2858
+ "license": "MPL-2.0",
2859
+ "optional": true,
2860
+ "os": [
2861
+ "linux"
2862
+ ],
2863
+ "engines": {
2864
+ "node": ">= 12.0.0"
2865
+ },
2866
+ "funding": {
2867
+ "type": "opencollective",
2868
+ "url": "https://opencollective.com/parcel"
2869
+ }
2870
+ },
2871
+ "node_modules/lightningcss-linux-x64-musl": {
2872
+ "version": "1.31.1",
2873
+ "resolved": "https://registry.npmjs.org/lightningcss-linux-x64-musl/-/lightningcss-linux-x64-musl-1.31.1.tgz",
2874
+ "integrity": "sha512-eowF8PrKHw9LpoZii5tdZwnBcYDxRw2rRCyvAXLi34iyeYfqCQNA9rmUM0ce62NlPhCvof1+9ivRaTY6pSKDaA==",
2875
+ "cpu": [
2876
+ "x64"
2877
+ ],
2878
+ "dev": true,
2879
+ "license": "MPL-2.0",
2880
+ "optional": true,
2881
+ "os": [
2882
+ "linux"
2883
+ ],
2884
+ "engines": {
2885
+ "node": ">= 12.0.0"
2886
+ },
2887
+ "funding": {
2888
+ "type": "opencollective",
2889
+ "url": "https://opencollective.com/parcel"
2890
+ }
2891
+ },
2892
+ "node_modules/lightningcss-win32-arm64-msvc": {
2893
+ "version": "1.31.1",
2894
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-arm64-msvc/-/lightningcss-win32-arm64-msvc-1.31.1.tgz",
2895
+ "integrity": "sha512-aJReEbSEQzx1uBlQizAOBSjcmr9dCdL3XuC/6HLXAxmtErsj2ICo5yYggg1qOODQMtnjNQv2UHb9NpOuFtYe4w==",
2896
+ "cpu": [
2897
+ "arm64"
2898
+ ],
2899
+ "dev": true,
2900
+ "license": "MPL-2.0",
2901
+ "optional": true,
2902
+ "os": [
2903
+ "win32"
2904
+ ],
2905
+ "engines": {
2906
+ "node": ">= 12.0.0"
2907
+ },
2908
+ "funding": {
2909
+ "type": "opencollective",
2910
+ "url": "https://opencollective.com/parcel"
2911
+ }
2912
+ },
2913
+ "node_modules/lightningcss-win32-x64-msvc": {
2914
+ "version": "1.31.1",
2915
+ "resolved": "https://registry.npmjs.org/lightningcss-win32-x64-msvc/-/lightningcss-win32-x64-msvc-1.31.1.tgz",
2916
+ "integrity": "sha512-I9aiFrbd7oYHwlnQDqr1Roz+fTz61oDDJX7n9tYF9FJymH1cIN1DtKw3iYt6b8WZgEjoNwVSncwF4wx/ZedMhw==",
2917
+ "cpu": [
2918
+ "x64"
2919
+ ],
2920
+ "dev": true,
2921
+ "license": "MPL-2.0",
2922
+ "optional": true,
2923
+ "os": [
2924
+ "win32"
2925
+ ],
2926
+ "engines": {
2927
+ "node": ">= 12.0.0"
2928
+ },
2929
+ "funding": {
2930
+ "type": "opencollective",
2931
+ "url": "https://opencollective.com/parcel"
2932
+ }
2933
+ },
2253
2934
  "node_modules/lru-cache": {
2254
2935
  "version": "5.1.1",
2255
2936
  "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz",
@@ -2260,6 +2941,25 @@
2260
2941
  "yallist": "^3.0.2"
2261
2942
  }
2262
2943
  },
2944
+ "node_modules/lucide-react": {
2945
+ "version": "0.577.0",
2946
+ "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.577.0.tgz",
2947
+ "integrity": "sha512-4LjoFv2eEPwYDPg/CUdBJQSDfPyzXCRrVW1X7jrx/trgxnxkHFjnVZINbzvzxjN70dxychOfg+FTYwBiS3pQ5A==",
2948
+ "license": "ISC",
2949
+ "peerDependencies": {
2950
+ "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
2951
+ }
2952
+ },
2953
+ "node_modules/magic-string": {
2954
+ "version": "0.30.21",
2955
+ "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
2956
+ "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==",
2957
+ "dev": true,
2958
+ "license": "MIT",
2959
+ "dependencies": {
2960
+ "@jridgewell/sourcemap-codec": "^1.5.5"
2961
+ }
2962
+ },
2263
2963
  "node_modules/marked": {
2264
2964
  "version": "15.0.12",
2265
2965
  "resolved": "https://registry.npmjs.org/marked/-/marked-15.0.12.tgz",
@@ -2272,6 +2972,30 @@
2272
2972
  "node": ">= 18"
2273
2973
  }
2274
2974
  },
2975
+ "node_modules/monaco-editor": {
2976
+ "version": "0.55.1",
2977
+ "resolved": "https://registry.npmjs.org/monaco-editor/-/monaco-editor-0.55.1.tgz",
2978
+ "integrity": "sha512-jz4x+TJNFHwHtwuV9vA9rMujcZRb0CEilTEwG2rRSpe/A7Jdkuj8xPKttCgOh+v/lkHy7HsZ64oj+q3xoAFl9A==",
2979
+ "license": "MIT",
2980
+ "peer": true,
2981
+ "dependencies": {
2982
+ "dompurify": "3.2.7",
2983
+ "marked": "14.0.0"
2984
+ }
2985
+ },
2986
+ "node_modules/monaco-editor/node_modules/marked": {
2987
+ "version": "14.0.0",
2988
+ "resolved": "https://registry.npmjs.org/marked/-/marked-14.0.0.tgz",
2989
+ "integrity": "sha512-uIj4+faQ+MgHgwUW1l2PsPglZLOLOT1uErt06dAPtx2kjteLAkbsd/0FiYg/MGS+i7ZKLb7w2WClxHkzOOuryQ==",
2990
+ "license": "MIT",
2991
+ "peer": true,
2992
+ "bin": {
2993
+ "marked": "bin/marked.js"
2994
+ },
2995
+ "engines": {
2996
+ "node": ">= 18"
2997
+ }
2998
+ },
2275
2999
  "node_modules/ms": {
2276
3000
  "version": "2.1.3",
2277
3001
  "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
@@ -2518,6 +3242,33 @@
2518
3242
  "node": ">=0.10.0"
2519
3243
  }
2520
3244
  },
3245
+ "node_modules/state-local": {
3246
+ "version": "1.0.7",
3247
+ "resolved": "https://registry.npmjs.org/state-local/-/state-local-1.0.7.tgz",
3248
+ "integrity": "sha512-HTEHMNieakEnoe33shBYcZ7NX83ACUjCu8c40iOGEZsngj9zRnkqS9j1pqQPXwobB0ZcVTk27REb7COQ0UR59w==",
3249
+ "license": "MIT"
3250
+ },
3251
+ "node_modules/tailwindcss": {
3252
+ "version": "4.2.1",
3253
+ "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-4.2.1.tgz",
3254
+ "integrity": "sha512-/tBrSQ36vCleJkAOsy9kbNTgaxvGbyOamC30PRePTQe/o1MFwEKHQk4Cn7BNGaPtjp+PuUrByJehM1hgxfq4sw==",
3255
+ "dev": true,
3256
+ "license": "MIT"
3257
+ },
3258
+ "node_modules/tapable": {
3259
+ "version": "2.3.0",
3260
+ "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.3.0.tgz",
3261
+ "integrity": "sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==",
3262
+ "dev": true,
3263
+ "license": "MIT",
3264
+ "engines": {
3265
+ "node": ">=6"
3266
+ },
3267
+ "funding": {
3268
+ "type": "opencollective",
3269
+ "url": "https://opencollective.com/webpack"
3270
+ }
3271
+ },
2521
3272
  "node_modules/tinyglobby": {
2522
3273
  "version": "0.2.15",
2523
3274
  "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz",
@@ -2580,6 +3331,15 @@
2580
3331
  "browserslist": ">= 4.21.0"
2581
3332
  }
2582
3333
  },
3334
+ "node_modules/use-sync-external-store": {
3335
+ "version": "1.6.0",
3336
+ "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz",
3337
+ "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==",
3338
+ "license": "MIT",
3339
+ "peerDependencies": {
3340
+ "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
3341
+ }
3342
+ },
2583
3343
  "node_modules/vite": {
2584
3344
  "version": "7.3.1",
2585
3345
  "resolved": "https://registry.npmjs.org/vite/-/vite-7.3.1.tgz",
@@ -2661,6 +3421,35 @@
2661
3421
  "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==",
2662
3422
  "dev": true,
2663
3423
  "license": "ISC"
3424
+ },
3425
+ "node_modules/zustand": {
3426
+ "version": "5.0.11",
3427
+ "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.11.tgz",
3428
+ "integrity": "sha512-fdZY+dk7zn/vbWNCYmzZULHRrss0jx5pPFiOuMZ/5HJN6Yv3u+1Wswy/4MpZEkEGhtNH+pwxZB8OKgUBPzYAGg==",
3429
+ "license": "MIT",
3430
+ "engines": {
3431
+ "node": ">=12.20.0"
3432
+ },
3433
+ "peerDependencies": {
3434
+ "@types/react": ">=18.0.0",
3435
+ "immer": ">=9.0.6",
3436
+ "react": ">=18.0.0",
3437
+ "use-sync-external-store": ">=1.2.0"
3438
+ },
3439
+ "peerDependenciesMeta": {
3440
+ "@types/react": {
3441
+ "optional": true
3442
+ },
3443
+ "immer": {
3444
+ "optional": true
3445
+ },
3446
+ "react": {
3447
+ "optional": true
3448
+ },
3449
+ "use-sync-external-store": {
3450
+ "optional": true
3451
+ }
3452
+ }
2664
3453
  }
2665
3454
  }
2666
3455
  }