congmao-cli 1.0.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 (180) hide show
  1. package/README.md +2 -0
  2. package/bin/index.js +20 -0
  3. package/package.json +42 -0
  4. package/src/commands/create.js +171 -0
  5. package/src/commands/mcp.js +157 -0
  6. package/src/mcp/CURSOR_SETUP.md +259 -0
  7. package/src/mcp/README.md +134 -0
  8. package/src/mcp/USAGE_EXAMPLES.md +181 -0
  9. package/src/mcp/get-cursor-config.js +58 -0
  10. package/src/mcp/package.json +23 -0
  11. package/src/mcp/pnpm-lock.yaml +2441 -0
  12. package/src/mcp/src/handlers.js +211 -0
  13. package/src/mcp/src/http-server.js +332 -0
  14. package/src/mcp/src/index.js +195 -0
  15. package/src/mcp/src/schemas.js +54 -0
  16. package/src/mcp/test-create-project.js +49 -0
  17. package/src/mcp/test-mcp.js +89 -0
  18. package/src/mcp/test-show-tree.js +66 -0
  19. package/src/template/Uni-app/README.md +19 -0
  20. package/src/template/Uni-app/babel.config.js +81 -0
  21. package/src/template/Uni-app/package.json +107 -0
  22. package/src/template/Uni-app/postcss.config.js +27 -0
  23. package/src/template/Uni-app/public/index.html +25 -0
  24. package/src/template/Uni-app/shims-uni.d.ts +11 -0
  25. package/src/template/Uni-app/shims-vue.d.ts +4 -0
  26. package/src/template/Uni-app/src/App.vue +17 -0
  27. package/src/template/Uni-app/src/main.js +12 -0
  28. package/src/template/Uni-app/src/manifest.json +75 -0
  29. package/src/template/Uni-app/src/pages/index/index.vue +49 -0
  30. package/src/template/Uni-app/src/pages.json +16 -0
  31. package/src/template/Uni-app/src/static/logo.png +0 -0
  32. package/src/template/Uni-app/src/uni.promisify.adaptor.js +13 -0
  33. package/src/template/Uni-app/src/uni.scss +76 -0
  34. package/src/template/Uni-app/yarn.lock +11466 -0
  35. package/src/template/Vue2/.editorconfig +14 -0
  36. package/src/template/Vue2/.env +2 -0
  37. package/src/template/Vue2/.env.development +2 -0
  38. package/src/template/Vue2/.env.site +2 -0
  39. package/src/template/Vue2/.prettierrc.js +39 -0
  40. package/src/template/Vue2/.stylelintignore +8 -0
  41. package/src/template/Vue2/README-zh_CN.md +115 -0
  42. package/src/template/Vue2/commitlint.config.js +1 -0
  43. package/src/template/Vue2/docs/docs-starter.png +0 -0
  44. package/src/template/Vue2/docs/docs-startup.png +0 -0
  45. package/src/template/Vue2/docs/docs-structure.png +0 -0
  46. package/src/template/Vue2/globals.d.ts +13 -0
  47. package/src/template/Vue2/index.html +27 -0
  48. package/src/template/Vue2/jsx.d.ts +13 -0
  49. package/src/template/Vue2/mock/index.ts +147 -0
  50. package/src/template/Vue2/package.json +91 -0
  51. package/src/template/Vue2/package.json.ejs +91 -0
  52. package/src/template/Vue2/public/favicon.ico +0 -0
  53. package/src/template/Vue2/shims-vue.d.ts +5 -0
  54. package/src/template/Vue2/src/App.vue +19 -0
  55. package/src/template/Vue2/src/assets/assets-login-bg-black.png +0 -0
  56. package/src/template/Vue2/src/assets/assets-login-bg-white.png +0 -0
  57. package/src/template/Vue2/src/assets/assets-logo-full.svg +39 -0
  58. package/src/template/Vue2/src/assets/assets-product-1.svg +5 -0
  59. package/src/template/Vue2/src/assets/assets-product-2.svg +5 -0
  60. package/src/template/Vue2/src/assets/assets-product-3.svg +5 -0
  61. package/src/template/Vue2/src/assets/assets-product-4.svg +5 -0
  62. package/src/template/Vue2/src/assets/assets-result-403.svg +32 -0
  63. package/src/template/Vue2/src/assets/assets-result-404.svg +36 -0
  64. package/src/template/Vue2/src/assets/assets-result-500.svg +32 -0
  65. package/src/template/Vue2/src/assets/assets-result-ie.svg +33 -0
  66. package/src/template/Vue2/src/assets/assets-result-maintenance.svg +49 -0
  67. package/src/template/Vue2/src/assets/assets-result-wifi.svg +23 -0
  68. package/src/template/Vue2/src/assets/assets-setting-auto.svg +13 -0
  69. package/src/template/Vue2/src/assets/assets-setting-dark.svg +5 -0
  70. package/src/template/Vue2/src/assets/assets-setting-light.svg +13 -0
  71. package/src/template/Vue2/src/assets/assets-t-logo.svg +41 -0
  72. package/src/template/Vue2/src/assets/assets-tencent-logo.png +0 -0
  73. package/src/template/Vue2/src/components/color/index.vue +35 -0
  74. package/src/template/Vue2/src/components/product-card/index.vue +121 -0
  75. package/src/template/Vue2/src/components/result/index.vue +118 -0
  76. package/src/template/Vue2/src/components/thumbnail/index.vue +49 -0
  77. package/src/template/Vue2/src/components/trend/index.vue +105 -0
  78. package/src/template/Vue2/src/config/color.ts +30 -0
  79. package/src/template/Vue2/src/config/global.ts +2 -0
  80. package/src/template/Vue2/src/config/host.ts +26 -0
  81. package/src/template/Vue2/src/config/style.ts +14 -0
  82. package/src/template/Vue2/src/constants/index.ts +46 -0
  83. package/src/template/Vue2/src/interface.ts +39 -0
  84. package/src/template/Vue2/src/layouts/blank.vue +12 -0
  85. package/src/template/Vue2/src/layouts/components/Breadcrumb.vue +39 -0
  86. package/src/template/Vue2/src/layouts/components/Content.vue +43 -0
  87. package/src/template/Vue2/src/layouts/components/Footer.vue +27 -0
  88. package/src/template/Vue2/src/layouts/components/Header.vue +321 -0
  89. package/src/template/Vue2/src/layouts/components/LayoutContent.vue +168 -0
  90. package/src/template/Vue2/src/layouts/components/LayoutHeader.vue +52 -0
  91. package/src/template/Vue2/src/layouts/components/LayoutSidebar.vue +51 -0
  92. package/src/template/Vue2/src/layouts/components/MenuContent.vue +108 -0
  93. package/src/template/Vue2/src/layouts/components/Notice.vue +221 -0
  94. package/src/template/Vue2/src/layouts/components/Search.vue +134 -0
  95. package/src/template/Vue2/src/layouts/components/SideNav.vue +150 -0
  96. package/src/template/Vue2/src/layouts/index.vue +100 -0
  97. package/src/template/Vue2/src/layouts/setting.vue +404 -0
  98. package/src/template/Vue2/src/main.js +9 -0
  99. package/src/template/Vue2/src/main.jsx +51 -0
  100. package/src/template/Vue2/src/pages/dashboard/base/components/MiddleChart.vue +158 -0
  101. package/src/template/Vue2/src/pages/dashboard/base/components/OutputOverview.vue +189 -0
  102. package/src/template/Vue2/src/pages/dashboard/base/components/RankList.vue +111 -0
  103. package/src/template/Vue2/src/pages/dashboard/base/components/TopPanel.vue +246 -0
  104. package/src/template/Vue2/src/pages/dashboard/base/index.ts +702 -0
  105. package/src/template/Vue2/src/pages/dashboard/base/index.vue +44 -0
  106. package/src/template/Vue2/src/pages/dashboard/detail/index.ts +267 -0
  107. package/src/template/Vue2/src/pages/dashboard/detail/index.vue +242 -0
  108. package/src/template/Vue2/src/pages/detail/advanced/components/Product.vue +167 -0
  109. package/src/template/Vue2/src/pages/detail/advanced/index.less +74 -0
  110. package/src/template/Vue2/src/pages/detail/advanced/index.vue +219 -0
  111. package/src/template/Vue2/src/pages/detail/base/index.less +105 -0
  112. package/src/template/Vue2/src/pages/detail/base/index.vue +46 -0
  113. package/src/template/Vue2/src/pages/detail/deploy/index.ts +204 -0
  114. package/src/template/Vue2/src/pages/detail/deploy/index.vue +224 -0
  115. package/src/template/Vue2/src/pages/detail/secondary/index.less +71 -0
  116. package/src/template/Vue2/src/pages/detail/secondary/index.vue +131 -0
  117. package/src/template/Vue2/src/pages/form/base/index.less +57 -0
  118. package/src/template/Vue2/src/pages/form/base/index.vue +254 -0
  119. package/src/template/Vue2/src/pages/form/step/index.less +37 -0
  120. package/src/template/Vue2/src/pages/form/step/index.vue +259 -0
  121. package/src/template/Vue2/src/pages/frame/doc/index.vue +86 -0
  122. package/src/template/Vue2/src/pages/frame/tdesign/index.vue +86 -0
  123. package/src/template/Vue2/src/pages/list/base/index.vue +267 -0
  124. package/src/template/Vue2/src/pages/list/card/index.vue +221 -0
  125. package/src/template/Vue2/src/pages/list/components/CommonTable.vue +313 -0
  126. package/src/template/Vue2/src/pages/list/filter/index.vue +15 -0
  127. package/src/template/Vue2/src/pages/list/tree/index.vue +174 -0
  128. package/src/template/Vue2/src/pages/login/components/components-header.vue +74 -0
  129. package/src/template/Vue2/src/pages/login/components/components-login.vue +154 -0
  130. package/src/template/Vue2/src/pages/login/components/components-register.vue +144 -0
  131. package/src/template/Vue2/src/pages/login/index.less +202 -0
  132. package/src/template/Vue2/src/pages/login/index.vue +53 -0
  133. package/src/template/Vue2/src/pages/nest-menu/Index.vue +10 -0
  134. package/src/template/Vue2/src/pages/result/403/index.vue +14 -0
  135. package/src/template/Vue2/src/pages/result/404/index.vue +14 -0
  136. package/src/template/Vue2/src/pages/result/500/index.vue +14 -0
  137. package/src/template/Vue2/src/pages/result/browser-incompatible/index.vue +77 -0
  138. package/src/template/Vue2/src/pages/result/fail/index.vue +57 -0
  139. package/src/template/Vue2/src/pages/result/maintenance/index.vue +14 -0
  140. package/src/template/Vue2/src/pages/result/network-error/index.vue +24 -0
  141. package/src/template/Vue2/src/pages/result/success/index.vue +59 -0
  142. package/src/template/Vue2/src/pages/user/index.less +148 -0
  143. package/src/template/Vue2/src/pages/user/index.ts +157 -0
  144. package/src/template/Vue2/src/pages/user/index.vue +204 -0
  145. package/src/template/Vue2/src/permission.js +56 -0
  146. package/src/template/Vue2/src/router/index.js +43 -0
  147. package/src/template/Vue2/src/router/modules/base.ts +29 -0
  148. package/src/template/Vue2/src/router/modules/components.ts +175 -0
  149. package/src/template/Vue2/src/router/modules/others.ts +55 -0
  150. package/src/template/Vue2/src/service/service-advance.ts +233 -0
  151. package/src/template/Vue2/src/service/service-base.ts +205 -0
  152. package/src/template/Vue2/src/service/service-detail-base.ts +84 -0
  153. package/src/template/Vue2/src/service/service-detail-deploy.ts +234 -0
  154. package/src/template/Vue2/src/service/service-detail.ts +57 -0
  155. package/src/template/Vue2/src/service/service-user.ts +64 -0
  156. package/src/template/Vue2/src/store/index.ts +22 -0
  157. package/src/template/Vue2/src/store/modules/notification.ts +90 -0
  158. package/src/template/Vue2/src/store/modules/permission.ts +66 -0
  159. package/src/template/Vue2/src/store/modules/setting.ts +122 -0
  160. package/src/template/Vue2/src/store/modules/tab-router.ts +83 -0
  161. package/src/template/Vue2/src/store/modules/user.ts +98 -0
  162. package/src/template/Vue2/src/style/font-family.less +6 -0
  163. package/src/template/Vue2/src/style/index.less +5 -0
  164. package/src/template/Vue2/src/style/layout.less +201 -0
  165. package/src/template/Vue2/src/style/reset.less +78 -0
  166. package/src/template/Vue2/src/style/variables.less +27 -0
  167. package/src/template/Vue2/src/utils/charts.ts +38 -0
  168. package/src/template/Vue2/src/utils/color.ts +118 -0
  169. package/src/template/Vue2/src/utils/date.ts +12 -0
  170. package/src/template/Vue2/src/utils/request.ts +60 -0
  171. package/src/template/Vue2/stylelint.config.js +5 -0
  172. package/src/template/Vue2/tsconfig.json +26 -0
  173. package/src/template/Vue2/vite.config.js +58 -0
  174. package/src/template/Vue3/package.json.ejs +8 -0
  175. package/src/template/Vue3/pages.json +10 -0
  176. package/src/template/Vue3/src/main.js +7 -0
  177. package/src/utils/copy.js +17 -0
  178. package/src/utils/eslint.js +205 -0
  179. package/src/utils/logo.js +18 -0
  180. package/src/utils/render.js +20 -0
@@ -0,0 +1,2441 @@
1
+ lockfileVersion: '9.0'
2
+
3
+ settings:
4
+ autoInstallPeers: true
5
+ excludeLinksFromLockfile: false
6
+
7
+ importers:
8
+
9
+ .:
10
+ dependencies:
11
+ '@modelcontextprotocol/sdk':
12
+ specifier: ^1.17.5
13
+ version: 1.25.1(hono@4.11.1)(zod@3.25.76)
14
+ devDependencies:
15
+ '@modelcontextprotocol/inspector':
16
+ specifier: ^0.16.6
17
+ version: 0.16.8(@types/node@25.0.3)(hono@4.11.1)(typescript@5.9.3)
18
+
19
+ packages:
20
+
21
+ '@cspotcode/source-map-support@0.8.1':
22
+ resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
23
+ engines: {node: '>=12'}
24
+
25
+ '@floating-ui/core@1.7.3':
26
+ resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
27
+
28
+ '@floating-ui/dom@1.7.4':
29
+ resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
30
+
31
+ '@floating-ui/react-dom@2.1.6':
32
+ resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==}
33
+ peerDependencies:
34
+ react: '>=16.8.0'
35
+ react-dom: '>=16.8.0'
36
+
37
+ '@floating-ui/utils@0.2.10':
38
+ resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
39
+
40
+ '@hono/node-server@1.19.7':
41
+ resolution: {integrity: sha512-vUcD0uauS7EU2caukW8z5lJKtoGMokxNbJtBiwHgpqxEXokaHCBkQUmCHhjFB1VUTWdqj25QoMkMKzgjq+uhrw==}
42
+ engines: {node: '>=18.14.1'}
43
+ peerDependencies:
44
+ hono: ^4
45
+
46
+ '@jridgewell/resolve-uri@3.1.2':
47
+ resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
48
+ engines: {node: '>=6.0.0'}
49
+
50
+ '@jridgewell/sourcemap-codec@1.5.5':
51
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
52
+
53
+ '@jridgewell/trace-mapping@0.3.9':
54
+ resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
55
+
56
+ '@modelcontextprotocol/inspector-cli@0.16.8':
57
+ resolution: {integrity: sha512-u8x8Dbb8Dos34M7N8p4e4AF++Bi1D+lq+dkRCvLi5Qub/dI75Z7YTIXBezA4LbIISly+Ecn05fdofzZwqyOvpg==}
58
+ hasBin: true
59
+
60
+ '@modelcontextprotocol/inspector-client@0.16.8':
61
+ resolution: {integrity: sha512-4sTk/jUnQ1lDv9kbx1nN45SsoApDxW8hjKLKcHnHh9nfRVEN9SW+ylUjNvVCDP74xSNpD8v5p6NJyVWtZYfPWA==}
62
+ hasBin: true
63
+
64
+ '@modelcontextprotocol/inspector-server@0.16.8':
65
+ resolution: {integrity: sha512-plv0SiPgQAT0/LjC0MmGsoo/sdpS6V4TpOUAxO4J3DnvnLLaInnNh9hiU1SlGgCjsRv0nN9TvX9pWRqVnZH9kw==}
66
+ hasBin: true
67
+
68
+ '@modelcontextprotocol/inspector@0.16.8':
69
+ resolution: {integrity: sha512-7kk6uOGY9ySgCFsRuRplWzvjiEwulG876pfnjQxqaBJAcUlp3N1yrOt7YQMBZsxvop+RGw50IehiPuGs+7oh+w==}
70
+ engines: {node: '>=22.7.5'}
71
+ hasBin: true
72
+
73
+ '@modelcontextprotocol/sdk@1.25.1':
74
+ resolution: {integrity: sha512-yO28oVFFC7EBoiKdAn+VqRm+plcfv4v0xp6osG/VsCB0NlPZWi87ajbCZZ8f/RvOFLEu7//rSRmuZZ7lMoe3gQ==}
75
+ engines: {node: '>=18'}
76
+ peerDependencies:
77
+ '@cfworker/json-schema': ^4.1.1
78
+ zod: ^3.25 || ^4.0
79
+ peerDependenciesMeta:
80
+ '@cfworker/json-schema':
81
+ optional: true
82
+
83
+ '@radix-ui/number@1.1.1':
84
+ resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
85
+
86
+ '@radix-ui/primitive@1.1.3':
87
+ resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
88
+
89
+ '@radix-ui/react-arrow@1.1.7':
90
+ resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
91
+ peerDependencies:
92
+ '@types/react': '*'
93
+ '@types/react-dom': '*'
94
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
95
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
96
+ peerDependenciesMeta:
97
+ '@types/react':
98
+ optional: true
99
+ '@types/react-dom':
100
+ optional: true
101
+
102
+ '@radix-ui/react-checkbox@1.3.3':
103
+ resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
104
+ peerDependencies:
105
+ '@types/react': '*'
106
+ '@types/react-dom': '*'
107
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
108
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
109
+ peerDependenciesMeta:
110
+ '@types/react':
111
+ optional: true
112
+ '@types/react-dom':
113
+ optional: true
114
+
115
+ '@radix-ui/react-collection@1.1.7':
116
+ resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
117
+ peerDependencies:
118
+ '@types/react': '*'
119
+ '@types/react-dom': '*'
120
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
121
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
122
+ peerDependenciesMeta:
123
+ '@types/react':
124
+ optional: true
125
+ '@types/react-dom':
126
+ optional: true
127
+
128
+ '@radix-ui/react-compose-refs@1.1.2':
129
+ resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
130
+ peerDependencies:
131
+ '@types/react': '*'
132
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
133
+ peerDependenciesMeta:
134
+ '@types/react':
135
+ optional: true
136
+
137
+ '@radix-ui/react-context@1.1.2':
138
+ resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
139
+ peerDependencies:
140
+ '@types/react': '*'
141
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
142
+ peerDependenciesMeta:
143
+ '@types/react':
144
+ optional: true
145
+
146
+ '@radix-ui/react-dialog@1.1.15':
147
+ resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
148
+ peerDependencies:
149
+ '@types/react': '*'
150
+ '@types/react-dom': '*'
151
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
152
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
153
+ peerDependenciesMeta:
154
+ '@types/react':
155
+ optional: true
156
+ '@types/react-dom':
157
+ optional: true
158
+
159
+ '@radix-ui/react-direction@1.1.1':
160
+ resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
161
+ peerDependencies:
162
+ '@types/react': '*'
163
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
164
+ peerDependenciesMeta:
165
+ '@types/react':
166
+ optional: true
167
+
168
+ '@radix-ui/react-dismissable-layer@1.1.11':
169
+ resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
170
+ peerDependencies:
171
+ '@types/react': '*'
172
+ '@types/react-dom': '*'
173
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
174
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
175
+ peerDependenciesMeta:
176
+ '@types/react':
177
+ optional: true
178
+ '@types/react-dom':
179
+ optional: true
180
+
181
+ '@radix-ui/react-focus-guards@1.1.3':
182
+ resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
183
+ peerDependencies:
184
+ '@types/react': '*'
185
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
186
+ peerDependenciesMeta:
187
+ '@types/react':
188
+ optional: true
189
+
190
+ '@radix-ui/react-focus-scope@1.1.7':
191
+ resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
192
+ peerDependencies:
193
+ '@types/react': '*'
194
+ '@types/react-dom': '*'
195
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
196
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
197
+ peerDependenciesMeta:
198
+ '@types/react':
199
+ optional: true
200
+ '@types/react-dom':
201
+ optional: true
202
+
203
+ '@radix-ui/react-icons@1.3.2':
204
+ resolution: {integrity: sha512-fyQIhGDhzfc9pK2kH6Pl9c4BDJGfMkPqkyIgYDthyNYoNg3wVhoJMMh19WS4Up/1KMPFVpNsT2q3WmXn2N1m6g==}
205
+ peerDependencies:
206
+ react: ^16.x || ^17.x || ^18.x || ^19.0.0 || ^19.0.0-rc
207
+
208
+ '@radix-ui/react-id@1.1.1':
209
+ resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
210
+ peerDependencies:
211
+ '@types/react': '*'
212
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
213
+ peerDependenciesMeta:
214
+ '@types/react':
215
+ optional: true
216
+
217
+ '@radix-ui/react-label@2.1.8':
218
+ resolution: {integrity: sha512-FmXs37I6hSBVDlO4y764TNz1rLgKwjJMQ0EGte6F3Cb3f4bIuHB/iLa/8I9VKkmOy+gNHq8rql3j686ACVV21A==}
219
+ peerDependencies:
220
+ '@types/react': '*'
221
+ '@types/react-dom': '*'
222
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
223
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
224
+ peerDependenciesMeta:
225
+ '@types/react':
226
+ optional: true
227
+ '@types/react-dom':
228
+ optional: true
229
+
230
+ '@radix-ui/react-popover@1.1.15':
231
+ resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
232
+ peerDependencies:
233
+ '@types/react': '*'
234
+ '@types/react-dom': '*'
235
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
236
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
237
+ peerDependenciesMeta:
238
+ '@types/react':
239
+ optional: true
240
+ '@types/react-dom':
241
+ optional: true
242
+
243
+ '@radix-ui/react-popper@1.2.8':
244
+ resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
245
+ peerDependencies:
246
+ '@types/react': '*'
247
+ '@types/react-dom': '*'
248
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
249
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
250
+ peerDependenciesMeta:
251
+ '@types/react':
252
+ optional: true
253
+ '@types/react-dom':
254
+ optional: true
255
+
256
+ '@radix-ui/react-portal@1.1.9':
257
+ resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
258
+ peerDependencies:
259
+ '@types/react': '*'
260
+ '@types/react-dom': '*'
261
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
262
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
263
+ peerDependenciesMeta:
264
+ '@types/react':
265
+ optional: true
266
+ '@types/react-dom':
267
+ optional: true
268
+
269
+ '@radix-ui/react-presence@1.1.5':
270
+ resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
271
+ peerDependencies:
272
+ '@types/react': '*'
273
+ '@types/react-dom': '*'
274
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
275
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
276
+ peerDependenciesMeta:
277
+ '@types/react':
278
+ optional: true
279
+ '@types/react-dom':
280
+ optional: true
281
+
282
+ '@radix-ui/react-primitive@2.1.3':
283
+ resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
284
+ peerDependencies:
285
+ '@types/react': '*'
286
+ '@types/react-dom': '*'
287
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
288
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
289
+ peerDependenciesMeta:
290
+ '@types/react':
291
+ optional: true
292
+ '@types/react-dom':
293
+ optional: true
294
+
295
+ '@radix-ui/react-primitive@2.1.4':
296
+ resolution: {integrity: sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==}
297
+ peerDependencies:
298
+ '@types/react': '*'
299
+ '@types/react-dom': '*'
300
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
301
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
302
+ peerDependenciesMeta:
303
+ '@types/react':
304
+ optional: true
305
+ '@types/react-dom':
306
+ optional: true
307
+
308
+ '@radix-ui/react-roving-focus@1.1.11':
309
+ resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
310
+ peerDependencies:
311
+ '@types/react': '*'
312
+ '@types/react-dom': '*'
313
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
314
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
315
+ peerDependenciesMeta:
316
+ '@types/react':
317
+ optional: true
318
+ '@types/react-dom':
319
+ optional: true
320
+
321
+ '@radix-ui/react-select@2.2.6':
322
+ resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
323
+ peerDependencies:
324
+ '@types/react': '*'
325
+ '@types/react-dom': '*'
326
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
327
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
328
+ peerDependenciesMeta:
329
+ '@types/react':
330
+ optional: true
331
+ '@types/react-dom':
332
+ optional: true
333
+
334
+ '@radix-ui/react-slot@1.2.3':
335
+ resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
336
+ peerDependencies:
337
+ '@types/react': '*'
338
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
339
+ peerDependenciesMeta:
340
+ '@types/react':
341
+ optional: true
342
+
343
+ '@radix-ui/react-slot@1.2.4':
344
+ resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
345
+ peerDependencies:
346
+ '@types/react': '*'
347
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
348
+ peerDependenciesMeta:
349
+ '@types/react':
350
+ optional: true
351
+
352
+ '@radix-ui/react-switch@1.2.6':
353
+ resolution: {integrity: sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==}
354
+ peerDependencies:
355
+ '@types/react': '*'
356
+ '@types/react-dom': '*'
357
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
358
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
359
+ peerDependenciesMeta:
360
+ '@types/react':
361
+ optional: true
362
+ '@types/react-dom':
363
+ optional: true
364
+
365
+ '@radix-ui/react-tabs@1.1.13':
366
+ resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
367
+ peerDependencies:
368
+ '@types/react': '*'
369
+ '@types/react-dom': '*'
370
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
371
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
372
+ peerDependenciesMeta:
373
+ '@types/react':
374
+ optional: true
375
+ '@types/react-dom':
376
+ optional: true
377
+
378
+ '@radix-ui/react-toast@1.2.15':
379
+ resolution: {integrity: sha512-3OSz3TacUWy4WtOXV38DggwxoqJK4+eDkNMl5Z/MJZaoUPaP4/9lf81xXMe1I2ReTAptverZUpbPY4wWwWyL5g==}
380
+ peerDependencies:
381
+ '@types/react': '*'
382
+ '@types/react-dom': '*'
383
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
384
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
385
+ peerDependenciesMeta:
386
+ '@types/react':
387
+ optional: true
388
+ '@types/react-dom':
389
+ optional: true
390
+
391
+ '@radix-ui/react-tooltip@1.2.8':
392
+ resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
393
+ peerDependencies:
394
+ '@types/react': '*'
395
+ '@types/react-dom': '*'
396
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
397
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
398
+ peerDependenciesMeta:
399
+ '@types/react':
400
+ optional: true
401
+ '@types/react-dom':
402
+ optional: true
403
+
404
+ '@radix-ui/react-use-callback-ref@1.1.1':
405
+ resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
406
+ peerDependencies:
407
+ '@types/react': '*'
408
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
409
+ peerDependenciesMeta:
410
+ '@types/react':
411
+ optional: true
412
+
413
+ '@radix-ui/react-use-controllable-state@1.2.2':
414
+ resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
415
+ peerDependencies:
416
+ '@types/react': '*'
417
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
418
+ peerDependenciesMeta:
419
+ '@types/react':
420
+ optional: true
421
+
422
+ '@radix-ui/react-use-effect-event@0.0.2':
423
+ resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
424
+ peerDependencies:
425
+ '@types/react': '*'
426
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
427
+ peerDependenciesMeta:
428
+ '@types/react':
429
+ optional: true
430
+
431
+ '@radix-ui/react-use-escape-keydown@1.1.1':
432
+ resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
433
+ peerDependencies:
434
+ '@types/react': '*'
435
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
436
+ peerDependenciesMeta:
437
+ '@types/react':
438
+ optional: true
439
+
440
+ '@radix-ui/react-use-layout-effect@1.1.1':
441
+ resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
442
+ peerDependencies:
443
+ '@types/react': '*'
444
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
445
+ peerDependenciesMeta:
446
+ '@types/react':
447
+ optional: true
448
+
449
+ '@radix-ui/react-use-previous@1.1.1':
450
+ resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
451
+ peerDependencies:
452
+ '@types/react': '*'
453
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
454
+ peerDependenciesMeta:
455
+ '@types/react':
456
+ optional: true
457
+
458
+ '@radix-ui/react-use-rect@1.1.1':
459
+ resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
460
+ peerDependencies:
461
+ '@types/react': '*'
462
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
463
+ peerDependenciesMeta:
464
+ '@types/react':
465
+ optional: true
466
+
467
+ '@radix-ui/react-use-size@1.1.1':
468
+ resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
469
+ peerDependencies:
470
+ '@types/react': '*'
471
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
472
+ peerDependenciesMeta:
473
+ '@types/react':
474
+ optional: true
475
+
476
+ '@radix-ui/react-visually-hidden@1.2.3':
477
+ resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
478
+ peerDependencies:
479
+ '@types/react': '*'
480
+ '@types/react-dom': '*'
481
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
482
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
483
+ peerDependenciesMeta:
484
+ '@types/react':
485
+ optional: true
486
+ '@types/react-dom':
487
+ optional: true
488
+
489
+ '@radix-ui/rect@1.1.1':
490
+ resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
491
+
492
+ '@tsconfig/node10@1.0.12':
493
+ resolution: {integrity: sha512-UCYBaeFvM11aU2y3YPZ//O5Rhj+xKyzy7mvcIoAjASbigy8mHMryP5cK7dgjlz2hWxh1g5pLw084E0a/wlUSFQ==}
494
+
495
+ '@tsconfig/node12@1.0.11':
496
+ resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
497
+
498
+ '@tsconfig/node14@1.0.3':
499
+ resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
500
+
501
+ '@tsconfig/node16@1.0.4':
502
+ resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
503
+
504
+ '@types/node@25.0.3':
505
+ resolution: {integrity: sha512-W609buLVRVmeW693xKfzHeIV6nJGGz98uCPfeXI1ELMLXVeKYZ9m15fAMSaUPBHYLGFsVRcMmSCksQOrZV9BYA==}
506
+
507
+ accepts@2.0.0:
508
+ resolution: {integrity: sha512-5cvg6CtKwfgdmVqY1WIiXKc3Q1bkRqGLi+2W/6ao+6Y7gu/RCwRuAhGEzh5B4KlszSuTLgZYuqFqo5bImjNKng==}
509
+ engines: {node: '>= 0.6'}
510
+
511
+ acorn-walk@8.3.4:
512
+ resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
513
+ engines: {node: '>=0.4.0'}
514
+
515
+ acorn@8.15.0:
516
+ resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==}
517
+ engines: {node: '>=0.4.0'}
518
+ hasBin: true
519
+
520
+ ajv-formats@3.0.1:
521
+ resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==}
522
+ peerDependencies:
523
+ ajv: ^8.0.0
524
+ peerDependenciesMeta:
525
+ ajv:
526
+ optional: true
527
+
528
+ ajv@6.12.6:
529
+ resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
530
+
531
+ ajv@8.17.1:
532
+ resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
533
+
534
+ ansi-regex@5.0.1:
535
+ resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
536
+ engines: {node: '>=8'}
537
+
538
+ ansi-styles@4.3.0:
539
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
540
+ engines: {node: '>=8'}
541
+
542
+ arg@4.1.3:
543
+ resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
544
+
545
+ aria-hidden@1.2.6:
546
+ resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
547
+ engines: {node: '>=10'}
548
+
549
+ balanced-match@1.0.2:
550
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
551
+
552
+ body-parser@2.2.1:
553
+ resolution: {integrity: sha512-nfDwkulwiZYQIGwxdy0RUmowMhKcFVcYXUU7m4QlKYim1rUtg83xm2yjZ40QjDuc291AJjjeSc9b++AWHSgSHw==}
554
+ engines: {node: '>=18'}
555
+
556
+ brace-expansion@1.1.12:
557
+ resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==}
558
+
559
+ bundle-name@4.1.0:
560
+ resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
561
+ engines: {node: '>=18'}
562
+
563
+ bytes@3.0.0:
564
+ resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
565
+ engines: {node: '>= 0.8'}
566
+
567
+ bytes@3.1.2:
568
+ resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
569
+ engines: {node: '>= 0.8'}
570
+
571
+ call-bind-apply-helpers@1.0.2:
572
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
573
+ engines: {node: '>= 0.4'}
574
+
575
+ call-bound@1.0.4:
576
+ resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==}
577
+ engines: {node: '>= 0.4'}
578
+
579
+ chalk@4.1.2:
580
+ resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
581
+ engines: {node: '>=10'}
582
+
583
+ class-variance-authority@0.7.1:
584
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
585
+
586
+ cliui@8.0.1:
587
+ resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
588
+ engines: {node: '>=12'}
589
+
590
+ clsx@2.1.1:
591
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
592
+ engines: {node: '>=6'}
593
+
594
+ cmdk@1.1.1:
595
+ resolution: {integrity: sha512-Vsv7kFaXm+ptHDMZ7izaRsP70GgrW9NBNGswt9OZaVBLlE0SNpDq8eu/VGXyF9r7M0azK3Wy7OlYXsuyYLFzHg==}
596
+ peerDependencies:
597
+ react: ^18 || ^19 || ^19.0.0-rc
598
+ react-dom: ^18 || ^19 || ^19.0.0-rc
599
+
600
+ color-convert@2.0.1:
601
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
602
+ engines: {node: '>=7.0.0'}
603
+
604
+ color-name@1.1.4:
605
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
606
+
607
+ commander@13.1.0:
608
+ resolution: {integrity: sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==}
609
+ engines: {node: '>=18'}
610
+
611
+ concat-map@0.0.1:
612
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
613
+
614
+ concurrently@9.2.1:
615
+ resolution: {integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==}
616
+ engines: {node: '>=18'}
617
+ hasBin: true
618
+
619
+ content-disposition@0.5.2:
620
+ resolution: {integrity: sha512-kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA==}
621
+ engines: {node: '>= 0.6'}
622
+
623
+ content-disposition@1.0.1:
624
+ resolution: {integrity: sha512-oIXISMynqSqm241k6kcQ5UwttDILMK4BiurCfGEREw6+X9jkkpEe5T9FZaApyLGGOnFuyMWZpdolTXMtvEJ08Q==}
625
+ engines: {node: '>=18'}
626
+
627
+ content-type@1.0.5:
628
+ resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
629
+ engines: {node: '>= 0.6'}
630
+
631
+ cookie-signature@1.2.2:
632
+ resolution: {integrity: sha512-D76uU73ulSXrD1UXF4KE2TMxVVwhsnCgfAyTg9k8P6KGZjlXKrOLe4dJQKI3Bxi5wjesZoFXJWElNWBjPZMbhg==}
633
+ engines: {node: '>=6.6.0'}
634
+
635
+ cookie@0.7.2:
636
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
637
+ engines: {node: '>= 0.6'}
638
+
639
+ cors@2.8.5:
640
+ resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
641
+ engines: {node: '>= 0.10'}
642
+
643
+ create-require@1.1.1:
644
+ resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
645
+
646
+ cross-spawn@7.0.6:
647
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
648
+ engines: {node: '>= 8'}
649
+
650
+ data-uri-to-buffer@4.0.1:
651
+ resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
652
+ engines: {node: '>= 12'}
653
+
654
+ debug@4.4.3:
655
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
656
+ engines: {node: '>=6.0'}
657
+ peerDependencies:
658
+ supports-color: '*'
659
+ peerDependenciesMeta:
660
+ supports-color:
661
+ optional: true
662
+
663
+ default-browser-id@5.0.1:
664
+ resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==}
665
+ engines: {node: '>=18'}
666
+
667
+ default-browser@5.4.0:
668
+ resolution: {integrity: sha512-XDuvSq38Hr1MdN47EDvYtx3U0MTqpCEn+F6ft8z2vYDzMrvQhVp0ui9oQdqW3MvK3vqUETglt1tVGgjLuJ5izg==}
669
+ engines: {node: '>=18'}
670
+
671
+ define-lazy-prop@3.0.0:
672
+ resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
673
+ engines: {node: '>=12'}
674
+
675
+ depd@2.0.0:
676
+ resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
677
+ engines: {node: '>= 0.8'}
678
+
679
+ detect-node-es@1.1.0:
680
+ resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
681
+
682
+ diff@4.0.2:
683
+ resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
684
+ engines: {node: '>=0.3.1'}
685
+
686
+ dunder-proto@1.0.1:
687
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
688
+ engines: {node: '>= 0.4'}
689
+
690
+ ee-first@1.1.1:
691
+ resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
692
+
693
+ emoji-regex@8.0.0:
694
+ resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
695
+
696
+ encodeurl@2.0.0:
697
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
698
+ engines: {node: '>= 0.8'}
699
+
700
+ es-define-property@1.0.1:
701
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
702
+ engines: {node: '>= 0.4'}
703
+
704
+ es-errors@1.3.0:
705
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
706
+ engines: {node: '>= 0.4'}
707
+
708
+ es-object-atoms@1.1.1:
709
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
710
+ engines: {node: '>= 0.4'}
711
+
712
+ escalade@3.2.0:
713
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
714
+ engines: {node: '>=6'}
715
+
716
+ escape-html@1.0.3:
717
+ resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
718
+
719
+ etag@1.8.1:
720
+ resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==}
721
+ engines: {node: '>= 0.6'}
722
+
723
+ eventsource-parser@3.0.6:
724
+ resolution: {integrity: sha512-Vo1ab+QXPzZ4tCa8SwIHJFaSzy4R6SHf7BY79rFBDf0idraZWAkYrDjDj8uWaSm3S2TK+hJ7/t1CEmZ7jXw+pg==}
725
+ engines: {node: '>=18.0.0'}
726
+
727
+ eventsource@3.0.7:
728
+ resolution: {integrity: sha512-CRT1WTyuQoD771GW56XEZFQ/ZoSfWid1alKGDYMmkt2yl8UXrVR4pspqWNEcqKvVIzg6PAltWjxcSSPrboA4iA==}
729
+ engines: {node: '>=18.0.0'}
730
+
731
+ express-rate-limit@7.5.1:
732
+ resolution: {integrity: sha512-7iN8iPMDzOMHPUYllBEsQdWVB6fPDMPqwjBaFrgr4Jgr/+okjvzAy+UHlYYL/Vs0OsOrMkwS6PJDkFlJwoxUnw==}
733
+ engines: {node: '>= 16'}
734
+ peerDependencies:
735
+ express: '>= 4.11'
736
+
737
+ express@5.2.1:
738
+ resolution: {integrity: sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==}
739
+ engines: {node: '>= 18'}
740
+
741
+ fast-deep-equal@3.1.3:
742
+ resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
743
+
744
+ fast-json-stable-stringify@2.1.0:
745
+ resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
746
+
747
+ fast-uri@3.1.0:
748
+ resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==}
749
+
750
+ fetch-blob@3.2.0:
751
+ resolution: {integrity: sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==}
752
+ engines: {node: ^12.20 || >= 14.13}
753
+
754
+ finalhandler@2.1.1:
755
+ resolution: {integrity: sha512-S8KoZgRZN+a5rNwqTxlZZePjT/4cnm0ROV70LedRHZ0p8u9fRID0hJUZQpkKLzro8LfmC8sx23bY6tVNxv8pQA==}
756
+ engines: {node: '>= 18.0.0'}
757
+
758
+ formdata-polyfill@4.0.10:
759
+ resolution: {integrity: sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==}
760
+ engines: {node: '>=12.20.0'}
761
+
762
+ forwarded@0.2.0:
763
+ resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
764
+ engines: {node: '>= 0.6'}
765
+
766
+ fresh@2.0.0:
767
+ resolution: {integrity: sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==}
768
+ engines: {node: '>= 0.8'}
769
+
770
+ function-bind@1.1.2:
771
+ resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
772
+
773
+ get-caller-file@2.0.5:
774
+ resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
775
+ engines: {node: 6.* || 8.* || >= 10.*}
776
+
777
+ get-intrinsic@1.3.0:
778
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
779
+ engines: {node: '>= 0.4'}
780
+
781
+ get-nonce@1.0.1:
782
+ resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
783
+ engines: {node: '>=6'}
784
+
785
+ get-proto@1.0.1:
786
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
787
+ engines: {node: '>= 0.4'}
788
+
789
+ gopd@1.2.0:
790
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
791
+ engines: {node: '>= 0.4'}
792
+
793
+ has-flag@4.0.0:
794
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
795
+ engines: {node: '>=8'}
796
+
797
+ has-symbols@1.1.0:
798
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
799
+ engines: {node: '>= 0.4'}
800
+
801
+ hasown@2.0.2:
802
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
803
+ engines: {node: '>= 0.4'}
804
+
805
+ hono@4.11.1:
806
+ resolution: {integrity: sha512-KsFcH0xxHes0J4zaQgWbYwmz3UPOOskdqZmItstUG93+Wk1ePBLkLGwbP9zlmh1BFUiL8Qp+Xfu9P7feJWpGNg==}
807
+ engines: {node: '>=16.9.0'}
808
+
809
+ http-errors@2.0.1:
810
+ resolution: {integrity: sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==}
811
+ engines: {node: '>= 0.8'}
812
+
813
+ iconv-lite@0.7.1:
814
+ resolution: {integrity: sha512-2Tth85cXwGFHfvRgZWszZSvdo+0Xsqmw8k8ZwxScfcBneNUraK+dxRxRm24nszx80Y0TVio8kKLt5sLE7ZCLlw==}
815
+ engines: {node: '>=0.10.0'}
816
+
817
+ inherits@2.0.4:
818
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
819
+
820
+ ipaddr.js@1.9.1:
821
+ resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
822
+ engines: {node: '>= 0.10'}
823
+
824
+ is-docker@3.0.0:
825
+ resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==}
826
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
827
+ hasBin: true
828
+
829
+ is-fullwidth-code-point@3.0.0:
830
+ resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
831
+ engines: {node: '>=8'}
832
+
833
+ is-inside-container@1.0.0:
834
+ resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==}
835
+ engines: {node: '>=14.16'}
836
+ hasBin: true
837
+
838
+ is-promise@4.0.0:
839
+ resolution: {integrity: sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==}
840
+
841
+ is-wsl@3.1.0:
842
+ resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==}
843
+ engines: {node: '>=16'}
844
+
845
+ isexe@2.0.0:
846
+ resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
847
+
848
+ jose@6.1.3:
849
+ resolution: {integrity: sha512-0TpaTfihd4QMNwrz/ob2Bp7X04yuxJkjRGi4aKmOqwhov54i6u79oCv7T+C7lo70MKH6BesI3vscD1yb/yzKXQ==}
850
+
851
+ js-tokens@4.0.0:
852
+ resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
853
+
854
+ json-schema-traverse@0.4.1:
855
+ resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
856
+
857
+ json-schema-traverse@1.0.0:
858
+ resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
859
+
860
+ json-schema-typed@8.0.2:
861
+ resolution: {integrity: sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==}
862
+
863
+ loose-envify@1.4.0:
864
+ resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
865
+ hasBin: true
866
+
867
+ lucide-react@0.523.0:
868
+ resolution: {integrity: sha512-rUjQoy7egZT9XYVXBK1je9ckBnNp7qzRZOhLQx5RcEp2dCGlXo+mv6vf7Am4LimEcFBJIIZzSGfgTqc9QCrPSw==}
869
+ peerDependencies:
870
+ react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
871
+
872
+ make-error@1.3.6:
873
+ resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
874
+
875
+ math-intrinsics@1.1.0:
876
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
877
+ engines: {node: '>= 0.4'}
878
+
879
+ media-typer@1.1.0:
880
+ resolution: {integrity: sha512-aisnrDP4GNe06UcKFnV5bfMNPBUw4jsLGaWwWfnH3v02GnBuXX2MCVn5RbrWo0j3pczUilYblq7fQ7Nw2t5XKw==}
881
+ engines: {node: '>= 0.8'}
882
+
883
+ merge-descriptors@2.0.0:
884
+ resolution: {integrity: sha512-Snk314V5ayFLhp3fkUREub6WtjBfPdCPY1Ln8/8munuLuiYhsABgBVWsozAG+MWMbVEvcdcpbi9R7ww22l9Q3g==}
885
+ engines: {node: '>=18'}
886
+
887
+ mime-db@1.33.0:
888
+ resolution: {integrity: sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==}
889
+ engines: {node: '>= 0.6'}
890
+
891
+ mime-db@1.54.0:
892
+ resolution: {integrity: sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==}
893
+ engines: {node: '>= 0.6'}
894
+
895
+ mime-types@2.1.18:
896
+ resolution: {integrity: sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==}
897
+ engines: {node: '>= 0.6'}
898
+
899
+ mime-types@3.0.2:
900
+ resolution: {integrity: sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==}
901
+ engines: {node: '>=18'}
902
+
903
+ minimatch@3.1.2:
904
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
905
+
906
+ ms@2.1.3:
907
+ resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
908
+
909
+ negotiator@1.0.0:
910
+ resolution: {integrity: sha512-8Ofs/AUQh8MaEcrlq5xOX0CQ9ypTF5dl78mjlMNfOK08fzpgTHQRQPBxcPlEtIw0yRpws+Zo/3r+5WRby7u3Gg==}
911
+ engines: {node: '>= 0.6'}
912
+
913
+ node-domexception@1.0.0:
914
+ resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
915
+ engines: {node: '>=10.5.0'}
916
+ deprecated: Use your platform's native DOMException instead
917
+
918
+ node-fetch@3.3.2:
919
+ resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
920
+ engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
921
+
922
+ object-assign@4.1.1:
923
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
924
+ engines: {node: '>=0.10.0'}
925
+
926
+ object-inspect@1.13.4:
927
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
928
+ engines: {node: '>= 0.4'}
929
+
930
+ on-finished@2.4.1:
931
+ resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==}
932
+ engines: {node: '>= 0.8'}
933
+
934
+ once@1.4.0:
935
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
936
+
937
+ open@10.2.0:
938
+ resolution: {integrity: sha512-YgBpdJHPyQ2UE5x+hlSXcnejzAvD0b22U2OuAP+8OnlJT+PjWPxtgmGqKKc+RgTM63U9gN0YzrYc71R2WT/hTA==}
939
+ engines: {node: '>=18'}
940
+
941
+ parseurl@1.3.3:
942
+ resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
943
+ engines: {node: '>= 0.8'}
944
+
945
+ path-is-inside@1.0.2:
946
+ resolution: {integrity: sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==}
947
+
948
+ path-key@3.1.1:
949
+ resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
950
+ engines: {node: '>=8'}
951
+
952
+ path-to-regexp@3.3.0:
953
+ resolution: {integrity: sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==}
954
+
955
+ path-to-regexp@8.3.0:
956
+ resolution: {integrity: sha512-7jdwVIRtsP8MYpdXSwOS0YdD0Du+qOoF/AEPIt88PcCFrZCzx41oxku1jD88hZBwbNUIEfpqvuhjFaMAqMTWnA==}
957
+
958
+ pkce-challenge@4.1.0:
959
+ resolution: {integrity: sha512-ZBmhE1C9LcPoH9XZSdwiPtbPHZROwAnMy+kIFQVrnMCxY4Cudlz3gBOpzilgc0jOgRaiT3sIWfpMomW2ar2orQ==}
960
+ engines: {node: '>=16.20.0'}
961
+
962
+ pkce-challenge@5.0.1:
963
+ resolution: {integrity: sha512-wQ0b/W4Fr01qtpHlqSqspcj3EhBvimsdh0KlHhH8HRZnMsEa0ea2fTULOXOS9ccQr3om+GcGRk4e+isrZWV8qQ==}
964
+ engines: {node: '>=16.20.0'}
965
+
966
+ prismjs@1.30.0:
967
+ resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==}
968
+ engines: {node: '>=6'}
969
+
970
+ proxy-addr@2.0.7:
971
+ resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
972
+ engines: {node: '>= 0.10'}
973
+
974
+ punycode@2.3.1:
975
+ resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
976
+ engines: {node: '>=6'}
977
+
978
+ qs@6.14.0:
979
+ resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
980
+ engines: {node: '>=0.6'}
981
+
982
+ range-parser@1.2.0:
983
+ resolution: {integrity: sha512-kA5WQoNVo4t9lNx2kQNFCxKeBl5IbbSNBl1M/tLkw9WCn+hxNBAW5Qh8gdhs63CJnhjJ2zQWFoqPJP2sK1AV5A==}
984
+ engines: {node: '>= 0.6'}
985
+
986
+ range-parser@1.2.1:
987
+ resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
988
+ engines: {node: '>= 0.6'}
989
+
990
+ raw-body@3.0.2:
991
+ resolution: {integrity: sha512-K5zQjDllxWkf7Z5xJdV0/B0WTNqx6vxG70zJE4N0kBs4LovmEYWJzQGxC9bS9RAKu3bgM40lrd5zoLJ12MQ5BA==}
992
+ engines: {node: '>= 0.10'}
993
+
994
+ react-dom@18.3.1:
995
+ resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
996
+ peerDependencies:
997
+ react: ^18.3.1
998
+
999
+ react-remove-scroll-bar@2.3.8:
1000
+ resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
1001
+ engines: {node: '>=10'}
1002
+ peerDependencies:
1003
+ '@types/react': '*'
1004
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
1005
+ peerDependenciesMeta:
1006
+ '@types/react':
1007
+ optional: true
1008
+
1009
+ react-remove-scroll@2.7.2:
1010
+ resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
1011
+ engines: {node: '>=10'}
1012
+ peerDependencies:
1013
+ '@types/react': '*'
1014
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
1015
+ peerDependenciesMeta:
1016
+ '@types/react':
1017
+ optional: true
1018
+
1019
+ react-simple-code-editor@0.14.1:
1020
+ resolution: {integrity: sha512-BR5DtNRy+AswWJECyA17qhUDvrrCZ6zXOCfkQY5zSmb96BVUbpVAv03WpcjcwtCwiLbIANx3gebHOcXYn1EHow==}
1021
+ peerDependencies:
1022
+ react: '>=16.8.0'
1023
+ react-dom: '>=16.8.0'
1024
+
1025
+ react-style-singleton@2.2.3:
1026
+ resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
1027
+ engines: {node: '>=10'}
1028
+ peerDependencies:
1029
+ '@types/react': '*'
1030
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
1031
+ peerDependenciesMeta:
1032
+ '@types/react':
1033
+ optional: true
1034
+
1035
+ react@18.3.1:
1036
+ resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
1037
+ engines: {node: '>=0.10.0'}
1038
+
1039
+ require-directory@2.1.1:
1040
+ resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
1041
+ engines: {node: '>=0.10.0'}
1042
+
1043
+ require-from-string@2.0.2:
1044
+ resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
1045
+ engines: {node: '>=0.10.0'}
1046
+
1047
+ router@2.2.0:
1048
+ resolution: {integrity: sha512-nLTrUKm2UyiL7rlhapu/Zl45FwNgkZGaCpZbIHajDYgwlJCOzLSk+cIPAnsEqV955GjILJnKbdQC1nVPz+gAYQ==}
1049
+ engines: {node: '>= 18'}
1050
+
1051
+ run-applescript@7.1.0:
1052
+ resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
1053
+ engines: {node: '>=18'}
1054
+
1055
+ rxjs@7.8.2:
1056
+ resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
1057
+
1058
+ safer-buffer@2.1.2:
1059
+ resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
1060
+
1061
+ scheduler@0.23.2:
1062
+ resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==}
1063
+
1064
+ send@1.2.1:
1065
+ resolution: {integrity: sha512-1gnZf7DFcoIcajTjTwjwuDjzuz4PPcY2StKPlsGAQ1+YH20IRVrBaXSWmdjowTJ6u8Rc01PoYOGHXfP1mYcZNQ==}
1066
+ engines: {node: '>= 18'}
1067
+
1068
+ serve-handler@6.1.6:
1069
+ resolution: {integrity: sha512-x5RL9Y2p5+Sh3D38Fh9i/iQ5ZK+e4xuXRd/pGbM4D13tgo/MGwbttUk8emytcr1YYzBYs+apnUngBDFYfpjPuQ==}
1070
+
1071
+ serve-static@2.2.1:
1072
+ resolution: {integrity: sha512-xRXBn0pPqQTVQiC8wyQrKs2MOlX24zQ0POGaj0kultvoOCstBQM5yvOhAVSUwOMjQtTvsPWoNCHfPGwaaQJhTw==}
1073
+ engines: {node: '>= 18'}
1074
+
1075
+ setprototypeof@1.2.0:
1076
+ resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
1077
+
1078
+ shebang-command@2.0.0:
1079
+ resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
1080
+ engines: {node: '>=8'}
1081
+
1082
+ shebang-regex@3.0.0:
1083
+ resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
1084
+ engines: {node: '>=8'}
1085
+
1086
+ shell-quote@1.8.3:
1087
+ resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==}
1088
+ engines: {node: '>= 0.4'}
1089
+
1090
+ side-channel-list@1.0.0:
1091
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
1092
+ engines: {node: '>= 0.4'}
1093
+
1094
+ side-channel-map@1.0.1:
1095
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
1096
+ engines: {node: '>= 0.4'}
1097
+
1098
+ side-channel-weakmap@1.0.2:
1099
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
1100
+ engines: {node: '>= 0.4'}
1101
+
1102
+ side-channel@1.1.0:
1103
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
1104
+ engines: {node: '>= 0.4'}
1105
+
1106
+ spawn-rx@5.1.2:
1107
+ resolution: {integrity: sha512-/y7tJKALVZ1lPzeZZB9jYnmtrL7d0N2zkorii5a7r7dhHkWIuLTzZpZzMJLK1dmYRgX/NCc4iarTO3F7BS2c/A==}
1108
+
1109
+ statuses@2.0.2:
1110
+ resolution: {integrity: sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==}
1111
+ engines: {node: '>= 0.8'}
1112
+
1113
+ string-width@4.2.3:
1114
+ resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
1115
+ engines: {node: '>=8'}
1116
+
1117
+ strip-ansi@6.0.1:
1118
+ resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
1119
+ engines: {node: '>=8'}
1120
+
1121
+ supports-color@7.2.0:
1122
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
1123
+ engines: {node: '>=8'}
1124
+
1125
+ supports-color@8.1.1:
1126
+ resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
1127
+ engines: {node: '>=10'}
1128
+
1129
+ tailwind-merge@2.6.0:
1130
+ resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==}
1131
+
1132
+ toidentifier@1.0.1:
1133
+ resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
1134
+ engines: {node: '>=0.6'}
1135
+
1136
+ tree-kill@1.2.2:
1137
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
1138
+ hasBin: true
1139
+
1140
+ ts-node@10.9.2:
1141
+ resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
1142
+ hasBin: true
1143
+ peerDependencies:
1144
+ '@swc/core': '>=1.2.50'
1145
+ '@swc/wasm': '>=1.2.50'
1146
+ '@types/node': '*'
1147
+ typescript: '>=2.7'
1148
+ peerDependenciesMeta:
1149
+ '@swc/core':
1150
+ optional: true
1151
+ '@swc/wasm':
1152
+ optional: true
1153
+
1154
+ tslib@2.8.1:
1155
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
1156
+
1157
+ type-is@2.0.1:
1158
+ resolution: {integrity: sha512-OZs6gsjF4vMp32qrCbiVSkrFmXtG/AZhY3t0iAMrMBiAZyV9oALtXO8hsrHbMXF9x6L3grlFuwW2oAz7cav+Gw==}
1159
+ engines: {node: '>= 0.6'}
1160
+
1161
+ typescript@5.9.3:
1162
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
1163
+ engines: {node: '>=14.17'}
1164
+ hasBin: true
1165
+
1166
+ undici-types@7.16.0:
1167
+ resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
1168
+
1169
+ unpipe@1.0.0:
1170
+ resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
1171
+ engines: {node: '>= 0.8'}
1172
+
1173
+ uri-js@4.4.1:
1174
+ resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
1175
+
1176
+ use-callback-ref@1.3.3:
1177
+ resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
1178
+ engines: {node: '>=10'}
1179
+ peerDependencies:
1180
+ '@types/react': '*'
1181
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
1182
+ peerDependenciesMeta:
1183
+ '@types/react':
1184
+ optional: true
1185
+
1186
+ use-sidecar@1.1.3:
1187
+ resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
1188
+ engines: {node: '>=10'}
1189
+ peerDependencies:
1190
+ '@types/react': '*'
1191
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
1192
+ peerDependenciesMeta:
1193
+ '@types/react':
1194
+ optional: true
1195
+
1196
+ v8-compile-cache-lib@3.0.1:
1197
+ resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
1198
+
1199
+ vary@1.1.2:
1200
+ resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
1201
+ engines: {node: '>= 0.8'}
1202
+
1203
+ web-streams-polyfill@3.3.3:
1204
+ resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
1205
+ engines: {node: '>= 8'}
1206
+
1207
+ which@2.0.2:
1208
+ resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==}
1209
+ engines: {node: '>= 8'}
1210
+ hasBin: true
1211
+
1212
+ wrap-ansi@7.0.0:
1213
+ resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
1214
+ engines: {node: '>=10'}
1215
+
1216
+ wrappy@1.0.2:
1217
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
1218
+
1219
+ ws@8.18.3:
1220
+ resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==}
1221
+ engines: {node: '>=10.0.0'}
1222
+ peerDependencies:
1223
+ bufferutil: ^4.0.1
1224
+ utf-8-validate: '>=5.0.2'
1225
+ peerDependenciesMeta:
1226
+ bufferutil:
1227
+ optional: true
1228
+ utf-8-validate:
1229
+ optional: true
1230
+
1231
+ wsl-utils@0.1.0:
1232
+ resolution: {integrity: sha512-h3Fbisa2nKGPxCpm89Hk33lBLsnaGBvctQopaBSOW/uIs6FTe1ATyAnKFJrzVs9vpGdsTe73WF3V4lIsk4Gacw==}
1233
+ engines: {node: '>=18'}
1234
+
1235
+ y18n@5.0.8:
1236
+ resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
1237
+ engines: {node: '>=10'}
1238
+
1239
+ yargs-parser@21.1.1:
1240
+ resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
1241
+ engines: {node: '>=12'}
1242
+
1243
+ yargs@17.7.2:
1244
+ resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
1245
+ engines: {node: '>=12'}
1246
+
1247
+ yn@3.1.1:
1248
+ resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
1249
+ engines: {node: '>=6'}
1250
+
1251
+ zod-to-json-schema@3.25.0:
1252
+ resolution: {integrity: sha512-HvWtU2UG41LALjajJrML6uQejQhNJx+JBO9IflpSja4R03iNWfKXrj6W2h7ljuLyc1nKS+9yDyL/9tD1U/yBnQ==}
1253
+ peerDependencies:
1254
+ zod: ^3.25 || ^4
1255
+
1256
+ zod@3.25.76:
1257
+ resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
1258
+
1259
+ snapshots:
1260
+
1261
+ '@cspotcode/source-map-support@0.8.1':
1262
+ dependencies:
1263
+ '@jridgewell/trace-mapping': 0.3.9
1264
+
1265
+ '@floating-ui/core@1.7.3':
1266
+ dependencies:
1267
+ '@floating-ui/utils': 0.2.10
1268
+
1269
+ '@floating-ui/dom@1.7.4':
1270
+ dependencies:
1271
+ '@floating-ui/core': 1.7.3
1272
+ '@floating-ui/utils': 0.2.10
1273
+
1274
+ '@floating-ui/react-dom@2.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1275
+ dependencies:
1276
+ '@floating-ui/dom': 1.7.4
1277
+ react: 18.3.1
1278
+ react-dom: 18.3.1(react@18.3.1)
1279
+
1280
+ '@floating-ui/utils@0.2.10': {}
1281
+
1282
+ '@hono/node-server@1.19.7(hono@4.11.1)':
1283
+ dependencies:
1284
+ hono: 4.11.1
1285
+
1286
+ '@jridgewell/resolve-uri@3.1.2': {}
1287
+
1288
+ '@jridgewell/sourcemap-codec@1.5.5': {}
1289
+
1290
+ '@jridgewell/trace-mapping@0.3.9':
1291
+ dependencies:
1292
+ '@jridgewell/resolve-uri': 3.1.2
1293
+ '@jridgewell/sourcemap-codec': 1.5.5
1294
+
1295
+ '@modelcontextprotocol/inspector-cli@0.16.8(hono@4.11.1)(zod@3.25.76)':
1296
+ dependencies:
1297
+ '@modelcontextprotocol/sdk': 1.25.1(hono@4.11.1)(zod@3.25.76)
1298
+ commander: 13.1.0
1299
+ spawn-rx: 5.1.2
1300
+ transitivePeerDependencies:
1301
+ - '@cfworker/json-schema'
1302
+ - hono
1303
+ - supports-color
1304
+ - zod
1305
+
1306
+ '@modelcontextprotocol/inspector-client@0.16.8(hono@4.11.1)':
1307
+ dependencies:
1308
+ '@modelcontextprotocol/sdk': 1.25.1(hono@4.11.1)(zod@3.25.76)
1309
+ '@radix-ui/react-checkbox': 1.3.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1310
+ '@radix-ui/react-dialog': 1.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1311
+ '@radix-ui/react-icons': 1.3.2(react@18.3.1)
1312
+ '@radix-ui/react-label': 2.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1313
+ '@radix-ui/react-popover': 1.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1314
+ '@radix-ui/react-select': 2.2.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1315
+ '@radix-ui/react-slot': 1.2.4(react@18.3.1)
1316
+ '@radix-ui/react-switch': 1.2.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1317
+ '@radix-ui/react-tabs': 1.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1318
+ '@radix-ui/react-toast': 1.2.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1319
+ '@radix-ui/react-tooltip': 1.2.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1320
+ ajv: 6.12.6
1321
+ class-variance-authority: 0.7.1
1322
+ clsx: 2.1.1
1323
+ cmdk: 1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1324
+ lucide-react: 0.523.0(react@18.3.1)
1325
+ pkce-challenge: 4.1.0
1326
+ prismjs: 1.30.0
1327
+ react: 18.3.1
1328
+ react-dom: 18.3.1(react@18.3.1)
1329
+ react-simple-code-editor: 0.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1330
+ serve-handler: 6.1.6
1331
+ tailwind-merge: 2.6.0
1332
+ zod: 3.25.76
1333
+ transitivePeerDependencies:
1334
+ - '@cfworker/json-schema'
1335
+ - '@types/react'
1336
+ - '@types/react-dom'
1337
+ - hono
1338
+ - supports-color
1339
+
1340
+ '@modelcontextprotocol/inspector-server@0.16.8(hono@4.11.1)':
1341
+ dependencies:
1342
+ '@modelcontextprotocol/sdk': 1.25.1(hono@4.11.1)(zod@3.25.76)
1343
+ cors: 2.8.5
1344
+ express: 5.2.1
1345
+ shell-quote: 1.8.3
1346
+ spawn-rx: 5.1.2
1347
+ ws: 8.18.3
1348
+ zod: 3.25.76
1349
+ transitivePeerDependencies:
1350
+ - '@cfworker/json-schema'
1351
+ - bufferutil
1352
+ - hono
1353
+ - supports-color
1354
+ - utf-8-validate
1355
+
1356
+ '@modelcontextprotocol/inspector@0.16.8(@types/node@25.0.3)(hono@4.11.1)(typescript@5.9.3)':
1357
+ dependencies:
1358
+ '@modelcontextprotocol/inspector-cli': 0.16.8(hono@4.11.1)(zod@3.25.76)
1359
+ '@modelcontextprotocol/inspector-client': 0.16.8(hono@4.11.1)
1360
+ '@modelcontextprotocol/inspector-server': 0.16.8(hono@4.11.1)
1361
+ '@modelcontextprotocol/sdk': 1.25.1(hono@4.11.1)(zod@3.25.76)
1362
+ concurrently: 9.2.1
1363
+ node-fetch: 3.3.2
1364
+ open: 10.2.0
1365
+ shell-quote: 1.8.3
1366
+ spawn-rx: 5.1.2
1367
+ ts-node: 10.9.2(@types/node@25.0.3)(typescript@5.9.3)
1368
+ zod: 3.25.76
1369
+ transitivePeerDependencies:
1370
+ - '@cfworker/json-schema'
1371
+ - '@swc/core'
1372
+ - '@swc/wasm'
1373
+ - '@types/node'
1374
+ - '@types/react'
1375
+ - '@types/react-dom'
1376
+ - bufferutil
1377
+ - hono
1378
+ - supports-color
1379
+ - typescript
1380
+ - utf-8-validate
1381
+
1382
+ '@modelcontextprotocol/sdk@1.25.1(hono@4.11.1)(zod@3.25.76)':
1383
+ dependencies:
1384
+ '@hono/node-server': 1.19.7(hono@4.11.1)
1385
+ ajv: 8.17.1
1386
+ ajv-formats: 3.0.1(ajv@8.17.1)
1387
+ content-type: 1.0.5
1388
+ cors: 2.8.5
1389
+ cross-spawn: 7.0.6
1390
+ eventsource: 3.0.7
1391
+ eventsource-parser: 3.0.6
1392
+ express: 5.2.1
1393
+ express-rate-limit: 7.5.1(express@5.2.1)
1394
+ jose: 6.1.3
1395
+ json-schema-typed: 8.0.2
1396
+ pkce-challenge: 5.0.1
1397
+ raw-body: 3.0.2
1398
+ zod: 3.25.76
1399
+ zod-to-json-schema: 3.25.0(zod@3.25.76)
1400
+ transitivePeerDependencies:
1401
+ - hono
1402
+ - supports-color
1403
+
1404
+ '@radix-ui/number@1.1.1': {}
1405
+
1406
+ '@radix-ui/primitive@1.1.3': {}
1407
+
1408
+ '@radix-ui/react-arrow@1.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1409
+ dependencies:
1410
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1411
+ react: 18.3.1
1412
+ react-dom: 18.3.1(react@18.3.1)
1413
+
1414
+ '@radix-ui/react-checkbox@1.3.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1415
+ dependencies:
1416
+ '@radix-ui/primitive': 1.1.3
1417
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1418
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1419
+ '@radix-ui/react-presence': 1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1420
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1421
+ '@radix-ui/react-use-controllable-state': 1.2.2(react@18.3.1)
1422
+ '@radix-ui/react-use-previous': 1.1.1(react@18.3.1)
1423
+ '@radix-ui/react-use-size': 1.1.1(react@18.3.1)
1424
+ react: 18.3.1
1425
+ react-dom: 18.3.1(react@18.3.1)
1426
+
1427
+ '@radix-ui/react-collection@1.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1428
+ dependencies:
1429
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1430
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1431
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1432
+ '@radix-ui/react-slot': 1.2.3(react@18.3.1)
1433
+ react: 18.3.1
1434
+ react-dom: 18.3.1(react@18.3.1)
1435
+
1436
+ '@radix-ui/react-compose-refs@1.1.2(react@18.3.1)':
1437
+ dependencies:
1438
+ react: 18.3.1
1439
+
1440
+ '@radix-ui/react-context@1.1.2(react@18.3.1)':
1441
+ dependencies:
1442
+ react: 18.3.1
1443
+
1444
+ '@radix-ui/react-dialog@1.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1445
+ dependencies:
1446
+ '@radix-ui/primitive': 1.1.3
1447
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1448
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1449
+ '@radix-ui/react-dismissable-layer': 1.1.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1450
+ '@radix-ui/react-focus-guards': 1.1.3(react@18.3.1)
1451
+ '@radix-ui/react-focus-scope': 1.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1452
+ '@radix-ui/react-id': 1.1.1(react@18.3.1)
1453
+ '@radix-ui/react-portal': 1.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1454
+ '@radix-ui/react-presence': 1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1455
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1456
+ '@radix-ui/react-slot': 1.2.3(react@18.3.1)
1457
+ '@radix-ui/react-use-controllable-state': 1.2.2(react@18.3.1)
1458
+ aria-hidden: 1.2.6
1459
+ react: 18.3.1
1460
+ react-dom: 18.3.1(react@18.3.1)
1461
+ react-remove-scroll: 2.7.2(react@18.3.1)
1462
+
1463
+ '@radix-ui/react-direction@1.1.1(react@18.3.1)':
1464
+ dependencies:
1465
+ react: 18.3.1
1466
+
1467
+ '@radix-ui/react-dismissable-layer@1.1.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1468
+ dependencies:
1469
+ '@radix-ui/primitive': 1.1.3
1470
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1471
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1472
+ '@radix-ui/react-use-callback-ref': 1.1.1(react@18.3.1)
1473
+ '@radix-ui/react-use-escape-keydown': 1.1.1(react@18.3.1)
1474
+ react: 18.3.1
1475
+ react-dom: 18.3.1(react@18.3.1)
1476
+
1477
+ '@radix-ui/react-focus-guards@1.1.3(react@18.3.1)':
1478
+ dependencies:
1479
+ react: 18.3.1
1480
+
1481
+ '@radix-ui/react-focus-scope@1.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1482
+ dependencies:
1483
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1484
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1485
+ '@radix-ui/react-use-callback-ref': 1.1.1(react@18.3.1)
1486
+ react: 18.3.1
1487
+ react-dom: 18.3.1(react@18.3.1)
1488
+
1489
+ '@radix-ui/react-icons@1.3.2(react@18.3.1)':
1490
+ dependencies:
1491
+ react: 18.3.1
1492
+
1493
+ '@radix-ui/react-id@1.1.1(react@18.3.1)':
1494
+ dependencies:
1495
+ '@radix-ui/react-use-layout-effect': 1.1.1(react@18.3.1)
1496
+ react: 18.3.1
1497
+
1498
+ '@radix-ui/react-label@2.1.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1499
+ dependencies:
1500
+ '@radix-ui/react-primitive': 2.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1501
+ react: 18.3.1
1502
+ react-dom: 18.3.1(react@18.3.1)
1503
+
1504
+ '@radix-ui/react-popover@1.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1505
+ dependencies:
1506
+ '@radix-ui/primitive': 1.1.3
1507
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1508
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1509
+ '@radix-ui/react-dismissable-layer': 1.1.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1510
+ '@radix-ui/react-focus-guards': 1.1.3(react@18.3.1)
1511
+ '@radix-ui/react-focus-scope': 1.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1512
+ '@radix-ui/react-id': 1.1.1(react@18.3.1)
1513
+ '@radix-ui/react-popper': 1.2.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1514
+ '@radix-ui/react-portal': 1.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1515
+ '@radix-ui/react-presence': 1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1516
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1517
+ '@radix-ui/react-slot': 1.2.3(react@18.3.1)
1518
+ '@radix-ui/react-use-controllable-state': 1.2.2(react@18.3.1)
1519
+ aria-hidden: 1.2.6
1520
+ react: 18.3.1
1521
+ react-dom: 18.3.1(react@18.3.1)
1522
+ react-remove-scroll: 2.7.2(react@18.3.1)
1523
+
1524
+ '@radix-ui/react-popper@1.2.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1525
+ dependencies:
1526
+ '@floating-ui/react-dom': 2.1.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1527
+ '@radix-ui/react-arrow': 1.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1528
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1529
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1530
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1531
+ '@radix-ui/react-use-callback-ref': 1.1.1(react@18.3.1)
1532
+ '@radix-ui/react-use-layout-effect': 1.1.1(react@18.3.1)
1533
+ '@radix-ui/react-use-rect': 1.1.1(react@18.3.1)
1534
+ '@radix-ui/react-use-size': 1.1.1(react@18.3.1)
1535
+ '@radix-ui/rect': 1.1.1
1536
+ react: 18.3.1
1537
+ react-dom: 18.3.1(react@18.3.1)
1538
+
1539
+ '@radix-ui/react-portal@1.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1540
+ dependencies:
1541
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1542
+ '@radix-ui/react-use-layout-effect': 1.1.1(react@18.3.1)
1543
+ react: 18.3.1
1544
+ react-dom: 18.3.1(react@18.3.1)
1545
+
1546
+ '@radix-ui/react-presence@1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1547
+ dependencies:
1548
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1549
+ '@radix-ui/react-use-layout-effect': 1.1.1(react@18.3.1)
1550
+ react: 18.3.1
1551
+ react-dom: 18.3.1(react@18.3.1)
1552
+
1553
+ '@radix-ui/react-primitive@2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1554
+ dependencies:
1555
+ '@radix-ui/react-slot': 1.2.3(react@18.3.1)
1556
+ react: 18.3.1
1557
+ react-dom: 18.3.1(react@18.3.1)
1558
+
1559
+ '@radix-ui/react-primitive@2.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1560
+ dependencies:
1561
+ '@radix-ui/react-slot': 1.2.4(react@18.3.1)
1562
+ react: 18.3.1
1563
+ react-dom: 18.3.1(react@18.3.1)
1564
+
1565
+ '@radix-ui/react-roving-focus@1.1.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1566
+ dependencies:
1567
+ '@radix-ui/primitive': 1.1.3
1568
+ '@radix-ui/react-collection': 1.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1569
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1570
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1571
+ '@radix-ui/react-direction': 1.1.1(react@18.3.1)
1572
+ '@radix-ui/react-id': 1.1.1(react@18.3.1)
1573
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1574
+ '@radix-ui/react-use-callback-ref': 1.1.1(react@18.3.1)
1575
+ '@radix-ui/react-use-controllable-state': 1.2.2(react@18.3.1)
1576
+ react: 18.3.1
1577
+ react-dom: 18.3.1(react@18.3.1)
1578
+
1579
+ '@radix-ui/react-select@2.2.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1580
+ dependencies:
1581
+ '@radix-ui/number': 1.1.1
1582
+ '@radix-ui/primitive': 1.1.3
1583
+ '@radix-ui/react-collection': 1.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1584
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1585
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1586
+ '@radix-ui/react-direction': 1.1.1(react@18.3.1)
1587
+ '@radix-ui/react-dismissable-layer': 1.1.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1588
+ '@radix-ui/react-focus-guards': 1.1.3(react@18.3.1)
1589
+ '@radix-ui/react-focus-scope': 1.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1590
+ '@radix-ui/react-id': 1.1.1(react@18.3.1)
1591
+ '@radix-ui/react-popper': 1.2.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1592
+ '@radix-ui/react-portal': 1.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1593
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1594
+ '@radix-ui/react-slot': 1.2.3(react@18.3.1)
1595
+ '@radix-ui/react-use-callback-ref': 1.1.1(react@18.3.1)
1596
+ '@radix-ui/react-use-controllable-state': 1.2.2(react@18.3.1)
1597
+ '@radix-ui/react-use-layout-effect': 1.1.1(react@18.3.1)
1598
+ '@radix-ui/react-use-previous': 1.1.1(react@18.3.1)
1599
+ '@radix-ui/react-visually-hidden': 1.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1600
+ aria-hidden: 1.2.6
1601
+ react: 18.3.1
1602
+ react-dom: 18.3.1(react@18.3.1)
1603
+ react-remove-scroll: 2.7.2(react@18.3.1)
1604
+
1605
+ '@radix-ui/react-slot@1.2.3(react@18.3.1)':
1606
+ dependencies:
1607
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1608
+ react: 18.3.1
1609
+
1610
+ '@radix-ui/react-slot@1.2.4(react@18.3.1)':
1611
+ dependencies:
1612
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1613
+ react: 18.3.1
1614
+
1615
+ '@radix-ui/react-switch@1.2.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1616
+ dependencies:
1617
+ '@radix-ui/primitive': 1.1.3
1618
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1619
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1620
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1621
+ '@radix-ui/react-use-controllable-state': 1.2.2(react@18.3.1)
1622
+ '@radix-ui/react-use-previous': 1.1.1(react@18.3.1)
1623
+ '@radix-ui/react-use-size': 1.1.1(react@18.3.1)
1624
+ react: 18.3.1
1625
+ react-dom: 18.3.1(react@18.3.1)
1626
+
1627
+ '@radix-ui/react-tabs@1.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1628
+ dependencies:
1629
+ '@radix-ui/primitive': 1.1.3
1630
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1631
+ '@radix-ui/react-direction': 1.1.1(react@18.3.1)
1632
+ '@radix-ui/react-id': 1.1.1(react@18.3.1)
1633
+ '@radix-ui/react-presence': 1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1634
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1635
+ '@radix-ui/react-roving-focus': 1.1.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1636
+ '@radix-ui/react-use-controllable-state': 1.2.2(react@18.3.1)
1637
+ react: 18.3.1
1638
+ react-dom: 18.3.1(react@18.3.1)
1639
+
1640
+ '@radix-ui/react-toast@1.2.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1641
+ dependencies:
1642
+ '@radix-ui/primitive': 1.1.3
1643
+ '@radix-ui/react-collection': 1.1.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1644
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1645
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1646
+ '@radix-ui/react-dismissable-layer': 1.1.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1647
+ '@radix-ui/react-portal': 1.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1648
+ '@radix-ui/react-presence': 1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1649
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1650
+ '@radix-ui/react-use-callback-ref': 1.1.1(react@18.3.1)
1651
+ '@radix-ui/react-use-controllable-state': 1.2.2(react@18.3.1)
1652
+ '@radix-ui/react-use-layout-effect': 1.1.1(react@18.3.1)
1653
+ '@radix-ui/react-visually-hidden': 1.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1654
+ react: 18.3.1
1655
+ react-dom: 18.3.1(react@18.3.1)
1656
+
1657
+ '@radix-ui/react-tooltip@1.2.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1658
+ dependencies:
1659
+ '@radix-ui/primitive': 1.1.3
1660
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1661
+ '@radix-ui/react-context': 1.1.2(react@18.3.1)
1662
+ '@radix-ui/react-dismissable-layer': 1.1.11(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1663
+ '@radix-ui/react-id': 1.1.1(react@18.3.1)
1664
+ '@radix-ui/react-popper': 1.2.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1665
+ '@radix-ui/react-portal': 1.1.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1666
+ '@radix-ui/react-presence': 1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1667
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1668
+ '@radix-ui/react-slot': 1.2.3(react@18.3.1)
1669
+ '@radix-ui/react-use-controllable-state': 1.2.2(react@18.3.1)
1670
+ '@radix-ui/react-visually-hidden': 1.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1671
+ react: 18.3.1
1672
+ react-dom: 18.3.1(react@18.3.1)
1673
+
1674
+ '@radix-ui/react-use-callback-ref@1.1.1(react@18.3.1)':
1675
+ dependencies:
1676
+ react: 18.3.1
1677
+
1678
+ '@radix-ui/react-use-controllable-state@1.2.2(react@18.3.1)':
1679
+ dependencies:
1680
+ '@radix-ui/react-use-effect-event': 0.0.2(react@18.3.1)
1681
+ '@radix-ui/react-use-layout-effect': 1.1.1(react@18.3.1)
1682
+ react: 18.3.1
1683
+
1684
+ '@radix-ui/react-use-effect-event@0.0.2(react@18.3.1)':
1685
+ dependencies:
1686
+ '@radix-ui/react-use-layout-effect': 1.1.1(react@18.3.1)
1687
+ react: 18.3.1
1688
+
1689
+ '@radix-ui/react-use-escape-keydown@1.1.1(react@18.3.1)':
1690
+ dependencies:
1691
+ '@radix-ui/react-use-callback-ref': 1.1.1(react@18.3.1)
1692
+ react: 18.3.1
1693
+
1694
+ '@radix-ui/react-use-layout-effect@1.1.1(react@18.3.1)':
1695
+ dependencies:
1696
+ react: 18.3.1
1697
+
1698
+ '@radix-ui/react-use-previous@1.1.1(react@18.3.1)':
1699
+ dependencies:
1700
+ react: 18.3.1
1701
+
1702
+ '@radix-ui/react-use-rect@1.1.1(react@18.3.1)':
1703
+ dependencies:
1704
+ '@radix-ui/rect': 1.1.1
1705
+ react: 18.3.1
1706
+
1707
+ '@radix-ui/react-use-size@1.1.1(react@18.3.1)':
1708
+ dependencies:
1709
+ '@radix-ui/react-use-layout-effect': 1.1.1(react@18.3.1)
1710
+ react: 18.3.1
1711
+
1712
+ '@radix-ui/react-visually-hidden@1.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
1713
+ dependencies:
1714
+ '@radix-ui/react-primitive': 2.1.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1715
+ react: 18.3.1
1716
+ react-dom: 18.3.1(react@18.3.1)
1717
+
1718
+ '@radix-ui/rect@1.1.1': {}
1719
+
1720
+ '@tsconfig/node10@1.0.12': {}
1721
+
1722
+ '@tsconfig/node12@1.0.11': {}
1723
+
1724
+ '@tsconfig/node14@1.0.3': {}
1725
+
1726
+ '@tsconfig/node16@1.0.4': {}
1727
+
1728
+ '@types/node@25.0.3':
1729
+ dependencies:
1730
+ undici-types: 7.16.0
1731
+
1732
+ accepts@2.0.0:
1733
+ dependencies:
1734
+ mime-types: 3.0.2
1735
+ negotiator: 1.0.0
1736
+
1737
+ acorn-walk@8.3.4:
1738
+ dependencies:
1739
+ acorn: 8.15.0
1740
+
1741
+ acorn@8.15.0: {}
1742
+
1743
+ ajv-formats@3.0.1(ajv@8.17.1):
1744
+ optionalDependencies:
1745
+ ajv: 8.17.1
1746
+
1747
+ ajv@6.12.6:
1748
+ dependencies:
1749
+ fast-deep-equal: 3.1.3
1750
+ fast-json-stable-stringify: 2.1.0
1751
+ json-schema-traverse: 0.4.1
1752
+ uri-js: 4.4.1
1753
+
1754
+ ajv@8.17.1:
1755
+ dependencies:
1756
+ fast-deep-equal: 3.1.3
1757
+ fast-uri: 3.1.0
1758
+ json-schema-traverse: 1.0.0
1759
+ require-from-string: 2.0.2
1760
+
1761
+ ansi-regex@5.0.1: {}
1762
+
1763
+ ansi-styles@4.3.0:
1764
+ dependencies:
1765
+ color-convert: 2.0.1
1766
+
1767
+ arg@4.1.3: {}
1768
+
1769
+ aria-hidden@1.2.6:
1770
+ dependencies:
1771
+ tslib: 2.8.1
1772
+
1773
+ balanced-match@1.0.2: {}
1774
+
1775
+ body-parser@2.2.1:
1776
+ dependencies:
1777
+ bytes: 3.1.2
1778
+ content-type: 1.0.5
1779
+ debug: 4.4.3
1780
+ http-errors: 2.0.1
1781
+ iconv-lite: 0.7.1
1782
+ on-finished: 2.4.1
1783
+ qs: 6.14.0
1784
+ raw-body: 3.0.2
1785
+ type-is: 2.0.1
1786
+ transitivePeerDependencies:
1787
+ - supports-color
1788
+
1789
+ brace-expansion@1.1.12:
1790
+ dependencies:
1791
+ balanced-match: 1.0.2
1792
+ concat-map: 0.0.1
1793
+
1794
+ bundle-name@4.1.0:
1795
+ dependencies:
1796
+ run-applescript: 7.1.0
1797
+
1798
+ bytes@3.0.0: {}
1799
+
1800
+ bytes@3.1.2: {}
1801
+
1802
+ call-bind-apply-helpers@1.0.2:
1803
+ dependencies:
1804
+ es-errors: 1.3.0
1805
+ function-bind: 1.1.2
1806
+
1807
+ call-bound@1.0.4:
1808
+ dependencies:
1809
+ call-bind-apply-helpers: 1.0.2
1810
+ get-intrinsic: 1.3.0
1811
+
1812
+ chalk@4.1.2:
1813
+ dependencies:
1814
+ ansi-styles: 4.3.0
1815
+ supports-color: 7.2.0
1816
+
1817
+ class-variance-authority@0.7.1:
1818
+ dependencies:
1819
+ clsx: 2.1.1
1820
+
1821
+ cliui@8.0.1:
1822
+ dependencies:
1823
+ string-width: 4.2.3
1824
+ strip-ansi: 6.0.1
1825
+ wrap-ansi: 7.0.0
1826
+
1827
+ clsx@2.1.1: {}
1828
+
1829
+ cmdk@1.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
1830
+ dependencies:
1831
+ '@radix-ui/react-compose-refs': 1.1.2(react@18.3.1)
1832
+ '@radix-ui/react-dialog': 1.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1833
+ '@radix-ui/react-id': 1.1.1(react@18.3.1)
1834
+ '@radix-ui/react-primitive': 2.1.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
1835
+ react: 18.3.1
1836
+ react-dom: 18.3.1(react@18.3.1)
1837
+ transitivePeerDependencies:
1838
+ - '@types/react'
1839
+ - '@types/react-dom'
1840
+
1841
+ color-convert@2.0.1:
1842
+ dependencies:
1843
+ color-name: 1.1.4
1844
+
1845
+ color-name@1.1.4: {}
1846
+
1847
+ commander@13.1.0: {}
1848
+
1849
+ concat-map@0.0.1: {}
1850
+
1851
+ concurrently@9.2.1:
1852
+ dependencies:
1853
+ chalk: 4.1.2
1854
+ rxjs: 7.8.2
1855
+ shell-quote: 1.8.3
1856
+ supports-color: 8.1.1
1857
+ tree-kill: 1.2.2
1858
+ yargs: 17.7.2
1859
+
1860
+ content-disposition@0.5.2: {}
1861
+
1862
+ content-disposition@1.0.1: {}
1863
+
1864
+ content-type@1.0.5: {}
1865
+
1866
+ cookie-signature@1.2.2: {}
1867
+
1868
+ cookie@0.7.2: {}
1869
+
1870
+ cors@2.8.5:
1871
+ dependencies:
1872
+ object-assign: 4.1.1
1873
+ vary: 1.1.2
1874
+
1875
+ create-require@1.1.1: {}
1876
+
1877
+ cross-spawn@7.0.6:
1878
+ dependencies:
1879
+ path-key: 3.1.1
1880
+ shebang-command: 2.0.0
1881
+ which: 2.0.2
1882
+
1883
+ data-uri-to-buffer@4.0.1: {}
1884
+
1885
+ debug@4.4.3:
1886
+ dependencies:
1887
+ ms: 2.1.3
1888
+
1889
+ default-browser-id@5.0.1: {}
1890
+
1891
+ default-browser@5.4.0:
1892
+ dependencies:
1893
+ bundle-name: 4.1.0
1894
+ default-browser-id: 5.0.1
1895
+
1896
+ define-lazy-prop@3.0.0: {}
1897
+
1898
+ depd@2.0.0: {}
1899
+
1900
+ detect-node-es@1.1.0: {}
1901
+
1902
+ diff@4.0.2: {}
1903
+
1904
+ dunder-proto@1.0.1:
1905
+ dependencies:
1906
+ call-bind-apply-helpers: 1.0.2
1907
+ es-errors: 1.3.0
1908
+ gopd: 1.2.0
1909
+
1910
+ ee-first@1.1.1: {}
1911
+
1912
+ emoji-regex@8.0.0: {}
1913
+
1914
+ encodeurl@2.0.0: {}
1915
+
1916
+ es-define-property@1.0.1: {}
1917
+
1918
+ es-errors@1.3.0: {}
1919
+
1920
+ es-object-atoms@1.1.1:
1921
+ dependencies:
1922
+ es-errors: 1.3.0
1923
+
1924
+ escalade@3.2.0: {}
1925
+
1926
+ escape-html@1.0.3: {}
1927
+
1928
+ etag@1.8.1: {}
1929
+
1930
+ eventsource-parser@3.0.6: {}
1931
+
1932
+ eventsource@3.0.7:
1933
+ dependencies:
1934
+ eventsource-parser: 3.0.6
1935
+
1936
+ express-rate-limit@7.5.1(express@5.2.1):
1937
+ dependencies:
1938
+ express: 5.2.1
1939
+
1940
+ express@5.2.1:
1941
+ dependencies:
1942
+ accepts: 2.0.0
1943
+ body-parser: 2.2.1
1944
+ content-disposition: 1.0.1
1945
+ content-type: 1.0.5
1946
+ cookie: 0.7.2
1947
+ cookie-signature: 1.2.2
1948
+ debug: 4.4.3
1949
+ depd: 2.0.0
1950
+ encodeurl: 2.0.0
1951
+ escape-html: 1.0.3
1952
+ etag: 1.8.1
1953
+ finalhandler: 2.1.1
1954
+ fresh: 2.0.0
1955
+ http-errors: 2.0.1
1956
+ merge-descriptors: 2.0.0
1957
+ mime-types: 3.0.2
1958
+ on-finished: 2.4.1
1959
+ once: 1.4.0
1960
+ parseurl: 1.3.3
1961
+ proxy-addr: 2.0.7
1962
+ qs: 6.14.0
1963
+ range-parser: 1.2.1
1964
+ router: 2.2.0
1965
+ send: 1.2.1
1966
+ serve-static: 2.2.1
1967
+ statuses: 2.0.2
1968
+ type-is: 2.0.1
1969
+ vary: 1.1.2
1970
+ transitivePeerDependencies:
1971
+ - supports-color
1972
+
1973
+ fast-deep-equal@3.1.3: {}
1974
+
1975
+ fast-json-stable-stringify@2.1.0: {}
1976
+
1977
+ fast-uri@3.1.0: {}
1978
+
1979
+ fetch-blob@3.2.0:
1980
+ dependencies:
1981
+ node-domexception: 1.0.0
1982
+ web-streams-polyfill: 3.3.3
1983
+
1984
+ finalhandler@2.1.1:
1985
+ dependencies:
1986
+ debug: 4.4.3
1987
+ encodeurl: 2.0.0
1988
+ escape-html: 1.0.3
1989
+ on-finished: 2.4.1
1990
+ parseurl: 1.3.3
1991
+ statuses: 2.0.2
1992
+ transitivePeerDependencies:
1993
+ - supports-color
1994
+
1995
+ formdata-polyfill@4.0.10:
1996
+ dependencies:
1997
+ fetch-blob: 3.2.0
1998
+
1999
+ forwarded@0.2.0: {}
2000
+
2001
+ fresh@2.0.0: {}
2002
+
2003
+ function-bind@1.1.2: {}
2004
+
2005
+ get-caller-file@2.0.5: {}
2006
+
2007
+ get-intrinsic@1.3.0:
2008
+ dependencies:
2009
+ call-bind-apply-helpers: 1.0.2
2010
+ es-define-property: 1.0.1
2011
+ es-errors: 1.3.0
2012
+ es-object-atoms: 1.1.1
2013
+ function-bind: 1.1.2
2014
+ get-proto: 1.0.1
2015
+ gopd: 1.2.0
2016
+ has-symbols: 1.1.0
2017
+ hasown: 2.0.2
2018
+ math-intrinsics: 1.1.0
2019
+
2020
+ get-nonce@1.0.1: {}
2021
+
2022
+ get-proto@1.0.1:
2023
+ dependencies:
2024
+ dunder-proto: 1.0.1
2025
+ es-object-atoms: 1.1.1
2026
+
2027
+ gopd@1.2.0: {}
2028
+
2029
+ has-flag@4.0.0: {}
2030
+
2031
+ has-symbols@1.1.0: {}
2032
+
2033
+ hasown@2.0.2:
2034
+ dependencies:
2035
+ function-bind: 1.1.2
2036
+
2037
+ hono@4.11.1: {}
2038
+
2039
+ http-errors@2.0.1:
2040
+ dependencies:
2041
+ depd: 2.0.0
2042
+ inherits: 2.0.4
2043
+ setprototypeof: 1.2.0
2044
+ statuses: 2.0.2
2045
+ toidentifier: 1.0.1
2046
+
2047
+ iconv-lite@0.7.1:
2048
+ dependencies:
2049
+ safer-buffer: 2.1.2
2050
+
2051
+ inherits@2.0.4: {}
2052
+
2053
+ ipaddr.js@1.9.1: {}
2054
+
2055
+ is-docker@3.0.0: {}
2056
+
2057
+ is-fullwidth-code-point@3.0.0: {}
2058
+
2059
+ is-inside-container@1.0.0:
2060
+ dependencies:
2061
+ is-docker: 3.0.0
2062
+
2063
+ is-promise@4.0.0: {}
2064
+
2065
+ is-wsl@3.1.0:
2066
+ dependencies:
2067
+ is-inside-container: 1.0.0
2068
+
2069
+ isexe@2.0.0: {}
2070
+
2071
+ jose@6.1.3: {}
2072
+
2073
+ js-tokens@4.0.0: {}
2074
+
2075
+ json-schema-traverse@0.4.1: {}
2076
+
2077
+ json-schema-traverse@1.0.0: {}
2078
+
2079
+ json-schema-typed@8.0.2: {}
2080
+
2081
+ loose-envify@1.4.0:
2082
+ dependencies:
2083
+ js-tokens: 4.0.0
2084
+
2085
+ lucide-react@0.523.0(react@18.3.1):
2086
+ dependencies:
2087
+ react: 18.3.1
2088
+
2089
+ make-error@1.3.6: {}
2090
+
2091
+ math-intrinsics@1.1.0: {}
2092
+
2093
+ media-typer@1.1.0: {}
2094
+
2095
+ merge-descriptors@2.0.0: {}
2096
+
2097
+ mime-db@1.33.0: {}
2098
+
2099
+ mime-db@1.54.0: {}
2100
+
2101
+ mime-types@2.1.18:
2102
+ dependencies:
2103
+ mime-db: 1.33.0
2104
+
2105
+ mime-types@3.0.2:
2106
+ dependencies:
2107
+ mime-db: 1.54.0
2108
+
2109
+ minimatch@3.1.2:
2110
+ dependencies:
2111
+ brace-expansion: 1.1.12
2112
+
2113
+ ms@2.1.3: {}
2114
+
2115
+ negotiator@1.0.0: {}
2116
+
2117
+ node-domexception@1.0.0: {}
2118
+
2119
+ node-fetch@3.3.2:
2120
+ dependencies:
2121
+ data-uri-to-buffer: 4.0.1
2122
+ fetch-blob: 3.2.0
2123
+ formdata-polyfill: 4.0.10
2124
+
2125
+ object-assign@4.1.1: {}
2126
+
2127
+ object-inspect@1.13.4: {}
2128
+
2129
+ on-finished@2.4.1:
2130
+ dependencies:
2131
+ ee-first: 1.1.1
2132
+
2133
+ once@1.4.0:
2134
+ dependencies:
2135
+ wrappy: 1.0.2
2136
+
2137
+ open@10.2.0:
2138
+ dependencies:
2139
+ default-browser: 5.4.0
2140
+ define-lazy-prop: 3.0.0
2141
+ is-inside-container: 1.0.0
2142
+ wsl-utils: 0.1.0
2143
+
2144
+ parseurl@1.3.3: {}
2145
+
2146
+ path-is-inside@1.0.2: {}
2147
+
2148
+ path-key@3.1.1: {}
2149
+
2150
+ path-to-regexp@3.3.0: {}
2151
+
2152
+ path-to-regexp@8.3.0: {}
2153
+
2154
+ pkce-challenge@4.1.0: {}
2155
+
2156
+ pkce-challenge@5.0.1: {}
2157
+
2158
+ prismjs@1.30.0: {}
2159
+
2160
+ proxy-addr@2.0.7:
2161
+ dependencies:
2162
+ forwarded: 0.2.0
2163
+ ipaddr.js: 1.9.1
2164
+
2165
+ punycode@2.3.1: {}
2166
+
2167
+ qs@6.14.0:
2168
+ dependencies:
2169
+ side-channel: 1.1.0
2170
+
2171
+ range-parser@1.2.0: {}
2172
+
2173
+ range-parser@1.2.1: {}
2174
+
2175
+ raw-body@3.0.2:
2176
+ dependencies:
2177
+ bytes: 3.1.2
2178
+ http-errors: 2.0.1
2179
+ iconv-lite: 0.7.1
2180
+ unpipe: 1.0.0
2181
+
2182
+ react-dom@18.3.1(react@18.3.1):
2183
+ dependencies:
2184
+ loose-envify: 1.4.0
2185
+ react: 18.3.1
2186
+ scheduler: 0.23.2
2187
+
2188
+ react-remove-scroll-bar@2.3.8(react@18.3.1):
2189
+ dependencies:
2190
+ react: 18.3.1
2191
+ react-style-singleton: 2.2.3(react@18.3.1)
2192
+ tslib: 2.8.1
2193
+
2194
+ react-remove-scroll@2.7.2(react@18.3.1):
2195
+ dependencies:
2196
+ react: 18.3.1
2197
+ react-remove-scroll-bar: 2.3.8(react@18.3.1)
2198
+ react-style-singleton: 2.2.3(react@18.3.1)
2199
+ tslib: 2.8.1
2200
+ use-callback-ref: 1.3.3(react@18.3.1)
2201
+ use-sidecar: 1.1.3(react@18.3.1)
2202
+
2203
+ react-simple-code-editor@0.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
2204
+ dependencies:
2205
+ react: 18.3.1
2206
+ react-dom: 18.3.1(react@18.3.1)
2207
+
2208
+ react-style-singleton@2.2.3(react@18.3.1):
2209
+ dependencies:
2210
+ get-nonce: 1.0.1
2211
+ react: 18.3.1
2212
+ tslib: 2.8.1
2213
+
2214
+ react@18.3.1:
2215
+ dependencies:
2216
+ loose-envify: 1.4.0
2217
+
2218
+ require-directory@2.1.1: {}
2219
+
2220
+ require-from-string@2.0.2: {}
2221
+
2222
+ router@2.2.0:
2223
+ dependencies:
2224
+ debug: 4.4.3
2225
+ depd: 2.0.0
2226
+ is-promise: 4.0.0
2227
+ parseurl: 1.3.3
2228
+ path-to-regexp: 8.3.0
2229
+ transitivePeerDependencies:
2230
+ - supports-color
2231
+
2232
+ run-applescript@7.1.0: {}
2233
+
2234
+ rxjs@7.8.2:
2235
+ dependencies:
2236
+ tslib: 2.8.1
2237
+
2238
+ safer-buffer@2.1.2: {}
2239
+
2240
+ scheduler@0.23.2:
2241
+ dependencies:
2242
+ loose-envify: 1.4.0
2243
+
2244
+ send@1.2.1:
2245
+ dependencies:
2246
+ debug: 4.4.3
2247
+ encodeurl: 2.0.0
2248
+ escape-html: 1.0.3
2249
+ etag: 1.8.1
2250
+ fresh: 2.0.0
2251
+ http-errors: 2.0.1
2252
+ mime-types: 3.0.2
2253
+ ms: 2.1.3
2254
+ on-finished: 2.4.1
2255
+ range-parser: 1.2.1
2256
+ statuses: 2.0.2
2257
+ transitivePeerDependencies:
2258
+ - supports-color
2259
+
2260
+ serve-handler@6.1.6:
2261
+ dependencies:
2262
+ bytes: 3.0.0
2263
+ content-disposition: 0.5.2
2264
+ mime-types: 2.1.18
2265
+ minimatch: 3.1.2
2266
+ path-is-inside: 1.0.2
2267
+ path-to-regexp: 3.3.0
2268
+ range-parser: 1.2.0
2269
+
2270
+ serve-static@2.2.1:
2271
+ dependencies:
2272
+ encodeurl: 2.0.0
2273
+ escape-html: 1.0.3
2274
+ parseurl: 1.3.3
2275
+ send: 1.2.1
2276
+ transitivePeerDependencies:
2277
+ - supports-color
2278
+
2279
+ setprototypeof@1.2.0: {}
2280
+
2281
+ shebang-command@2.0.0:
2282
+ dependencies:
2283
+ shebang-regex: 3.0.0
2284
+
2285
+ shebang-regex@3.0.0: {}
2286
+
2287
+ shell-quote@1.8.3: {}
2288
+
2289
+ side-channel-list@1.0.0:
2290
+ dependencies:
2291
+ es-errors: 1.3.0
2292
+ object-inspect: 1.13.4
2293
+
2294
+ side-channel-map@1.0.1:
2295
+ dependencies:
2296
+ call-bound: 1.0.4
2297
+ es-errors: 1.3.0
2298
+ get-intrinsic: 1.3.0
2299
+ object-inspect: 1.13.4
2300
+
2301
+ side-channel-weakmap@1.0.2:
2302
+ dependencies:
2303
+ call-bound: 1.0.4
2304
+ es-errors: 1.3.0
2305
+ get-intrinsic: 1.3.0
2306
+ object-inspect: 1.13.4
2307
+ side-channel-map: 1.0.1
2308
+
2309
+ side-channel@1.1.0:
2310
+ dependencies:
2311
+ es-errors: 1.3.0
2312
+ object-inspect: 1.13.4
2313
+ side-channel-list: 1.0.0
2314
+ side-channel-map: 1.0.1
2315
+ side-channel-weakmap: 1.0.2
2316
+
2317
+ spawn-rx@5.1.2:
2318
+ dependencies:
2319
+ debug: 4.4.3
2320
+ rxjs: 7.8.2
2321
+ transitivePeerDependencies:
2322
+ - supports-color
2323
+
2324
+ statuses@2.0.2: {}
2325
+
2326
+ string-width@4.2.3:
2327
+ dependencies:
2328
+ emoji-regex: 8.0.0
2329
+ is-fullwidth-code-point: 3.0.0
2330
+ strip-ansi: 6.0.1
2331
+
2332
+ strip-ansi@6.0.1:
2333
+ dependencies:
2334
+ ansi-regex: 5.0.1
2335
+
2336
+ supports-color@7.2.0:
2337
+ dependencies:
2338
+ has-flag: 4.0.0
2339
+
2340
+ supports-color@8.1.1:
2341
+ dependencies:
2342
+ has-flag: 4.0.0
2343
+
2344
+ tailwind-merge@2.6.0: {}
2345
+
2346
+ toidentifier@1.0.1: {}
2347
+
2348
+ tree-kill@1.2.2: {}
2349
+
2350
+ ts-node@10.9.2(@types/node@25.0.3)(typescript@5.9.3):
2351
+ dependencies:
2352
+ '@cspotcode/source-map-support': 0.8.1
2353
+ '@tsconfig/node10': 1.0.12
2354
+ '@tsconfig/node12': 1.0.11
2355
+ '@tsconfig/node14': 1.0.3
2356
+ '@tsconfig/node16': 1.0.4
2357
+ '@types/node': 25.0.3
2358
+ acorn: 8.15.0
2359
+ acorn-walk: 8.3.4
2360
+ arg: 4.1.3
2361
+ create-require: 1.1.1
2362
+ diff: 4.0.2
2363
+ make-error: 1.3.6
2364
+ typescript: 5.9.3
2365
+ v8-compile-cache-lib: 3.0.1
2366
+ yn: 3.1.1
2367
+
2368
+ tslib@2.8.1: {}
2369
+
2370
+ type-is@2.0.1:
2371
+ dependencies:
2372
+ content-type: 1.0.5
2373
+ media-typer: 1.1.0
2374
+ mime-types: 3.0.2
2375
+
2376
+ typescript@5.9.3: {}
2377
+
2378
+ undici-types@7.16.0: {}
2379
+
2380
+ unpipe@1.0.0: {}
2381
+
2382
+ uri-js@4.4.1:
2383
+ dependencies:
2384
+ punycode: 2.3.1
2385
+
2386
+ use-callback-ref@1.3.3(react@18.3.1):
2387
+ dependencies:
2388
+ react: 18.3.1
2389
+ tslib: 2.8.1
2390
+
2391
+ use-sidecar@1.1.3(react@18.3.1):
2392
+ dependencies:
2393
+ detect-node-es: 1.1.0
2394
+ react: 18.3.1
2395
+ tslib: 2.8.1
2396
+
2397
+ v8-compile-cache-lib@3.0.1: {}
2398
+
2399
+ vary@1.1.2: {}
2400
+
2401
+ web-streams-polyfill@3.3.3: {}
2402
+
2403
+ which@2.0.2:
2404
+ dependencies:
2405
+ isexe: 2.0.0
2406
+
2407
+ wrap-ansi@7.0.0:
2408
+ dependencies:
2409
+ ansi-styles: 4.3.0
2410
+ string-width: 4.2.3
2411
+ strip-ansi: 6.0.1
2412
+
2413
+ wrappy@1.0.2: {}
2414
+
2415
+ ws@8.18.3: {}
2416
+
2417
+ wsl-utils@0.1.0:
2418
+ dependencies:
2419
+ is-wsl: 3.1.0
2420
+
2421
+ y18n@5.0.8: {}
2422
+
2423
+ yargs-parser@21.1.1: {}
2424
+
2425
+ yargs@17.7.2:
2426
+ dependencies:
2427
+ cliui: 8.0.1
2428
+ escalade: 3.2.0
2429
+ get-caller-file: 2.0.5
2430
+ require-directory: 2.1.1
2431
+ string-width: 4.2.3
2432
+ y18n: 5.0.8
2433
+ yargs-parser: 21.1.1
2434
+
2435
+ yn@3.1.1: {}
2436
+
2437
+ zod-to-json-schema@3.25.0(zod@3.25.76):
2438
+ dependencies:
2439
+ zod: 3.25.76
2440
+
2441
+ zod@3.25.76: {}