@dyyz1993/create-agent 1.9.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 (358) hide show
  1. package/package.json +25 -0
  2. package/src/__tests__/cli.test.ts +85 -0
  3. package/src/__tests__/copy.test.ts +168 -0
  4. package/src/__tests__/templates.test.ts +87 -0
  5. package/src/cli.ts +65 -0
  6. package/src/commands/create.ts +49 -0
  7. package/src/commands/list.ts +12 -0
  8. package/src/commands/status.ts +85 -0
  9. package/src/commands/workspace.ts +129 -0
  10. package/src/lib/copy.ts +285 -0
  11. package/src/lib/templates.ts +57 -0
  12. package/src/lib/types.ts +6 -0
  13. package/templates/agent/.env.example +7 -0
  14. package/templates/agent/LICENSE +21 -0
  15. package/templates/agent/README.md +87 -0
  16. package/templates/agent/bun.lock +1279 -0
  17. package/templates/agent/electrobun.config.ts +27 -0
  18. package/templates/agent/eslint.config.mjs +63 -0
  19. package/templates/agent/llms.txt +24 -0
  20. package/templates/agent/package-lock.json +3670 -0
  21. package/templates/agent/package.json +59 -0
  22. package/templates/agent/postcss.config.js +6 -0
  23. package/templates/agent/scripts/dev.ts +138 -0
  24. package/templates/agent/src/__tests__/server-config.test.ts +59 -0
  25. package/templates/agent/src/bun/index.ts +73 -0
  26. package/templates/agent/src/gateway/__tests__/ws-handler.test.ts +48 -0
  27. package/templates/agent/src/gateway/http-routes.ts +1 -0
  28. package/templates/agent/src/gateway/ipc-transport.ts +68 -0
  29. package/templates/agent/src/gateway/ws-handler.ts +86 -0
  30. package/templates/agent/src/mainview/App.tsx +41 -0
  31. package/templates/agent/src/mainview/__tests__/components/ChatPanel.test.tsx +114 -0
  32. package/templates/agent/src/mainview/__tests__/components/ExplorerSidebar.test.tsx +141 -0
  33. package/templates/agent/src/mainview/__tests__/components/MessageBubble.test.tsx +72 -0
  34. package/templates/agent/src/mainview/__tests__/hooks/use-input-history.test.ts +125 -0
  35. package/templates/agent/src/mainview/__tests__/hooks/use-rpc-init.test.ts +217 -0
  36. package/templates/agent/src/mainview/__tests__/hooks/use-sidebar-resize.test.ts +127 -0
  37. package/templates/agent/src/mainview/__tests__/i18n/i18n.test.ts +48 -0
  38. package/templates/agent/src/mainview/__tests__/setup.ts +37 -0
  39. package/templates/agent/src/mainview/__tests__/stores/use-chat-store.test.ts +83 -0
  40. package/templates/agent/src/mainview/__tests__/stores/use-sidebar-store.test.ts +85 -0
  41. package/templates/agent/src/mainview/components/activity-bar/ActivityBar.tsx +36 -0
  42. package/templates/agent/src/mainview/components/activity-bar/MobileTabBar.tsx +36 -0
  43. package/templates/agent/src/mainview/components/activity-bar/__tests__/ActivityBar.test.tsx +44 -0
  44. package/templates/agent/src/mainview/components/activity-bar/__tests__/MobileTabBar.test.tsx +44 -0
  45. package/templates/agent/src/mainview/components/bash/BashPanel.tsx +206 -0
  46. package/templates/agent/src/mainview/components/bash/__tests__/BashPanel.test.tsx +103 -0
  47. package/templates/agent/src/mainview/components/chat/ChatPanel.tsx +102 -0
  48. package/templates/agent/src/mainview/components/chat/MessageBubble.tsx +86 -0
  49. package/templates/agent/src/mainview/components/common/ErrorBoundary.tsx +58 -0
  50. package/templates/agent/src/mainview/components/common/LanguageSwitcher.tsx +14 -0
  51. package/templates/agent/src/mainview/components/common/ThemeToggle.tsx +24 -0
  52. package/templates/agent/src/mainview/components/common/__tests__/ErrorBoundary.test.tsx +74 -0
  53. package/templates/agent/src/mainview/components/common/__tests__/LanguageSwitcher.test.tsx +44 -0
  54. package/templates/agent/src/mainview/components/common/__tests__/ThemeToggle.test.tsx +41 -0
  55. package/templates/agent/src/mainview/components/debug/DebugPanel.tsx +120 -0
  56. package/templates/agent/src/mainview/components/debug/__tests__/DebugPanel.test.tsx +102 -0
  57. package/templates/agent/src/mainview/components/diff/DiffViewerPanel.tsx +106 -0
  58. package/templates/agent/src/mainview/components/diff/__tests__/DiffViewerPanel.test.tsx +73 -0
  59. package/templates/agent/src/mainview/components/explorer/ConfirmDialog.tsx +53 -0
  60. package/templates/agent/src/mainview/components/explorer/ContextMenu.tsx +82 -0
  61. package/templates/agent/src/mainview/components/explorer/ExplorerSidebar.tsx +221 -0
  62. package/templates/agent/src/mainview/components/explorer/InlineInput.tsx +55 -0
  63. package/templates/agent/src/mainview/components/explorer/TreeNodeItem.tsx +121 -0
  64. package/templates/agent/src/mainview/components/explorer/__tests__/ConfirmDialog.test.tsx +37 -0
  65. package/templates/agent/src/mainview/components/explorer/__tests__/ContextMenu.test.tsx +49 -0
  66. package/templates/agent/src/mainview/components/explorer/__tests__/InlineInput.test.tsx +48 -0
  67. package/templates/agent/src/mainview/components/explorer/__tests__/TreeNodeItem.test.tsx +146 -0
  68. package/templates/agent/src/mainview/components/feed/FeedPanel.tsx +239 -0
  69. package/templates/agent/src/mainview/components/feed/__tests__/FeedPanel.test.tsx +108 -0
  70. package/templates/agent/src/mainview/components/file-preview/FilePreviewOverlay.tsx +56 -0
  71. package/templates/agent/src/mainview/components/file-preview/VirtualizedCodeView.tsx +99 -0
  72. package/templates/agent/src/mainview/components/file-preview/__tests__/FilePreviewOverlay.test.tsx +96 -0
  73. package/templates/agent/src/mainview/components/file-preview/__tests__/VirtualizedCodeView.test.tsx +58 -0
  74. package/templates/agent/src/mainview/components/git/GitBranchSelector.tsx +98 -0
  75. package/templates/agent/src/mainview/components/git/GitCommitInput.tsx +60 -0
  76. package/templates/agent/src/mainview/components/git/GitPanel.tsx +528 -0
  77. package/templates/agent/src/mainview/components/git/__tests__/GitBranchSelector.test.tsx +76 -0
  78. package/templates/agent/src/mainview/components/git/__tests__/GitCommitInput.test.tsx +91 -0
  79. package/templates/agent/src/mainview/components/git/__tests__/GitPanel.test.tsx +174 -0
  80. package/templates/agent/src/mainview/components/layout/AppLayout.tsx +170 -0
  81. package/templates/agent/src/mainview/components/layout/__tests__/AppLayout.test.tsx +163 -0
  82. package/templates/agent/src/mainview/components/rules/RulesPanel.tsx +117 -0
  83. package/templates/agent/src/mainview/components/rules/__tests__/RulesPanel.test.tsx +91 -0
  84. package/templates/agent/src/mainview/components/search/SearchPanel.tsx +404 -0
  85. package/templates/agent/src/mainview/components/search/__tests__/SearchPanel.test.tsx +50 -0
  86. package/templates/agent/src/mainview/components/sidebar/PinButton.tsx +20 -0
  87. package/templates/agent/src/mainview/components/sidebar/__tests__/PinButton.test.tsx +48 -0
  88. package/templates/agent/src/mainview/components/todo/TodoPanel.tsx +141 -0
  89. package/templates/agent/src/mainview/components/todo/__tests__/TodoPanel.test.tsx +91 -0
  90. package/templates/agent/src/mainview/global.d.ts +13 -0
  91. package/templates/agent/src/mainview/hooks/__tests__/use-breakpoint.test.ts +147 -0
  92. package/templates/agent/src/mainview/hooks/use-breakpoint.ts +34 -0
  93. package/templates/agent/src/mainview/hooks/use-input-history.ts +84 -0
  94. package/templates/agent/src/mainview/hooks/use-rpc-init.ts +61 -0
  95. package/templates/agent/src/mainview/hooks/use-sidebar-resize.ts +40 -0
  96. package/templates/agent/src/mainview/index.css +61 -0
  97. package/templates/agent/src/mainview/index.html +12 -0
  98. package/templates/agent/src/mainview/lib/api-client.ts +192 -0
  99. package/templates/agent/src/mainview/lib/i18n/index.ts +30 -0
  100. package/templates/agent/src/mainview/lib/i18n/locales/en.json +157 -0
  101. package/templates/agent/src/mainview/lib/i18n/locales/zh.json +157 -0
  102. package/templates/agent/src/mainview/lib/rpc-cache.ts +94 -0
  103. package/templates/agent/src/mainview/main.tsx +24 -0
  104. package/templates/agent/src/mainview/stores/__tests__/use-app-store.test.ts +86 -0
  105. package/templates/agent/src/mainview/stores/__tests__/use-bash-store.test.ts +99 -0
  106. package/templates/agent/src/mainview/stores/__tests__/use-connection-store.test.ts +26 -0
  107. package/templates/agent/src/mainview/stores/__tests__/use-explorer-store.test.ts +130 -0
  108. package/templates/agent/src/mainview/stores/__tests__/use-feed-store.test.ts +132 -0
  109. package/templates/agent/src/mainview/stores/__tests__/use-git-store.test.ts +161 -0
  110. package/templates/agent/src/mainview/stores/__tests__/use-locale-store.test.ts +32 -0
  111. package/templates/agent/src/mainview/stores/__tests__/use-log-store.test.ts +28 -0
  112. package/templates/agent/src/mainview/stores/__tests__/use-notification-store.test.ts +102 -0
  113. package/templates/agent/src/mainview/stores/__tests__/use-rules-store.test.ts +75 -0
  114. package/templates/agent/src/mainview/stores/__tests__/use-theme-store.test.ts +59 -0
  115. package/templates/agent/src/mainview/stores/__tests__/use-todo-store.test.ts +75 -0
  116. package/templates/agent/src/mainview/stores/message-batcher.ts +25 -0
  117. package/templates/agent/src/mainview/stores/use-app-store.ts +99 -0
  118. package/templates/agent/src/mainview/stores/use-bash-store.ts +93 -0
  119. package/templates/agent/src/mainview/stores/use-chat-store.ts +37 -0
  120. package/templates/agent/src/mainview/stores/use-connection-store.ts +42 -0
  121. package/templates/agent/src/mainview/stores/use-explorer-store.ts +320 -0
  122. package/templates/agent/src/mainview/stores/use-feed-store.ts +129 -0
  123. package/templates/agent/src/mainview/stores/use-git-store.ts +291 -0
  124. package/templates/agent/src/mainview/stores/use-locale-store.ts +27 -0
  125. package/templates/agent/src/mainview/stores/use-log-store.ts +16 -0
  126. package/templates/agent/src/mainview/stores/use-notification-store.ts +82 -0
  127. package/templates/agent/src/mainview/stores/use-rules-store.ts +54 -0
  128. package/templates/agent/src/mainview/stores/use-sidebar-store.ts +99 -0
  129. package/templates/agent/src/mainview/stores/use-theme-store.ts +46 -0
  130. package/templates/agent/src/mainview/stores/use-todo-store.ts +54 -0
  131. package/templates/agent/src/mainview/types/index.ts +33 -0
  132. package/templates/agent/src/mainview/utils/constants.ts +1 -0
  133. package/templates/agent/src/mainview/utils/drop-handler.ts +150 -0
  134. package/templates/agent/src/mainview/utils/file-icon.tsx +24 -0
  135. package/templates/agent/src/mainview/utils/file-utils.ts +35 -0
  136. package/templates/agent/src/server-config.ts +43 -0
  137. package/templates/agent/src/server.ts +89 -0
  138. package/templates/agent/src/shared/handlers/__tests__/bash-handler.test.ts +135 -0
  139. package/templates/agent/src/shared/handlers/__tests__/chat-handler.test.ts +77 -0
  140. package/templates/agent/src/shared/handlers/__tests__/feed-handler.test.ts +108 -0
  141. package/templates/agent/src/shared/handlers/__tests__/file-handler.test.ts +100 -0
  142. package/templates/agent/src/shared/handlers/__tests__/system-handler.test.ts +55 -0
  143. package/templates/agent/src/shared/handlers/__tests__/timer-handler.test.ts +77 -0
  144. package/templates/agent/src/shared/handlers/bash.ts +89 -0
  145. package/templates/agent/src/shared/handlers/chat.ts +179 -0
  146. package/templates/agent/src/shared/handlers/feed.ts +53 -0
  147. package/templates/agent/src/shared/handlers/file.ts +99 -0
  148. package/templates/agent/src/shared/handlers/git.ts +263 -0
  149. package/templates/agent/src/shared/handlers/index.ts +10 -0
  150. package/templates/agent/src/shared/handlers/rules.ts +45 -0
  151. package/templates/agent/src/shared/handlers/system.ts +27 -0
  152. package/templates/agent/src/shared/handlers/timer.ts +34 -0
  153. package/templates/agent/src/shared/handlers/todo.ts +45 -0
  154. package/templates/agent/src/shared/lib/__tests__/bash-security.test.ts +125 -0
  155. package/templates/agent/src/shared/lib/__tests__/logger.test.ts +92 -0
  156. package/templates/agent/src/shared/lib/__tests__/path-security.test.ts +77 -0
  157. package/templates/agent/src/shared/lib/bash-security.ts +64 -0
  158. package/templates/agent/src/shared/lib/logger.ts +130 -0
  159. package/templates/agent/src/shared/lib/path-security.ts +38 -0
  160. package/templates/agent/src/shared/lib/port-registry.ts +103 -0
  161. package/templates/agent/src/shared/modules/bash.ts +19 -0
  162. package/templates/agent/src/shared/modules/chat.ts +20 -0
  163. package/templates/agent/src/shared/modules/feed.ts +30 -0
  164. package/templates/agent/src/shared/modules/file.ts +40 -0
  165. package/templates/agent/src/shared/modules/git.ts +81 -0
  166. package/templates/agent/src/shared/modules/rules.ts +25 -0
  167. package/templates/agent/src/shared/modules/system.ts +8 -0
  168. package/templates/agent/src/shared/modules/timer.ts +11 -0
  169. package/templates/agent/src/shared/modules/todo.ts +27 -0
  170. package/templates/agent/src/shared/register-all-handlers.ts +36 -0
  171. package/templates/agent/src/shared/rpc-schema.ts +35 -0
  172. package/templates/agent/tailwind.config.js +15 -0
  173. package/templates/agent/tsconfig.json +26 -0
  174. package/templates/agent/vite.config.ts +3 -0
  175. package/templates/agent/vitest.config.ts +3 -0
  176. package/templates/chat/.env.example +6 -0
  177. package/templates/chat/LICENSE +21 -0
  178. package/templates/chat/README.md +56 -0
  179. package/templates/chat/bun.lock +1203 -0
  180. package/templates/chat/electrobun.config.ts +27 -0
  181. package/templates/chat/eslint.config.mjs +56 -0
  182. package/templates/chat/llms.txt +24 -0
  183. package/templates/chat/package-lock.json +3670 -0
  184. package/templates/chat/package.json +58 -0
  185. package/templates/chat/postcss.config.js +6 -0
  186. package/templates/chat/scripts/dev.ts +138 -0
  187. package/templates/chat/src/__tests__/server-config.test.ts +59 -0
  188. package/templates/chat/src/bun/index.ts +72 -0
  189. package/templates/chat/src/gateway/__tests__/ws-handler.test.ts +48 -0
  190. package/templates/chat/src/gateway/http-routes.ts +1 -0
  191. package/templates/chat/src/gateway/ipc-transport.ts +68 -0
  192. package/templates/chat/src/gateway/ws-handler.ts +86 -0
  193. package/templates/chat/src/mainview/App.tsx +108 -0
  194. package/templates/chat/src/mainview/__tests__/components/ChatPanel.test.tsx +76 -0
  195. package/templates/chat/src/mainview/__tests__/components/MessageBubble.test.tsx +48 -0
  196. package/templates/chat/src/mainview/__tests__/i18n/i18n.test.ts +48 -0
  197. package/templates/chat/src/mainview/__tests__/setup-verify.test.ts +8 -0
  198. package/templates/chat/src/mainview/__tests__/setup.ts +37 -0
  199. package/templates/chat/src/mainview/__tests__/stores/use-app-store.test.ts +46 -0
  200. package/templates/chat/src/mainview/__tests__/stores/use-chat-store.test.ts +104 -0
  201. package/templates/chat/src/mainview/__tests__/stores/use-connection-store.test.ts +35 -0
  202. package/templates/chat/src/mainview/__tests__/stores/use-log-store.test.ts +45 -0
  203. package/templates/chat/src/mainview/__tests__/stores/use-notification-store.test.ts +102 -0
  204. package/templates/chat/src/mainview/__tests__/stores/use-sidebar-store.test.ts +89 -0
  205. package/templates/chat/src/mainview/components/activity-bar/ActivityBar.tsx +26 -0
  206. package/templates/chat/src/mainview/components/activity-bar/MobileTabBar.tsx +20 -0
  207. package/templates/chat/src/mainview/components/chat/ChatPanel.tsx +66 -0
  208. package/templates/chat/src/mainview/components/chat/MessageBubble.tsx +85 -0
  209. package/templates/chat/src/mainview/components/common/LanguageSwitcher.tsx +15 -0
  210. package/templates/chat/src/mainview/components/common/ThemeToggle.tsx +24 -0
  211. package/templates/chat/src/mainview/components/sidebar/PinButton.tsx +20 -0
  212. package/templates/chat/src/mainview/global.d.ts +13 -0
  213. package/templates/chat/src/mainview/hooks/use-breakpoint.ts +34 -0
  214. package/templates/chat/src/mainview/hooks/use-input-history.ts +84 -0
  215. package/templates/chat/src/mainview/index.css +61 -0
  216. package/templates/chat/src/mainview/index.html +12 -0
  217. package/templates/chat/src/mainview/lib/api-client.ts +175 -0
  218. package/templates/chat/src/mainview/lib/i18n/index.ts +30 -0
  219. package/templates/chat/src/mainview/lib/i18n/locales/en.json +157 -0
  220. package/templates/chat/src/mainview/lib/i18n/locales/zh.json +157 -0
  221. package/templates/chat/src/mainview/main.tsx +20 -0
  222. package/templates/chat/src/mainview/stores/__tests__/use-locale-store.test.ts +32 -0
  223. package/templates/chat/src/mainview/stores/__tests__/use-theme-store.test.ts +59 -0
  224. package/templates/chat/src/mainview/stores/message-batcher.ts +25 -0
  225. package/templates/chat/src/mainview/stores/use-app-store.ts +50 -0
  226. package/templates/chat/src/mainview/stores/use-chat-store.ts +37 -0
  227. package/templates/chat/src/mainview/stores/use-connection-store.ts +42 -0
  228. package/templates/chat/src/mainview/stores/use-locale-store.ts +27 -0
  229. package/templates/chat/src/mainview/stores/use-log-store.ts +16 -0
  230. package/templates/chat/src/mainview/stores/use-notification-store.ts +82 -0
  231. package/templates/chat/src/mainview/stores/use-sidebar-store.ts +98 -0
  232. package/templates/chat/src/mainview/stores/use-theme-store.ts +46 -0
  233. package/templates/chat/src/mainview/types/index.ts +8 -0
  234. package/templates/chat/src/mainview/utils/constants.ts +1 -0
  235. package/templates/chat/src/server-config.ts +42 -0
  236. package/templates/chat/src/server.ts +89 -0
  237. package/templates/chat/src/shared/__tests__/chat-handler.test.ts +71 -0
  238. package/templates/chat/src/shared/__tests__/system-handler.test.ts +70 -0
  239. package/templates/chat/src/shared/handlers/chat.ts +186 -0
  240. package/templates/chat/src/shared/handlers/index.ts +2 -0
  241. package/templates/chat/src/shared/handlers/system.ts +27 -0
  242. package/templates/chat/src/shared/lib/logger.ts +130 -0
  243. package/templates/chat/src/shared/lib/path-security.ts +38 -0
  244. package/templates/chat/src/shared/lib/port-registry.ts +103 -0
  245. package/templates/chat/src/shared/modules/chat.ts +20 -0
  246. package/templates/chat/src/shared/modules/system.ts +8 -0
  247. package/templates/chat/src/shared/register-all-handlers.ts +36 -0
  248. package/templates/chat/src/shared/rpc-schema.ts +11 -0
  249. package/templates/chat/tailwind.config.js +15 -0
  250. package/templates/chat/tsconfig.json +26 -0
  251. package/templates/chat/vite.config.ts +3 -0
  252. package/templates/chat/vitest.config.ts +3 -0
  253. package/templates/general/.env.example +7 -0
  254. package/templates/general/LICENSE +21 -0
  255. package/templates/general/README.md +113 -0
  256. package/templates/general/bun.lock +1266 -0
  257. package/templates/general/electrobun.config.ts +27 -0
  258. package/templates/general/eslint.config.mjs +56 -0
  259. package/templates/general/llms.txt +24 -0
  260. package/templates/general/package-lock.json +3670 -0
  261. package/templates/general/package.json +59 -0
  262. package/templates/general/postcss.config.js +6 -0
  263. package/templates/general/scripts/dev.ts +138 -0
  264. package/templates/general/src/__tests__/server-config.test.ts +59 -0
  265. package/templates/general/src/bun/index.ts +72 -0
  266. package/templates/general/src/gateway/http-routes.ts +1 -0
  267. package/templates/general/src/gateway/ipc-transport.ts +68 -0
  268. package/templates/general/src/gateway/ws-handler.ts +86 -0
  269. package/templates/general/src/mainview/App.tsx +40 -0
  270. package/templates/general/src/mainview/__tests__/components/ChatPanel.test.tsx +82 -0
  271. package/templates/general/src/mainview/__tests__/components/FeedPanel.test.tsx +109 -0
  272. package/templates/general/src/mainview/__tests__/components/GitPanel.test.tsx +151 -0
  273. package/templates/general/src/mainview/__tests__/i18n/i18n.test.ts +48 -0
  274. package/templates/general/src/mainview/__tests__/setup-verify.test.ts +8 -0
  275. package/templates/general/src/mainview/__tests__/setup.ts +37 -0
  276. package/templates/general/src/mainview/components/activity-bar/ActivityBar.tsx +40 -0
  277. package/templates/general/src/mainview/components/activity-bar/MobileTabBar.tsx +29 -0
  278. package/templates/general/src/mainview/components/chat/ChatPanel.tsx +66 -0
  279. package/templates/general/src/mainview/components/chat/MessageBubble.tsx +85 -0
  280. package/templates/general/src/mainview/components/common/LanguageSwitcher.tsx +15 -0
  281. package/templates/general/src/mainview/components/common/ThemeToggle.tsx +24 -0
  282. package/templates/general/src/mainview/components/debug/DebugPanel.tsx +176 -0
  283. package/templates/general/src/mainview/components/diff/DiffViewerPanel.tsx +108 -0
  284. package/templates/general/src/mainview/components/explorer/ConfirmDialog.tsx +52 -0
  285. package/templates/general/src/mainview/components/explorer/ContextMenu.tsx +82 -0
  286. package/templates/general/src/mainview/components/explorer/ExplorerSidebar.tsx +225 -0
  287. package/templates/general/src/mainview/components/explorer/InlineInput.tsx +55 -0
  288. package/templates/general/src/mainview/components/explorer/TreeNodeItem.tsx +121 -0
  289. package/templates/general/src/mainview/components/feed/FeedPanel.tsx +248 -0
  290. package/templates/general/src/mainview/components/file-preview/FilePreviewOverlay.tsx +55 -0
  291. package/templates/general/src/mainview/components/file-preview/VirtualizedCodeView.tsx +99 -0
  292. package/templates/general/src/mainview/components/git/GitBranchSelector.tsx +93 -0
  293. package/templates/general/src/mainview/components/git/GitCommitInput.tsx +60 -0
  294. package/templates/general/src/mainview/components/git/GitPanel.tsx +533 -0
  295. package/templates/general/src/mainview/components/layout/AppLayout.tsx +146 -0
  296. package/templates/general/src/mainview/components/search/SearchPanel.tsx +405 -0
  297. package/templates/general/src/mainview/components/sidebar/PinButton.tsx +20 -0
  298. package/templates/general/src/mainview/global.d.ts +13 -0
  299. package/templates/general/src/mainview/hooks/use-breakpoint.ts +34 -0
  300. package/templates/general/src/mainview/hooks/use-input-history.ts +84 -0
  301. package/templates/general/src/mainview/hooks/use-rpc-init.ts +61 -0
  302. package/templates/general/src/mainview/hooks/use-sidebar-resize.ts +40 -0
  303. package/templates/general/src/mainview/index.css +61 -0
  304. package/templates/general/src/mainview/index.html +12 -0
  305. package/templates/general/src/mainview/lib/api-client.ts +175 -0
  306. package/templates/general/src/mainview/lib/i18n/index.ts +30 -0
  307. package/templates/general/src/mainview/lib/i18n/locales/en.json +157 -0
  308. package/templates/general/src/mainview/lib/i18n/locales/zh.json +157 -0
  309. package/templates/general/src/mainview/main.tsx +20 -0
  310. package/templates/general/src/mainview/stores/__tests__/use-chat-store.test.ts +104 -0
  311. package/templates/general/src/mainview/stores/__tests__/use-connection-store.test.ts +35 -0
  312. package/templates/general/src/mainview/stores/__tests__/use-locale-store.test.ts +32 -0
  313. package/templates/general/src/mainview/stores/__tests__/use-log-store.test.ts +45 -0
  314. package/templates/general/src/mainview/stores/__tests__/use-theme-store.test.ts +59 -0
  315. package/templates/general/src/mainview/stores/message-batcher.ts +25 -0
  316. package/templates/general/src/mainview/stores/use-app-store.ts +104 -0
  317. package/templates/general/src/mainview/stores/use-chat-store.ts +37 -0
  318. package/templates/general/src/mainview/stores/use-connection-store.ts +42 -0
  319. package/templates/general/src/mainview/stores/use-explorer-store.ts +315 -0
  320. package/templates/general/src/mainview/stores/use-feed-store.ts +129 -0
  321. package/templates/general/src/mainview/stores/use-git-store.ts +284 -0
  322. package/templates/general/src/mainview/stores/use-locale-store.ts +27 -0
  323. package/templates/general/src/mainview/stores/use-log-store.ts +16 -0
  324. package/templates/general/src/mainview/stores/use-notification-store.ts +82 -0
  325. package/templates/general/src/mainview/stores/use-sidebar-store.ts +99 -0
  326. package/templates/general/src/mainview/stores/use-theme-store.ts +46 -0
  327. package/templates/general/src/mainview/types/index.ts +33 -0
  328. package/templates/general/src/mainview/utils/constants.ts +1 -0
  329. package/templates/general/src/mainview/utils/drop-handler.ts +150 -0
  330. package/templates/general/src/mainview/utils/file-icon.tsx +24 -0
  331. package/templates/general/src/mainview/utils/file-utils.ts +35 -0
  332. package/templates/general/src/server-config.ts +42 -0
  333. package/templates/general/src/server.ts +89 -0
  334. package/templates/general/src/shared/handlers/__tests__/chat.test.ts +183 -0
  335. package/templates/general/src/shared/handlers/__tests__/system.test.ts +94 -0
  336. package/templates/general/src/shared/handlers/__tests__/timer.test.ts +113 -0
  337. package/templates/general/src/shared/handlers/chat.ts +179 -0
  338. package/templates/general/src/shared/handlers/feed.ts +53 -0
  339. package/templates/general/src/shared/handlers/file.ts +99 -0
  340. package/templates/general/src/shared/handlers/git.ts +263 -0
  341. package/templates/general/src/shared/handlers/index.ts +7 -0
  342. package/templates/general/src/shared/handlers/system.ts +27 -0
  343. package/templates/general/src/shared/handlers/timer.ts +34 -0
  344. package/templates/general/src/shared/lib/logger.ts +130 -0
  345. package/templates/general/src/shared/lib/path-security.ts +38 -0
  346. package/templates/general/src/shared/lib/port-registry.ts +103 -0
  347. package/templates/general/src/shared/modules/chat.ts +20 -0
  348. package/templates/general/src/shared/modules/feed.ts +30 -0
  349. package/templates/general/src/shared/modules/file.ts +40 -0
  350. package/templates/general/src/shared/modules/git.ts +81 -0
  351. package/templates/general/src/shared/modules/system.ts +8 -0
  352. package/templates/general/src/shared/modules/timer.ts +11 -0
  353. package/templates/general/src/shared/register-all-handlers.ts +36 -0
  354. package/templates/general/src/shared/rpc-schema.ts +31 -0
  355. package/templates/general/tailwind.config.js +15 -0
  356. package/templates/general/tsconfig.json +26 -0
  357. package/templates/general/vite.config.ts +3 -0
  358. package/templates/general/vitest.config.ts +3 -0
@@ -0,0 +1,3670 @@
1
+ {
2
+ "name": "electrobun-react-tailwind-vite",
3
+ "version": "1.0.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "electrobun-react-tailwind-vite",
9
+ "version": "1.0.0",
10
+ "dependencies": {
11
+ "electrobun": "1.13.1",
12
+ "lucide-react": "^1.8.0",
13
+ "react": "^18.3.1",
14
+ "react-dom": "^18.3.1"
15
+ },
16
+ "devDependencies": {
17
+ "@types/bun": "latest",
18
+ "@types/react": "^18.3.12",
19
+ "@types/react-dom": "^18.3.1",
20
+ "@types/ws": "^8.18.1",
21
+ "@vitejs/plugin-react": "^4.3.4",
22
+ "autoprefixer": "^10.4.20",
23
+ "concurrently": "^9.1.0",
24
+ "postcss": "^8.4.49",
25
+ "tailwindcss": "^3.4.16",
26
+ "typescript": "^5.7.2",
27
+ "vite": "^6.0.3"
28
+ }
29
+ },
30
+ "../packages/rpc-core": {
31
+ "name": "@chat-agent/rpc-core",
32
+ "version": "1.0.0",
33
+ "extraneous": true
34
+ },
35
+ "node_modules/@alloc/quick-lru": {
36
+ "version": "5.2.0",
37
+ "dev": true,
38
+ "license": "MIT",
39
+ "engines": {
40
+ "node": ">=10"
41
+ },
42
+ "funding": {
43
+ "url": "https://github.com/sponsors/sindresorhus"
44
+ }
45
+ },
46
+ "node_modules/@babel/code-frame": {
47
+ "version": "7.29.0",
48
+ "dev": true,
49
+ "license": "MIT",
50
+ "dependencies": {
51
+ "@babel/helper-validator-identifier": "^7.28.5",
52
+ "js-tokens": "^4.0.0",
53
+ "picocolors": "^1.1.1"
54
+ },
55
+ "engines": {
56
+ "node": ">=6.9.0"
57
+ }
58
+ },
59
+ "node_modules/@babel/compat-data": {
60
+ "version": "7.29.0",
61
+ "dev": true,
62
+ "license": "MIT",
63
+ "engines": {
64
+ "node": ">=6.9.0"
65
+ }
66
+ },
67
+ "node_modules/@babel/core": {
68
+ "version": "7.29.0",
69
+ "dev": true,
70
+ "license": "MIT",
71
+ "peer": true,
72
+ "dependencies": {
73
+ "@babel/code-frame": "^7.29.0",
74
+ "@babel/generator": "^7.29.0",
75
+ "@babel/helper-compilation-targets": "^7.28.6",
76
+ "@babel/helper-module-transforms": "^7.28.6",
77
+ "@babel/helpers": "^7.28.6",
78
+ "@babel/parser": "^7.29.0",
79
+ "@babel/template": "^7.28.6",
80
+ "@babel/traverse": "^7.29.0",
81
+ "@babel/types": "^7.29.0",
82
+ "@jridgewell/remapping": "^2.3.5",
83
+ "convert-source-map": "^2.0.0",
84
+ "debug": "^4.1.0",
85
+ "gensync": "^1.0.0-beta.2",
86
+ "json5": "^2.2.3",
87
+ "semver": "^6.3.1"
88
+ },
89
+ "engines": {
90
+ "node": ">=6.9.0"
91
+ },
92
+ "funding": {
93
+ "type": "opencollective",
94
+ "url": "https://opencollective.com/babel"
95
+ }
96
+ },
97
+ "node_modules/@babel/generator": {
98
+ "version": "7.29.1",
99
+ "dev": true,
100
+ "license": "MIT",
101
+ "dependencies": {
102
+ "@babel/parser": "^7.29.0",
103
+ "@babel/types": "^7.29.0",
104
+ "@jridgewell/gen-mapping": "^0.3.12",
105
+ "@jridgewell/trace-mapping": "^0.3.28",
106
+ "jsesc": "^3.0.2"
107
+ },
108
+ "engines": {
109
+ "node": ">=6.9.0"
110
+ }
111
+ },
112
+ "node_modules/@babel/helper-compilation-targets": {
113
+ "version": "7.28.6",
114
+ "dev": true,
115
+ "license": "MIT",
116
+ "dependencies": {
117
+ "@babel/compat-data": "^7.28.6",
118
+ "@babel/helper-validator-option": "^7.27.1",
119
+ "browserslist": "^4.24.0",
120
+ "lru-cache": "^5.1.1",
121
+ "semver": "^6.3.1"
122
+ },
123
+ "engines": {
124
+ "node": ">=6.9.0"
125
+ }
126
+ },
127
+ "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": {
128
+ "version": "5.1.1",
129
+ "dev": true,
130
+ "license": "ISC",
131
+ "dependencies": {
132
+ "yallist": "^3.0.2"
133
+ }
134
+ },
135
+ "node_modules/@babel/helper-globals": {
136
+ "version": "7.28.0",
137
+ "dev": true,
138
+ "license": "MIT",
139
+ "engines": {
140
+ "node": ">=6.9.0"
141
+ }
142
+ },
143
+ "node_modules/@babel/helper-module-imports": {
144
+ "version": "7.28.6",
145
+ "dev": true,
146
+ "license": "MIT",
147
+ "dependencies": {
148
+ "@babel/traverse": "^7.28.6",
149
+ "@babel/types": "^7.28.6"
150
+ },
151
+ "engines": {
152
+ "node": ">=6.9.0"
153
+ }
154
+ },
155
+ "node_modules/@babel/helper-module-transforms": {
156
+ "version": "7.28.6",
157
+ "dev": true,
158
+ "license": "MIT",
159
+ "dependencies": {
160
+ "@babel/helper-module-imports": "^7.28.6",
161
+ "@babel/helper-validator-identifier": "^7.28.5",
162
+ "@babel/traverse": "^7.28.6"
163
+ },
164
+ "engines": {
165
+ "node": ">=6.9.0"
166
+ },
167
+ "peerDependencies": {
168
+ "@babel/core": "^7.0.0"
169
+ }
170
+ },
171
+ "node_modules/@babel/helper-plugin-utils": {
172
+ "version": "7.28.6",
173
+ "dev": true,
174
+ "license": "MIT",
175
+ "engines": {
176
+ "node": ">=6.9.0"
177
+ }
178
+ },
179
+ "node_modules/@babel/helper-string-parser": {
180
+ "version": "7.27.1",
181
+ "dev": true,
182
+ "license": "MIT",
183
+ "engines": {
184
+ "node": ">=6.9.0"
185
+ }
186
+ },
187
+ "node_modules/@babel/helper-validator-identifier": {
188
+ "version": "7.28.5",
189
+ "dev": true,
190
+ "license": "MIT",
191
+ "engines": {
192
+ "node": ">=6.9.0"
193
+ }
194
+ },
195
+ "node_modules/@babel/helper-validator-option": {
196
+ "version": "7.27.1",
197
+ "dev": true,
198
+ "license": "MIT",
199
+ "engines": {
200
+ "node": ">=6.9.0"
201
+ }
202
+ },
203
+ "node_modules/@babel/helpers": {
204
+ "version": "7.29.2",
205
+ "dev": true,
206
+ "license": "MIT",
207
+ "dependencies": {
208
+ "@babel/template": "^7.28.6",
209
+ "@babel/types": "^7.29.0"
210
+ },
211
+ "engines": {
212
+ "node": ">=6.9.0"
213
+ }
214
+ },
215
+ "node_modules/@babel/parser": {
216
+ "version": "7.29.2",
217
+ "dev": true,
218
+ "license": "MIT",
219
+ "dependencies": {
220
+ "@babel/types": "^7.29.0"
221
+ },
222
+ "bin": {
223
+ "parser": "bin/babel-parser.js"
224
+ },
225
+ "engines": {
226
+ "node": ">=6.0.0"
227
+ }
228
+ },
229
+ "node_modules/@babel/plugin-transform-react-jsx-self": {
230
+ "version": "7.27.1",
231
+ "dev": true,
232
+ "license": "MIT",
233
+ "dependencies": {
234
+ "@babel/helper-plugin-utils": "^7.27.1"
235
+ },
236
+ "engines": {
237
+ "node": ">=6.9.0"
238
+ },
239
+ "peerDependencies": {
240
+ "@babel/core": "^7.0.0-0"
241
+ }
242
+ },
243
+ "node_modules/@babel/plugin-transform-react-jsx-source": {
244
+ "version": "7.27.1",
245
+ "dev": true,
246
+ "license": "MIT",
247
+ "dependencies": {
248
+ "@babel/helper-plugin-utils": "^7.27.1"
249
+ },
250
+ "engines": {
251
+ "node": ">=6.9.0"
252
+ },
253
+ "peerDependencies": {
254
+ "@babel/core": "^7.0.0-0"
255
+ }
256
+ },
257
+ "node_modules/@babel/template": {
258
+ "version": "7.28.6",
259
+ "dev": true,
260
+ "license": "MIT",
261
+ "dependencies": {
262
+ "@babel/code-frame": "^7.28.6",
263
+ "@babel/parser": "^7.28.6",
264
+ "@babel/types": "^7.28.6"
265
+ },
266
+ "engines": {
267
+ "node": ">=6.9.0"
268
+ }
269
+ },
270
+ "node_modules/@babel/traverse": {
271
+ "version": "7.29.0",
272
+ "dev": true,
273
+ "license": "MIT",
274
+ "dependencies": {
275
+ "@babel/code-frame": "^7.29.0",
276
+ "@babel/generator": "^7.29.0",
277
+ "@babel/helper-globals": "^7.28.0",
278
+ "@babel/parser": "^7.29.0",
279
+ "@babel/template": "^7.28.6",
280
+ "@babel/types": "^7.29.0",
281
+ "debug": "^4.3.1"
282
+ },
283
+ "engines": {
284
+ "node": ">=6.9.0"
285
+ }
286
+ },
287
+ "node_modules/@babel/types": {
288
+ "version": "7.29.0",
289
+ "dev": true,
290
+ "license": "MIT",
291
+ "dependencies": {
292
+ "@babel/helper-string-parser": "^7.27.1",
293
+ "@babel/helper-validator-identifier": "^7.28.5"
294
+ },
295
+ "engines": {
296
+ "node": ">=6.9.0"
297
+ }
298
+ },
299
+ "node_modules/@esbuild/aix-ppc64": {
300
+ "version": "0.25.12",
301
+ "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz",
302
+ "integrity": "sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==",
303
+ "cpu": [
304
+ "ppc64"
305
+ ],
306
+ "dev": true,
307
+ "license": "MIT",
308
+ "optional": true,
309
+ "os": [
310
+ "aix"
311
+ ],
312
+ "engines": {
313
+ "node": ">=18"
314
+ }
315
+ },
316
+ "node_modules/@esbuild/android-arm": {
317
+ "version": "0.25.12",
318
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.12.tgz",
319
+ "integrity": "sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==",
320
+ "cpu": [
321
+ "arm"
322
+ ],
323
+ "dev": true,
324
+ "license": "MIT",
325
+ "optional": true,
326
+ "os": [
327
+ "android"
328
+ ],
329
+ "engines": {
330
+ "node": ">=18"
331
+ }
332
+ },
333
+ "node_modules/@esbuild/android-arm64": {
334
+ "version": "0.25.12",
335
+ "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz",
336
+ "integrity": "sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==",
337
+ "cpu": [
338
+ "arm64"
339
+ ],
340
+ "dev": true,
341
+ "license": "MIT",
342
+ "optional": true,
343
+ "os": [
344
+ "android"
345
+ ],
346
+ "engines": {
347
+ "node": ">=18"
348
+ }
349
+ },
350
+ "node_modules/@esbuild/android-x64": {
351
+ "version": "0.25.12",
352
+ "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.12.tgz",
353
+ "integrity": "sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==",
354
+ "cpu": [
355
+ "x64"
356
+ ],
357
+ "dev": true,
358
+ "license": "MIT",
359
+ "optional": true,
360
+ "os": [
361
+ "android"
362
+ ],
363
+ "engines": {
364
+ "node": ">=18"
365
+ }
366
+ },
367
+ "node_modules/@esbuild/darwin-arm64": {
368
+ "version": "0.25.12",
369
+ "cpu": [
370
+ "arm64"
371
+ ],
372
+ "dev": true,
373
+ "license": "MIT",
374
+ "optional": true,
375
+ "os": [
376
+ "darwin"
377
+ ],
378
+ "engines": {
379
+ "node": ">=18"
380
+ }
381
+ },
382
+ "node_modules/@esbuild/darwin-x64": {
383
+ "version": "0.25.12",
384
+ "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz",
385
+ "integrity": "sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==",
386
+ "cpu": [
387
+ "x64"
388
+ ],
389
+ "dev": true,
390
+ "license": "MIT",
391
+ "optional": true,
392
+ "os": [
393
+ "darwin"
394
+ ],
395
+ "engines": {
396
+ "node": ">=18"
397
+ }
398
+ },
399
+ "node_modules/@esbuild/freebsd-arm64": {
400
+ "version": "0.25.12",
401
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz",
402
+ "integrity": "sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==",
403
+ "cpu": [
404
+ "arm64"
405
+ ],
406
+ "dev": true,
407
+ "license": "MIT",
408
+ "optional": true,
409
+ "os": [
410
+ "freebsd"
411
+ ],
412
+ "engines": {
413
+ "node": ">=18"
414
+ }
415
+ },
416
+ "node_modules/@esbuild/freebsd-x64": {
417
+ "version": "0.25.12",
418
+ "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz",
419
+ "integrity": "sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==",
420
+ "cpu": [
421
+ "x64"
422
+ ],
423
+ "dev": true,
424
+ "license": "MIT",
425
+ "optional": true,
426
+ "os": [
427
+ "freebsd"
428
+ ],
429
+ "engines": {
430
+ "node": ">=18"
431
+ }
432
+ },
433
+ "node_modules/@esbuild/linux-arm": {
434
+ "version": "0.25.12",
435
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz",
436
+ "integrity": "sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==",
437
+ "cpu": [
438
+ "arm"
439
+ ],
440
+ "dev": true,
441
+ "license": "MIT",
442
+ "optional": true,
443
+ "os": [
444
+ "linux"
445
+ ],
446
+ "engines": {
447
+ "node": ">=18"
448
+ }
449
+ },
450
+ "node_modules/@esbuild/linux-arm64": {
451
+ "version": "0.25.12",
452
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz",
453
+ "integrity": "sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==",
454
+ "cpu": [
455
+ "arm64"
456
+ ],
457
+ "dev": true,
458
+ "license": "MIT",
459
+ "optional": true,
460
+ "os": [
461
+ "linux"
462
+ ],
463
+ "engines": {
464
+ "node": ">=18"
465
+ }
466
+ },
467
+ "node_modules/@esbuild/linux-ia32": {
468
+ "version": "0.25.12",
469
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz",
470
+ "integrity": "sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==",
471
+ "cpu": [
472
+ "ia32"
473
+ ],
474
+ "dev": true,
475
+ "license": "MIT",
476
+ "optional": true,
477
+ "os": [
478
+ "linux"
479
+ ],
480
+ "engines": {
481
+ "node": ">=18"
482
+ }
483
+ },
484
+ "node_modules/@esbuild/linux-loong64": {
485
+ "version": "0.25.12",
486
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz",
487
+ "integrity": "sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==",
488
+ "cpu": [
489
+ "loong64"
490
+ ],
491
+ "dev": true,
492
+ "license": "MIT",
493
+ "optional": true,
494
+ "os": [
495
+ "linux"
496
+ ],
497
+ "engines": {
498
+ "node": ">=18"
499
+ }
500
+ },
501
+ "node_modules/@esbuild/linux-mips64el": {
502
+ "version": "0.25.12",
503
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz",
504
+ "integrity": "sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==",
505
+ "cpu": [
506
+ "mips64el"
507
+ ],
508
+ "dev": true,
509
+ "license": "MIT",
510
+ "optional": true,
511
+ "os": [
512
+ "linux"
513
+ ],
514
+ "engines": {
515
+ "node": ">=18"
516
+ }
517
+ },
518
+ "node_modules/@esbuild/linux-ppc64": {
519
+ "version": "0.25.12",
520
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz",
521
+ "integrity": "sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==",
522
+ "cpu": [
523
+ "ppc64"
524
+ ],
525
+ "dev": true,
526
+ "license": "MIT",
527
+ "optional": true,
528
+ "os": [
529
+ "linux"
530
+ ],
531
+ "engines": {
532
+ "node": ">=18"
533
+ }
534
+ },
535
+ "node_modules/@esbuild/linux-riscv64": {
536
+ "version": "0.25.12",
537
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz",
538
+ "integrity": "sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==",
539
+ "cpu": [
540
+ "riscv64"
541
+ ],
542
+ "dev": true,
543
+ "license": "MIT",
544
+ "optional": true,
545
+ "os": [
546
+ "linux"
547
+ ],
548
+ "engines": {
549
+ "node": ">=18"
550
+ }
551
+ },
552
+ "node_modules/@esbuild/linux-s390x": {
553
+ "version": "0.25.12",
554
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz",
555
+ "integrity": "sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==",
556
+ "cpu": [
557
+ "s390x"
558
+ ],
559
+ "dev": true,
560
+ "license": "MIT",
561
+ "optional": true,
562
+ "os": [
563
+ "linux"
564
+ ],
565
+ "engines": {
566
+ "node": ">=18"
567
+ }
568
+ },
569
+ "node_modules/@esbuild/linux-x64": {
570
+ "version": "0.25.12",
571
+ "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz",
572
+ "integrity": "sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==",
573
+ "cpu": [
574
+ "x64"
575
+ ],
576
+ "dev": true,
577
+ "license": "MIT",
578
+ "optional": true,
579
+ "os": [
580
+ "linux"
581
+ ],
582
+ "engines": {
583
+ "node": ">=18"
584
+ }
585
+ },
586
+ "node_modules/@esbuild/netbsd-arm64": {
587
+ "version": "0.25.12",
588
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz",
589
+ "integrity": "sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==",
590
+ "cpu": [
591
+ "arm64"
592
+ ],
593
+ "dev": true,
594
+ "license": "MIT",
595
+ "optional": true,
596
+ "os": [
597
+ "netbsd"
598
+ ],
599
+ "engines": {
600
+ "node": ">=18"
601
+ }
602
+ },
603
+ "node_modules/@esbuild/netbsd-x64": {
604
+ "version": "0.25.12",
605
+ "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz",
606
+ "integrity": "sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==",
607
+ "cpu": [
608
+ "x64"
609
+ ],
610
+ "dev": true,
611
+ "license": "MIT",
612
+ "optional": true,
613
+ "os": [
614
+ "netbsd"
615
+ ],
616
+ "engines": {
617
+ "node": ">=18"
618
+ }
619
+ },
620
+ "node_modules/@esbuild/openbsd-arm64": {
621
+ "version": "0.25.12",
622
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz",
623
+ "integrity": "sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==",
624
+ "cpu": [
625
+ "arm64"
626
+ ],
627
+ "dev": true,
628
+ "license": "MIT",
629
+ "optional": true,
630
+ "os": [
631
+ "openbsd"
632
+ ],
633
+ "engines": {
634
+ "node": ">=18"
635
+ }
636
+ },
637
+ "node_modules/@esbuild/openbsd-x64": {
638
+ "version": "0.25.12",
639
+ "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz",
640
+ "integrity": "sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==",
641
+ "cpu": [
642
+ "x64"
643
+ ],
644
+ "dev": true,
645
+ "license": "MIT",
646
+ "optional": true,
647
+ "os": [
648
+ "openbsd"
649
+ ],
650
+ "engines": {
651
+ "node": ">=18"
652
+ }
653
+ },
654
+ "node_modules/@esbuild/openharmony-arm64": {
655
+ "version": "0.25.12",
656
+ "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz",
657
+ "integrity": "sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==",
658
+ "cpu": [
659
+ "arm64"
660
+ ],
661
+ "dev": true,
662
+ "license": "MIT",
663
+ "optional": true,
664
+ "os": [
665
+ "openharmony"
666
+ ],
667
+ "engines": {
668
+ "node": ">=18"
669
+ }
670
+ },
671
+ "node_modules/@esbuild/sunos-x64": {
672
+ "version": "0.25.12",
673
+ "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz",
674
+ "integrity": "sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==",
675
+ "cpu": [
676
+ "x64"
677
+ ],
678
+ "dev": true,
679
+ "license": "MIT",
680
+ "optional": true,
681
+ "os": [
682
+ "sunos"
683
+ ],
684
+ "engines": {
685
+ "node": ">=18"
686
+ }
687
+ },
688
+ "node_modules/@esbuild/win32-arm64": {
689
+ "version": "0.25.12",
690
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz",
691
+ "integrity": "sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==",
692
+ "cpu": [
693
+ "arm64"
694
+ ],
695
+ "dev": true,
696
+ "license": "MIT",
697
+ "optional": true,
698
+ "os": [
699
+ "win32"
700
+ ],
701
+ "engines": {
702
+ "node": ">=18"
703
+ }
704
+ },
705
+ "node_modules/@esbuild/win32-ia32": {
706
+ "version": "0.25.12",
707
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz",
708
+ "integrity": "sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==",
709
+ "cpu": [
710
+ "ia32"
711
+ ],
712
+ "dev": true,
713
+ "license": "MIT",
714
+ "optional": true,
715
+ "os": [
716
+ "win32"
717
+ ],
718
+ "engines": {
719
+ "node": ">=18"
720
+ }
721
+ },
722
+ "node_modules/@esbuild/win32-x64": {
723
+ "version": "0.25.12",
724
+ "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz",
725
+ "integrity": "sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==",
726
+ "cpu": [
727
+ "x64"
728
+ ],
729
+ "dev": true,
730
+ "license": "MIT",
731
+ "optional": true,
732
+ "os": [
733
+ "win32"
734
+ ],
735
+ "engines": {
736
+ "node": ">=18"
737
+ }
738
+ },
739
+ "node_modules/@isaacs/cliui": {
740
+ "version": "8.0.2",
741
+ "license": "ISC",
742
+ "dependencies": {
743
+ "string-width": "^5.1.2",
744
+ "string-width-cjs": "npm:string-width@^4.2.0",
745
+ "strip-ansi": "^7.0.1",
746
+ "strip-ansi-cjs": "npm:strip-ansi@^6.0.1",
747
+ "wrap-ansi": "^8.1.0",
748
+ "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0"
749
+ },
750
+ "engines": {
751
+ "node": ">=12"
752
+ }
753
+ },
754
+ "node_modules/@isaacs/cliui/node_modules/string-width": {
755
+ "version": "5.1.2",
756
+ "license": "MIT",
757
+ "dependencies": {
758
+ "eastasianwidth": "^0.2.0",
759
+ "emoji-regex": "^9.2.2",
760
+ "strip-ansi": "^7.0.1"
761
+ },
762
+ "engines": {
763
+ "node": ">=12"
764
+ },
765
+ "funding": {
766
+ "url": "https://github.com/sponsors/sindresorhus"
767
+ }
768
+ },
769
+ "node_modules/@isaacs/cliui/node_modules/string-width/node_modules/emoji-regex": {
770
+ "version": "9.2.2",
771
+ "license": "MIT"
772
+ },
773
+ "node_modules/@isaacs/cliui/node_modules/strip-ansi": {
774
+ "version": "7.2.0",
775
+ "license": "MIT",
776
+ "dependencies": {
777
+ "ansi-regex": "^6.2.2"
778
+ },
779
+ "engines": {
780
+ "node": ">=12"
781
+ },
782
+ "funding": {
783
+ "url": "https://github.com/chalk/strip-ansi?sponsor=1"
784
+ }
785
+ },
786
+ "node_modules/@isaacs/cliui/node_modules/strip-ansi/node_modules/ansi-regex": {
787
+ "version": "6.2.2",
788
+ "license": "MIT",
789
+ "engines": {
790
+ "node": ">=12"
791
+ },
792
+ "funding": {
793
+ "url": "https://github.com/chalk/ansi-regex?sponsor=1"
794
+ }
795
+ },
796
+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi": {
797
+ "version": "8.1.0",
798
+ "license": "MIT",
799
+ "dependencies": {
800
+ "ansi-styles": "^6.1.0",
801
+ "string-width": "^5.0.1",
802
+ "strip-ansi": "^7.0.1"
803
+ },
804
+ "engines": {
805
+ "node": ">=12"
806
+ },
807
+ "funding": {
808
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
809
+ }
810
+ },
811
+ "node_modules/@isaacs/cliui/node_modules/wrap-ansi/node_modules/ansi-styles": {
812
+ "version": "6.2.3",
813
+ "license": "MIT",
814
+ "engines": {
815
+ "node": ">=12"
816
+ },
817
+ "funding": {
818
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
819
+ }
820
+ },
821
+ "node_modules/@jridgewell/gen-mapping": {
822
+ "version": "0.3.13",
823
+ "dev": true,
824
+ "license": "MIT",
825
+ "dependencies": {
826
+ "@jridgewell/sourcemap-codec": "^1.5.0",
827
+ "@jridgewell/trace-mapping": "^0.3.24"
828
+ }
829
+ },
830
+ "node_modules/@jridgewell/remapping": {
831
+ "version": "2.3.5",
832
+ "dev": true,
833
+ "license": "MIT",
834
+ "dependencies": {
835
+ "@jridgewell/gen-mapping": "^0.3.5",
836
+ "@jridgewell/trace-mapping": "^0.3.24"
837
+ }
838
+ },
839
+ "node_modules/@jridgewell/resolve-uri": {
840
+ "version": "3.1.2",
841
+ "dev": true,
842
+ "license": "MIT",
843
+ "engines": {
844
+ "node": ">=6.0.0"
845
+ }
846
+ },
847
+ "node_modules/@jridgewell/sourcemap-codec": {
848
+ "version": "1.5.5",
849
+ "dev": true,
850
+ "license": "MIT"
851
+ },
852
+ "node_modules/@jridgewell/trace-mapping": {
853
+ "version": "0.3.31",
854
+ "dev": true,
855
+ "license": "MIT",
856
+ "dependencies": {
857
+ "@jridgewell/resolve-uri": "^3.1.0",
858
+ "@jridgewell/sourcemap-codec": "^1.4.14"
859
+ }
860
+ },
861
+ "node_modules/@malept/cross-spawn-promise": {
862
+ "version": "1.1.1",
863
+ "funding": [
864
+ {
865
+ "type": "individual",
866
+ "url": "https://github.com/sponsors/malept"
867
+ },
868
+ {
869
+ "type": "tidelift",
870
+ "url": "https://tidelift.com/subscription/pkg/npm-.malept-cross-spawn-promise?utm_medium=referral&utm_source=npm_fund"
871
+ }
872
+ ],
873
+ "license": "Apache-2.0",
874
+ "dependencies": {
875
+ "cross-spawn": "^7.0.1"
876
+ },
877
+ "engines": {
878
+ "node": ">= 10"
879
+ }
880
+ },
881
+ "node_modules/@nodelib/fs.scandir": {
882
+ "version": "2.1.5",
883
+ "dev": true,
884
+ "license": "MIT",
885
+ "dependencies": {
886
+ "@nodelib/fs.stat": "2.0.5",
887
+ "run-parallel": "^1.1.9"
888
+ },
889
+ "engines": {
890
+ "node": ">= 8"
891
+ }
892
+ },
893
+ "node_modules/@nodelib/fs.stat": {
894
+ "version": "2.0.5",
895
+ "dev": true,
896
+ "license": "MIT",
897
+ "engines": {
898
+ "node": ">= 8"
899
+ }
900
+ },
901
+ "node_modules/@nodelib/fs.walk": {
902
+ "version": "1.2.8",
903
+ "dev": true,
904
+ "license": "MIT",
905
+ "dependencies": {
906
+ "@nodelib/fs.scandir": "2.1.5",
907
+ "fastq": "^1.6.0"
908
+ },
909
+ "engines": {
910
+ "node": ">= 8"
911
+ }
912
+ },
913
+ "node_modules/@pkgjs/parseargs": {
914
+ "version": "0.11.0",
915
+ "license": "MIT",
916
+ "optional": true,
917
+ "engines": {
918
+ "node": ">=14"
919
+ }
920
+ },
921
+ "node_modules/@rolldown/pluginutils": {
922
+ "version": "1.0.0-beta.27",
923
+ "dev": true,
924
+ "license": "MIT"
925
+ },
926
+ "node_modules/@rollup/rollup-android-arm-eabi": {
927
+ "version": "4.60.2",
928
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.2.tgz",
929
+ "integrity": "sha512-dnlp69efPPg6Uaw2dVqzWRfAWRnYVb1XJ8CyyhIbZeaq4CA5/mLeZ1IEt9QqQxmbdvagjLIm2ZL8BxXv5lH4Yw==",
930
+ "cpu": [
931
+ "arm"
932
+ ],
933
+ "dev": true,
934
+ "license": "MIT",
935
+ "optional": true,
936
+ "os": [
937
+ "android"
938
+ ]
939
+ },
940
+ "node_modules/@rollup/rollup-android-arm64": {
941
+ "version": "4.60.2",
942
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.2.tgz",
943
+ "integrity": "sha512-OqZTwDRDchGRHHm/hwLOL7uVPB9aUvI0am/eQuWMNyFHf5PSEQmyEeYYheA0EPPKUO/l0uigCp+iaTjoLjVoHg==",
944
+ "cpu": [
945
+ "arm64"
946
+ ],
947
+ "dev": true,
948
+ "license": "MIT",
949
+ "optional": true,
950
+ "os": [
951
+ "android"
952
+ ]
953
+ },
954
+ "node_modules/@rollup/rollup-darwin-arm64": {
955
+ "version": "4.60.2",
956
+ "cpu": [
957
+ "arm64"
958
+ ],
959
+ "dev": true,
960
+ "license": "MIT",
961
+ "optional": true,
962
+ "os": [
963
+ "darwin"
964
+ ]
965
+ },
966
+ "node_modules/@rollup/rollup-darwin-x64": {
967
+ "version": "4.60.2",
968
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.2.tgz",
969
+ "integrity": "sha512-gjEtURKLCC5VXm1I+2i1u9OhxFsKAQJKTVB8WvDAHF+oZlq0GTVFOlTlO1q3AlCTE/DF32c16ESvfgqR7343/g==",
970
+ "cpu": [
971
+ "x64"
972
+ ],
973
+ "dev": true,
974
+ "license": "MIT",
975
+ "optional": true,
976
+ "os": [
977
+ "darwin"
978
+ ]
979
+ },
980
+ "node_modules/@rollup/rollup-freebsd-arm64": {
981
+ "version": "4.60.2",
982
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.2.tgz",
983
+ "integrity": "sha512-Bcl6CYDeAgE70cqZaMojOi/eK63h5Me97ZqAQoh77VPjMysA/4ORQBRGo3rRy45x4MzVlU9uZxs8Uwy7ZaKnBw==",
984
+ "cpu": [
985
+ "arm64"
986
+ ],
987
+ "dev": true,
988
+ "license": "MIT",
989
+ "optional": true,
990
+ "os": [
991
+ "freebsd"
992
+ ]
993
+ },
994
+ "node_modules/@rollup/rollup-freebsd-x64": {
995
+ "version": "4.60.2",
996
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.2.tgz",
997
+ "integrity": "sha512-LU+TPda3mAE2QB0/Hp5VyeKJivpC6+tlOXd1VMoXV/YFMvk/MNk5iXeBfB4MQGRWyOYVJ01625vjkr0Az98OJQ==",
998
+ "cpu": [
999
+ "x64"
1000
+ ],
1001
+ "dev": true,
1002
+ "license": "MIT",
1003
+ "optional": true,
1004
+ "os": [
1005
+ "freebsd"
1006
+ ]
1007
+ },
1008
+ "node_modules/@rollup/rollup-linux-arm-gnueabihf": {
1009
+ "version": "4.60.2",
1010
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.2.tgz",
1011
+ "integrity": "sha512-2QxQrM+KQ7DAW4o22j+XZ6RKdxjLD7BOWTP0Bv0tmjdyhXSsr2Ul1oJDQqh9Zf5qOwTuTc7Ek83mOFaKnodPjg==",
1012
+ "cpu": [
1013
+ "arm"
1014
+ ],
1015
+ "dev": true,
1016
+ "license": "MIT",
1017
+ "optional": true,
1018
+ "os": [
1019
+ "linux"
1020
+ ]
1021
+ },
1022
+ "node_modules/@rollup/rollup-linux-arm-musleabihf": {
1023
+ "version": "4.60.2",
1024
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.2.tgz",
1025
+ "integrity": "sha512-TbziEu2DVsTEOPif2mKWkMeDMLoYjx95oESa9fkQQK7r/Orta0gnkcDpzwufEcAO2BLBsD7mZkXGFqEdMRRwfw==",
1026
+ "cpu": [
1027
+ "arm"
1028
+ ],
1029
+ "dev": true,
1030
+ "license": "MIT",
1031
+ "optional": true,
1032
+ "os": [
1033
+ "linux"
1034
+ ]
1035
+ },
1036
+ "node_modules/@rollup/rollup-linux-arm64-gnu": {
1037
+ "version": "4.60.2",
1038
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.2.tgz",
1039
+ "integrity": "sha512-bO/rVDiDUuM2YfuCUwZ1t1cP+/yqjqz+Xf2VtkdppefuOFS2OSeAfgafaHNkFn0t02hEyXngZkxtGqXcXwO8Rg==",
1040
+ "cpu": [
1041
+ "arm64"
1042
+ ],
1043
+ "dev": true,
1044
+ "license": "MIT",
1045
+ "optional": true,
1046
+ "os": [
1047
+ "linux"
1048
+ ]
1049
+ },
1050
+ "node_modules/@rollup/rollup-linux-arm64-musl": {
1051
+ "version": "4.60.2",
1052
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.2.tgz",
1053
+ "integrity": "sha512-hr26p7e93Rl0Za+JwW7EAnwAvKkehh12BU1Llm9Ykiibg4uIr2rbpxG9WCf56GuvidlTG9KiiQT/TXT1yAWxTA==",
1054
+ "cpu": [
1055
+ "arm64"
1056
+ ],
1057
+ "dev": true,
1058
+ "license": "MIT",
1059
+ "optional": true,
1060
+ "os": [
1061
+ "linux"
1062
+ ]
1063
+ },
1064
+ "node_modules/@rollup/rollup-linux-loong64-gnu": {
1065
+ "version": "4.60.2",
1066
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.2.tgz",
1067
+ "integrity": "sha512-pOjB/uSIyDt+ow3k/RcLvUAOGpysT2phDn7TTUB3n75SlIgZzM6NKAqlErPhoFU+npgY3/n+2HYIQVbF70P9/A==",
1068
+ "cpu": [
1069
+ "loong64"
1070
+ ],
1071
+ "dev": true,
1072
+ "license": "MIT",
1073
+ "optional": true,
1074
+ "os": [
1075
+ "linux"
1076
+ ]
1077
+ },
1078
+ "node_modules/@rollup/rollup-linux-loong64-musl": {
1079
+ "version": "4.60.2",
1080
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.2.tgz",
1081
+ "integrity": "sha512-2/w+q8jszv9Ww1c+6uJT3OwqhdmGP2/4T17cu8WuwyUuuaCDDJ2ojdyYwZzCxx0GcsZBhzi3HmH+J5pZNXnd+Q==",
1082
+ "cpu": [
1083
+ "loong64"
1084
+ ],
1085
+ "dev": true,
1086
+ "license": "MIT",
1087
+ "optional": true,
1088
+ "os": [
1089
+ "linux"
1090
+ ]
1091
+ },
1092
+ "node_modules/@rollup/rollup-linux-ppc64-gnu": {
1093
+ "version": "4.60.2",
1094
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.2.tgz",
1095
+ "integrity": "sha512-11+aL5vKheYgczxtPVVRhdptAM2H7fcDR5Gw4/bTcteuZBlH4oP9f5s9zYO9aGZvoGeBpqXI/9TZZihZ609wKw==",
1096
+ "cpu": [
1097
+ "ppc64"
1098
+ ],
1099
+ "dev": true,
1100
+ "license": "MIT",
1101
+ "optional": true,
1102
+ "os": [
1103
+ "linux"
1104
+ ]
1105
+ },
1106
+ "node_modules/@rollup/rollup-linux-ppc64-musl": {
1107
+ "version": "4.60.2",
1108
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.2.tgz",
1109
+ "integrity": "sha512-i16fokAGK46IVZuV8LIIwMdtqhin9hfYkCh8pf8iC3QU3LpwL+1FSFGej+O7l3E/AoknL6Dclh2oTdnRMpTzFQ==",
1110
+ "cpu": [
1111
+ "ppc64"
1112
+ ],
1113
+ "dev": true,
1114
+ "license": "MIT",
1115
+ "optional": true,
1116
+ "os": [
1117
+ "linux"
1118
+ ]
1119
+ },
1120
+ "node_modules/@rollup/rollup-linux-riscv64-gnu": {
1121
+ "version": "4.60.2",
1122
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.2.tgz",
1123
+ "integrity": "sha512-49FkKS6RGQoriDSK/6E2GkAsAuU5kETFCh7pG4yD/ylj9rKhTmO3elsnmBvRD4PgJPds5W2PkhC82aVwmUcJ7A==",
1124
+ "cpu": [
1125
+ "riscv64"
1126
+ ],
1127
+ "dev": true,
1128
+ "license": "MIT",
1129
+ "optional": true,
1130
+ "os": [
1131
+ "linux"
1132
+ ]
1133
+ },
1134
+ "node_modules/@rollup/rollup-linux-riscv64-musl": {
1135
+ "version": "4.60.2",
1136
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.2.tgz",
1137
+ "integrity": "sha512-mjYNkHPfGpUR00DuM1ZZIgs64Hpf4bWcz9Z41+4Q+pgDx73UwWdAYyf6EG/lRFldmdHHzgrYyge5akFUW0D3mQ==",
1138
+ "cpu": [
1139
+ "riscv64"
1140
+ ],
1141
+ "dev": true,
1142
+ "license": "MIT",
1143
+ "optional": true,
1144
+ "os": [
1145
+ "linux"
1146
+ ]
1147
+ },
1148
+ "node_modules/@rollup/rollup-linux-s390x-gnu": {
1149
+ "version": "4.60.2",
1150
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.2.tgz",
1151
+ "integrity": "sha512-ALyvJz965BQk8E9Al/JDKKDLH2kfKFLTGMlgkAbbYtZuJt9LU8DW3ZoDMCtQpXAltZxwBHevXz5u+gf0yA0YoA==",
1152
+ "cpu": [
1153
+ "s390x"
1154
+ ],
1155
+ "dev": true,
1156
+ "license": "MIT",
1157
+ "optional": true,
1158
+ "os": [
1159
+ "linux"
1160
+ ]
1161
+ },
1162
+ "node_modules/@rollup/rollup-linux-x64-gnu": {
1163
+ "version": "4.60.2",
1164
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.2.tgz",
1165
+ "integrity": "sha512-UQjrkIdWrKI626Du8lCQ6MJp/6V1LAo2bOK9OTu4mSn8GGXIkPXk/Vsp4bLHCd9Z9Iz2OTEaokUE90VweJgIYQ==",
1166
+ "cpu": [
1167
+ "x64"
1168
+ ],
1169
+ "dev": true,
1170
+ "license": "MIT",
1171
+ "optional": true,
1172
+ "os": [
1173
+ "linux"
1174
+ ]
1175
+ },
1176
+ "node_modules/@rollup/rollup-linux-x64-musl": {
1177
+ "version": "4.60.2",
1178
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.2.tgz",
1179
+ "integrity": "sha512-bTsRGj6VlSdn/XD4CGyzMnzaBs9bsRxy79eTqTCBsA8TMIEky7qg48aPkvJvFe1HyzQ5oMZdg7AnVlWQSKLTnw==",
1180
+ "cpu": [
1181
+ "x64"
1182
+ ],
1183
+ "dev": true,
1184
+ "license": "MIT",
1185
+ "optional": true,
1186
+ "os": [
1187
+ "linux"
1188
+ ]
1189
+ },
1190
+ "node_modules/@rollup/rollup-openbsd-x64": {
1191
+ "version": "4.60.2",
1192
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.2.tgz",
1193
+ "integrity": "sha512-6d4Z3534xitaA1FcMWP7mQPq5zGwBmGbhphh2DwaA1aNIXUu3KTOfwrWpbwI4/Gr0uANo7NTtaykFyO2hPuFLg==",
1194
+ "cpu": [
1195
+ "x64"
1196
+ ],
1197
+ "dev": true,
1198
+ "license": "MIT",
1199
+ "optional": true,
1200
+ "os": [
1201
+ "openbsd"
1202
+ ]
1203
+ },
1204
+ "node_modules/@rollup/rollup-openharmony-arm64": {
1205
+ "version": "4.60.2",
1206
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.2.tgz",
1207
+ "integrity": "sha512-NetAg5iO2uN7eB8zE5qrZ3CSil+7IJt4WDFLcC75Ymywq1VZVD6qJ6EvNLjZ3rEm6gB7XW5JdT60c6MN35Z85Q==",
1208
+ "cpu": [
1209
+ "arm64"
1210
+ ],
1211
+ "dev": true,
1212
+ "license": "MIT",
1213
+ "optional": true,
1214
+ "os": [
1215
+ "openharmony"
1216
+ ]
1217
+ },
1218
+ "node_modules/@rollup/rollup-win32-arm64-msvc": {
1219
+ "version": "4.60.2",
1220
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.2.tgz",
1221
+ "integrity": "sha512-NCYhOotpgWZ5kdxCZsv6Iudx0wX8980Q/oW4pNFNihpBKsDbEA1zpkfxJGC0yugsUuyDZ7gL37dbzwhR0VI7pQ==",
1222
+ "cpu": [
1223
+ "arm64"
1224
+ ],
1225
+ "dev": true,
1226
+ "license": "MIT",
1227
+ "optional": true,
1228
+ "os": [
1229
+ "win32"
1230
+ ]
1231
+ },
1232
+ "node_modules/@rollup/rollup-win32-ia32-msvc": {
1233
+ "version": "4.60.2",
1234
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.2.tgz",
1235
+ "integrity": "sha512-RXsaOqXxfoUBQoOgvmmijVxJnW2IGB0eoMO7F8FAjaj0UTywUO/luSqimWBJn04WNgUkeNhh7fs7pESXajWmkg==",
1236
+ "cpu": [
1237
+ "ia32"
1238
+ ],
1239
+ "dev": true,
1240
+ "license": "MIT",
1241
+ "optional": true,
1242
+ "os": [
1243
+ "win32"
1244
+ ]
1245
+ },
1246
+ "node_modules/@rollup/rollup-win32-x64-gnu": {
1247
+ "version": "4.60.2",
1248
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.2.tgz",
1249
+ "integrity": "sha512-qdAzEULD+/hzObedtmV6iBpdL5TIbKVztGiK7O3/KYSf+HIzU257+MX1EXJcyIiDbMAqmbwaufcYPvyRryeZtA==",
1250
+ "cpu": [
1251
+ "x64"
1252
+ ],
1253
+ "dev": true,
1254
+ "license": "MIT",
1255
+ "optional": true,
1256
+ "os": [
1257
+ "win32"
1258
+ ]
1259
+ },
1260
+ "node_modules/@rollup/rollup-win32-x64-msvc": {
1261
+ "version": "4.60.2",
1262
+ "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.2.tgz",
1263
+ "integrity": "sha512-Nd/SgG27WoA9e+/TdK74KnHz852TLa94ovOYySo/yMPuTmpckK/jIF2jSwS3g7ELSKXK13/cVdmg1Z/DaCWKxA==",
1264
+ "cpu": [
1265
+ "x64"
1266
+ ],
1267
+ "dev": true,
1268
+ "license": "MIT",
1269
+ "optional": true,
1270
+ "os": [
1271
+ "win32"
1272
+ ]
1273
+ },
1274
+ "node_modules/@types/babel__core": {
1275
+ "version": "7.20.5",
1276
+ "dev": true,
1277
+ "license": "MIT",
1278
+ "dependencies": {
1279
+ "@babel/parser": "^7.20.7",
1280
+ "@babel/types": "^7.20.7",
1281
+ "@types/babel__generator": "*",
1282
+ "@types/babel__template": "*",
1283
+ "@types/babel__traverse": "*"
1284
+ }
1285
+ },
1286
+ "node_modules/@types/babel__generator": {
1287
+ "version": "7.27.0",
1288
+ "dev": true,
1289
+ "license": "MIT",
1290
+ "dependencies": {
1291
+ "@babel/types": "^7.0.0"
1292
+ }
1293
+ },
1294
+ "node_modules/@types/babel__template": {
1295
+ "version": "7.4.4",
1296
+ "dev": true,
1297
+ "license": "MIT",
1298
+ "dependencies": {
1299
+ "@babel/parser": "^7.1.0",
1300
+ "@babel/types": "^7.0.0"
1301
+ }
1302
+ },
1303
+ "node_modules/@types/babel__traverse": {
1304
+ "version": "7.28.0",
1305
+ "dev": true,
1306
+ "license": "MIT",
1307
+ "dependencies": {
1308
+ "@babel/types": "^7.28.2"
1309
+ }
1310
+ },
1311
+ "node_modules/@types/bun": {
1312
+ "version": "1.3.13",
1313
+ "resolved": "https://registry.npmjs.org/@types/bun/-/bun-1.3.13.tgz",
1314
+ "integrity": "sha512-9fqXWk5YIHGGnUau9TEi+qdlTYDAnOj+xLCmSTwXfAIqXr2x4tytJb43E9uCvt09zJURKXwAtkoH4nLQfzeTXw==",
1315
+ "license": "MIT",
1316
+ "dependencies": {
1317
+ "bun-types": "1.3.13"
1318
+ }
1319
+ },
1320
+ "node_modules/@types/estree": {
1321
+ "version": "1.0.8",
1322
+ "dev": true,
1323
+ "license": "MIT"
1324
+ },
1325
+ "node_modules/@types/node": {
1326
+ "version": "25.6.0",
1327
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-25.6.0.tgz",
1328
+ "integrity": "sha512-+qIYRKdNYJwY3vRCZMdJbPLJAtGjQBudzZzdzwQYkEPQd+PJGixUL5QfvCLDaULoLv+RhT3LDkwEfKaAkgSmNQ==",
1329
+ "license": "MIT",
1330
+ "dependencies": {
1331
+ "undici-types": "~7.19.0"
1332
+ }
1333
+ },
1334
+ "node_modules/@types/prop-types": {
1335
+ "version": "15.7.15",
1336
+ "dev": true,
1337
+ "license": "MIT"
1338
+ },
1339
+ "node_modules/@types/react": {
1340
+ "version": "18.3.28",
1341
+ "dev": true,
1342
+ "license": "MIT",
1343
+ "peer": true,
1344
+ "dependencies": {
1345
+ "@types/prop-types": "*",
1346
+ "csstype": "^3.2.2"
1347
+ }
1348
+ },
1349
+ "node_modules/@types/react-dom": {
1350
+ "version": "18.3.7",
1351
+ "dev": true,
1352
+ "license": "MIT",
1353
+ "peerDependencies": {
1354
+ "@types/react": "^18.0.0"
1355
+ }
1356
+ },
1357
+ "node_modules/@types/ws": {
1358
+ "version": "8.18.1",
1359
+ "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.18.1.tgz",
1360
+ "integrity": "sha512-ThVF6DCVhA8kUGy+aazFQ4kXQ7E1Ty7A3ypFOe0IcJV8O/M511G99AW24irKrW56Wt44yG9+ij8FaqoBGkuBXg==",
1361
+ "dev": true,
1362
+ "license": "MIT",
1363
+ "dependencies": {
1364
+ "@types/node": "*"
1365
+ }
1366
+ },
1367
+ "node_modules/@vitejs/plugin-react": {
1368
+ "version": "4.7.0",
1369
+ "dev": true,
1370
+ "license": "MIT",
1371
+ "dependencies": {
1372
+ "@babel/core": "^7.28.0",
1373
+ "@babel/plugin-transform-react-jsx-self": "^7.27.1",
1374
+ "@babel/plugin-transform-react-jsx-source": "^7.27.1",
1375
+ "@rolldown/pluginutils": "1.0.0-beta.27",
1376
+ "@types/babel__core": "^7.20.5",
1377
+ "react-refresh": "^0.17.0"
1378
+ },
1379
+ "engines": {
1380
+ "node": "^14.18.0 || >=16.0.0"
1381
+ },
1382
+ "peerDependencies": {
1383
+ "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
1384
+ }
1385
+ },
1386
+ "node_modules/abort-controller": {
1387
+ "version": "3.0.0",
1388
+ "license": "MIT",
1389
+ "dependencies": {
1390
+ "event-target-shim": "^5.0.0"
1391
+ },
1392
+ "engines": {
1393
+ "node": ">=6.5"
1394
+ }
1395
+ },
1396
+ "node_modules/ansi-regex": {
1397
+ "version": "5.0.1",
1398
+ "license": "MIT",
1399
+ "engines": {
1400
+ "node": ">=8"
1401
+ }
1402
+ },
1403
+ "node_modules/ansi-styles": {
1404
+ "version": "4.3.0",
1405
+ "license": "MIT",
1406
+ "dependencies": {
1407
+ "color-convert": "^2.0.1"
1408
+ },
1409
+ "engines": {
1410
+ "node": ">=8"
1411
+ },
1412
+ "funding": {
1413
+ "url": "https://github.com/chalk/ansi-styles?sponsor=1"
1414
+ }
1415
+ },
1416
+ "node_modules/any-promise": {
1417
+ "version": "1.3.0",
1418
+ "dev": true,
1419
+ "license": "MIT"
1420
+ },
1421
+ "node_modules/anymatch": {
1422
+ "version": "3.1.3",
1423
+ "dev": true,
1424
+ "license": "ISC",
1425
+ "dependencies": {
1426
+ "normalize-path": "^3.0.0",
1427
+ "picomatch": "^2.0.4"
1428
+ },
1429
+ "engines": {
1430
+ "node": ">= 8"
1431
+ }
1432
+ },
1433
+ "node_modules/anymatch/node_modules/picomatch": {
1434
+ "version": "2.3.2",
1435
+ "dev": true,
1436
+ "license": "MIT",
1437
+ "engines": {
1438
+ "node": ">=8.6"
1439
+ },
1440
+ "funding": {
1441
+ "url": "https://github.com/sponsors/jonschlinkert"
1442
+ }
1443
+ },
1444
+ "node_modules/archiver": {
1445
+ "version": "7.0.1",
1446
+ "license": "MIT",
1447
+ "dependencies": {
1448
+ "archiver-utils": "^5.0.2",
1449
+ "async": "^3.2.4",
1450
+ "buffer-crc32": "^1.0.0",
1451
+ "readable-stream": "^4.0.0",
1452
+ "readdir-glob": "^1.1.2",
1453
+ "tar-stream": "^3.0.0",
1454
+ "zip-stream": "^6.0.1"
1455
+ },
1456
+ "engines": {
1457
+ "node": ">= 14"
1458
+ }
1459
+ },
1460
+ "node_modules/archiver-utils": {
1461
+ "version": "5.0.2",
1462
+ "license": "MIT",
1463
+ "dependencies": {
1464
+ "glob": "^10.0.0",
1465
+ "graceful-fs": "^4.2.0",
1466
+ "is-stream": "^2.0.1",
1467
+ "lazystream": "^1.0.0",
1468
+ "lodash": "^4.17.15",
1469
+ "normalize-path": "^3.0.0",
1470
+ "readable-stream": "^4.0.0"
1471
+ },
1472
+ "engines": {
1473
+ "node": ">= 14"
1474
+ }
1475
+ },
1476
+ "node_modules/arg": {
1477
+ "version": "5.0.2",
1478
+ "dev": true,
1479
+ "license": "MIT"
1480
+ },
1481
+ "node_modules/async": {
1482
+ "version": "3.2.6",
1483
+ "license": "MIT"
1484
+ },
1485
+ "node_modules/autoprefixer": {
1486
+ "version": "10.5.0",
1487
+ "dev": true,
1488
+ "funding": [
1489
+ {
1490
+ "type": "opencollective",
1491
+ "url": "https://opencollective.com/postcss/"
1492
+ },
1493
+ {
1494
+ "type": "tidelift",
1495
+ "url": "https://tidelift.com/funding/github/npm/autoprefixer"
1496
+ },
1497
+ {
1498
+ "type": "github",
1499
+ "url": "https://github.com/sponsors/ai"
1500
+ }
1501
+ ],
1502
+ "license": "MIT",
1503
+ "dependencies": {
1504
+ "browserslist": "^4.28.2",
1505
+ "caniuse-lite": "^1.0.30001787",
1506
+ "fraction.js": "^5.3.4",
1507
+ "picocolors": "^1.1.1",
1508
+ "postcss-value-parser": "^4.2.0"
1509
+ },
1510
+ "bin": {
1511
+ "autoprefixer": "bin/autoprefixer"
1512
+ },
1513
+ "engines": {
1514
+ "node": "^10 || ^12 || >=14"
1515
+ },
1516
+ "peerDependencies": {
1517
+ "postcss": "^8.1.0"
1518
+ }
1519
+ },
1520
+ "node_modules/b4a": {
1521
+ "version": "1.8.0",
1522
+ "license": "Apache-2.0",
1523
+ "peerDependencies": {
1524
+ "react-native-b4a": "*"
1525
+ },
1526
+ "peerDependenciesMeta": {
1527
+ "react-native-b4a": {
1528
+ "optional": true
1529
+ }
1530
+ }
1531
+ },
1532
+ "node_modules/balanced-match": {
1533
+ "version": "1.0.2",
1534
+ "license": "MIT"
1535
+ },
1536
+ "node_modules/bare-events": {
1537
+ "version": "2.8.2",
1538
+ "license": "Apache-2.0",
1539
+ "peer": true,
1540
+ "peerDependencies": {
1541
+ "bare-abort-controller": "*"
1542
+ },
1543
+ "peerDependenciesMeta": {
1544
+ "bare-abort-controller": {
1545
+ "optional": true
1546
+ }
1547
+ }
1548
+ },
1549
+ "node_modules/bare-fs": {
1550
+ "version": "4.7.1",
1551
+ "license": "Apache-2.0",
1552
+ "dependencies": {
1553
+ "bare-events": "^2.5.4",
1554
+ "bare-path": "^3.0.0",
1555
+ "bare-stream": "^2.6.4",
1556
+ "bare-url": "^2.2.2",
1557
+ "fast-fifo": "^1.3.2"
1558
+ },
1559
+ "engines": {
1560
+ "bare": ">=1.16.0"
1561
+ },
1562
+ "peerDependencies": {
1563
+ "bare-buffer": "*"
1564
+ },
1565
+ "peerDependenciesMeta": {
1566
+ "bare-buffer": {
1567
+ "optional": true
1568
+ }
1569
+ }
1570
+ },
1571
+ "node_modules/bare-os": {
1572
+ "version": "3.9.0",
1573
+ "license": "Apache-2.0",
1574
+ "engines": {
1575
+ "bare": ">=1.14.0"
1576
+ }
1577
+ },
1578
+ "node_modules/bare-path": {
1579
+ "version": "3.0.0",
1580
+ "license": "Apache-2.0",
1581
+ "dependencies": {
1582
+ "bare-os": "^3.0.1"
1583
+ }
1584
+ },
1585
+ "node_modules/bare-stream": {
1586
+ "version": "2.13.0",
1587
+ "license": "Apache-2.0",
1588
+ "dependencies": {
1589
+ "streamx": "^2.25.0",
1590
+ "teex": "^1.0.1"
1591
+ },
1592
+ "peerDependencies": {
1593
+ "bare-abort-controller": "*",
1594
+ "bare-buffer": "*",
1595
+ "bare-events": "*"
1596
+ },
1597
+ "peerDependenciesMeta": {
1598
+ "bare-abort-controller": {
1599
+ "optional": true
1600
+ },
1601
+ "bare-buffer": {
1602
+ "optional": true
1603
+ },
1604
+ "bare-events": {
1605
+ "optional": true
1606
+ }
1607
+ }
1608
+ },
1609
+ "node_modules/bare-url": {
1610
+ "version": "2.4.2",
1611
+ "license": "Apache-2.0",
1612
+ "dependencies": {
1613
+ "bare-path": "^3.0.0"
1614
+ }
1615
+ },
1616
+ "node_modules/base64-js": {
1617
+ "version": "1.5.1",
1618
+ "funding": [
1619
+ {
1620
+ "type": "github",
1621
+ "url": "https://github.com/sponsors/feross"
1622
+ },
1623
+ {
1624
+ "type": "patreon",
1625
+ "url": "https://www.patreon.com/feross"
1626
+ },
1627
+ {
1628
+ "type": "consulting",
1629
+ "url": "https://feross.org/support"
1630
+ }
1631
+ ],
1632
+ "license": "MIT"
1633
+ },
1634
+ "node_modules/baseline-browser-mapping": {
1635
+ "version": "2.10.20",
1636
+ "dev": true,
1637
+ "license": "Apache-2.0",
1638
+ "bin": {
1639
+ "baseline-browser-mapping": "dist/cli.cjs"
1640
+ },
1641
+ "engines": {
1642
+ "node": ">=6.0.0"
1643
+ }
1644
+ },
1645
+ "node_modules/binary-extensions": {
1646
+ "version": "2.3.0",
1647
+ "dev": true,
1648
+ "license": "MIT",
1649
+ "engines": {
1650
+ "node": ">=8"
1651
+ },
1652
+ "funding": {
1653
+ "url": "https://github.com/sponsors/sindresorhus"
1654
+ }
1655
+ },
1656
+ "node_modules/brace-expansion": {
1657
+ "version": "2.1.0",
1658
+ "license": "MIT",
1659
+ "dependencies": {
1660
+ "balanced-match": "^1.0.0"
1661
+ }
1662
+ },
1663
+ "node_modules/braces": {
1664
+ "version": "3.0.3",
1665
+ "dev": true,
1666
+ "license": "MIT",
1667
+ "dependencies": {
1668
+ "fill-range": "^7.1.1"
1669
+ },
1670
+ "engines": {
1671
+ "node": ">=8"
1672
+ }
1673
+ },
1674
+ "node_modules/browserslist": {
1675
+ "version": "4.28.2",
1676
+ "dev": true,
1677
+ "funding": [
1678
+ {
1679
+ "type": "opencollective",
1680
+ "url": "https://opencollective.com/browserslist"
1681
+ },
1682
+ {
1683
+ "type": "tidelift",
1684
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
1685
+ },
1686
+ {
1687
+ "type": "github",
1688
+ "url": "https://github.com/sponsors/ai"
1689
+ }
1690
+ ],
1691
+ "license": "MIT",
1692
+ "peer": true,
1693
+ "dependencies": {
1694
+ "baseline-browser-mapping": "^2.10.12",
1695
+ "caniuse-lite": "^1.0.30001782",
1696
+ "electron-to-chromium": "^1.5.328",
1697
+ "node-releases": "^2.0.36",
1698
+ "update-browserslist-db": "^1.2.3"
1699
+ },
1700
+ "bin": {
1701
+ "browserslist": "cli.js"
1702
+ },
1703
+ "engines": {
1704
+ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7"
1705
+ }
1706
+ },
1707
+ "node_modules/buffer": {
1708
+ "version": "6.0.3",
1709
+ "funding": [
1710
+ {
1711
+ "type": "github",
1712
+ "url": "https://github.com/sponsors/feross"
1713
+ },
1714
+ {
1715
+ "type": "patreon",
1716
+ "url": "https://www.patreon.com/feross"
1717
+ },
1718
+ {
1719
+ "type": "consulting",
1720
+ "url": "https://feross.org/support"
1721
+ }
1722
+ ],
1723
+ "license": "MIT",
1724
+ "dependencies": {
1725
+ "base64-js": "^1.3.1",
1726
+ "ieee754": "^1.2.1"
1727
+ }
1728
+ },
1729
+ "node_modules/buffer-crc32": {
1730
+ "version": "1.0.0",
1731
+ "license": "MIT",
1732
+ "engines": {
1733
+ "node": ">=8.0.0"
1734
+ }
1735
+ },
1736
+ "node_modules/bun-types": {
1737
+ "version": "1.3.13",
1738
+ "resolved": "https://registry.npmjs.org/bun-types/-/bun-types-1.3.13.tgz",
1739
+ "integrity": "sha512-QXKeHLlOLqQX9LgYaHJfzdBaV21T63HhFJnvuRCcjZiaUDpbs5ED1MgxbMra71CsryN/1dAoXuJJJwIv/2drVA==",
1740
+ "license": "MIT",
1741
+ "dependencies": {
1742
+ "@types/node": "*"
1743
+ }
1744
+ },
1745
+ "node_modules/camelcase-css": {
1746
+ "version": "2.0.1",
1747
+ "dev": true,
1748
+ "license": "MIT",
1749
+ "engines": {
1750
+ "node": ">= 6"
1751
+ }
1752
+ },
1753
+ "node_modules/caniuse-lite": {
1754
+ "version": "1.0.30001790",
1755
+ "dev": true,
1756
+ "funding": [
1757
+ {
1758
+ "type": "opencollective",
1759
+ "url": "https://opencollective.com/browserslist"
1760
+ },
1761
+ {
1762
+ "type": "tidelift",
1763
+ "url": "https://tidelift.com/funding/github/npm/caniuse-lite"
1764
+ },
1765
+ {
1766
+ "type": "github",
1767
+ "url": "https://github.com/sponsors/ai"
1768
+ }
1769
+ ],
1770
+ "license": "CC-BY-4.0"
1771
+ },
1772
+ "node_modules/chalk": {
1773
+ "version": "4.1.2",
1774
+ "dev": true,
1775
+ "license": "MIT",
1776
+ "dependencies": {
1777
+ "ansi-styles": "^4.1.0",
1778
+ "supports-color": "^7.1.0"
1779
+ },
1780
+ "engines": {
1781
+ "node": ">=10"
1782
+ },
1783
+ "funding": {
1784
+ "url": "https://github.com/chalk/chalk?sponsor=1"
1785
+ }
1786
+ },
1787
+ "node_modules/chalk/node_modules/supports-color": {
1788
+ "version": "7.2.0",
1789
+ "dev": true,
1790
+ "license": "MIT",
1791
+ "dependencies": {
1792
+ "has-flag": "^4.0.0"
1793
+ },
1794
+ "engines": {
1795
+ "node": ">=8"
1796
+ }
1797
+ },
1798
+ "node_modules/chokidar": {
1799
+ "version": "3.6.0",
1800
+ "dev": true,
1801
+ "license": "MIT",
1802
+ "dependencies": {
1803
+ "anymatch": "~3.1.2",
1804
+ "braces": "~3.0.2",
1805
+ "glob-parent": "~5.1.2",
1806
+ "is-binary-path": "~2.1.0",
1807
+ "is-glob": "~4.0.1",
1808
+ "normalize-path": "~3.0.0",
1809
+ "readdirp": "~3.6.0"
1810
+ },
1811
+ "engines": {
1812
+ "node": ">= 8.10.0"
1813
+ },
1814
+ "funding": {
1815
+ "url": "https://paulmillr.com/funding/"
1816
+ },
1817
+ "optionalDependencies": {
1818
+ "fsevents": "~2.3.2"
1819
+ }
1820
+ },
1821
+ "node_modules/chokidar/node_modules/glob-parent": {
1822
+ "version": "5.1.2",
1823
+ "dev": true,
1824
+ "license": "ISC",
1825
+ "dependencies": {
1826
+ "is-glob": "^4.0.1"
1827
+ },
1828
+ "engines": {
1829
+ "node": ">= 6"
1830
+ }
1831
+ },
1832
+ "node_modules/cliui": {
1833
+ "version": "8.0.1",
1834
+ "dev": true,
1835
+ "license": "ISC",
1836
+ "dependencies": {
1837
+ "string-width": "^4.2.0",
1838
+ "strip-ansi": "^6.0.1",
1839
+ "wrap-ansi": "^7.0.0"
1840
+ },
1841
+ "engines": {
1842
+ "node": ">=12"
1843
+ }
1844
+ },
1845
+ "node_modules/color-convert": {
1846
+ "version": "2.0.1",
1847
+ "license": "MIT",
1848
+ "dependencies": {
1849
+ "color-name": "~1.1.4"
1850
+ },
1851
+ "engines": {
1852
+ "node": ">=7.0.0"
1853
+ }
1854
+ },
1855
+ "node_modules/color-name": {
1856
+ "version": "1.1.4",
1857
+ "license": "MIT"
1858
+ },
1859
+ "node_modules/commander": {
1860
+ "version": "4.1.1",
1861
+ "dev": true,
1862
+ "license": "MIT",
1863
+ "engines": {
1864
+ "node": ">= 6"
1865
+ }
1866
+ },
1867
+ "node_modules/compress-commons": {
1868
+ "version": "6.0.2",
1869
+ "license": "MIT",
1870
+ "dependencies": {
1871
+ "crc-32": "^1.2.0",
1872
+ "crc32-stream": "^6.0.0",
1873
+ "is-stream": "^2.0.1",
1874
+ "normalize-path": "^3.0.0",
1875
+ "readable-stream": "^4.0.0"
1876
+ },
1877
+ "engines": {
1878
+ "node": ">= 14"
1879
+ }
1880
+ },
1881
+ "node_modules/concurrently": {
1882
+ "version": "9.2.1",
1883
+ "dev": true,
1884
+ "license": "MIT",
1885
+ "dependencies": {
1886
+ "chalk": "4.1.2",
1887
+ "rxjs": "7.8.2",
1888
+ "shell-quote": "1.8.3",
1889
+ "supports-color": "8.1.1",
1890
+ "tree-kill": "1.2.2",
1891
+ "yargs": "17.7.2"
1892
+ },
1893
+ "bin": {
1894
+ "conc": "dist/bin/concurrently.js",
1895
+ "concurrently": "dist/bin/concurrently.js"
1896
+ },
1897
+ "engines": {
1898
+ "node": ">=18"
1899
+ },
1900
+ "funding": {
1901
+ "url": "https://github.com/open-cli-tools/concurrently?sponsor=1"
1902
+ }
1903
+ },
1904
+ "node_modules/convert-source-map": {
1905
+ "version": "2.0.0",
1906
+ "dev": true,
1907
+ "license": "MIT"
1908
+ },
1909
+ "node_modules/core-util-is": {
1910
+ "version": "1.0.3",
1911
+ "license": "MIT"
1912
+ },
1913
+ "node_modules/crc-32": {
1914
+ "version": "1.2.2",
1915
+ "license": "Apache-2.0",
1916
+ "bin": {
1917
+ "crc32": "bin/crc32.njs"
1918
+ },
1919
+ "engines": {
1920
+ "node": ">=0.8"
1921
+ }
1922
+ },
1923
+ "node_modules/crc32-stream": {
1924
+ "version": "6.0.0",
1925
+ "license": "MIT",
1926
+ "dependencies": {
1927
+ "crc-32": "^1.2.0",
1928
+ "readable-stream": "^4.0.0"
1929
+ },
1930
+ "engines": {
1931
+ "node": ">= 14"
1932
+ }
1933
+ },
1934
+ "node_modules/cross-spawn": {
1935
+ "version": "7.0.6",
1936
+ "license": "MIT",
1937
+ "dependencies": {
1938
+ "path-key": "^3.1.0",
1939
+ "shebang-command": "^2.0.0",
1940
+ "which": "^2.0.1"
1941
+ },
1942
+ "engines": {
1943
+ "node": ">= 8"
1944
+ }
1945
+ },
1946
+ "node_modules/cross-spawn-windows-exe": {
1947
+ "version": "1.2.0",
1948
+ "funding": [
1949
+ {
1950
+ "type": "individual",
1951
+ "url": "https://github.com/sponsors/malept"
1952
+ },
1953
+ {
1954
+ "type": "tidelift",
1955
+ "url": "https://tidelift.com/subscription/pkg/npm-cross-spawn-windows-exe?utm_medium=referral&utm_source=npm_fund"
1956
+ }
1957
+ ],
1958
+ "license": "Apache-2.0",
1959
+ "dependencies": {
1960
+ "@malept/cross-spawn-promise": "^1.1.0",
1961
+ "is-wsl": "^2.2.0",
1962
+ "which": "^2.0.2"
1963
+ },
1964
+ "engines": {
1965
+ "node": ">= 10"
1966
+ }
1967
+ },
1968
+ "node_modules/cssesc": {
1969
+ "version": "3.0.0",
1970
+ "dev": true,
1971
+ "license": "MIT",
1972
+ "bin": {
1973
+ "cssesc": "bin/cssesc"
1974
+ },
1975
+ "engines": {
1976
+ "node": ">=4"
1977
+ }
1978
+ },
1979
+ "node_modules/csstype": {
1980
+ "version": "3.2.3",
1981
+ "dev": true,
1982
+ "license": "MIT"
1983
+ },
1984
+ "node_modules/debug": {
1985
+ "version": "4.4.3",
1986
+ "dev": true,
1987
+ "license": "MIT",
1988
+ "dependencies": {
1989
+ "ms": "^2.1.3"
1990
+ },
1991
+ "engines": {
1992
+ "node": ">=6.0"
1993
+ },
1994
+ "peerDependenciesMeta": {
1995
+ "supports-color": {
1996
+ "optional": true
1997
+ }
1998
+ }
1999
+ },
2000
+ "node_modules/didyoumean": {
2001
+ "version": "1.2.2",
2002
+ "dev": true,
2003
+ "license": "Apache-2.0"
2004
+ },
2005
+ "node_modules/dlv": {
2006
+ "version": "1.1.3",
2007
+ "dev": true,
2008
+ "license": "MIT"
2009
+ },
2010
+ "node_modules/eastasianwidth": {
2011
+ "version": "0.2.0",
2012
+ "license": "MIT"
2013
+ },
2014
+ "node_modules/electrobun": {
2015
+ "version": "1.13.1",
2016
+ "license": "MIT",
2017
+ "dependencies": {
2018
+ "@types/bun": "^1.3.8",
2019
+ "archiver": "^7.0.1",
2020
+ "png-to-ico": "^2.1.8",
2021
+ "rcedit": "^4.0.1"
2022
+ },
2023
+ "bin": {
2024
+ "electrobun": "bin/electrobun.cjs"
2025
+ }
2026
+ },
2027
+ "node_modules/electron-to-chromium": {
2028
+ "version": "1.5.343",
2029
+ "dev": true,
2030
+ "license": "ISC"
2031
+ },
2032
+ "node_modules/emoji-regex": {
2033
+ "version": "8.0.0",
2034
+ "license": "MIT"
2035
+ },
2036
+ "node_modules/es-errors": {
2037
+ "version": "1.3.0",
2038
+ "dev": true,
2039
+ "license": "MIT",
2040
+ "engines": {
2041
+ "node": ">= 0.4"
2042
+ }
2043
+ },
2044
+ "node_modules/esbuild": {
2045
+ "version": "0.25.12",
2046
+ "dev": true,
2047
+ "hasInstallScript": true,
2048
+ "license": "MIT",
2049
+ "bin": {
2050
+ "esbuild": "bin/esbuild"
2051
+ },
2052
+ "engines": {
2053
+ "node": ">=18"
2054
+ },
2055
+ "optionalDependencies": {
2056
+ "@esbuild/aix-ppc64": "0.25.12",
2057
+ "@esbuild/android-arm": "0.25.12",
2058
+ "@esbuild/android-arm64": "0.25.12",
2059
+ "@esbuild/android-x64": "0.25.12",
2060
+ "@esbuild/darwin-arm64": "0.25.12",
2061
+ "@esbuild/darwin-x64": "0.25.12",
2062
+ "@esbuild/freebsd-arm64": "0.25.12",
2063
+ "@esbuild/freebsd-x64": "0.25.12",
2064
+ "@esbuild/linux-arm": "0.25.12",
2065
+ "@esbuild/linux-arm64": "0.25.12",
2066
+ "@esbuild/linux-ia32": "0.25.12",
2067
+ "@esbuild/linux-loong64": "0.25.12",
2068
+ "@esbuild/linux-mips64el": "0.25.12",
2069
+ "@esbuild/linux-ppc64": "0.25.12",
2070
+ "@esbuild/linux-riscv64": "0.25.12",
2071
+ "@esbuild/linux-s390x": "0.25.12",
2072
+ "@esbuild/linux-x64": "0.25.12",
2073
+ "@esbuild/netbsd-arm64": "0.25.12",
2074
+ "@esbuild/netbsd-x64": "0.25.12",
2075
+ "@esbuild/openbsd-arm64": "0.25.12",
2076
+ "@esbuild/openbsd-x64": "0.25.12",
2077
+ "@esbuild/openharmony-arm64": "0.25.12",
2078
+ "@esbuild/sunos-x64": "0.25.12",
2079
+ "@esbuild/win32-arm64": "0.25.12",
2080
+ "@esbuild/win32-ia32": "0.25.12",
2081
+ "@esbuild/win32-x64": "0.25.12"
2082
+ }
2083
+ },
2084
+ "node_modules/escalade": {
2085
+ "version": "3.2.0",
2086
+ "dev": true,
2087
+ "license": "MIT",
2088
+ "engines": {
2089
+ "node": ">=6"
2090
+ }
2091
+ },
2092
+ "node_modules/event-target-shim": {
2093
+ "version": "5.0.1",
2094
+ "license": "MIT",
2095
+ "engines": {
2096
+ "node": ">=6"
2097
+ }
2098
+ },
2099
+ "node_modules/events": {
2100
+ "version": "3.3.0",
2101
+ "license": "MIT",
2102
+ "engines": {
2103
+ "node": ">=0.8.x"
2104
+ }
2105
+ },
2106
+ "node_modules/events-universal": {
2107
+ "version": "1.0.1",
2108
+ "license": "Apache-2.0",
2109
+ "dependencies": {
2110
+ "bare-events": "^2.7.0"
2111
+ }
2112
+ },
2113
+ "node_modules/fast-fifo": {
2114
+ "version": "1.3.2",
2115
+ "license": "MIT"
2116
+ },
2117
+ "node_modules/fast-glob": {
2118
+ "version": "3.3.3",
2119
+ "dev": true,
2120
+ "license": "MIT",
2121
+ "dependencies": {
2122
+ "@nodelib/fs.stat": "^2.0.2",
2123
+ "@nodelib/fs.walk": "^1.2.3",
2124
+ "glob-parent": "^5.1.2",
2125
+ "merge2": "^1.3.0",
2126
+ "micromatch": "^4.0.8"
2127
+ },
2128
+ "engines": {
2129
+ "node": ">=8.6.0"
2130
+ }
2131
+ },
2132
+ "node_modules/fast-glob/node_modules/glob-parent": {
2133
+ "version": "5.1.2",
2134
+ "dev": true,
2135
+ "license": "ISC",
2136
+ "dependencies": {
2137
+ "is-glob": "^4.0.1"
2138
+ },
2139
+ "engines": {
2140
+ "node": ">= 6"
2141
+ }
2142
+ },
2143
+ "node_modules/fastq": {
2144
+ "version": "1.20.1",
2145
+ "dev": true,
2146
+ "license": "ISC",
2147
+ "dependencies": {
2148
+ "reusify": "^1.0.4"
2149
+ }
2150
+ },
2151
+ "node_modules/fdir": {
2152
+ "version": "6.5.0",
2153
+ "dev": true,
2154
+ "license": "MIT",
2155
+ "engines": {
2156
+ "node": ">=12.0.0"
2157
+ },
2158
+ "peerDependencies": {
2159
+ "picomatch": "^3 || ^4"
2160
+ },
2161
+ "peerDependenciesMeta": {
2162
+ "picomatch": {
2163
+ "optional": true
2164
+ }
2165
+ }
2166
+ },
2167
+ "node_modules/fill-range": {
2168
+ "version": "7.1.1",
2169
+ "dev": true,
2170
+ "license": "MIT",
2171
+ "dependencies": {
2172
+ "to-regex-range": "^5.0.1"
2173
+ },
2174
+ "engines": {
2175
+ "node": ">=8"
2176
+ }
2177
+ },
2178
+ "node_modules/foreground-child": {
2179
+ "version": "3.3.1",
2180
+ "license": "ISC",
2181
+ "dependencies": {
2182
+ "cross-spawn": "^7.0.6",
2183
+ "signal-exit": "^4.0.1"
2184
+ },
2185
+ "engines": {
2186
+ "node": ">=14"
2187
+ },
2188
+ "funding": {
2189
+ "url": "https://github.com/sponsors/isaacs"
2190
+ }
2191
+ },
2192
+ "node_modules/fraction.js": {
2193
+ "version": "5.3.4",
2194
+ "dev": true,
2195
+ "license": "MIT",
2196
+ "engines": {
2197
+ "node": "*"
2198
+ },
2199
+ "funding": {
2200
+ "type": "github",
2201
+ "url": "https://github.com/sponsors/rawify"
2202
+ }
2203
+ },
2204
+ "node_modules/fsevents": {
2205
+ "version": "2.3.3",
2206
+ "dev": true,
2207
+ "license": "MIT",
2208
+ "optional": true,
2209
+ "os": [
2210
+ "darwin"
2211
+ ],
2212
+ "engines": {
2213
+ "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
2214
+ }
2215
+ },
2216
+ "node_modules/function-bind": {
2217
+ "version": "1.1.2",
2218
+ "dev": true,
2219
+ "license": "MIT",
2220
+ "funding": {
2221
+ "url": "https://github.com/sponsors/ljharb"
2222
+ }
2223
+ },
2224
+ "node_modules/gensync": {
2225
+ "version": "1.0.0-beta.2",
2226
+ "dev": true,
2227
+ "license": "MIT",
2228
+ "engines": {
2229
+ "node": ">=6.9.0"
2230
+ }
2231
+ },
2232
+ "node_modules/get-caller-file": {
2233
+ "version": "2.0.5",
2234
+ "dev": true,
2235
+ "license": "ISC",
2236
+ "engines": {
2237
+ "node": "6.* || 8.* || >= 10.*"
2238
+ }
2239
+ },
2240
+ "node_modules/glob": {
2241
+ "version": "10.5.0",
2242
+ "license": "ISC",
2243
+ "dependencies": {
2244
+ "foreground-child": "^3.1.0",
2245
+ "jackspeak": "^3.1.2",
2246
+ "minimatch": "^9.0.4",
2247
+ "minipass": "^7.1.2",
2248
+ "package-json-from-dist": "^1.0.0",
2249
+ "path-scurry": "^1.11.1"
2250
+ },
2251
+ "bin": {
2252
+ "glob": "dist/esm/bin.mjs"
2253
+ },
2254
+ "funding": {
2255
+ "url": "https://github.com/sponsors/isaacs"
2256
+ }
2257
+ },
2258
+ "node_modules/glob-parent": {
2259
+ "version": "6.0.2",
2260
+ "dev": true,
2261
+ "license": "ISC",
2262
+ "dependencies": {
2263
+ "is-glob": "^4.0.3"
2264
+ },
2265
+ "engines": {
2266
+ "node": ">=10.13.0"
2267
+ }
2268
+ },
2269
+ "node_modules/glob/node_modules/minimatch": {
2270
+ "version": "9.0.9",
2271
+ "license": "ISC",
2272
+ "dependencies": {
2273
+ "brace-expansion": "^2.0.2"
2274
+ },
2275
+ "engines": {
2276
+ "node": ">=16 || 14 >=14.17"
2277
+ },
2278
+ "funding": {
2279
+ "url": "https://github.com/sponsors/isaacs"
2280
+ }
2281
+ },
2282
+ "node_modules/graceful-fs": {
2283
+ "version": "4.2.11",
2284
+ "license": "ISC"
2285
+ },
2286
+ "node_modules/has-flag": {
2287
+ "version": "4.0.0",
2288
+ "dev": true,
2289
+ "license": "MIT",
2290
+ "engines": {
2291
+ "node": ">=8"
2292
+ }
2293
+ },
2294
+ "node_modules/hasown": {
2295
+ "version": "2.0.3",
2296
+ "dev": true,
2297
+ "license": "MIT",
2298
+ "dependencies": {
2299
+ "function-bind": "^1.1.2"
2300
+ },
2301
+ "engines": {
2302
+ "node": ">= 0.4"
2303
+ }
2304
+ },
2305
+ "node_modules/ieee754": {
2306
+ "version": "1.2.1",
2307
+ "funding": [
2308
+ {
2309
+ "type": "github",
2310
+ "url": "https://github.com/sponsors/feross"
2311
+ },
2312
+ {
2313
+ "type": "patreon",
2314
+ "url": "https://www.patreon.com/feross"
2315
+ },
2316
+ {
2317
+ "type": "consulting",
2318
+ "url": "https://feross.org/support"
2319
+ }
2320
+ ],
2321
+ "license": "BSD-3-Clause"
2322
+ },
2323
+ "node_modules/inherits": {
2324
+ "version": "2.0.4",
2325
+ "license": "ISC"
2326
+ },
2327
+ "node_modules/is-binary-path": {
2328
+ "version": "2.1.0",
2329
+ "dev": true,
2330
+ "license": "MIT",
2331
+ "dependencies": {
2332
+ "binary-extensions": "^2.0.0"
2333
+ },
2334
+ "engines": {
2335
+ "node": ">=8"
2336
+ }
2337
+ },
2338
+ "node_modules/is-core-module": {
2339
+ "version": "2.16.1",
2340
+ "dev": true,
2341
+ "license": "MIT",
2342
+ "dependencies": {
2343
+ "hasown": "^2.0.2"
2344
+ },
2345
+ "engines": {
2346
+ "node": ">= 0.4"
2347
+ },
2348
+ "funding": {
2349
+ "url": "https://github.com/sponsors/ljharb"
2350
+ }
2351
+ },
2352
+ "node_modules/is-docker": {
2353
+ "version": "2.2.1",
2354
+ "license": "MIT",
2355
+ "bin": {
2356
+ "is-docker": "cli.js"
2357
+ },
2358
+ "engines": {
2359
+ "node": ">=8"
2360
+ },
2361
+ "funding": {
2362
+ "url": "https://github.com/sponsors/sindresorhus"
2363
+ }
2364
+ },
2365
+ "node_modules/is-extglob": {
2366
+ "version": "2.1.1",
2367
+ "dev": true,
2368
+ "license": "MIT",
2369
+ "engines": {
2370
+ "node": ">=0.10.0"
2371
+ }
2372
+ },
2373
+ "node_modules/is-fullwidth-code-point": {
2374
+ "version": "3.0.0",
2375
+ "license": "MIT",
2376
+ "engines": {
2377
+ "node": ">=8"
2378
+ }
2379
+ },
2380
+ "node_modules/is-glob": {
2381
+ "version": "4.0.3",
2382
+ "dev": true,
2383
+ "license": "MIT",
2384
+ "dependencies": {
2385
+ "is-extglob": "^2.1.1"
2386
+ },
2387
+ "engines": {
2388
+ "node": ">=0.10.0"
2389
+ }
2390
+ },
2391
+ "node_modules/is-number": {
2392
+ "version": "7.0.0",
2393
+ "dev": true,
2394
+ "license": "MIT",
2395
+ "engines": {
2396
+ "node": ">=0.12.0"
2397
+ }
2398
+ },
2399
+ "node_modules/is-stream": {
2400
+ "version": "2.0.1",
2401
+ "license": "MIT",
2402
+ "engines": {
2403
+ "node": ">=8"
2404
+ },
2405
+ "funding": {
2406
+ "url": "https://github.com/sponsors/sindresorhus"
2407
+ }
2408
+ },
2409
+ "node_modules/is-wsl": {
2410
+ "version": "2.2.0",
2411
+ "license": "MIT",
2412
+ "dependencies": {
2413
+ "is-docker": "^2.0.0"
2414
+ },
2415
+ "engines": {
2416
+ "node": ">=8"
2417
+ }
2418
+ },
2419
+ "node_modules/isarray": {
2420
+ "version": "1.0.0",
2421
+ "license": "MIT"
2422
+ },
2423
+ "node_modules/isexe": {
2424
+ "version": "2.0.0",
2425
+ "license": "ISC"
2426
+ },
2427
+ "node_modules/jackspeak": {
2428
+ "version": "3.4.3",
2429
+ "license": "BlueOak-1.0.0",
2430
+ "dependencies": {
2431
+ "@isaacs/cliui": "^8.0.2"
2432
+ },
2433
+ "funding": {
2434
+ "url": "https://github.com/sponsors/isaacs"
2435
+ },
2436
+ "optionalDependencies": {
2437
+ "@pkgjs/parseargs": "^0.11.0"
2438
+ }
2439
+ },
2440
+ "node_modules/jiti": {
2441
+ "version": "1.21.7",
2442
+ "dev": true,
2443
+ "license": "MIT",
2444
+ "peer": true,
2445
+ "bin": {
2446
+ "jiti": "bin/jiti.js"
2447
+ }
2448
+ },
2449
+ "node_modules/js-tokens": {
2450
+ "version": "4.0.0",
2451
+ "license": "MIT"
2452
+ },
2453
+ "node_modules/jsesc": {
2454
+ "version": "3.1.0",
2455
+ "dev": true,
2456
+ "license": "MIT",
2457
+ "bin": {
2458
+ "jsesc": "bin/jsesc"
2459
+ },
2460
+ "engines": {
2461
+ "node": ">=6"
2462
+ }
2463
+ },
2464
+ "node_modules/json5": {
2465
+ "version": "2.2.3",
2466
+ "dev": true,
2467
+ "license": "MIT",
2468
+ "bin": {
2469
+ "json5": "lib/cli.js"
2470
+ },
2471
+ "engines": {
2472
+ "node": ">=6"
2473
+ }
2474
+ },
2475
+ "node_modules/lazystream": {
2476
+ "version": "1.0.1",
2477
+ "license": "MIT",
2478
+ "dependencies": {
2479
+ "readable-stream": "^2.0.5"
2480
+ },
2481
+ "engines": {
2482
+ "node": ">= 0.6.3"
2483
+ }
2484
+ },
2485
+ "node_modules/lazystream/node_modules/readable-stream": {
2486
+ "version": "2.3.8",
2487
+ "license": "MIT",
2488
+ "dependencies": {
2489
+ "core-util-is": "~1.0.0",
2490
+ "inherits": "~2.0.3",
2491
+ "isarray": "~1.0.0",
2492
+ "process-nextick-args": "~2.0.0",
2493
+ "safe-buffer": "~5.1.1",
2494
+ "string_decoder": "~1.1.1",
2495
+ "util-deprecate": "~1.0.1"
2496
+ }
2497
+ },
2498
+ "node_modules/lazystream/node_modules/readable-stream/node_modules/safe-buffer": {
2499
+ "version": "5.1.2",
2500
+ "license": "MIT"
2501
+ },
2502
+ "node_modules/lazystream/node_modules/readable-stream/node_modules/string_decoder": {
2503
+ "version": "1.1.1",
2504
+ "license": "MIT",
2505
+ "dependencies": {
2506
+ "safe-buffer": "~5.1.0"
2507
+ }
2508
+ },
2509
+ "node_modules/lilconfig": {
2510
+ "version": "3.1.3",
2511
+ "dev": true,
2512
+ "license": "MIT",
2513
+ "engines": {
2514
+ "node": ">=14"
2515
+ },
2516
+ "funding": {
2517
+ "url": "https://github.com/sponsors/antonk52"
2518
+ }
2519
+ },
2520
+ "node_modules/lines-and-columns": {
2521
+ "version": "1.2.4",
2522
+ "dev": true,
2523
+ "license": "MIT"
2524
+ },
2525
+ "node_modules/lodash": {
2526
+ "version": "4.18.1",
2527
+ "license": "MIT"
2528
+ },
2529
+ "node_modules/loose-envify": {
2530
+ "version": "1.4.0",
2531
+ "license": "MIT",
2532
+ "dependencies": {
2533
+ "js-tokens": "^3.0.0 || ^4.0.0"
2534
+ },
2535
+ "bin": {
2536
+ "loose-envify": "cli.js"
2537
+ }
2538
+ },
2539
+ "node_modules/lucide-react": {
2540
+ "version": "1.8.0",
2541
+ "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-1.8.0.tgz",
2542
+ "integrity": "sha512-WuvlsjngSk7TnTBJ1hsCy3ql9V9VOdcPkd3PKcSmM34vJD8KG6molxz7m7zbYFgICwsanQWmJ13JlYs4Zp7Arw==",
2543
+ "license": "ISC",
2544
+ "peerDependencies": {
2545
+ "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0"
2546
+ }
2547
+ },
2548
+ "node_modules/merge2": {
2549
+ "version": "1.4.1",
2550
+ "dev": true,
2551
+ "license": "MIT",
2552
+ "engines": {
2553
+ "node": ">= 8"
2554
+ }
2555
+ },
2556
+ "node_modules/micromatch": {
2557
+ "version": "4.0.8",
2558
+ "dev": true,
2559
+ "license": "MIT",
2560
+ "dependencies": {
2561
+ "braces": "^3.0.3",
2562
+ "picomatch": "^2.3.1"
2563
+ },
2564
+ "engines": {
2565
+ "node": ">=8.6"
2566
+ }
2567
+ },
2568
+ "node_modules/micromatch/node_modules/picomatch": {
2569
+ "version": "2.3.2",
2570
+ "dev": true,
2571
+ "license": "MIT",
2572
+ "engines": {
2573
+ "node": ">=8.6"
2574
+ },
2575
+ "funding": {
2576
+ "url": "https://github.com/sponsors/jonschlinkert"
2577
+ }
2578
+ },
2579
+ "node_modules/minimatch": {
2580
+ "version": "5.1.9",
2581
+ "license": "ISC",
2582
+ "dependencies": {
2583
+ "brace-expansion": "^2.0.1"
2584
+ },
2585
+ "engines": {
2586
+ "node": ">=10"
2587
+ }
2588
+ },
2589
+ "node_modules/minimist": {
2590
+ "version": "1.2.8",
2591
+ "license": "MIT",
2592
+ "funding": {
2593
+ "url": "https://github.com/sponsors/ljharb"
2594
+ }
2595
+ },
2596
+ "node_modules/minipass": {
2597
+ "version": "7.1.3",
2598
+ "license": "BlueOak-1.0.0",
2599
+ "engines": {
2600
+ "node": ">=16 || 14 >=14.17"
2601
+ }
2602
+ },
2603
+ "node_modules/ms": {
2604
+ "version": "2.1.3",
2605
+ "dev": true,
2606
+ "license": "MIT"
2607
+ },
2608
+ "node_modules/mz": {
2609
+ "version": "2.7.0",
2610
+ "dev": true,
2611
+ "license": "MIT",
2612
+ "dependencies": {
2613
+ "any-promise": "^1.0.0",
2614
+ "object-assign": "^4.0.1",
2615
+ "thenify-all": "^1.0.0"
2616
+ }
2617
+ },
2618
+ "node_modules/nanoid": {
2619
+ "version": "3.3.11",
2620
+ "dev": true,
2621
+ "funding": [
2622
+ {
2623
+ "type": "github",
2624
+ "url": "https://github.com/sponsors/ai"
2625
+ }
2626
+ ],
2627
+ "license": "MIT",
2628
+ "bin": {
2629
+ "nanoid": "bin/nanoid.cjs"
2630
+ },
2631
+ "engines": {
2632
+ "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1"
2633
+ }
2634
+ },
2635
+ "node_modules/node-releases": {
2636
+ "version": "2.0.38",
2637
+ "dev": true,
2638
+ "license": "MIT"
2639
+ },
2640
+ "node_modules/normalize-path": {
2641
+ "version": "3.0.0",
2642
+ "license": "MIT",
2643
+ "engines": {
2644
+ "node": ">=0.10.0"
2645
+ }
2646
+ },
2647
+ "node_modules/object-assign": {
2648
+ "version": "4.1.1",
2649
+ "dev": true,
2650
+ "license": "MIT",
2651
+ "engines": {
2652
+ "node": ">=0.10.0"
2653
+ }
2654
+ },
2655
+ "node_modules/object-hash": {
2656
+ "version": "3.0.0",
2657
+ "dev": true,
2658
+ "license": "MIT",
2659
+ "engines": {
2660
+ "node": ">= 6"
2661
+ }
2662
+ },
2663
+ "node_modules/package-json-from-dist": {
2664
+ "version": "1.0.1",
2665
+ "license": "BlueOak-1.0.0"
2666
+ },
2667
+ "node_modules/path-key": {
2668
+ "version": "3.1.1",
2669
+ "license": "MIT",
2670
+ "engines": {
2671
+ "node": ">=8"
2672
+ }
2673
+ },
2674
+ "node_modules/path-parse": {
2675
+ "version": "1.0.7",
2676
+ "dev": true,
2677
+ "license": "MIT"
2678
+ },
2679
+ "node_modules/path-scurry": {
2680
+ "version": "1.11.1",
2681
+ "license": "BlueOak-1.0.0",
2682
+ "dependencies": {
2683
+ "lru-cache": "^10.2.0",
2684
+ "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0"
2685
+ },
2686
+ "engines": {
2687
+ "node": ">=16 || 14 >=14.18"
2688
+ },
2689
+ "funding": {
2690
+ "url": "https://github.com/sponsors/isaacs"
2691
+ }
2692
+ },
2693
+ "node_modules/path-scurry/node_modules/lru-cache": {
2694
+ "version": "10.4.3",
2695
+ "license": "ISC"
2696
+ },
2697
+ "node_modules/picocolors": {
2698
+ "version": "1.1.1",
2699
+ "dev": true,
2700
+ "license": "ISC"
2701
+ },
2702
+ "node_modules/picomatch": {
2703
+ "version": "4.0.4",
2704
+ "dev": true,
2705
+ "license": "MIT",
2706
+ "peer": true,
2707
+ "engines": {
2708
+ "node": ">=12"
2709
+ },
2710
+ "funding": {
2711
+ "url": "https://github.com/sponsors/jonschlinkert"
2712
+ }
2713
+ },
2714
+ "node_modules/pify": {
2715
+ "version": "2.3.0",
2716
+ "dev": true,
2717
+ "license": "MIT",
2718
+ "engines": {
2719
+ "node": ">=0.10.0"
2720
+ }
2721
+ },
2722
+ "node_modules/pirates": {
2723
+ "version": "4.0.7",
2724
+ "dev": true,
2725
+ "license": "MIT",
2726
+ "engines": {
2727
+ "node": ">= 6"
2728
+ }
2729
+ },
2730
+ "node_modules/png-to-ico": {
2731
+ "version": "2.1.8",
2732
+ "license": "MIT",
2733
+ "dependencies": {
2734
+ "@types/node": "^17.0.36",
2735
+ "minimist": "^1.2.6",
2736
+ "pngjs": "^6.0.0"
2737
+ },
2738
+ "bin": {
2739
+ "png-to-ico": "bin/cli.js"
2740
+ },
2741
+ "engines": {
2742
+ "node": ">=8"
2743
+ }
2744
+ },
2745
+ "node_modules/png-to-ico/node_modules/@types/node": {
2746
+ "version": "17.0.45",
2747
+ "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.45.tgz",
2748
+ "integrity": "sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==",
2749
+ "license": "MIT"
2750
+ },
2751
+ "node_modules/pngjs": {
2752
+ "version": "6.0.0",
2753
+ "license": "MIT",
2754
+ "engines": {
2755
+ "node": ">=12.13.0"
2756
+ }
2757
+ },
2758
+ "node_modules/postcss": {
2759
+ "version": "8.5.10",
2760
+ "dev": true,
2761
+ "funding": [
2762
+ {
2763
+ "type": "opencollective",
2764
+ "url": "https://opencollective.com/postcss/"
2765
+ },
2766
+ {
2767
+ "type": "tidelift",
2768
+ "url": "https://tidelift.com/funding/github/npm/postcss"
2769
+ },
2770
+ {
2771
+ "type": "github",
2772
+ "url": "https://github.com/sponsors/ai"
2773
+ }
2774
+ ],
2775
+ "license": "MIT",
2776
+ "peer": true,
2777
+ "dependencies": {
2778
+ "nanoid": "^3.3.11",
2779
+ "picocolors": "^1.1.1",
2780
+ "source-map-js": "^1.2.1"
2781
+ },
2782
+ "engines": {
2783
+ "node": "^10 || ^12 || >=14"
2784
+ }
2785
+ },
2786
+ "node_modules/postcss-import": {
2787
+ "version": "15.1.0",
2788
+ "dev": true,
2789
+ "license": "MIT",
2790
+ "dependencies": {
2791
+ "postcss-value-parser": "^4.0.0",
2792
+ "read-cache": "^1.0.0",
2793
+ "resolve": "^1.1.7"
2794
+ },
2795
+ "engines": {
2796
+ "node": ">=14.0.0"
2797
+ },
2798
+ "peerDependencies": {
2799
+ "postcss": "^8.0.0"
2800
+ }
2801
+ },
2802
+ "node_modules/postcss-js": {
2803
+ "version": "4.1.0",
2804
+ "dev": true,
2805
+ "funding": [
2806
+ {
2807
+ "type": "opencollective",
2808
+ "url": "https://opencollective.com/postcss/"
2809
+ },
2810
+ {
2811
+ "type": "github",
2812
+ "url": "https://github.com/sponsors/ai"
2813
+ }
2814
+ ],
2815
+ "license": "MIT",
2816
+ "dependencies": {
2817
+ "camelcase-css": "^2.0.1"
2818
+ },
2819
+ "engines": {
2820
+ "node": "^12 || ^14 || >= 16"
2821
+ },
2822
+ "peerDependencies": {
2823
+ "postcss": "^8.4.21"
2824
+ }
2825
+ },
2826
+ "node_modules/postcss-load-config": {
2827
+ "version": "6.0.1",
2828
+ "dev": true,
2829
+ "funding": [
2830
+ {
2831
+ "type": "opencollective",
2832
+ "url": "https://opencollective.com/postcss/"
2833
+ },
2834
+ {
2835
+ "type": "github",
2836
+ "url": "https://github.com/sponsors/ai"
2837
+ }
2838
+ ],
2839
+ "license": "MIT",
2840
+ "dependencies": {
2841
+ "lilconfig": "^3.1.1"
2842
+ },
2843
+ "engines": {
2844
+ "node": ">= 18"
2845
+ },
2846
+ "peerDependencies": {
2847
+ "jiti": ">=1.21.0",
2848
+ "postcss": ">=8.0.9",
2849
+ "tsx": "^4.8.1",
2850
+ "yaml": "^2.4.2"
2851
+ },
2852
+ "peerDependenciesMeta": {
2853
+ "jiti": {
2854
+ "optional": true
2855
+ },
2856
+ "postcss": {
2857
+ "optional": true
2858
+ },
2859
+ "tsx": {
2860
+ "optional": true
2861
+ },
2862
+ "yaml": {
2863
+ "optional": true
2864
+ }
2865
+ }
2866
+ },
2867
+ "node_modules/postcss-nested": {
2868
+ "version": "6.2.0",
2869
+ "dev": true,
2870
+ "funding": [
2871
+ {
2872
+ "type": "opencollective",
2873
+ "url": "https://opencollective.com/postcss/"
2874
+ },
2875
+ {
2876
+ "type": "github",
2877
+ "url": "https://github.com/sponsors/ai"
2878
+ }
2879
+ ],
2880
+ "license": "MIT",
2881
+ "dependencies": {
2882
+ "postcss-selector-parser": "^6.1.1"
2883
+ },
2884
+ "engines": {
2885
+ "node": ">=12.0"
2886
+ },
2887
+ "peerDependencies": {
2888
+ "postcss": "^8.2.14"
2889
+ }
2890
+ },
2891
+ "node_modules/postcss-selector-parser": {
2892
+ "version": "6.1.2",
2893
+ "dev": true,
2894
+ "license": "MIT",
2895
+ "dependencies": {
2896
+ "cssesc": "^3.0.0",
2897
+ "util-deprecate": "^1.0.2"
2898
+ },
2899
+ "engines": {
2900
+ "node": ">=4"
2901
+ }
2902
+ },
2903
+ "node_modules/postcss-value-parser": {
2904
+ "version": "4.2.0",
2905
+ "dev": true,
2906
+ "license": "MIT"
2907
+ },
2908
+ "node_modules/process": {
2909
+ "version": "0.11.10",
2910
+ "license": "MIT",
2911
+ "engines": {
2912
+ "node": ">= 0.6.0"
2913
+ }
2914
+ },
2915
+ "node_modules/process-nextick-args": {
2916
+ "version": "2.0.1",
2917
+ "license": "MIT"
2918
+ },
2919
+ "node_modules/queue-microtask": {
2920
+ "version": "1.2.3",
2921
+ "dev": true,
2922
+ "funding": [
2923
+ {
2924
+ "type": "github",
2925
+ "url": "https://github.com/sponsors/feross"
2926
+ },
2927
+ {
2928
+ "type": "patreon",
2929
+ "url": "https://www.patreon.com/feross"
2930
+ },
2931
+ {
2932
+ "type": "consulting",
2933
+ "url": "https://feross.org/support"
2934
+ }
2935
+ ],
2936
+ "license": "MIT"
2937
+ },
2938
+ "node_modules/rcedit": {
2939
+ "version": "4.0.1",
2940
+ "license": "MIT",
2941
+ "dependencies": {
2942
+ "cross-spawn-windows-exe": "^1.1.0"
2943
+ },
2944
+ "engines": {
2945
+ "node": ">= 14.0.0"
2946
+ }
2947
+ },
2948
+ "node_modules/react": {
2949
+ "version": "18.3.1",
2950
+ "license": "MIT",
2951
+ "peer": true,
2952
+ "dependencies": {
2953
+ "loose-envify": "^1.1.0"
2954
+ },
2955
+ "engines": {
2956
+ "node": ">=0.10.0"
2957
+ }
2958
+ },
2959
+ "node_modules/react-dom": {
2960
+ "version": "18.3.1",
2961
+ "license": "MIT",
2962
+ "dependencies": {
2963
+ "loose-envify": "^1.1.0",
2964
+ "scheduler": "^0.23.2"
2965
+ },
2966
+ "peerDependencies": {
2967
+ "react": "^18.3.1"
2968
+ }
2969
+ },
2970
+ "node_modules/react-refresh": {
2971
+ "version": "0.17.0",
2972
+ "dev": true,
2973
+ "license": "MIT",
2974
+ "engines": {
2975
+ "node": ">=0.10.0"
2976
+ }
2977
+ },
2978
+ "node_modules/read-cache": {
2979
+ "version": "1.0.0",
2980
+ "dev": true,
2981
+ "license": "MIT",
2982
+ "dependencies": {
2983
+ "pify": "^2.3.0"
2984
+ }
2985
+ },
2986
+ "node_modules/readable-stream": {
2987
+ "version": "4.7.0",
2988
+ "license": "MIT",
2989
+ "dependencies": {
2990
+ "abort-controller": "^3.0.0",
2991
+ "buffer": "^6.0.3",
2992
+ "events": "^3.3.0",
2993
+ "process": "^0.11.10",
2994
+ "string_decoder": "^1.3.0"
2995
+ },
2996
+ "engines": {
2997
+ "node": "^12.22.0 || ^14.17.0 || >=16.0.0"
2998
+ }
2999
+ },
3000
+ "node_modules/readdir-glob": {
3001
+ "version": "1.1.3",
3002
+ "license": "Apache-2.0",
3003
+ "dependencies": {
3004
+ "minimatch": "^5.1.0"
3005
+ }
3006
+ },
3007
+ "node_modules/readdirp": {
3008
+ "version": "3.6.0",
3009
+ "dev": true,
3010
+ "license": "MIT",
3011
+ "dependencies": {
3012
+ "picomatch": "^2.2.1"
3013
+ },
3014
+ "engines": {
3015
+ "node": ">=8.10.0"
3016
+ }
3017
+ },
3018
+ "node_modules/readdirp/node_modules/picomatch": {
3019
+ "version": "2.3.2",
3020
+ "dev": true,
3021
+ "license": "MIT",
3022
+ "engines": {
3023
+ "node": ">=8.6"
3024
+ },
3025
+ "funding": {
3026
+ "url": "https://github.com/sponsors/jonschlinkert"
3027
+ }
3028
+ },
3029
+ "node_modules/require-directory": {
3030
+ "version": "2.1.1",
3031
+ "dev": true,
3032
+ "license": "MIT",
3033
+ "engines": {
3034
+ "node": ">=0.10.0"
3035
+ }
3036
+ },
3037
+ "node_modules/resolve": {
3038
+ "version": "1.22.12",
3039
+ "dev": true,
3040
+ "license": "MIT",
3041
+ "dependencies": {
3042
+ "es-errors": "^1.3.0",
3043
+ "is-core-module": "^2.16.1",
3044
+ "path-parse": "^1.0.7",
3045
+ "supports-preserve-symlinks-flag": "^1.0.0"
3046
+ },
3047
+ "bin": {
3048
+ "resolve": "bin/resolve"
3049
+ },
3050
+ "engines": {
3051
+ "node": ">= 0.4"
3052
+ },
3053
+ "funding": {
3054
+ "url": "https://github.com/sponsors/ljharb"
3055
+ }
3056
+ },
3057
+ "node_modules/reusify": {
3058
+ "version": "1.1.0",
3059
+ "dev": true,
3060
+ "license": "MIT",
3061
+ "engines": {
3062
+ "iojs": ">=1.0.0",
3063
+ "node": ">=0.10.0"
3064
+ }
3065
+ },
3066
+ "node_modules/rollup": {
3067
+ "version": "4.60.2",
3068
+ "dev": true,
3069
+ "license": "MIT",
3070
+ "dependencies": {
3071
+ "@types/estree": "1.0.8"
3072
+ },
3073
+ "bin": {
3074
+ "rollup": "dist/bin/rollup"
3075
+ },
3076
+ "engines": {
3077
+ "node": ">=18.0.0",
3078
+ "npm": ">=8.0.0"
3079
+ },
3080
+ "optionalDependencies": {
3081
+ "@rollup/rollup-android-arm-eabi": "4.60.2",
3082
+ "@rollup/rollup-android-arm64": "4.60.2",
3083
+ "@rollup/rollup-darwin-arm64": "4.60.2",
3084
+ "@rollup/rollup-darwin-x64": "4.60.2",
3085
+ "@rollup/rollup-freebsd-arm64": "4.60.2",
3086
+ "@rollup/rollup-freebsd-x64": "4.60.2",
3087
+ "@rollup/rollup-linux-arm-gnueabihf": "4.60.2",
3088
+ "@rollup/rollup-linux-arm-musleabihf": "4.60.2",
3089
+ "@rollup/rollup-linux-arm64-gnu": "4.60.2",
3090
+ "@rollup/rollup-linux-arm64-musl": "4.60.2",
3091
+ "@rollup/rollup-linux-loong64-gnu": "4.60.2",
3092
+ "@rollup/rollup-linux-loong64-musl": "4.60.2",
3093
+ "@rollup/rollup-linux-ppc64-gnu": "4.60.2",
3094
+ "@rollup/rollup-linux-ppc64-musl": "4.60.2",
3095
+ "@rollup/rollup-linux-riscv64-gnu": "4.60.2",
3096
+ "@rollup/rollup-linux-riscv64-musl": "4.60.2",
3097
+ "@rollup/rollup-linux-s390x-gnu": "4.60.2",
3098
+ "@rollup/rollup-linux-x64-gnu": "4.60.2",
3099
+ "@rollup/rollup-linux-x64-musl": "4.60.2",
3100
+ "@rollup/rollup-openbsd-x64": "4.60.2",
3101
+ "@rollup/rollup-openharmony-arm64": "4.60.2",
3102
+ "@rollup/rollup-win32-arm64-msvc": "4.60.2",
3103
+ "@rollup/rollup-win32-ia32-msvc": "4.60.2",
3104
+ "@rollup/rollup-win32-x64-gnu": "4.60.2",
3105
+ "@rollup/rollup-win32-x64-msvc": "4.60.2",
3106
+ "fsevents": "~2.3.2"
3107
+ }
3108
+ },
3109
+ "node_modules/run-parallel": {
3110
+ "version": "1.2.0",
3111
+ "dev": true,
3112
+ "funding": [
3113
+ {
3114
+ "type": "github",
3115
+ "url": "https://github.com/sponsors/feross"
3116
+ },
3117
+ {
3118
+ "type": "patreon",
3119
+ "url": "https://www.patreon.com/feross"
3120
+ },
3121
+ {
3122
+ "type": "consulting",
3123
+ "url": "https://feross.org/support"
3124
+ }
3125
+ ],
3126
+ "license": "MIT",
3127
+ "dependencies": {
3128
+ "queue-microtask": "^1.2.2"
3129
+ }
3130
+ },
3131
+ "node_modules/rxjs": {
3132
+ "version": "7.8.2",
3133
+ "dev": true,
3134
+ "license": "Apache-2.0",
3135
+ "dependencies": {
3136
+ "tslib": "^2.1.0"
3137
+ }
3138
+ },
3139
+ "node_modules/safe-buffer": {
3140
+ "version": "5.2.1",
3141
+ "funding": [
3142
+ {
3143
+ "type": "github",
3144
+ "url": "https://github.com/sponsors/feross"
3145
+ },
3146
+ {
3147
+ "type": "patreon",
3148
+ "url": "https://www.patreon.com/feross"
3149
+ },
3150
+ {
3151
+ "type": "consulting",
3152
+ "url": "https://feross.org/support"
3153
+ }
3154
+ ],
3155
+ "license": "MIT"
3156
+ },
3157
+ "node_modules/scheduler": {
3158
+ "version": "0.23.2",
3159
+ "license": "MIT",
3160
+ "dependencies": {
3161
+ "loose-envify": "^1.1.0"
3162
+ }
3163
+ },
3164
+ "node_modules/semver": {
3165
+ "version": "6.3.1",
3166
+ "dev": true,
3167
+ "license": "ISC",
3168
+ "bin": {
3169
+ "semver": "bin/semver.js"
3170
+ }
3171
+ },
3172
+ "node_modules/shebang-command": {
3173
+ "version": "2.0.0",
3174
+ "license": "MIT",
3175
+ "dependencies": {
3176
+ "shebang-regex": "^3.0.0"
3177
+ },
3178
+ "engines": {
3179
+ "node": ">=8"
3180
+ }
3181
+ },
3182
+ "node_modules/shebang-regex": {
3183
+ "version": "3.0.0",
3184
+ "license": "MIT",
3185
+ "engines": {
3186
+ "node": ">=8"
3187
+ }
3188
+ },
3189
+ "node_modules/shell-quote": {
3190
+ "version": "1.8.3",
3191
+ "dev": true,
3192
+ "license": "MIT",
3193
+ "engines": {
3194
+ "node": ">= 0.4"
3195
+ },
3196
+ "funding": {
3197
+ "url": "https://github.com/sponsors/ljharb"
3198
+ }
3199
+ },
3200
+ "node_modules/signal-exit": {
3201
+ "version": "4.1.0",
3202
+ "license": "ISC",
3203
+ "engines": {
3204
+ "node": ">=14"
3205
+ },
3206
+ "funding": {
3207
+ "url": "https://github.com/sponsors/isaacs"
3208
+ }
3209
+ },
3210
+ "node_modules/source-map-js": {
3211
+ "version": "1.2.1",
3212
+ "dev": true,
3213
+ "license": "BSD-3-Clause",
3214
+ "engines": {
3215
+ "node": ">=0.10.0"
3216
+ }
3217
+ },
3218
+ "node_modules/streamx": {
3219
+ "version": "2.25.0",
3220
+ "license": "MIT",
3221
+ "dependencies": {
3222
+ "events-universal": "^1.0.0",
3223
+ "fast-fifo": "^1.3.2",
3224
+ "text-decoder": "^1.1.0"
3225
+ }
3226
+ },
3227
+ "node_modules/string_decoder": {
3228
+ "version": "1.3.0",
3229
+ "license": "MIT",
3230
+ "dependencies": {
3231
+ "safe-buffer": "~5.2.0"
3232
+ }
3233
+ },
3234
+ "node_modules/string-width": {
3235
+ "version": "4.2.3",
3236
+ "license": "MIT",
3237
+ "dependencies": {
3238
+ "emoji-regex": "^8.0.0",
3239
+ "is-fullwidth-code-point": "^3.0.0",
3240
+ "strip-ansi": "^6.0.1"
3241
+ },
3242
+ "engines": {
3243
+ "node": ">=8"
3244
+ }
3245
+ },
3246
+ "node_modules/string-width-cjs": {
3247
+ "name": "string-width",
3248
+ "version": "4.2.3",
3249
+ "license": "MIT",
3250
+ "dependencies": {
3251
+ "emoji-regex": "^8.0.0",
3252
+ "is-fullwidth-code-point": "^3.0.0",
3253
+ "strip-ansi": "^6.0.1"
3254
+ },
3255
+ "engines": {
3256
+ "node": ">=8"
3257
+ }
3258
+ },
3259
+ "node_modules/strip-ansi": {
3260
+ "version": "6.0.1",
3261
+ "license": "MIT",
3262
+ "dependencies": {
3263
+ "ansi-regex": "^5.0.1"
3264
+ },
3265
+ "engines": {
3266
+ "node": ">=8"
3267
+ }
3268
+ },
3269
+ "node_modules/strip-ansi-cjs": {
3270
+ "name": "strip-ansi",
3271
+ "version": "6.0.1",
3272
+ "license": "MIT",
3273
+ "dependencies": {
3274
+ "ansi-regex": "^5.0.1"
3275
+ },
3276
+ "engines": {
3277
+ "node": ">=8"
3278
+ }
3279
+ },
3280
+ "node_modules/sucrase": {
3281
+ "version": "3.35.1",
3282
+ "dev": true,
3283
+ "license": "MIT",
3284
+ "dependencies": {
3285
+ "@jridgewell/gen-mapping": "^0.3.2",
3286
+ "commander": "^4.0.0",
3287
+ "lines-and-columns": "^1.1.6",
3288
+ "mz": "^2.7.0",
3289
+ "pirates": "^4.0.1",
3290
+ "tinyglobby": "^0.2.11",
3291
+ "ts-interface-checker": "^0.1.9"
3292
+ },
3293
+ "bin": {
3294
+ "sucrase": "bin/sucrase",
3295
+ "sucrase-node": "bin/sucrase-node"
3296
+ },
3297
+ "engines": {
3298
+ "node": ">=16 || 14 >=14.17"
3299
+ }
3300
+ },
3301
+ "node_modules/supports-color": {
3302
+ "version": "8.1.1",
3303
+ "dev": true,
3304
+ "license": "MIT",
3305
+ "dependencies": {
3306
+ "has-flag": "^4.0.0"
3307
+ },
3308
+ "engines": {
3309
+ "node": ">=10"
3310
+ },
3311
+ "funding": {
3312
+ "url": "https://github.com/chalk/supports-color?sponsor=1"
3313
+ }
3314
+ },
3315
+ "node_modules/supports-preserve-symlinks-flag": {
3316
+ "version": "1.0.0",
3317
+ "dev": true,
3318
+ "license": "MIT",
3319
+ "engines": {
3320
+ "node": ">= 0.4"
3321
+ },
3322
+ "funding": {
3323
+ "url": "https://github.com/sponsors/ljharb"
3324
+ }
3325
+ },
3326
+ "node_modules/tailwindcss": {
3327
+ "version": "3.4.19",
3328
+ "dev": true,
3329
+ "license": "MIT",
3330
+ "dependencies": {
3331
+ "@alloc/quick-lru": "^5.2.0",
3332
+ "arg": "^5.0.2",
3333
+ "chokidar": "^3.6.0",
3334
+ "didyoumean": "^1.2.2",
3335
+ "dlv": "^1.1.3",
3336
+ "fast-glob": "^3.3.2",
3337
+ "glob-parent": "^6.0.2",
3338
+ "is-glob": "^4.0.3",
3339
+ "jiti": "^1.21.7",
3340
+ "lilconfig": "^3.1.3",
3341
+ "micromatch": "^4.0.8",
3342
+ "normalize-path": "^3.0.0",
3343
+ "object-hash": "^3.0.0",
3344
+ "picocolors": "^1.1.1",
3345
+ "postcss": "^8.4.47",
3346
+ "postcss-import": "^15.1.0",
3347
+ "postcss-js": "^4.0.1",
3348
+ "postcss-load-config": "^4.0.2 || ^5.0 || ^6.0",
3349
+ "postcss-nested": "^6.2.0",
3350
+ "postcss-selector-parser": "^6.1.2",
3351
+ "resolve": "^1.22.8",
3352
+ "sucrase": "^3.35.0"
3353
+ },
3354
+ "bin": {
3355
+ "tailwind": "lib/cli.js",
3356
+ "tailwindcss": "lib/cli.js"
3357
+ },
3358
+ "engines": {
3359
+ "node": ">=14.0.0"
3360
+ }
3361
+ },
3362
+ "node_modules/tar-stream": {
3363
+ "version": "3.1.8",
3364
+ "license": "MIT",
3365
+ "dependencies": {
3366
+ "b4a": "^1.6.4",
3367
+ "bare-fs": "^4.5.5",
3368
+ "fast-fifo": "^1.2.0",
3369
+ "streamx": "^2.15.0"
3370
+ }
3371
+ },
3372
+ "node_modules/teex": {
3373
+ "version": "1.0.1",
3374
+ "license": "MIT",
3375
+ "dependencies": {
3376
+ "streamx": "^2.12.5"
3377
+ }
3378
+ },
3379
+ "node_modules/text-decoder": {
3380
+ "version": "1.2.7",
3381
+ "license": "Apache-2.0",
3382
+ "dependencies": {
3383
+ "b4a": "^1.6.4"
3384
+ }
3385
+ },
3386
+ "node_modules/thenify": {
3387
+ "version": "3.3.1",
3388
+ "dev": true,
3389
+ "license": "MIT",
3390
+ "dependencies": {
3391
+ "any-promise": "^1.0.0"
3392
+ }
3393
+ },
3394
+ "node_modules/thenify-all": {
3395
+ "version": "1.6.0",
3396
+ "dev": true,
3397
+ "license": "MIT",
3398
+ "dependencies": {
3399
+ "thenify": ">= 3.1.0 < 4"
3400
+ },
3401
+ "engines": {
3402
+ "node": ">=0.8"
3403
+ }
3404
+ },
3405
+ "node_modules/tinyglobby": {
3406
+ "version": "0.2.16",
3407
+ "dev": true,
3408
+ "license": "MIT",
3409
+ "dependencies": {
3410
+ "fdir": "^6.5.0",
3411
+ "picomatch": "^4.0.4"
3412
+ },
3413
+ "engines": {
3414
+ "node": ">=12.0.0"
3415
+ },
3416
+ "funding": {
3417
+ "url": "https://github.com/sponsors/SuperchupuDev"
3418
+ }
3419
+ },
3420
+ "node_modules/to-regex-range": {
3421
+ "version": "5.0.1",
3422
+ "dev": true,
3423
+ "license": "MIT",
3424
+ "dependencies": {
3425
+ "is-number": "^7.0.0"
3426
+ },
3427
+ "engines": {
3428
+ "node": ">=8.0"
3429
+ }
3430
+ },
3431
+ "node_modules/tree-kill": {
3432
+ "version": "1.2.2",
3433
+ "dev": true,
3434
+ "license": "MIT",
3435
+ "bin": {
3436
+ "tree-kill": "cli.js"
3437
+ }
3438
+ },
3439
+ "node_modules/ts-interface-checker": {
3440
+ "version": "0.1.13",
3441
+ "dev": true,
3442
+ "license": "Apache-2.0"
3443
+ },
3444
+ "node_modules/tslib": {
3445
+ "version": "2.8.1",
3446
+ "dev": true,
3447
+ "license": "0BSD"
3448
+ },
3449
+ "node_modules/typescript": {
3450
+ "version": "5.9.3",
3451
+ "dev": true,
3452
+ "license": "Apache-2.0",
3453
+ "bin": {
3454
+ "tsc": "bin/tsc",
3455
+ "tsserver": "bin/tsserver"
3456
+ },
3457
+ "engines": {
3458
+ "node": ">=14.17"
3459
+ }
3460
+ },
3461
+ "node_modules/undici-types": {
3462
+ "version": "7.19.2",
3463
+ "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.19.2.tgz",
3464
+ "integrity": "sha512-qYVnV5OEm2AW8cJMCpdV20CDyaN3g0AjDlOGf1OW4iaDEx8MwdtChUp4zu4H0VP3nDRF/8RKWH+IPp9uW0YGZg==",
3465
+ "license": "MIT"
3466
+ },
3467
+ "node_modules/update-browserslist-db": {
3468
+ "version": "1.2.3",
3469
+ "dev": true,
3470
+ "funding": [
3471
+ {
3472
+ "type": "opencollective",
3473
+ "url": "https://opencollective.com/browserslist"
3474
+ },
3475
+ {
3476
+ "type": "tidelift",
3477
+ "url": "https://tidelift.com/funding/github/npm/browserslist"
3478
+ },
3479
+ {
3480
+ "type": "github",
3481
+ "url": "https://github.com/sponsors/ai"
3482
+ }
3483
+ ],
3484
+ "license": "MIT",
3485
+ "dependencies": {
3486
+ "escalade": "^3.2.0",
3487
+ "picocolors": "^1.1.1"
3488
+ },
3489
+ "bin": {
3490
+ "update-browserslist-db": "cli.js"
3491
+ },
3492
+ "peerDependencies": {
3493
+ "browserslist": ">= 4.21.0"
3494
+ }
3495
+ },
3496
+ "node_modules/util-deprecate": {
3497
+ "version": "1.0.2",
3498
+ "license": "MIT"
3499
+ },
3500
+ "node_modules/vite": {
3501
+ "version": "6.4.2",
3502
+ "dev": true,
3503
+ "license": "MIT",
3504
+ "peer": true,
3505
+ "dependencies": {
3506
+ "esbuild": "^0.25.0",
3507
+ "fdir": "^6.4.4",
3508
+ "picomatch": "^4.0.2",
3509
+ "postcss": "^8.5.3",
3510
+ "rollup": "^4.34.9",
3511
+ "tinyglobby": "^0.2.13"
3512
+ },
3513
+ "bin": {
3514
+ "vite": "bin/vite.js"
3515
+ },
3516
+ "engines": {
3517
+ "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
3518
+ },
3519
+ "funding": {
3520
+ "url": "https://github.com/vitejs/vite?sponsor=1"
3521
+ },
3522
+ "optionalDependencies": {
3523
+ "fsevents": "~2.3.3"
3524
+ },
3525
+ "peerDependencies": {
3526
+ "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0",
3527
+ "jiti": ">=1.21.0",
3528
+ "less": "*",
3529
+ "lightningcss": "^1.21.0",
3530
+ "sass": "*",
3531
+ "sass-embedded": "*",
3532
+ "stylus": "*",
3533
+ "sugarss": "*",
3534
+ "terser": "^5.16.0",
3535
+ "tsx": "^4.8.1",
3536
+ "yaml": "^2.4.2"
3537
+ },
3538
+ "peerDependenciesMeta": {
3539
+ "@types/node": {
3540
+ "optional": true
3541
+ },
3542
+ "jiti": {
3543
+ "optional": true
3544
+ },
3545
+ "less": {
3546
+ "optional": true
3547
+ },
3548
+ "lightningcss": {
3549
+ "optional": true
3550
+ },
3551
+ "sass": {
3552
+ "optional": true
3553
+ },
3554
+ "sass-embedded": {
3555
+ "optional": true
3556
+ },
3557
+ "stylus": {
3558
+ "optional": true
3559
+ },
3560
+ "sugarss": {
3561
+ "optional": true
3562
+ },
3563
+ "terser": {
3564
+ "optional": true
3565
+ },
3566
+ "tsx": {
3567
+ "optional": true
3568
+ },
3569
+ "yaml": {
3570
+ "optional": true
3571
+ }
3572
+ }
3573
+ },
3574
+ "node_modules/which": {
3575
+ "version": "2.0.2",
3576
+ "license": "ISC",
3577
+ "dependencies": {
3578
+ "isexe": "^2.0.0"
3579
+ },
3580
+ "bin": {
3581
+ "node-which": "bin/node-which"
3582
+ },
3583
+ "engines": {
3584
+ "node": ">= 8"
3585
+ }
3586
+ },
3587
+ "node_modules/wrap-ansi": {
3588
+ "version": "7.0.0",
3589
+ "dev": true,
3590
+ "license": "MIT",
3591
+ "dependencies": {
3592
+ "ansi-styles": "^4.0.0",
3593
+ "string-width": "^4.1.0",
3594
+ "strip-ansi": "^6.0.0"
3595
+ },
3596
+ "engines": {
3597
+ "node": ">=10"
3598
+ },
3599
+ "funding": {
3600
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
3601
+ }
3602
+ },
3603
+ "node_modules/wrap-ansi-cjs": {
3604
+ "name": "wrap-ansi",
3605
+ "version": "7.0.0",
3606
+ "license": "MIT",
3607
+ "dependencies": {
3608
+ "ansi-styles": "^4.0.0",
3609
+ "string-width": "^4.1.0",
3610
+ "strip-ansi": "^6.0.0"
3611
+ },
3612
+ "engines": {
3613
+ "node": ">=10"
3614
+ },
3615
+ "funding": {
3616
+ "url": "https://github.com/chalk/wrap-ansi?sponsor=1"
3617
+ }
3618
+ },
3619
+ "node_modules/y18n": {
3620
+ "version": "5.0.8",
3621
+ "dev": true,
3622
+ "license": "ISC",
3623
+ "engines": {
3624
+ "node": ">=10"
3625
+ }
3626
+ },
3627
+ "node_modules/yallist": {
3628
+ "version": "3.1.1",
3629
+ "dev": true,
3630
+ "license": "ISC"
3631
+ },
3632
+ "node_modules/yargs": {
3633
+ "version": "17.7.2",
3634
+ "dev": true,
3635
+ "license": "MIT",
3636
+ "dependencies": {
3637
+ "cliui": "^8.0.1",
3638
+ "escalade": "^3.1.1",
3639
+ "get-caller-file": "^2.0.5",
3640
+ "require-directory": "^2.1.1",
3641
+ "string-width": "^4.2.3",
3642
+ "y18n": "^5.0.5",
3643
+ "yargs-parser": "^21.1.1"
3644
+ },
3645
+ "engines": {
3646
+ "node": ">=12"
3647
+ }
3648
+ },
3649
+ "node_modules/yargs-parser": {
3650
+ "version": "21.1.1",
3651
+ "dev": true,
3652
+ "license": "ISC",
3653
+ "engines": {
3654
+ "node": ">=12"
3655
+ }
3656
+ },
3657
+ "node_modules/zip-stream": {
3658
+ "version": "6.0.1",
3659
+ "license": "MIT",
3660
+ "dependencies": {
3661
+ "archiver-utils": "^5.0.0",
3662
+ "compress-commons": "^6.0.2",
3663
+ "readable-stream": "^4.0.0"
3664
+ },
3665
+ "engines": {
3666
+ "node": ">= 14"
3667
+ }
3668
+ }
3669
+ }
3670
+ }